/* ==========================================================================
   Medtech Automotive Consulting — style.css
   Premium cross-border vehicle transaction consulting site
   Palette: navy / charcoal / black / white with gold + silver accents
   ========================================================================== */

/* ----- Design tokens ----------------------------------------------------- */
:root {
  --navy:        #0b1a2f;
  --navy-deep:   #061120;
  --charcoal:    #16202e;
  --charcoal-2:  #1e2a3a;
  --black:       #05090f;
  --white:       #ffffff;
  --off-white:   #f5f7fa;
  --grey:        #9aa7b8;
  --grey-light:  #c7d0dc;
  --gold:        #c8a24a;
  --gold-light:  #e4c877;
  --gold-deep:   #a8842f;
  --silver:      #cfd6df;
  --line:        rgba(200, 162, 74, 0.22);
  --line-soft:   rgba(255, 255, 255, 0.08);
  --shadow:      0 18px 50px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.28);
  --radius:      14px;
  --radius-sm:   9px;
  --maxw:        1200px;
  --font-head:   'Montserrat', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body:   'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----- Reset ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--navy-deep);
  color: var(--grey-light);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--white);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: 0.2px;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ----- Layout helpers ---------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: 90px 0; position: relative; }
.section--tight { padding: 64px 0; }
.section--alt { background: linear-gradient(180deg, var(--charcoal) 0%, var(--navy) 100%); }
.section--dark { background: var(--black); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-title { font-size: clamp(1.35rem, 2.4vw, 1.85rem); margin-bottom: 16px; letter-spacing: -0.2px; }
.section-lead { font-size: 1.08rem; color: var(--grey); }

.gold-text { color: var(--gold-light); }
.divider { width: 64px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-deep)); border: none; margin: 20px 0 0; border-radius: 3px; }
.center .divider { margin-left: auto; margin-right: auto; }

