/* ============================================================
   FLIX UMZÜGE — Stylesheet v3.0 — Clean & Professional
   ============================================================ */

:root {
  --orange:    #f97316;
  --orange-dk: #e56100;
  --orange-lt: #fff7f0;
  --navy:      #0c1f35;
  --navy-2:    #142840;
  --ink:       #1a2533;
  --ink-mid:   #445566;
  --ink-soft:  #6b7f90;
  --line:      #e2e8f0;
  --surface:   #f8fafc;
  --white:     #ffffff;

  --font-body:  system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --font-serif: Georgia, 'Times New Roman', serif;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;

  --sh-sm: 0 1px 4px rgba(0,0,0,.08);
  --sh-md: 0 4px 20px rgba(0,0,0,.10);
  --sh-lg: 0 12px 40px rgba(0,0,0,.13);

  --max-w: 1180px;
  --max-w-sm: 740px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { line-height: 1.2; color: var(--ink); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-family: var(--font-serif); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-family: var(--font-serif); font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 600; }
h4 { font-size: .95rem; font-weight: 600; }
p { color: var(--ink-mid); }
.lead { font-size: 1.1rem; color: var(--ink-mid); line-height: 1.75; }

/* ── LAYOUT ── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container--sm { max-width: var(--max-w-sm); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--r-sm);
  font-size: .9rem; font-weight: 600; letter-spacing: .01em;
  transition: all .18s ease; cursor: pointer; white-space: nowrap;
}
.btn--primary { background: var(--orange); color: var(--white); border: 2px solid var(--orange); }
.btn--primary:hover { background: var(--orange-dk); border-color: var(--orange-dk); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(249,115,22,.35); }
.btn--outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.45); }
.btn--outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn--ghost { background: transparent; color: var(--ink); border: 2px solid var(--line); }
.btn--ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn--white { background: var(--white); color: var(--orange); border: 2px solid var(--white); }
.btn--white:hover { background: #fff7f0; }
.btn--lg { padding: 15px 32px; font-size: .95rem; }
.btn--sm { padding: 9px 18px; font-size: .82rem; }

/* ── KICKER ── */
.kicker { display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.kicker--light { color: rgba(255,255,255,.6); }

/* ── SECTIONS ── */
.section { padding: 88px 0; }
.section--sm { padding: 56px 0; }
.section--alt { background: var(--surface); }
.section--dark { background: var(--navy); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,.65); }
.section-header { margin-bottom: 52px; }
.section-header--center { text-align: center; }
.section-header--center p { max-width: 560px; margin: 14px auto 0; }
.section-header p { margin-top: 12px; max-width: 500px; }

/* ══════════════════════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════════
   HEADER — White background, logo+text stacked, dark links
══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,.10); }

.nav-wrap {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 88px; gap: 0;
}

/* Logo — image + text stacked below */
.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-brand img { width: 56px; height: 56px; object-fit: contain; }

/* Desktop nav — <nav class="nav-links"> wraps a <ul> */
.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-links > ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links > ul > li { position: relative; }
.nav-links > ul > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 13px; font-size: .875rem; font-weight: 500;
  color: var(--ink-mid); white-space: nowrap;
  transition: color .15s;
}
.nav-links > ul > li > a:hover { color: var(--ink); }
.nav-links > ul > li > a.active { color: var(--orange); font-weight: 600; }
/* Chevron icon in nav — must be tiny! */
.chev {
  display: inline-block;
  width: 11px !important; height: 11px !important;
  vertical-align: middle;
  flex-shrink: 0;
  transition: transform .2s;
  stroke: currentColor; fill: none; stroke-width: 2.5;
  overflow: visible;
}
.nav-links > ul > li:hover > a .chev { transform: rotate(180deg); }

/* Dropdown — hidden by default, only shows on .has-drop hover */
.nav-drop {
  display: none;
  position: absolute; top: calc(100% + 2px); left: 0;
  min-width: 210px; background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 6px;
  box-shadow: 0 8px 28px rgba(0,0,0,.14);
  z-index: 200;
  list-style: none;
}
.nav-links > ul > li.has-drop:hover .nav-drop,
.nav-links > ul > li.has-drop:focus-within .nav-drop {
  display: block;
}
.nav-drop a {
  display: block; padding: 9px 14px; font-size: .845rem;
  color: var(--ink-mid); border-radius: 6px; transition: all .15s;
  white-space: nowrap;
}
.nav-drop a:hover { background: var(--surface); color: var(--orange); }



/* Hamburger — dark bars for white header */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .25s; }
.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); }

