@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@700;800&display=swap');

:root {
  --navy-950: #061321;
  --navy-900: #0b1f33;
  --navy-850: #0f2942;
  --navy-800: #143652;
  --blue-600: #185b85;
  --orange-500: #f7a21b;
  --orange-400: #ffb33d;
  --cream: #fff8ec;
  --ink: #122131;
  --muted: #617184;
  --line: #dfe6ec;
  --surface: #f4f7f9;
  --white: #fff;
  --green: #25d366;
  --shadow-sm: 0 10px 34px rgba(10, 34, 55, .08);
  --shadow-lg: 0 30px 80px rgba(4, 24, 41, .18);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --container: 1240px;
  --transition: .25s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
svg { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }
.skip-link { position: fixed; top: -100px; left: 16px; z-index: 1000; padding: 10px 16px; color: var(--navy-900); background: var(--white); border-radius: 8px; }
.skip-link:focus { top: 12px; }

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--blue-600);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}
.section-kicker::before { width: 22px; height: 3px; content: ""; background: var(--orange-500); border-radius: 99px; }
.section-kicker-light { color: #c9d8e5; }
h1, h2, h3 { margin: 0; color: var(--navy-900); font-family: "Plus Jakarta Sans", "Manrope", sans-serif; line-height: 1.15; }
h2 { font-size: clamp(2rem, 3.4vw, 3.2rem); letter-spacing: -.045em; }
p { margin: 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 80px; margin-bottom: 48px; }
.section-heading > div { max-width: 650px; }
.section-heading > p { max-width: 490px; color: var(--muted); }
.section-heading.centered { display: block; max-width: 720px; margin: 0 auto 60px; text-align: center; }
.section-heading.centered p { max-width: 650px; margin: 18px auto 0; }

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn svg { transition: transform var(--transition); }
.btn:hover svg { transform: translateX(4px); }
.btn-primary { color: var(--navy-950); background: var(--orange-500); box-shadow: 0 14px 30px rgba(247, 162, 27, .22); }
.btn-primary:hover { background: var(--orange-400); box-shadow: 0 18px 36px rgba(247, 162, 27, .3); }
.btn-ghost { color: var(--white); border-color: rgba(255, 255, 255, .35); background: rgba(255, 255, 255, .08); backdrop-filter: blur(8px); }
.btn-ghost:hover { border-color: rgba(255, 255, 255, .7); background: rgba(255, 255, 255, .14); }
.btn-light { color: var(--navy-900); background: var(--white); box-shadow: var(--shadow-sm); }
.btn-light:hover { background: var(--cream); }
.btn-small { min-height: 44px; padding: 10px 18px; }

/* Header */
.site-header { position: fixed; top: 0; right: 0; left: 0; z-index: 100; color: var(--white); border-bottom: 1px solid rgba(255, 255, 255, .14); transition: background .3s ease, box-shadow .3s ease, color .3s ease; }
.site-header.scrolled { color: var(--navy-900); background: rgba(255, 255, 255, .96); box-shadow: 0 8px 30px rgba(7, 31, 50, .08); backdrop-filter: blur(12px); }
.header-inner { display: flex; min-height: 86px; align-items: center; justify-content: space-between; gap: 30px; }
.main-nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 36px); margin-left: auto; }
.main-nav a { position: relative; font-size: .84rem; font-weight: 700; }
.main-nav a::after { position: absolute; right: 0; bottom: -9px; left: 0; width: 0; height: 2px; margin: auto; content: ""; background: var(--orange-500); transition: width var(--transition); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 15px; }
.header-phone { display: flex; align-items: center; gap: 9px; font-size: .85rem; font-weight: 800; line-height: 1.2; white-space: nowrap; }
.header-phone > svg { width: 20px; height: 20px; color: var(--orange-500); }
.header-phone span { display: grid; }
.header-phone small { margin-bottom: 3px; font-size: .62rem; font-weight: 500; opacity: .68; }
.menu-toggle { display: none; width: 45px; height: 45px; padding: 0; place-items: center; color: inherit; border: 1px solid rgba(255, 255, 255, .25); background: transparent; border-radius: 10px; }
.scrolled .menu-toggle { border-color: var(--line); }
.menu-toggle svg { width: 25px; height: 25px; }
.menu-close { display: none; }