/* ----- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: var(--navy-deep);
  box-shadow: 0 10px 26px rgba(200, 162, 74, 0.28);
}
.btn--gold:hover { box-shadow: 0 14px 34px rgba(200, 162, 74, 0.42); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold-light); }

.btn--block { width: 100%; justify-content: center; }

/* ----- Header / Nav ------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 17, 32, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.3s var(--ease);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--font-head);
  font-size: 1.22rem;
  color: var(--white);
  font-weight: 600;
}
.brand__name b { color: var(--gold-light); font-weight: 600; }
.brand__sub {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 2px;
}

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--grey-light);
  padding: 10px 12px;
  border-radius: 8px;
  white-space: nowrap;
  transition: color 0.25s, background 0.25s;
}
.nav__links a:hover { color: var(--white); }
.nav__links a.active { color: var(--gold-light); }
.nav__cta { margin-left: 10px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  width: 26px; height: 2px; background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----- Hero -------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 17, 32, 0.94) 0%, rgba(6, 17, 32, 0.74) 45%, rgba(6, 17, 32, 0.34) 100%),
    url('https://eurobildbau.com/images/site/hero-supercar-background.jpg') center right / cover no-repeat,
    linear-gradient(135deg, #0d1e35 0%, #05090f 100%);
  z-index: 0;
}

/* Real media images fill the split panels */
.split__media img, .media-img {
  width: 100%; height: 100%; min-height: 380px;
  object-fit: cover; display: block;
  background: linear-gradient(135deg, #16202e, #05090f);
}
@media (max-width: 980px) {
  .split__media img, .media-img { min-height: 300px; }
}
.hero__media::after {
  content: "";
  position: absolute; right: 4%; bottom: 6%;
  width: min(52%, 620px); height: 60%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.55), transparent 70%);
  filter: blur(4px);
  z-index: 1;
}
.img-placeholder {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  color: var(--grey);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  background:
    linear-gradient(135deg, rgba(200,162,74,0.06), transparent),
    repeating-linear-gradient(45deg, #0e1c30 0px, #0e1c30 12px, #101f34 12px, #101f34 24px);
  border: 1px solid var(--line-soft);
}
.img-placeholder::before {
  content: "";
  position: absolute; inset: 12px;
  border: 1px dashed rgba(200,162,74,0.28);
  border-radius: 8px;
}
.img-placeholder span { position: relative; z-index: 2; }

.hero__inner { position: relative; z-index: 3; max-width: 760px; padding: 60px 0; }
.hero__eyebrow { color: var(--gold-light); }
.hero h1 {
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
  color: var(--white);
}
.hero__lead {
  font-size: 1.16rem;
  color: var(--grey-light);
  max-width: 620px;
  margin-bottom: 34px;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__strip {
  position: relative; z-index: 3;
  border-top: 1px solid var(--line-soft);
  background: rgba(5, 9, 15, 0.5);
}
.hero__strip .container {
  display: flex; flex-wrap: wrap; gap: 30px;
  justify-content: space-between;
  padding-top: 22px; padding-bottom: 22px;
}
.hero__stat { display: flex; flex-direction: column; }
.hero__stat b { font-family: var(--font-head); color: var(--gold-light); font-size: 1.5rem; }
.hero__stat span { font-size: 0.82rem; color: var(--grey); letter-spacing: 0.5px; }

/* ----- Page hero (interior) --------------------------------------------- */
.page-hero {
  position: relative;
  padding: 92px 0 76px;
  background:
    linear-gradient(180deg, rgba(6,17,32,0.9), rgba(6,17,32,0.98)),
    repeating-linear-gradient(115deg, #0a1626 0px, #0a1626 2px, #0c1a2e 2px, #0c1a2e 26px),
    linear-gradient(135deg, #0d1e35, #05090f);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; top: -30%; right: -10%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(200,162,74,0.12), transparent 65%);
}
.page-hero__inner { position: relative; z-index: 2; max-width: 800px; }
.page-hero h1 { font-size: clamp(1.5rem, 2.8vw, 2rem); margin-bottom: 16px; letter-spacing: -0.2px; }
.page-hero p { font-size: 1.12rem; color: var(--grey-light); max-width: 640px; }
.breadcrumb { font-size: 0.8rem; color: var(--grey); letter-spacing: 1px; margin-bottom: 18px; text-transform: uppercase; }
.breadcrumb a:hover { color: var(--gold-light); }

/* ----- Cards / Grids ----------------------------------------------------- */
.grid { display: grid; gap: 26px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: linear-gradient(160deg, var(--charcoal-2), var(--charcoal));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0; transition: opacity 0.35s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow-soft); }
.card:hover::before { opacity: 1; }

.card__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(200, 162, 74, 0.1);
  border: 1px solid var(--line);
  color: var(--gold-light);
  margin-bottom: 20px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.28rem; margin-bottom: 12px; color: var(--white); }
.card p { color: var(--grey); font-size: 0.98rem; }
.card__num {
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

/* Service list card variant */
.svc {
  background: linear-gradient(160deg, var(--charcoal-2), var(--charcoal));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.svc:hover { transform: translateY(-4px); border-color: var(--line); }
.svc h3 { display: flex; align-items: center; gap: 12px; font-size: 1.24rem; margin-bottom: 12px; }
.svc h3 .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex: none; }
.svc p { color: var(--grey); font-size: 0.98rem; }

/* ----- Split / Feature rows --------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media {
  min-height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.split__media .img-placeholder { height: 100%; min-height: 380px; }
.split__body h2 { font-size: clamp(1.3rem, 2.2vw, 1.75rem); margin-bottom: 18px; letter-spacing: -0.2px; }
.split__body p { color: var(--grey); margin-bottom: 16px; }

/* ----- Checklists -------------------------------------------------------- */
.checklist { display: grid; gap: 14px; margin: 22px 0; }
.checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--grey-light); font-size: 0.99rem;
}
.checklist li svg { flex: none; width: 20px; height: 20px; color: var(--gold); margin-top: 3px; }
.checklist--2 { grid-template-columns: 1fr 1fr; }

/* ----- Steps ------------------------------------------------------------- */
.steps { display: grid; gap: 24px; grid-template-columns: repeat(4, 1fr); counter-reset: step; }
.step { position: relative; padding-top: 20px; }
.step__n {
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: rgba(200, 162, 74, 0.35);
  line-height: 1;
  margin-bottom: 8px;
}
.step h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--grey); font-size: 0.92rem; }