/* Mobile nav — stays dark for readability */
.nav-mobile {
  display: none; position: fixed; top: 88px; left: 0; right: 0; bottom: 0;
  background: var(--white); border-top: 1px solid var(--line);
  padding: 12px 20px 32px; overflow-y: auto; z-index: 99;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block; padding: 13px 4px; font-size: .95rem; font-weight: 500;
  color: var(--ink-mid); border-bottom: 1px solid var(--line);
}
.nav-mobile a:hover { color: var(--orange); }
.nav-mobile details summary {
  display: block; padding: 13px 4px; cursor: pointer;
  color: var(--ink-mid); font-size: .95rem; font-weight: 500;
  font-family: var(--font-body);
  border-bottom: 1px solid var(--line);
  list-style: none;
}
.nav-mobile details summary::-webkit-details-marker { display: none; }
.nav-mobile details[open] summary { color: var(--orange); }
.nav-mobile .sub-links { padding-left: 16px; }
.nav-mobile .sub-links a { font-size: .87rem; color: var(--ink-soft); padding: 10px 4px; border-bottom-color: #f0f0f0; }
.nav-mobile .mobile-cta { margin-top: 20px; display: block; text-align: center; }

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 88px; position: relative; overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/hero-transport.webp');
  background-size: cover; background-position: center;
  opacity: .35;
}
.hero-overlay {
  position: absolute; inset: 0;
background: linear-gradient(130deg, rgba(12,31,53,.65) 0%, rgba(12,31,53,.45) 55%, rgba(12,31,53,.25) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 72px 0 96px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,.14); border: 1px solid rgba(249,115,22,.3);
  color: #ffb07a; font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 24px;
}
.hero-badge::before { content:''; width:6px; height:6px; background: var(--orange); border-radius:50%; }
.hero h1 { color: var(--white); max-width: 640px; margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: #ffb07a; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.72); max-width: 520px; margin-bottom: 36px; line-height: 1.75; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  padding-top: 36px; border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat strong { display: block; font-size: 1.6rem; font-weight: 700; color: var(--orange); line-height: 1; margin-bottom: 3px; }
.hero-stat span { font-size: .8rem; color: rgba(255,255,255,.5); }

/* ══════════════════════════════════════════════════════════
   SERVICE CARDS
══════════════════════════════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.service-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px 24px;
  transition: all .22s ease; position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--orange);
  transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.service-card:hover { box-shadow: var(--sh-md); border-color: transparent; transform: translateY(-3px); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 48px; height: 48px; background: var(--orange-lt);
  border-radius: var(--r-md); display: flex; align-items: center;
  justify-content: center; margin-bottom: 18px; color: var(--orange);
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 { margin-bottom: 9px; }
.service-card p { font-size: .875rem; line-height: 1.65; }
.card-link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 16px; font-size: .845rem; font-weight: 600; color: var(--orange);
}
.card-link svg { width: 14px; height: 14px; transition: transform .18s; }
.card-link:hover svg { transform: translateX(3px); }

/* ══════════════════════════════════════════════════════════
   WHY US
══════════════════════════════════════════════════════════ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why-image { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); aspect-ratio: 4/3; }
.why-image img { width: 100%; height: 100%; object-fit: cover; }
.why-features { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.why-feature { display: flex; gap: 14px; align-items: flex-start; }
.why-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: var(--orange-lt); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); margin-top: 2px;
}
.why-icon svg { width: 18px; height: 18px; }
.why-feature h4 { margin-bottom: 3px; }
.why-feature p { font-size: .875rem; }

/* ══════════════════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════════════════ */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.process-grid::before {
  content: ''; position: absolute; top: 31px; left: 12.5%; right: 12.5%;
  height: 2px; background: var(--line); z-index: 0;
}
.section--alt .process-grid::before { background: var(--line); }
.process-step { padding: 0 20px; text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 62px; height: 62px; background: var(--white); border: 2px solid var(--orange);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; color: var(--orange);
  margin: 0 auto 18px;
}
.section--alt .step-num { background: var(--surface); }
.process-step h3 { margin-bottom: 8px; }
.process-step p { font-size: .875rem; }

/* ══════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; padding: 20px 0;
  text-align: left; font-size: .95rem; font-weight: 600;
  color: var(--ink); gap: 20px; background: none; border: none; cursor: pointer;
}
.faq-ico {
  width: 26px; height: 26px; min-width: 26px; background: var(--surface);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft); transition: all .2s;
}
.faq-ico svg { width: 12px; height: 12px; transition: transform .22s; }
.faq-q[aria-expanded="true"] .faq-ico { background: var(--orange); color: var(--white); }
.faq-q[aria-expanded="true"] .faq-ico svg { transform: rotate(45deg); }
.faq-ans { overflow: hidden; max-height: 0; transition: max-height .3s ease; }
.faq-ans p { padding-bottom: 18px; font-size: .9rem; line-height: 1.75; }
.faq-ans.open { max-height: 300px; }

/* ══════════════════════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════════════════════ */
.cta-band { background: var(--orange); padding: 64px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.cta-inner h2 { color: var(--white); font-size: clamp(1.4rem, 2.5vw, 2rem); }
.cta-inner p { color: rgba(255,255,255,.82); margin-top: 6px; font-size: .95rem; }

/* ══════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 72px; align-items: start; }
.contact-info h2 { margin-bottom: 14px; }
.contact-info .lead { margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 18px; }
.ci {
  display: flex; align-items: center; gap: 14px;
}
.ci-icon {
  width: 42px; height: 42px; min-width: 42px;
  background: var(--orange-lt); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; color: var(--orange);
}
.ci-icon svg { width: 18px; height: 18px; }
.ci strong { display: block; font-size: .75rem; font-weight: 700; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 1px; }
.ci a, .ci span { font-size: .9rem; color: var(--ink-mid); }
.ci a:hover { color: var(--orange); }

/* Form */
.form-wrap { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 36px; box-shadow: var(--sh-md); }
.form-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 22px; color: var(--ink); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 5px; }
.fg--full { grid-column: 1/-1; }
.fg label { font-size: .8rem; font-weight: 600; color: var(--ink); }
.fg input, .fg textarea, .fg select {
  padding: 11px 13px; border: 1.5px solid var(--line);
  border-radius: var(--r-sm); font-family: var(--font-body);
  font-size: .9rem; color: var(--ink); background: var(--surface);
  transition: border-color .18s, box-shadow .18s; outline: none;
}
.fg input:focus, .fg textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(249,115,22,.1); background: var(--white); }
.fg textarea { resize: vertical; min-height: 110px; }
.form-submit { margin-top: 6px; width: 100%; justify-content: center; }
.form-note { font-size: .75rem; color: var(--ink-soft); text-align: center; margin-top: 10px; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.site-footer { background: #0a1828; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-brand img { width: 38px; margin-bottom: 12px; }
.footer-brand strong { display: block; font-size: 1rem; color: var(--white); margin-bottom: 10px; }
.footer-brand p { font-size: .845rem; color: rgba(255,255,255,.4); line-height: 1.7; }
.footer-col h4 { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.3); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: .845rem; color: rgba(255,255,255,.5); transition: color .15s; }
.footer-col ul a:hover { color: var(--orange); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; font-size: .78rem; color: rgba(255,255,255,.28); flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,.28); }
.footer-bottom a:hover { color: var(--orange); }