/* Hero */
.hero { position: relative; display: grid; min-height: 780px; place-items: center; overflow: hidden; color: var(--white); background: var(--navy-950); }
.hero-image, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: 58% center; }
.hero-overlay { background: linear-gradient(90deg, rgba(5, 19, 32, .96) 0%, rgba(7, 26, 43, .89) 34%, rgba(8, 27, 44, .47) 59%, rgba(5, 18, 30, .14) 80%), linear-gradient(0deg, rgba(5, 17, 28, .44), transparent 42%); }
.hero::before { position: absolute; z-index: 1; bottom: -140px; left: -50px; width: 520px; height: 330px; content: ""; opacity: .14; border: 1px solid var(--orange-500); border-radius: 50%; transform: rotate(12deg); }
.hero-content { position: relative; z-index: 2; padding-top: 60px; }
.hero-copy { max-width: 710px; }
.eyebrow { display: flex; align-items: center; gap: 11px; margin-bottom: 24px; color: #e5edf4; font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow span { display: block; width: 30px; height: 3px; background: var(--orange-500); border-radius: 99px; }
.hero h1 { max-width: 700px; color: var(--white); font-size: clamp(3rem, 5.4vw, 5.25rem); letter-spacing: -.065em; }
.hero h1 em { color: var(--orange-500); font-style: normal; }
.hero-copy > p { max-width: 650px; margin-top: 25px; color: #d4dee6; font-size: 1.08rem; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.hero-assurances { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 35px; padding-top: 27px; border-top: 1px solid rgba(255, 255, 255, .17); }
.hero-assurances span { display: inline-flex; align-items: center; gap: 8px; color: #dce5ec; font-size: .78rem; font-weight: 700; }
.hero-assurances svg { width: 17px; height: 17px; color: var(--orange-500); stroke-width: 2.6; }
.scroll-cue { position: absolute; z-index: 3; right: 32px; bottom: 34px; display: flex; align-items: center; gap: 10px; color: rgba(255, 255, 255, .66); font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; transform: rotate(90deg) translateX(-100%); transform-origin: right bottom; }
.scroll-cue span { position: relative; width: 44px; height: 1px; overflow: hidden; background: rgba(255,255,255,.3); }
.scroll-cue span::after { position: absolute; inset: 0; content: ""; background: var(--orange-500); animation: scrollLine 2s infinite; transform: translateX(-100%); }
@keyframes scrollLine { 0% { transform: translateX(-100%); } 60%,100% { transform: translateX(100%); } }

/* Quote form */
.quote-wrap { position: relative; z-index: 5; margin-top: -42px; }
.quote-panel { padding: 34px; background: var(--white); box-shadow: var(--shadow-lg); border-radius: var(--radius); }
.quote-intro { display: flex; align-items: center; gap: 17px; padding-bottom: 25px; }
.quote-intro .section-kicker { margin: 0; }
.quote-icon { display: grid; width: 58px; height: 58px; flex: 0 0 auto; place-items: center; color: var(--navy-900); background: var(--cream); border-radius: 16px; }
.quote-icon svg { width: 28px; height: 28px; color: var(--orange-500); }
.quote-intro h2 { margin-top: 2px; font-size: 1.45rem; letter-spacing: -.035em; }
.quote-intro p { margin-top: 4px; color: var(--muted); font-size: .8rem; }
.quote-form { display: grid; grid-template-columns: 1fr 1fr 1.1fr 1fr auto; gap: 12px; }
.quote-form label { display: grid; min-width: 0; }
.quote-form label > span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
.quote-form input, .quote-form select { width: 100%; min-width: 0; height: 56px; padding: 0 16px; color: var(--ink); border: 1px solid var(--line); outline: none; background: #f9fbfc; border-radius: 10px; transition: border var(--transition), box-shadow var(--transition), background var(--transition); }
.quote-form input::placeholder { color: #8b98a5; }
.quote-form input:focus, .quote-form select:focus { border-color: var(--orange-500); background: var(--white); box-shadow: 0 0 0 3px rgba(247, 162, 27, .13); }
.quote-submit { min-height: 56px; white-space: nowrap; border: 0; }
.form-note { margin-top: 12px; color: #87929e; font-size: .7rem; text-align: right; }

/* Services */
.services { padding-top: 105px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 315px; padding: 34px; overflow: hidden; border: 1px solid var(--line); background: var(--white); border-radius: var(--radius); transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.service-card::after { position: absolute; right: -50px; bottom: -50px; width: 130px; height: 130px; content: ""; opacity: 0; border: 26px solid var(--orange-500); border-radius: 50%; transition: opacity .3s ease; }
.service-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-7px); }
.service-card:hover::after { opacity: .08; }
.service-card.featured { color: var(--white); border-color: var(--navy-900); background: var(--navy-900); }
.service-card.featured h3 { color: var(--white); }
.service-card.featured p { color: #b9c7d2; }
.service-card.featured .service-icon { color: var(--navy-900); background: var(--orange-500); }
.service-number { position: absolute; top: 25px; right: 28px; color: #c8d1d9; font-size: .68rem; font-weight: 800; letter-spacing: .12em; }
.featured .service-number { color: #60778a; }
.service-icon { display: grid; width: 58px; height: 58px; margin-bottom: 26px; place-items: center; color: var(--blue-600); background: #eef5f8; border-radius: 16px; }
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 13px; font-size: 1.22rem; letter-spacing: -.025em; }
.service-card p { color: var(--muted); font-size: .88rem; line-height: 1.75; }
.service-card > a { position: absolute; z-index: 1; bottom: 30px; left: 34px; display: inline-flex; align-items: center; gap: 8px; color: var(--blue-600); font-size: .76rem; font-weight: 800; }
.service-card.featured > a { color: var(--orange-500); }
.service-card > a svg { width: 16px; height: 16px; transition: transform var(--transition); }
.service-card > a:hover svg { transform: translateX(4px); }

/* Why / route */
.why { position: relative; overflow: hidden; color: var(--white); background: var(--navy-900); }
.why::before { position: absolute; top: -220px; left: -160px; width: 500px; height: 500px; content: ""; border: 1px solid rgba(247, 162, 27, .12); border-radius: 50%; }
.why-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 90px; }
.why-copy h2 { max-width: 570px; color: var(--white); }
.why-lead { max-width: 590px; margin-top: 22px; color: #b9c7d2; }
.why-list { display: grid; gap: 4px; margin: 33px 0; }
.why-list article { display: flex; gap: 17px; padding: 17px 0; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.why-list article > span { display: grid; width: 46px; height: 46px; flex: 0 0 auto; place-items: center; color: var(--orange-500); border: 1px solid rgba(247, 162, 27, .25); border-radius: 12px; }
.why-list article svg { width: 22px; height: 22px; }
.why-list h3 { margin-bottom: 5px; color: var(--white); font-size: .96rem; }
.why-list p { color: #93a7b7; font-size: .8rem; }
.route-visual { position: relative; min-height: 540px; padding: 28px; overflow: hidden; border: 1px solid rgba(255, 255, 255, .12); background: linear-gradient(145deg, #123650, #091b2d); border-radius: var(--radius-lg); box-shadow: 0 35px 70px rgba(0,0,0,.2); }
.route-glow { position: absolute; top: 20%; left: 25%; width: 320px; height: 320px; opacity: .16; background: var(--orange-500); border-radius: 50%; filter: blur(100px); }
.route-topline { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; padding-bottom: 20px; color: #8fa5b6; border-bottom: 1px solid rgba(255, 255, 255, .1); font-size: .7rem; text-transform: uppercase; letter-spacing: .11em; }
.route-topline strong { color: var(--white); font-size: .78rem; }
.route-map { position: relative; height: 390px; }
.route-map > svg { position: absolute; inset: 12px 0 0; width: 100%; height: 100%; }
.turkey-route-map { display: grid; align-items: center; }
.turkey-map { overflow: visible; }
.turkey-shape { fill: url(#turkeyFill); stroke: rgba(125, 169, 193, .3); stroke-width: 1.25; stroke-linejoin: round; }
.turkey-coast-highlight { display: none; }
.route-layer { opacity: .92; }
.turkey-route { fill: none; stroke: var(--orange-500); stroke-width: 1.7; stroke-dasharray: 5 9; stroke-linecap: round; vector-effect: non-scaling-stroke; animation: turkeyRouteFlow 22s linear infinite; }
.turkey-route.trunk-route { opacity: .95; stroke-width: 2.3; stroke-dasharray: none; }
.turkey-route.direct-route { opacity: .72; stroke: #79b7d4; }
.turkey-route.east-trunk-route { opacity: .9; stroke: #79b7d4; stroke-width: 2.2; stroke-dasharray: none; }
.turkey-route.east-route { opacity: .72; stroke: #79b7d4; }
.route-motion { fill: none; stroke: none; }
@keyframes turkeyRouteFlow { to { stroke-dashoffset: -180; } }
.delivery-dot { fill: #ffe0a1; filter: url(#mapGlow); }
.delivery-dot.small { fill: #fff; }
.delivery-dot.direct-dot { fill: #b8e8ff; }
.delivery-dot.east-dot { fill: #b8e8ff; }
.city-node:not(.main-node):not(.hub-node):not(.east-hub-node) .node-ring { display: none; }
.city-node .node-core { fill: #fff; stroke: none; filter: url(#mapGlow); }
.city-node.main-node .node-ring { fill: rgba(247, 162, 27, .15); stroke: var(--orange-500); stroke-width: 1.7; }
.city-node.main-node .node-core { fill: var(--orange-500); }
.city-node.hub-node .node-ring { fill: rgba(247, 162, 27, .12); stroke: rgba(247, 162, 27, .75); stroke-width: 1.3; }
.city-node.hub-node .node-core { fill: var(--orange-500); }
.city-node.east-hub-node .node-ring { fill: rgba(121, 183, 212, .12); stroke: rgba(121, 183, 212, .8); stroke-width: 1.3; }
.city-node.east-hub-node .node-core { fill: #9bd6f0; }
.node-wave { fill: rgba(247, 162, 27, .1); stroke: rgba(247, 162, 27, .38); stroke-width: 1; transform-box: fill-box; transform-origin: center; animation: mapNodePulse 2.4s ease-out infinite; }
@keyframes mapNodePulse { 0% { opacity: .95; transform: scale(.55); } 85%, 100% { opacity: 0; transform: scale(1.7); } }
.map-label rect { fill: rgba(6, 22, 35, .92); stroke: none; }
.map-label text { fill: #bcd0dc; stroke: none; font-family: "Manrope", "Segoe UI", sans-serif; font-size: 9.5px; font-weight: 700; }
.map-label.main-label text { fill: #fff; }
.map-label.east-label rect { fill: rgba(13, 48, 68, .95); }
.map-label.east-label text { fill: #c8e8f5; }
.map-label .label-sub { fill: var(--orange-500); font-size: 6.5px; font-weight: 800; letter-spacing: .5px; }
.map-waypoint-label { fill: #91a9b8; stroke: none; font-family: "Manrope", "Segoe UI", sans-serif; font-size: 8.5px; font-weight: 700; }
.map-waypoint-label.hub-label { fill: #f0bd66; }
.map-waypoint-label.east-waypoint { fill: #8dbdd2; font-size: 7.7px; }
.route-footer { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; padding: 18px 8px 0; border-top: 1px solid rgba(255, 255, 255, .1); }
.route-footer div { display: grid; }
.route-footer small { margin-bottom: 2px; color: #7891a3; font-size: .56rem; text-transform: uppercase; letter-spacing: .09em; }
.route-footer strong { color: var(--white); font-size: .72rem; }
.route-footer > span { width: 1px; height: 29px; background: rgba(255,255,255,.1); }

/* Process */
.process { background: var(--surface); }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-grid::before { position: absolute; top: 49px; right: 12%; left: 12%; height: 1px; content: ""; background: repeating-linear-gradient(90deg, #b8c5ce 0 5px, transparent 5px 11px); }
.process-step { position: relative; z-index: 1; padding: 0 20px; text-align: center; }
.step-icon { display: grid; width: 98px; height: 98px; margin: 0 auto 27px; place-items: center; color: var(--blue-600); border: 1px solid var(--line); background: var(--white); border-radius: 28px; box-shadow: var(--shadow-sm); transition: transform var(--transition), color var(--transition), background var(--transition); }
.process-step:hover .step-icon { color: var(--navy-900); background: var(--orange-500); transform: translateY(-5px) rotate(-2deg); }
.step-icon svg { width: 34px; height: 34px; }
.step-no { position: absolute; z-index: 2; top: -8px; right: calc(50% - 57px); display: grid; width: 26px; height: 26px; place-items: center; color: var(--white); background: var(--navy-900); border: 3px solid var(--surface); border-radius: 50%; font-size: .52rem; font-weight: 800; }
.process-step h3 { margin-bottom: 10px; font-size: 1.05rem; }
.process-step p { color: var(--muted); font-size: .8rem; }

/* CTA */
.cta-band { position: relative; overflow: hidden; padding: 74px 0; color: var(--white); background: var(--blue-600); }
.cta-band::after { position: absolute; top: -140px; right: -40px; width: 480px; height: 480px; content: ""; opacity: .24; border: 70px solid var(--orange-500); border-radius: 50%; }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 70px; }
.cta-inner h2 { max-width: 670px; color: var(--white); font-size: clamp(1.8rem, 3vw, 2.8rem); }
.cta-actions { display: flex; flex: 0 0 auto; align-items: center; gap: 26px; }
.cta-phone { display: flex; align-items: center; gap: 10px; font-weight: 800; line-height: 1.25; }
.cta-phone > svg { width: 24px; height: 24px; color: var(--orange-500); }
.cta-phone span { display: grid; }
.cta-phone small { color: #bfdbeb; font-size: .64rem; font-weight: 600; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
.faq-intro { position: sticky; top: 120px; align-self: start; }
.faq-intro p { margin-top: 20px; color: var(--muted); }
.faq-intro > a { display: inline-flex; align-items: center; gap: 9px; margin-top: 26px; color: var(--blue-600); font-size: .8rem; font-weight: 800; }
.faq-intro > a svg { width: 17px; height: 17px; }
.accordion { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 0; color: var(--navy-900); border: 0; background: transparent; font-family: "Plus Jakarta Sans", "Manrope", sans-serif; font-size: .98rem; font-weight: 800; text-align: left; }
.faq-item button i { position: relative; width: 28px; height: 28px; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 50%; transition: background var(--transition), border var(--transition); }
.faq-item button i::before, .faq-item button i::after { position: absolute; top: 50%; left: 50%; width: 10px; height: 1.5px; content: ""; background: var(--navy-900); transform: translate(-50%, -50%); transition: transform var(--transition); }
.faq-item button i::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item button[aria-expanded="true"] i { border-color: var(--orange-500); background: var(--orange-500); }
.faq-item button[aria-expanded="true"] i::after { transform: translate(-50%, -50%) rotate(0); }
.faq-answer { padding: 0 50px 25px 0; color: var(--muted); font-size: .86rem; }
.faq-answer[hidden] { display: none; }

/* Contact */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 90px; }
.contact-copy p { max-width: 500px; margin-top: 20px; color: var(--muted); }
.contact-cards { display: grid; gap: 12px; }
.contact-card { display: flex; min-width: 0; align-items: center; gap: 17px; padding: 20px 23px; border: 1px solid rgba(15, 41, 66, .08); background: var(--white); border-radius: 16px; transition: transform var(--transition), box-shadow var(--transition); }
a.contact-card:hover { box-shadow: var(--shadow-sm); transform: translateX(5px); }
.contact-card > span { display: grid; width: 50px; height: 50px; flex: 0 0 auto; place-items: center; color: var(--blue-600); background: #eef5f8; border-radius: 13px; }
.contact-card > span svg { width: 22px; height: 22px; }
.contact-card > div { display: grid; min-width: 0; }
.contact-card small { color: var(--muted); font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.contact-card strong { overflow: hidden; color: var(--navy-900); font-size: .92rem; text-overflow: ellipsis; white-space: nowrap; }
.contact-card em { color: #8b98a5; font-size: .67rem; font-style: normal; }
.contact-arrow { width: 18px; height: 18px; margin-left: auto; color: #9eabb6; }

/* Footer */
.site-footer { color: #9fb1bf; background: var(--navy-950); }
.footer-main { display: grid; grid-template-columns: 1.35fr .8fr .9fr 1.2fr; gap: 55px; padding-top: 76px; padding-bottom: 60px; }
.footer-brand .brand { color: var(--white); }
.footer-brand p { max-width: 310px; margin-top: 22px; font-size: .8rem; }
.footer-main h3 { margin-bottom: 22px; color: var(--white); font-size: .82rem; letter-spacing: -.01em; }
.footer-links { display: grid; align-content: start; gap: 10px; }
.footer-links h3 { margin-bottom: 12px; }
.footer-links a { font-size: .74rem; transition: color var(--transition), transform var(--transition); }
.footer-links a:hover { color: var(--orange-500); transform: translateX(3px); }
.footer-contact { display: grid; align-content: start; gap: 13px; }
.footer-contact h3 { margin-bottom: 9px; }
.footer-contact a, .footer-contact p { display: flex; align-items: flex-start; gap: 10px; overflow-wrap: anywhere; font-size: .73rem; }
.footer-contact svg { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 3px; color: var(--orange-500); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 21px; padding-bottom: 21px; border-top: 1px solid rgba(255, 255, 255, .08); font-size: .68rem; }
.footer-bottom a { color: var(--white); }
.footer-legal { display:flex; align-items:center; gap:14px; }
.footer-legal button { padding:0; color:var(--white); border:0; background:none; font:inherit; cursor:pointer; }
.footer-legal button:hover,.footer-legal a:hover { color:var(--orange-500); }
.footer-legal span { color:#9fb1bf; }

.cookie-consent { position:fixed; z-index:200; right:24px; bottom:24px; left:24px; display:grid; grid-template-columns:auto minmax(0,1fr) auto; align-items:center; gap:20px; width:min(1120px,calc(100% - 48px)); margin-inline:auto; padding:22px 24px; color:#dce7ee; border:1px solid rgba(255,255,255,.13); background:rgba(7,24,39,.98); border-radius:18px; box-shadow:0 22px 70px rgba(2,13,22,.34); backdrop-filter:blur(15px); }
.cookie-consent[hidden] { display:none; }
.cookie-consent-icon { display:grid; width:44px; height:44px; place-items:center; color:var(--orange-500); border:1px solid rgba(247,162,27,.35); background:rgba(247,162,27,.08); border-radius:13px; }
.cookie-consent-copy { display:grid; gap:4px; }
.cookie-consent-copy strong { color:#fff; font-size:.86rem; }
.cookie-consent-copy p { max-width:700px; margin:0; color:#a9bdca; font-size:.68rem; line-height:1.65; }
.cookie-consent-copy a { width:max-content; color:var(--orange-500); font-size:.62rem; font-weight:800; }
.cookie-consent-copy small { display:none; color:#ff9b9b; font-size:.6rem; }
.cookie-consent.has-error .cookie-consent-copy small { display:block; }
.cookie-consent-actions { display:flex; gap:10px; }
.cookie-consent-actions button { min-height:43px; padding:10px 15px; border-radius:8px; font-size:.66rem; font-weight:800; white-space:nowrap; }
.cookie-consent-actions button:disabled { opacity:.55; cursor:wait; }
.cookie-primary { color:var(--navy-950); border:1px solid var(--orange-500); background:var(--orange-500); }
.cookie-secondary { color:#e4edf2; border:1px solid rgba(255,255,255,.2); background:transparent; }
body:has(.cookie-consent:not([hidden])) .whatsapp-float { bottom:180px; }

/* Floating controls and reveal */
.whatsapp-float { position: fixed; z-index: 40; right: 24px; bottom: 24px; display: flex; min-height: 50px; align-items: center; gap: 9px; padding: 10px 17px 10px 12px; color: var(--white); background: var(--green); border-radius: 99px; box-shadow: 0 10px 30px rgba(22, 136, 62, .3); font-size: .75rem; font-weight: 800; transition: transform var(--transition); }
.whatsapp-float:hover { transform: translateY(-3px); }
.whatsapp-float svg { width: 28px; height: 28px; stroke: none; }
.back-to-top { position: fixed; z-index: 39; right: 29px; bottom: 86px; display: grid; width: 39px; height: 39px; padding: 0; place-items: center; color: var(--navy-900); border: 0; background: var(--white); border-radius: 50%; box-shadow: var(--shadow-sm); opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity var(--transition), transform var(--transition); }
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top svg { width: 18px; height: 18px; transform: rotate(-90deg); }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.service-grid .reveal:nth-child(2), .process-grid .reveal:nth-child(2) { transition-delay: .08s; }
.service-grid .reveal:nth-child(3), .process-grid .reveal:nth-child(3) { transition-delay: .16s; }
.service-grid .reveal:nth-child(4), .process-grid .reveal:nth-child(4) { transition-delay: .24s; }
.service-grid .reveal:nth-child(5) { transition-delay: .32s; }
.service-grid .reveal:nth-child(6) { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .delivery-dot { display: none; }
}

@media (max-width: 1120px) {
  .header-phone { display: none; }
  .main-nav { gap: 22px; }
  .quote-form { grid-template-columns: repeat(2, 1fr); }
  .quote-submit { grid-column: span 2; }
  .form-note { text-align: left; }
  .why-grid { gap: 50px; }
  .route-visual { min-height: 500px; }
  .route-map { height: 350px; }
  .faq-grid, .contact-grid { gap: 55px; }
}

@media (max-width: 920px) {
  .section { padding: 90px 0; }
  .container { width: min(calc(100% - 36px), var(--container)); }
  .header-inner { min-height: 76px; }
  .main-nav {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 0;
    height: calc(100dvh - 76px);
    padding: 25px 18px;
    color: var(--navy-900);
    background: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity var(--transition), transform var(--transition);
  }
  .main-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav a { padding: 18px 10px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .main-nav a::after { display: none; }
  .menu-toggle { display: grid; }
  .menu-toggle[aria-expanded="true"] .menu-open { display: none; }
  .menu-toggle[aria-expanded="true"] .menu-close { display: block; }
  .hero { min-height: 760px; }
  .hero-image { object-position: 64% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(5,19,32,.96), rgba(7,26,43,.76) 68%, rgba(5,18,30,.32)), linear-gradient(0deg, rgba(5,17,28,.5), transparent); }
  .hero-copy { max-width: 650px; }
  .scroll-cue { display: none; }
  .quote-wrap { margin-top: -35px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-copy { max-width: 700px; }
  .route-visual { width: 100%; max-width: 680px; margin-inline: auto; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 45px 20px; }
  .process-grid::before { display: none; }
  .cta-inner { align-items: flex-start; flex-direction: column; gap: 35px; }
  .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .faq-intro { position: static; max-width: 650px; }
  .contact-copy { max-width: 620px; }
  .footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 650px) {
  body { font-size: 15px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .header-inner { min-height: 70px; }
  .header-quote { display: none; }
  .main-nav { top: 70px; height: calc(100dvh - 70px); }
  .hero { min-height: 730px; align-items: start; }
  .hero-image { object-position: 69% center; opacity: .74; }
  .hero-overlay { background: linear-gradient(90deg, rgba(5,19,32,.94), rgba(7,26,43,.67)), linear-gradient(0deg, rgba(5,17,28,.78) 0%, transparent 45%); }
  .hero-content { padding-top: 155px; }
  .hero h1 { font-size: clamp(2.7rem, 12vw, 4rem); }
  .hero-copy > p { margin-top: 20px; font-size: .94rem; }
  .eyebrow { font-size: .66rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-assurances { gap: 11px 18px; margin-top: 27px; padding-top: 22px; }
  .hero-assurances span { font-size: .68rem; }
  .quote-wrap { margin-top: -25px; }
  .quote-panel { padding: 22px 18px; }
  .quote-intro { align-items: flex-start; padding-bottom: 21px; }
  .quote-icon { width: 48px; height: 48px; }
  .quote-intro h2 { font-size: 1.18rem; }
  .quote-intro p { line-height: 1.5; }
  .quote-form { grid-template-columns: 1fr; }
  .quote-submit { grid-column: auto; }
  .section-heading { display: block; margin-bottom: 35px; }
  .section-heading > p { margin-top: 18px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; padding: 28px; }
  .service-card > a { bottom: 27px; left: 28px; }
  .why-grid { gap: 50px; }
  .why-list article { gap: 13px; }
  .route-visual { min-height: 400px; padding: 20px 14px; border-radius: 20px; }
  .route-map { height: 300px; }
  .route-map > svg { inset: 0; }
  .route-footer { padding-inline: 0; }
  .route-footer small { font-size: .48rem; }
  .route-footer strong { font-size: .6rem; }
  .process-grid { grid-template-columns: 1fr; gap: 44px; }
  .process-step { max-width: 340px; margin-inline: auto; }
  .cta-band { padding: 60px 0; }
  .cta-actions { width: 100%; align-items: stretch; flex-direction: column; }
  .cta-actions .btn { width: 100%; }
  .cta-phone { justify-content: center; }
  .faq-grid { gap: 45px; }
  .faq-item button { padding: 21px 0; font-size: .88rem; }
  .faq-answer { padding-right: 20px; }
  .contact-card { padding: 17px 15px; }
  .contact-card > span { width: 45px; height: 45px; }
  .contact-card strong { font-size: .78rem; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 42px 28px; }
  .footer-brand, .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 5px; }
  .footer-legal { align-items:flex-start; flex-wrap:wrap; gap:5px 12px; }
  .footer-legal span { flex-basis:100%; }
  .cookie-consent { right:12px; bottom:12px; left:12px; grid-template-columns:1fr; gap:12px; width:auto; padding:18px; }
  .cookie-consent-icon { display:none; }
  .cookie-consent-actions { display:grid; grid-template-columns:1fr 1fr; }
  .cookie-consent-actions button { white-space:normal; }
  body:has(.cookie-consent:not([hidden])) .whatsapp-float { bottom:270px; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 52px; height: 52px; justify-content: center; padding: 0; }
  .whatsapp-float span { display: none; }
  .back-to-top { right: 20px; bottom: 76px; }
}

@media (max-width: 390px) {
  .hero h1 { font-size: 2.52rem; }
  .hero-assurances span:last-child { display: none; }
  .quote-intro .quote-icon { display: none; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-links, .footer-contact, .footer-brand { grid-column: auto; }
}