/* ----- CTA banner -------------------------------------------------------- */
.cta-banner {
  position: relative;
  background:
    linear-gradient(120deg, rgba(11,26,47,0.95), rgba(5,9,15,0.9)),
    radial-gradient(circle at 20% 30%, rgba(200,162,74,0.16), transparent 55%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: 78px 0;
}
.cta-banner h2 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); margin-bottom: 16px; letter-spacing: -0.2px; }
.cta-banner p { color: var(--grey-light); max-width: 620px; margin: 0 auto 30px; font-size: 1.08rem; }
.cta-banner .hero__cta { justify-content: center; }

/* ----- Trust / logos strip ---------------------------------------------- */
.trust { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }
.trust__item {
  border: 1px solid var(--line-soft);
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 0.85rem;
  color: var(--grey-light);
  letter-spacing: 0.5px;
  display: flex; align-items: center; gap: 8px;
}
.trust__item svg { width: 16px; height: 16px; color: var(--gold); }

/* ----- Contact ----------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: start; }
.form { background: linear-gradient(160deg, var(--charcoal-2), var(--charcoal)); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 38px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.82rem; letter-spacing: 0.5px; color: var(--grey-light); margin-bottom: 8px; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--navy-deep);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.96rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field input::placeholder, .field textarea::placeholder { color: #5f6d7e; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,162,74,0.14);
}
.field textarea { resize: vertical; min-height: 130px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23c8a24a' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; }
.form__note { font-size: 0.82rem; color: var(--grey); margin-top: 16px; }
.form__success { display: none; background: rgba(200,162,74,0.1); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px; color: var(--gold-light); margin-bottom: 20px; font-size: 0.95rem; }
.form__success.show { display: block; }

.contact-aside .info-block {
  background: linear-gradient(160deg, var(--charcoal-2), var(--charcoal));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 22px;
}
.contact-aside h3 { font-size: 1.2rem; margin-bottom: 14px; }
.contact-aside .info-line { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; color: var(--grey-light); font-size: 0.95rem; }
.contact-aside .info-line svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: 2px; }
.contact-aside .info-line:last-child { margin-bottom: 0; }

/* ----- FAQ / accordion-ish ---------------------------------------------- */
.faq { display: grid; gap: 16px; max-width: 860px; margin: 0 auto; }
.faq__item { border: 1px solid var(--line-soft); border-radius: var(--radius-sm); padding: 24px 26px; background: var(--charcoal); }
.faq__item h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 10px; }
.faq__item p { color: var(--grey); font-size: 0.97rem; }

/* ----- Footer ------------------------------------------------------------ */
.site-footer { background: var(--black); border-top: 1px solid var(--line-soft); padding: 66px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .brand__name { font-size: 1.3rem; }
.footer-brand p { color: var(--grey); font-size: 0.92rem; margin-top: 16px; max-width: 320px; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: 0.92rem; color: var(--grey-light); transition: color 0.25s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-contact p { font-size: 0.92rem; color: var(--grey-light); margin-bottom: 10px; display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: 2px; }

.footer-disclaimer {
  border-top: 1px solid var(--line-soft);
  padding-top: 26px;
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.7;
}
.footer-disclaimer strong { color: var(--grey-light); font-weight: 600; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line-soft);
  font-size: 0.82rem; color: var(--grey);
}

/* ----- Highlight band (door-to-door / all fees) -------------------------- */
.highlight-band {
  background: linear-gradient(120deg, rgba(200,162,74,0.14), rgba(11,26,47,0.6));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 38px;
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
}
.highlight-band__icon {
  width: 58px; height: 58px; flex: none;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px; background: rgba(200,162,74,0.16);
  border: 1px solid var(--line); color: var(--gold-light);
}
.highlight-band__icon svg { width: 30px; height: 30px; }
.highlight-band__body { flex: 1 1 340px; }
.highlight-band__body h3 { font-size: 1.35rem; margin-bottom: 8px; }
.highlight-band__body p { color: var(--grey-light); margin: 0; }

/* ----- Tracking ---------------------------------------------------------- */
.track-box {
  background: linear-gradient(160deg, var(--charcoal-2), var(--charcoal));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 38px;
  max-width: 720px;
  margin: 0 auto;
}
.track-form { display: flex; gap: 14px; flex-wrap: wrap; }
.track-form input {
  flex: 1 1 260px;
  background: var(--navy-deep);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 15px 16px; color: var(--white);
  font-family: var(--font-body); font-size: 1rem; letter-spacing: 1px;
}
.track-form input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,162,74,0.14); }
.track-hint { font-size: 0.85rem; color: var(--grey); margin-top: 14px; }
.track-hint code { color: var(--gold-light); background: rgba(200,162,74,0.1); padding: 2px 8px; border-radius: 5px; font-size: 0.85rem; }