/* ══════════════════════════════════════════════════════════
   BREADCRUMBS
══════════════════════════════════════════════════════════ */
.breadcrumbs { display: flex; align-items: center; gap: 6px; font-size: .8rem; color: rgba(255,255,255,.45); padding: 14px 0; flex-wrap: wrap; }
.breadcrumbs a { color: rgba(255,255,255,.45); transition: color .15s; }
.breadcrumbs a:hover { color: rgba(255,255,255,.8); }
.breadcrumbs .sep { opacity: .4; }
.breadcrumbs .cur { color: rgba(255,255,255,.75); font-weight: 500; }

/* ══════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════════════════ */
.page-top {
  background: var(--navy); padding: 136px 0 72px;
  border-bottom: 1px solid rgba(249,115,22,.2);
}
.page-top h1 { color: var(--white); margin-top: 12px; }
.page-top .sub { color: rgba(255,255,255,.62); margin-top: 12px; font-size: 1rem; max-width: 560px; }

/* ══════════════════════════════════════════════════════════
   CONTENT LAYOUT (inner pages)
══════════════════════════════════════════════════════════ */
.content-layout { display: grid; grid-template-columns: 1fr 280px; gap: 52px; align-items: start; }
.content-aside { position: sticky; top: 100px; }

/* Prose */
.prose h2 { margin: 36px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 24px 0 8px; }
.prose p { margin-bottom: 16px; font-size: .935rem; line-height: 1.8; }

/* Service image */
.svc-img { border-radius: var(--r-lg); overflow: hidden; margin-bottom: 32px; aspect-ratio: 16/7; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; }

/* Bullet columns */
.list-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; margin-bottom: 16px; }
.list-cols li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .875rem; color: var(--ink-mid); list-style: none;
}
.list-cols li::before { content: ''; width: 5px; height: 5px; min-width: 5px; background: var(--orange); border-radius: 50%; margin-top: 8px; }

/* ── SIDEBAR ── */
.sb-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; margin-bottom: 16px; }
.sb-card h4 { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--ink-soft); margin-bottom: 14px; }
.sb-links { display: flex; flex-direction: column; gap: 2px; }
.sb-links a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 10px; border-radius: var(--r-sm); font-size: .855rem;
  color: var(--ink-mid); transition: all .15s;
}
.sb-links a:hover { background: var(--white); color: var(--orange); box-shadow: var(--sh-sm); }
.sb-links a svg { width: 13px; height: 13px; opacity: .4; }

/* Contact sidebar card — clean, no huge icons */
.sb-contact {
  background: var(--navy); border-radius: var(--r-lg); padding: 24px;
}
.sb-contact h4 { color: var(--white); margin-bottom: 8px; font-size: .8rem; text-transform: uppercase; letter-spacing: .09em; }
.sb-contact p { font-size: .845rem; color: rgba(255,255,255,.55); margin-bottom: 18px; }
.sb-clink {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.06); margin-bottom: 8px;
  transition: background .15s;
}
.sb-clink:hover { background: rgba(255,255,255,.1); }
.sb-clink svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; }
.sb-clink span { font-size: .845rem; color: rgba(255,255,255,.8); font-weight: 500; }
.sb-contact .btn { margin-top: 14px; width: 100%; justify-content: center; font-size: .845rem; padding: 10px; }

/* ══════════════════════════════════════════════════════════
   LEGAL / LEGAL CONTENT
══════════════════════════════════════════════════════════ */
.legal-wrap { max-width: var(--max-w-sm); }
.legal-wrap h2 { font-size: 1.15rem; margin: 28px 0 8px; font-family: var(--font-body); }
.legal-wrap h2:first-child { margin-top: 0; }
.legal-wrap p { font-size: .915rem; line-height: 1.8; margin-bottom: 12px; }

/* ══════════════════════════════════════════════════════════
   404
══════════════════════════════════════════════════════════ */
.p404 { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; background: var(--navy); padding: 40px 24px; }
.p404 h1 { font-size: clamp(5rem,15vw,9rem); color: var(--orange); opacity: .25; line-height: 1; font-family: var(--font-body); font-weight: 700; }
.p404 h2 { color: var(--white); margin: -16px 0 12px; font-size: 1.4rem; }
.p404 p { color: rgba(255,255,255,.5); margin-bottom: 28px; }

/* ══════════════════════════════════════════════════════════
   AREAS GRID
══════════════════════════════════════════════════════════ */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(150px,1fr)); gap: 10px; margin-top: 8px; }
.area-link {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-sm); padding: 11px 14px; font-size: .845rem;
  color: rgba(255,255,255,.7); transition: all .15s; display: block;
}
.area-link:hover { border-color: var(--orange); color: var(--orange); background: rgba(249,115,22,.07); }

/* ══════════════════════════════════════════════════════════
   REVEAL ANIMATION
══════════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
══════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  z-index: 999;
  transition: transform .25s ease, box-shadow .25s ease;
  animation: wa-pulse 2.5s ease-in-out 2s infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.6);
}
.wa-float svg {
  width: 30px;
  height: 30px;
  color: white;
  display: block;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,.75), 0 0 0 8px rgba(37,211,102,.15); }
}
/* Tooltip on hover */
.wa-float::before {
  content: "WhatsApp";
  position: absolute;
  right: 68px;
  background: #1a1a1a;
  color: white;
  font-size: .78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
  font-family: var(--font-body);
}
.wa-float:hover::before { opacity: 1; }

/* ══════════════════════════════════════════════════════════
   MOBILE IMPROVEMENTS — COMPLETE
══════════════════════════════════════════════════════════ */