.track-result { display: none; margin-top: 30px; }
.track-result.show { display: block; animation: fadeUp 0.5s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px);} to { opacity: 1; transform: none; } }

.track-summary {
  display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between;
  padding: 22px 24px; margin-bottom: 30px;
  background: var(--navy-deep); border: 1px solid var(--line-soft); border-radius: var(--radius-sm);
}
.track-summary .ts-item span { display: block; font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--grey); margin-bottom: 5px; }
.track-summary .ts-item b { color: var(--white); font-size: 1.02rem; font-family: var(--font-head); font-weight: 600; }
.track-summary .ts-status b { color: var(--gold-light); }

.track-timeline { position: relative; padding-left: 6px; }
.track-step { position: relative; padding: 0 0 26px 34px; border-left: 2px solid var(--line-soft); }
.track-step:last-child { border-left-color: transparent; padding-bottom: 0; }
.track-step::before {
  content: ""; position: absolute; left: -8px; top: 2px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--charcoal); border: 2px solid var(--grey);
}
.track-step.done::before { background: var(--gold); border-color: var(--gold); }
.track-step.current::before { background: var(--gold-light); border-color: var(--gold-light); box-shadow: 0 0 0 5px rgba(200,162,74,0.2); }
.track-step h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 4px; font-family: var(--font-body); font-weight: 600; }
.track-step .ts-meta { font-size: 0.85rem; color: var(--grey); }
.track-step.pending h4 { color: var(--grey); }
.track-error { display:none; margin-top:20px; color:#e8a1a1; background: rgba(180,60,60,0.12); border:1px solid rgba(180,60,60,0.3); border-radius: var(--radius-sm); padding: 14px 16px; font-size: 0.92rem; }
.track-error.show { display: block; }

/* ----- Reveal animation -------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ----- Responsive -------------------------------------------------------- */
@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .split--reverse .split__media { order: 0; }
  .split__media, .split__media .img-placeholder { min-height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: 76px; right: 0;
    width: min(80vw, 320px);
    height: calc(100vh - 76px);
    flex-direction: column;
    align-items: stretch;
    background: var(--navy);
    border-left: 1px solid var(--line-soft);
    padding: 24px 20px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    overflow-y: auto;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { padding: 14px 12px; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
  .nav__cta { margin: 14px 0 0; }
  .nav__cta .btn { width: 100%; justify-content: center; }
  .section { padding: 64px 0; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .checklist--2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 40px 0; }
  .hero__cta .btn { flex: 1 1 auto; justify-content: center; }
}

@media (max-width: 420px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
}

.brand__logo{height:56px;width:auto;display:block;}
@media(max-width:760px){.brand__logo{height:44px;}}


/* LOGO SIZE OVERRIDE */
.site-header .nav{height:140px;}
.brand__logo{height:120px;width:auto;}
@media(max-width:760px){.site-header .nav{height:80px;} .brand__logo{height:60px;}}
/* END LOGO OVERRIDE */