/* Hero mobile */
@media (max-width: 768px) {
  .hero { min-height: 100svh; padding-top: 80px; }
  .hero-inner { padding: 48px 0 72px; }
  .hero h1 { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .hero-sub { font-size: .95rem; }
.hero-actions {
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.hero-actions .btn {
  width: auto;
  align-self: center;
  justify-content: center;
  padding: 8px 14px;
  font-size: 0.9rem;
}
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-stat strong { font-size: 1.4rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card { padding: 22px 20px; }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr !important; gap: 36px; }
  .why-image { aspect-ratio: 16/8; }
  .why-features { gap: 16px; }

  /* Process */
  .process-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .process-grid::before { display: none; }
  .process-step { padding: 0 10px; }

  /* Section headings */
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-wrap { padding: 24px 18px; }
  .form-grid { grid-template-columns: 1fr; }

  /* CTA band */
  .cta-inner { flex-direction: column; text-align: center; gap: 24px; }
  .cta-inner .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Inner pages */
  .page-top { padding: 100px 0 52px; }
  .page-top h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .content-layout { grid-template-columns: 1fr; gap: 32px; }
  .content-aside { position: static; }
  .svc-img { aspect-ratio: 16/8; }
  .list-cols { grid-template-columns: 1fr; }

  /* WhatsApp - smaller on mobile */
  .wa-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
  .wa-float svg { width: 26px; height: 26px; }
  .wa-float::before { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: clamp(1.6rem, 8vw, 2.2rem); }
  .process-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .hero-stat strong { font-size: 1.3rem; }
  .hero-stat { min-width: 80px; }
  .services-grid { grid-template-columns: 1fr; }
  .section-header h2 { font-size: clamp(1.4rem, 6vw, 1.9rem); }
}

@media (max-width: 900px) {
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}


/* ══════════════════════════════════════════════════════════
   MOBILE NAV — drawer layout for phones/tablets
══════════════════════════════════════════════════════════ */
.mob-toggle,
.mob-sub { display: none; }

@media (max-width: 980px) {
  .nav-wrap { height: 78px; }
  .nav-links { display: none; }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(12,31,53,.08);
    border-radius: 14px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 10px 24px rgba(12,31,53,.08);
    z-index: 130;
  }

  body.nav-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(12,31,53,.12);
    backdrop-filter: blur(1px);
    z-index: 98;
  }

  .nav-mobile {
    display: block;
    position: fixed;
    top: 84px;
    right: 14px;
    left: auto;
    bottom: auto;
    width: min(88vw, 290px);
    max-height: calc(100dvh - 100px);
    padding: 12px;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(226,232,240,.95);
    border-radius: 22px;
    box-shadow: 0 24px 64px rgba(12,31,53,.18);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateY(-8px) scale(.98);
    transform-origin: top right;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .24s ease, opacity .18s ease, visibility .18s ease;
    z-index: 120;
  }
  .nav-mobile.open {
    display: block;
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-mobile > a,
  .mob-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    margin-bottom: 8px;
    border: 1px solid transparent;
    border-radius: 14px;
    background: transparent;
    color: var(--navy);
    font-size: .94rem;
    font-weight: 600;
    box-shadow: none;
    transition: background-color .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
  }
  .nav-mobile > a:hover,
  .nav-mobile > a.active,
  .mob-toggle:hover,
  .mob-toggle[aria-expanded='true'] {
    color: var(--orange);
    background: var(--orange-lt);
    border-color: rgba(249,115,22,.18);
    transform: translateY(-1px);
  }

  .mob-group { margin-bottom: 8px; }
  .mob-chev {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: rgba(249,115,22,.1);
    color: var(--orange);
    font-size: .9rem;
    transition: transform .2s ease;
    flex-shrink: 0;
  }
  .mob-sub {
    display: none;
    margin: -2px 0 10px;
    padding: 6px;
    border: 1px solid rgba(226,232,240,.9);
    border-radius: 16px;
    background: rgba(248,250,252,.92);
  }
  .mob-sub.open { display: block; }
  .mob-sub a {
    display: block;
    padding: 10px 12px;
    border-radius: 11px;
    border-bottom: 0;
    color: var(--ink-mid);
    font-size: .88rem;
    font-weight: 500;
  }
  .mob-sub a:hover,
  .mob-sub a.active {
    background: var(--white);
    color: var(--orange);
  }

  .mob-cta {
    justify-content: center !important;
    margin-top: 14px;
    margin-bottom: 0 !important;
    border: 0 !important;
    border-radius: 15px !important;
    color: var(--white) !important;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dk) 100%) !important;
    box-shadow: 0 14px 28px rgba(249,115,22,.22) !important;
  }
}

@media (max-width: 980px) {
  .site-header { backdrop-filter: saturate(1.1) blur(6px); }
}

@media (max-width: 560px) {
  .nav-mobile {
    top: 76px;
    right: 10px;
    width: min(calc(100vw - 20px), 280px);
    max-height: calc(100dvh - 88px);
    padding: 10px;
    border-radius: 18px;
  }
  .nav-mobile > a,
  .mob-toggle { min-height: 46px; }
}
