:root {
  color-scheme: light;
  --yellow: #ffc43d;
  --yellow-deep: #d89b00;
  --ink: #15130f;
  --white: #ffffff;
  --paper: #fffdf8;
  --soft: #f6f3eb;
  --text: #1b1915;
  --muted: #6d685e;
  --line: #dfdbd0;
  --whatsapp: #25d366;
  --display: "Syne", Arial Black, sans-serif;
  --body: "Manrope", Arial, sans-serif;
  --container: min(1360px, calc(100vw - 80px));
  --header-height: 84px;
  --ease: cubic-bezier(.22, .78, .24, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body { margin: 0; overflow-x: hidden; background: var(--paper); color: var(--text); font-family: var(--body); -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, summary { font: inherit; }
button { color: inherit; }
h1, h2, h3, p, figure { margin: 0; }
::selection { background: var(--yellow); color: var(--ink); }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }
.skip-link { position: fixed; z-index: 999; top: 10px; left: 10px; padding: 12px 16px; transform: translateY(-150%); background: var(--yellow); color: var(--ink); font-weight: 800; }
.skip-link:focus { transform: none; }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; height: var(--header-height); background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(11,11,11,.08); backdrop-filter: blur(18px); transition: box-shadow .3s ease, background .3s ease; }
.site-header.is-scrolled { background: rgba(255,255,255,.98); box-shadow: 0 14px 40px rgba(34,29,0,.08); }
.header-inner { width: var(--container); height: 100%; margin: auto; gap: 28px; }
.brand { flex: 0 0 auto; }
.brand-logo { width: 218px; height: auto; }
.main-nav { gap: clamp(16px, 2vw, 30px); }
.main-nav a { position: relative; padding: 31px 0 27px; color: #60605b; font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.main-nav a::after { content: ""; position: absolute; right: 0; bottom: 20px; left: 0; height: 3px; transform: scaleX(0); transform-origin: right; background: var(--yellow); transition: transform .35s var(--ease); }
.main-nav a:hover, .main-nav a.is-active { color: var(--ink); }
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { width: 44px; height: 44px; padding: 0; display: none; place-items: center; border: 1px solid var(--line); background: var(--white); cursor: pointer; }
.menu-toggle span { position: absolute; width: 19px; height: 2px; background: var(--ink); transition: transform .25s var(--ease); }
.menu-toggle span:first-child { transform: translateY(-4px); }
.menu-toggle span:last-child { transform: translateY(4px); }
.menu-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

.hero { width: var(--container); min-height: min(900px, 100svh); margin: auto; padding: calc(var(--header-height) + 58px) 0 60px; display: grid; grid-template-columns: minmax(440px, .92fr) minmax(560px, 1.08fr); gap: clamp(44px, 5vw, 86px); align-items: center; }
.hero::before { content: ""; position: absolute; z-index: -2; top: var(--header-height); right: calc((100vw - var(--container)) / -2); bottom: 0; width: 46vw; min-width: 560px; background: linear-gradient(145deg, #fff7bd 0%, var(--yellow) 78%); clip-path: polygon(14% 0,100% 0,100% 100%,0 100%,0 13%); }
.hero::after { content: ""; position: absolute; z-index: -1; right: 7%; bottom: 8%; width: 220px; aspect-ratio: 1; border: 1px solid rgba(11,11,11,.16); border-radius: 50%; }
.hero-route { position: absolute; z-index: -1; left: 0; bottom: 60px; width: 47%; height: 74px; border-bottom: 4px solid var(--yellow); border-right: 4px solid var(--yellow); border-radius: 0 0 34px 0; pointer-events: none; }
.hero-route i { position: absolute; bottom: -11px; width: 18px; aspect-ratio: 1; border: 4px solid var(--yellow); border-radius: 50%; background: var(--white); }
.hero-route i:nth-child(1) { left: 12%; }
.hero-route i:nth-child(2) { left: 48%; }
.hero-route i:nth-child(3) { right: -11px; }
.hero-copy { z-index: 2; padding: 32px 0 106px; }
.hero-note, .section-label { color: #786400; font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.hero h1 { max-width: 700px; margin-top: 23px; font-family: var(--display); font-size: clamp(64px, 6.2vw, 102px); font-weight: 700; letter-spacing: -.068em; line-height: .91; }
.hero h1 span { display: inline; background: linear-gradient(transparent 58%, var(--yellow) 58%); }
.hero-lead { max-width: 560px; margin-top: 31px; color: var(--muted); font-size: clamp(14px, 1.05vw, 17px); line-height: 1.75; }
.hero-actions { margin-top: 35px; gap: 12px; }
.button { min-height: 62px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; border: 1px solid var(--ink); font-size: 14px; font-weight: 800; transition: transform .3s var(--ease), box-shadow .3s var(--ease), filter .2s ease; will-change: transform; }
.button i { font-size: 19px; }
.button-primary { background: var(--yellow); color: var(--ink); }
.button-whatsapp { border-color: var(--whatsapp); background: var(--whatsapp); color: var(--ink); }
.button:hover { box-shadow: 7px 7px 0 var(--ink); }
.button-whatsapp:hover { box-shadow: 7px 7px 0 #11893d; }
.hero-proof { margin-top: 42px; padding: 0; gap: 0; list-style: none; }
.hero-proof li { min-width: 112px; padding: 0 20px; border-left: 1px solid var(--line); color: var(--muted); font-size: 10px; line-height: 1.4; }
.hero-proof li:first-child { padding-left: 0; border-left: 0; }
.hero-proof b { display: block; color: var(--ink); font-family: var(--display); font-size: 15px; }
.hero-visual { z-index: 1; min-height: 660px; padding: 14px; border: 1px solid rgba(11,11,11,.24); background: rgba(255,255,255,.78); box-shadow: 24px 24px 0 rgba(11,11,11,.9); transform-style: preserve-3d; will-change: transform; }
.hero-media { position: absolute; inset: 14px; clip-path: polygon(10% 0,100% 0,100% 89%,89% 100%,0 100%,0 10%); background: #ddd; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 55% center; transition: transform .9s var(--ease); }
.hero-visual:hover .hero-media img { transform: scale(1.035); }
.hero-caption { position: absolute; z-index: 3; right: 30px; bottom: 28px; padding: 13px 15px; display: flex; align-items: center; gap: 9px; background: rgba(255,255,255,.94); color: var(--ink); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.hero-caption i { color: #c8a500; font-size: 14px; }
.hero-badge { position: absolute; z-index: 3; top: 54px; left: -34px; width: 72px; height: 72px; display: grid; place-items: center; border: 7px solid var(--white); border-radius: 50%; background: var(--ink); color: var(--yellow); box-shadow: 0 8px 25px rgba(0,0,0,.14); }
.hero-badge i { font-size: 25px; }

.route-strip { width: var(--container); margin: 0 auto; overflow: hidden; border-top: 1px solid #dfe1e6; border-bottom: 1px solid #dfe1e6; background: #f4f5f8; color: var(--ink); }
.route-strip-track { width: 100%; min-width: 0; padding: 14px; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 10px; font-family: var(--display); font-size: clamp(10px, .72vw, 13px); font-weight: 700; }
.route-strip-track span { min-height: 52px; padding: 10px 12px; display: grid; place-items: center; border: 1px solid #d9dbe1; background: var(--white); text-align: center; }
.route-strip-track i { display: none; }

.section-grid { width: var(--container); margin: auto; }
.about { position: relative; padding: 138px 0 260px; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(64px, 8vw, 128px); align-items: center; }
.about-copy { max-width: 580px; }
.about h2, .section-heading h2, .regions h2, .faq h2, .contact h2 { font-family: var(--display); font-weight: 700; letter-spacing: -.06em; line-height: .96; }
.about h2 { margin-top: 24px; font-size: clamp(54px, 5.3vw, 84px); }
.about-copy > p:not(.section-label) { margin-top: 30px; color: var(--muted); font-size: 15px; line-height: 1.85; }
.about-copy strong { color: var(--ink); font-weight: 800; }
.about-actions { margin-top: 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-action { min-height: 58px; padding: 0 18px; display: flex; align-items: center; justify-content: center; gap: 11px; border: 1px solid var(--ink); font-size: 13px; font-weight: 800; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.about-action:hover { transform: translateY(-4px); box-shadow: 6px 6px 0 var(--ink); }
.about-call { background: var(--yellow); color: var(--ink); }
.about-whatsapp { border-color: var(--whatsapp); background: var(--whatsapp); color: var(--ink); }
.about-media { height: 680px; clip-path: polygon(0 0,91% 0,100% 9%,100% 100%,9% 100%,0 91%); background: var(--yellow); box-shadow: 18px 18px 0 var(--yellow); transform-style: preserve-3d; will-change: transform; }
.about-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; transition: transform .9s var(--ease); }
.about-media:hover img { transform: scale(1.035); }
.about-media figcaption { position: absolute; right: 0; bottom: 0; padding: 18px 22px; background: var(--white); color: var(--ink); font-size: 11px; font-weight: 800; }
.benefit-ribbon { position: absolute; right: 0; bottom: 0; left: 0; min-height: 178px; padding: 35px 44px; grid-template-columns: repeat(3, 1fr); gap: 0; background: var(--yellow); box-shadow: 0 22px 65px rgba(126,102,0,.13); }
.benefit-ribbon::before { content: ""; position: absolute; left: -18vw; top: 50%; width: 18vw; height: 4px; background: var(--yellow); }
.benefit-ribbon article { padding: 0 clamp(24px, 3vw, 54px); display: flex; align-items: center; gap: 20px; border-left: 1px solid rgba(11,11,11,.22); }
.benefit-ribbon article:first-child { padding-left: 0; border-left: 0; }
.benefit-ribbon > article > i { width: 52px; flex: 0 0 52px; color: var(--ink); font-size: 38px; text-align: center; }
.benefit-ribbon h3 { font-family: var(--display); font-size: 18px; font-weight: 700; letter-spacing: -.03em; }
.benefit-ribbon p { margin-top: 7px; color: #574900; font-size: 11px; line-height: 1.55; }

.services { padding: 136px max(40px, calc((100vw - 1360px) / 2)); background: var(--soft); }
.section-heading { max-width: 900px; }
.section-heading h2 { max-width: 830px; margin-top: 21px; font-size: clamp(58px, 5.5vw, 90px); }
.section-heading > p:last-child, .regions-heading > p:last-child, .faq-heading > p:last-child { max-width: 620px; margin-top: 25px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.service-list { margin-top: 72px; border-top: 1px solid var(--ink); }
.service-row { --mx: 50%; --my: 50%; position: relative; min-height: 112px; padding: 20px 22px; display: grid; grid-template-columns: 66px 1fr 52px; gap: 24px; align-items: center; overflow: hidden; border-bottom: 1px solid var(--line); background: transparent; isolation: isolate; transition: transform .4s var(--ease), border-color .3s ease, box-shadow .4s var(--ease); }
.service-row::before { content: ""; position: absolute; z-index: -1; inset: 0; opacity: 0; background: radial-gradient(360px circle at var(--mx) var(--my), rgba(255,212,0,.28), transparent 72%), var(--white); transition: opacity .35s ease; }
.service-row:hover { z-index: 2; border-color: var(--yellow); box-shadow: 0 18px 48px rgba(39,34,0,.1); }
.service-row:hover::before { opacity: 1; }
.service-row > i { width: 62px; height: 62px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; color: var(--ink); font-size: 23px; transition: background .3s ease, color .3s ease, transform .4s var(--ease); }
.service-row:hover > i { transform: rotate(-8deg) scale(1.06); background: var(--yellow); }
.service-row h3 { font-family: var(--display); font-size: clamp(25px, 2.15vw, 34px); font-weight: 600; letter-spacing: -.045em; }
.service-row p { max-width: 700px; margin-top: 8px; color: var(--muted); font-size: 12px; line-height: 1.65; }
.service-row > a { width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid var(--ink); background: var(--white); transition: background .3s ease, transform .4s var(--ease); }
.service-row:hover > a { transform: rotate(-4deg); background: var(--yellow); }
.service-row > a i { transition: transform .3s var(--ease); }
.service-row > a:hover i { transform: translateX(4px); }

.regions { padding: 136px max(40px, calc((100vw - 1360px) / 2)) 148px; background: linear-gradient(135deg, #fffdf2 0%, #fff2a4 100%); }
.regions::before { content: ""; position: absolute; right: -160px; top: -160px; width: 430px; height: 430px; border: 1px solid rgba(11,11,11,.14); border-radius: 50%; }
.regions::after { content: ""; position: absolute; right: 26px; top: 54px; width: 24px; height: 24px; border: 6px solid var(--yellow-deep); border-radius: 50%; background: var(--white); }
.regions-heading { position: relative; z-index: 2; max-width: 900px; }
.regions h2 { max-width: 850px; margin-top: 22px; font-size: clamp(58px, 5.7vw, 92px); }
.route-map { position: relative; z-index: 2; margin-top: 94px; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 70px 22px; }
.route-map::before, .route-map::after { content: ""; position: absolute; z-index: -1; right: 7%; left: 7%; height: 4px; background: var(--yellow-deep); }
.route-map::before { top: -18px; }
.route-map::after { top: calc(50% + 17px); }
.region-stop { --mx: 50%; --my: 50%; position: relative; min-height: 184px; padding: 38px 28px 25px; overflow: visible; border: 1px solid rgba(11,11,11,.15); background: rgba(255,255,255,.88); box-shadow: 0 14px 35px rgba(98,79,0,.06); isolation: isolate; transition: transform .42s var(--ease), box-shadow .42s var(--ease), border-color .3s ease; }
.region-stop::before { content: ""; position: absolute; z-index: -1; inset: 0; opacity: 0; background: radial-gradient(240px circle at var(--mx) var(--my), rgba(255,212,0,.34), transparent 70%); transition: opacity .35s ease; }
.region-stop:hover { border-color: var(--yellow-deep); box-shadow: 0 22px 50px rgba(98,79,0,.15); }
.region-stop:hover::before { opacity: 1; }
.route-node { position: absolute; top: -29px; left: 50%; width: 22px; height: 22px; transform: translateX(-50%); border: 5px solid var(--yellow-deep); border-radius: 50%; background: var(--white); box-shadow: 0 0 0 7px rgba(255,255,255,.92); transition: transform .4s var(--ease), background .3s ease; }
.region-stop:hover .route-node { transform: translateX(-50%) scale(1.25); background: var(--yellow); }
.region-stop > i { color: #aa8c00; font-size: 20px; }
.region-stop h3 { margin-top: 21px; font-family: var(--display); font-size: clamp(25px, 2.4vw, 36px); font-weight: 650; letter-spacing: -.045em; }
.region-stop p { margin-top: 7px; color: var(--muted); font-size: 11px; }
.route-map.region-grid { margin-top: 64px; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; }
.route-map.region-grid::before, .route-map.region-grid::after { display: none; }
.region-grid .region-stop { min-height: 112px; padding: 22px; display: grid; grid-template-columns: 28px minmax(0,1fr); gap: 12px; align-items: center; overflow: hidden; }
.region-grid .region-stop::after { display: none !important; }
.region-grid .region-stop > i { font-size: 17px; text-align: center; }
.region-grid .region-stop h3 { min-width: 0; margin: 0; font-size: clamp(15px,1.3vw,20px); line-height: 1.2; overflow-wrap: anywhere; }

.article-section { position: relative; z-index: 0; width: var(--container); margin: 0 auto; padding: 112px 0 124px; background: #f4f5f8; color: var(--ink); }
.article-section::before { content: ""; position: absolute; z-index: -1; inset: 0 50%; width: 100vw; transform: translateX(-50%); background: #f4f5f8; }
.article-card { min-width: 0; padding: clamp(38px,4vw,66px) clamp(36px,5vw,78px); border: 1px solid #cfd2d9; border-radius: 0; background: var(--white); }
.article-card > .section-label { margin-bottom: 20px; color: #756500; }
.article-slide h2, .article-slide h3 { max-width: 1050px; margin: 0 0 20px; font-family: var(--display); font-size: clamp(32px,3.2vw,50px); font-weight: 700; letter-spacing: -.045em; line-height: 1.02; }
.article-slide h2 strong, .article-slide h3 strong, .full-article h3 strong { font: inherit; letter-spacing: inherit; color: inherit; }
.article-slide p, .full-article p { color: #4d4f55; font-size: 15px; line-height: 1.9; }
.article-slide p { max-width: 1180px; }
.article-slide p + p { margin-top: 18px; }
.full-article p + p { margin-top: 20px; }
.article-slide strong, .article-copy strong, .full-article strong { color: var(--ink); font-weight: 800; }
.article-copy { min-width: 0; }
.article-toggle, .article-less { position: relative; margin-top: 24px; min-height: 44px; padding: 0 0 5px; display: inline-flex; align-items: center; gap: 9px; border: 0; border-bottom: 3px solid var(--yellow); background: transparent; color: var(--ink); font: 800 15px/1.2 var(--body); cursor: pointer; transition: gap .25s var(--ease), color .25s var(--ease); }
.article-toggle:hover, .article-toggle:focus-visible { gap: 14px; color: #6f5d00; }
.article-toggle i { font-size: 12px; transition: transform .3s var(--ease); }
.article-section.is-expanded .article-card { min-height: 0; }
.full-article { width: 100%; max-width: none; margin: 34px 0 0; padding-top: 0; border: 0; }
.article-copy > .full-article { margin-top: 34px; }
.full-article[hidden] { display: none; }
.full-article h3 { margin: 58px 0 20px; font-family: var(--display); font-size: clamp(30px,3.1vw,46px); font-weight: 600; letter-spacing: -.045em; line-height: 1.06; }
.full-article h3:first-child { display: none; }

.faq { padding: 136px 0; display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(60px, 9vw, 140px); }
.faq-heading { align-self: start; position: sticky; top: 124px; }
.faq h2 { margin-top: 22px; font-size: clamp(58px, 5.3vw, 86px); }
.faq-list { border-top: 1px solid var(--ink); }
.faq-item { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); background: transparent; transition: background .35s var(--ease), box-shadow .35s var(--ease); }
.faq-item::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 3px; transform: scaleX(0); transform-origin: right; background: var(--yellow); transition: transform .45s var(--ease); }
.faq-item:hover { background: #fffbea; box-shadow: inset 5px 0 0 var(--yellow); }
.faq-item:hover::after, .faq-item[open]::after { transform: scaleX(1); transform-origin: left; }
.faq-item[open] { background: var(--soft); }
.faq-item summary { min-height: 98px; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; list-style: none; cursor: pointer; font-family: var(--display); font-size: clamp(18px, 1.55vw, 25px); font-weight: 600; letter-spacing: -.03em; transition: padding .38s var(--ease), color .25s ease; }
.faq-item:hover summary { padding-left: 36px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary > span { position: relative; width: 34px; height: 34px; flex: 0 0 auto; border: 1px solid var(--ink); border-radius: 50%; transition: transform .38s var(--ease), background .25s ease; }
.faq-item summary > span::before, .faq-item summary > span::after { content: ""; position: absolute; top: 15px; left: 9px; width: 14px; height: 2px; background: var(--ink); }
.faq-item summary > span::after { transform: rotate(90deg); transition: transform .25s var(--ease); }
.faq-item:hover summary > span, .faq-item[open] summary > span { transform: rotate(90deg); border-color: var(--yellow); background: var(--yellow); }
.faq-item[open] summary > span::after { transform: none; }
.faq-item p { max-width: 670px; margin: -8px 78px 31px 24px; color: var(--muted); font-size: 13px; line-height: 1.8; }

.contact { min-height: 510px; padding: 92px max(40px, calc((100vw - 1360px) / 2)); display: grid; grid-template-columns: 1.4fr .6fr; gap: 80px; align-items: center; background: var(--yellow); color: var(--ink); }
.contact::before { content: ""; position: absolute; z-index: -1; left: -40px; bottom: -130px; width: 520px; height: 300px; border: 4px solid rgba(11,11,11,.2); border-radius: 50%; }
.contact::after { content: ""; position: absolute; z-index: -1; right: 11%; top: -24px; width: 22px; height: 22px; border: 5px solid var(--ink); border-radius: 50%; background: var(--yellow); }
.contact .section-label { color: #5c4c00; }
.contact h2 { max-width: 900px; margin-top: 18px; font-size: clamp(57px, 5.7vw, 92px); }
.contact-copy > p:last-child { margin-top: 22px; color: #574900; font-size: 14px; }
.contact-actions { width: min(100%,520px); display: grid; justify-self: end; gap: 15px; }
.contact-status { display: flex; align-items: center; gap: 11px; color: #443900; font-size: 11px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.contact-status > span { width: 9px; height: 9px; border-radius: 50%; background: var(--ink); box-shadow: 0 0 0 6px rgba(11,11,11,.12); animation: statusPulse 2s ease-in-out infinite; }
.contact-link { min-height: 72px; padding: 0 18px; display: grid; align-items: center; gap: 12px; font-size: 16px; font-weight: 800; will-change: transform; }
.contact-link i { font-size: 22px; text-align: center; }
.contact-call { min-height: 118px; padding: 18px; grid-template-columns: 60px minmax(0,1fr) 44px; border: 2px solid var(--ink); background: var(--ink); color: var(--white); box-shadow: 12px 12px 0 rgba(11,11,11,.16); transition: color .3s var(--ease), box-shadow .3s var(--ease); }
.contact-call > i:first-child { width: 60px; height: 60px; display: grid; place-items: center; border-radius: 50%; background: var(--yellow); color: var(--ink); transition: transform .3s var(--ease); }
.contact-call-copy { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; gap: 5px; }
.contact-call-copy small { color: var(--yellow); font-size: 10px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.contact-call-copy strong { color: inherit; font-family: var(--display); font-size: clamp(20px,1.75vw,28px); font-weight: 700; line-height: 1; letter-spacing: -.04em; white-space: nowrap; }
.contact-call .contact-arrow { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; font-size: 15px; transition: color .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease); }
.contact-call:hover { box-shadow: 12px 12px 0 rgba(255,255,255,.82); }
.contact-call:hover > i:first-child { transform: rotate(-10deg) scale(1.06); }
.contact-call:hover .contact-arrow { border-color: var(--yellow); background: var(--yellow); color: var(--ink); transform: translateX(3px); }
.contact-microcopy { padding-left: 2px; color: #574900; font-size: 11px; font-weight: 650; }
@keyframes statusPulse { 0%,100% { box-shadow: 0 0 0 6px rgba(11,11,11,.12); } 50% { box-shadow: 0 0 0 10px rgba(11,11,11,0); } }

.site-footer { padding: 64px max(40px, calc((100vw - 1360px) / 2)) 26px; background: var(--white); color: var(--ink); }
.footer-main { display: grid; grid-template-columns: 260px 1fr auto; gap: 60px; align-items: center; padding-bottom: 46px; }
.footer-brand .brand-logo { width: 192px; }
.footer-main p { max-width: 340px; color: var(--muted); font-size: 12px; line-height: 1.7; }
.footer-main nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 22px; }
.footer-main nav a { color: var(--muted); font-size: 11px; font-weight: 700; transition: color .2s ease; }
.footer-main nav a:hover { color: #a48600; }
.footer-bottom { padding-top: 22px; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; letter-spacing: .04em; }

.floating-actions { position: fixed; z-index: 120; top: 50%; right: 0; display: grid; gap: 0; transform: translateY(-50%); justify-items: end; }
.floating-actions a { width: 62px; height: 62px; display: grid; grid-template-columns: 62px auto; align-items: center; overflow: hidden; border: 1px solid rgba(11,11,11,.22); border-right: 0; border-radius: 12px 0 0 12px; box-shadow: -8px 10px 28px rgba(0,0,0,.13); transition: width .38s var(--ease), filter .2s ease; }
.floating-actions a + a { margin-top: 6px; }
.floating-actions a:hover, .floating-actions a:focus-visible { width: 168px; filter: saturate(1.12); box-shadow: -13px 14px 34px rgba(0,0,0,.22); }
.floating-actions a:hover i, .floating-actions a:focus-visible i { transform: rotate(-10deg) scale(1.12); }
.floating-actions i { width: 62px; text-align: center; font-size: 23px; }
.floating-actions i { transition: transform .3s var(--ease); }
.floating-actions span { padding-right: 18px; white-space: nowrap; font-size: 12px; font-weight: 800; }
.float-call { background: var(--yellow); color: var(--ink); }
.float-whatsapp { background: var(--whatsapp); color: var(--ink); }

[data-reveal] { opacity: 0; transform: translateY(24px); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  :root { --container: min(100% - 48px, 1080px); }
  .main-nav { gap: 15px; }
  .main-nav a { font-size: 9px; }
  .brand-logo { width: 198px; }
  .hero { grid-template-columns: minmax(390px, .9fr) minmax(480px, 1.1fr); gap: 44px; }
  .hero h1 { font-size: clamp(62px, 7vw, 84px); }
  .hero-visual { min-height: 610px; }
  .about { gap: 70px; }
  .about-media { height: 620px; }
  .benefit-ribbon { padding-inline: 28px; }
  .benefit-ribbon article { padding-inline: 24px; }
  .footer-main { grid-template-columns: 240px 1fr; }
  .footer-main nav { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 920px) {
  :root { --header-height: 74px; --container: calc(100% - 40px); }
  .brand-logo { width: 190px; }
  .menu-toggle { position: relative; display: grid; }
  .main-nav { position: fixed; z-index: -1; inset: var(--header-height) 0 auto; height: calc(100dvh - var(--header-height)); padding: 28px 24px 70px; flex-direction: column; align-items: stretch; gap: 0; transform: translateX(100%); background: var(--white); transition: transform .35s var(--ease); }
  .main-nav.is-open { transform: none; }
  .main-nav a { padding: 18px 4px; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 27px; font-weight: 600; letter-spacing: -.04em; text-transform: none; }
  .main-nav a::after { display: none; }
  .hero { min-height: auto; padding: calc(var(--header-height) + 60px) 0 0; grid-template-columns: minmax(0,1fr); gap: 56px; }
  .hero::before { top: auto; right: calc((100vw - var(--container)) / -2); bottom: 0; width: 100vw; min-width: 0; height: 48%; }
  .hero-copy { padding: 24px 0 54px; }
  .hero h1 { max-width: 760px; font-size: clamp(66px, 10.7vw, 94px); }
  .hero-route { display: none; }
  .hero-visual { width: min(100%, 720px); min-height: 690px; margin: auto 0 50px; }
  .route-strip-track { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .about { padding: 108px 0 270px; grid-template-columns: minmax(0,1fr); gap: 72px; }
  .about-copy { max-width: 760px; }
  .about-media { width: min(100%, 720px); height: 680px; }
  .benefit-ribbon { min-height: 190px; }
  .benefit-ribbon article { padding-inline: 20px; gap: 14px; }
  .benefit-ribbon > article > i { width: 42px; flex-basis: 42px; font-size: 31px; }
  .benefit-ribbon h3 { font-size: 15px; }
  .services, .regions { padding-right: 24px; padding-left: 24px; }
  .route-map { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .route-map.region-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .route-map::before, .route-map::after { display: none; }
  .region-stop { overflow: visible; }
  .region-stop::after { content: ""; position: absolute; z-index: -1; top: -20px; left: 50%; width: calc(100% + 22px); height: 4px; background: var(--yellow-deep); }
  .region-stop:nth-child(even)::after { display: none; }
  .article-section { width: calc(100% - 48px); padding: 96px 0 104px; }
  .article-card { padding: 42px 38px; border-radius: 0; box-shadow: none; }
  .faq { padding: 110px 0; grid-template-columns: 1fr; gap: 54px; }
  .faq-heading { position: static; }
  .contact { padding-right: 24px; padding-left: 24px; grid-template-columns: minmax(0,1fr); gap: 52px; }
  .contact-actions { width: min(100%, 520px); justify-self: start; }
}

@media (max-width: 620px) {
  :root { --container: calc(100% - 32px); }
  html, body { max-width: 100%; overflow-x: clip; }
  body { padding-bottom: calc(66px + env(safe-area-inset-bottom)); }
  .brand-logo { width: 166px; }
  .menu-toggle { width: 44px; height: 44px; }
  .hero { padding-top: calc(var(--header-height) + 38px); gap: 35px; }
  .hero::before { right: -16px; width: calc(100% + 32px); }
  .hero-copy { padding: 10px 0 28px; }
  .hero h1 { margin-top: 17px; font-size: clamp(51px, 14.6vw, 68px); line-height: .93; }
  .hero-lead { margin-top: 23px; font-size: 13px; line-height: 1.7; }
  .hero-actions { display: grid; }
  .button { width: 100%; min-height: 58px; }
  .hero-proof { margin-top: 30px; align-items: stretch; }
  .hero-proof li { min-width: 0; padding-inline: 12px; flex: 1; }
  .hero-proof li:first-child { padding-left: 0; }
  .hero-visual { width: calc(100% - 10px); max-width: calc(100vw - 42px); min-height: 460px; margin: 0 10px 32px 0; padding: 8px; box-shadow: 10px 10px 0 var(--ink); }
  .hero-media { inset: 8px; }
  .hero-media img { object-position: 59% center; }
  .hero-badge { top: 28px; left: -8px; width: 58px; height: 58px; border-width: 5px; }
  .hero-badge i { font-size: 20px; }
  .hero-caption { right: 15px; bottom: 15px; }
  .route-strip { padding: 14px 16px 16px; overflow: visible; background: #f4f5f8; }
  .route-strip-track { min-height: 0; min-width: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; font-size: 11px; }
  .route-strip-track span { min-height: 48px; padding: 0 10px; display: grid; place-items: center; text-align: center; border: 1px solid #d9dbe1; background: var(--white); }
  .route-strip-track span { position: relative; overflow: hidden; transition: color .28s ease, background .28s ease, border-color .28s ease, box-shadow .35s var(--ease), transform .35s var(--ease); }
  .route-strip-track span::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 2px; transform: scaleX(0); transform-origin: right; background: #b89b00; transition: transform .4s var(--ease); }
  .route-strip-track span:hover, .route-strip-track span:active { z-index: 1; transform: translateY(-3px); border-color: var(--ink); background: var(--ink); color: var(--white); box-shadow: 0 10px 20px rgba(11,11,11,.14); }
  .route-strip-track span:hover::after, .route-strip-track span:active::after { transform: scaleX(1); transform-origin: left; }
  .route-strip-track i { display: none; }
  .about { padding: 90px 0 0; gap: 56px; }
  .hero-copy, .hero-visual, .about-copy, .about-media, .section-heading, .regions-heading, .article-card, .article-copy, .full-article, .faq-heading, .faq-list, .contact-copy, .contact-actions { min-width: 0; width: 100%; max-width: 100%; }
  .about h2, .section-heading h2, .regions h2, .faq h2 { font-size: clamp(40px, 12vw, 58px); overflow-wrap: break-word; }
  .contact h2 { font-size: clamp(37px, 11.6vw, 52px); overflow-wrap: break-word; }
  .about-copy > p:not(.section-label) { margin-top: 24px; font-size: 13px; }
  .about-actions { margin-top: 28px; grid-template-columns: 1fr; }
  .about-media { height: 510px; box-shadow: 10px 10px 0 var(--yellow); }
  .benefit-ribbon { position: relative; width: calc(100% + 32px); margin: -1px -16px 0; padding: 22px 22px; grid-template-columns: minmax(0,1fr); }
  .benefit-ribbon article { min-height: 88px; padding: 14px 0; border-top: 1px solid rgba(11,11,11,.2); border-left: 0; }
  .benefit-ribbon article:first-child { border-top: 0; }
  .services { padding: 92px 20px; }
  .section-heading > p:last-child, .regions-heading > p:last-child, .faq-heading > p:last-child { font-size: 12px; }
  .service-list { margin-top: 50px; }
  .service-row { min-height: 0; padding: 23px 8px; grid-template-columns: 44px 1fr 44px; gap: 14px; }
  .service-row > i { width: 42px; height: 42px; font-size: 17px; }
  .service-row h3 { font-size: 24px; }
  .service-row p { font-size: 10px; }
  .service-row > a { width: 44px; height: 44px; }
  .regions { padding: 92px 16px 104px; }
  .route-map { margin-top: 74px; grid-template-columns: 1fr; gap: 56px; }
  .route-map.region-grid { margin-top: 48px; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
  .region-grid .region-stop { min-height: 94px; padding: 14px 12px; grid-template-columns: 22px minmax(0,1fr); gap: 8px; }
  .region-grid .region-stop h3 { font-size: clamp(12px,3.6vw,15px); line-height: 1.25; }
  .region-grid .region-stop > i { font-size: 14px; }
  .region-stop { min-height: 154px; padding: 32px 24px 22px; }
  .region-stop::after { display: block !important; top: -18px; left: 50%; width: 4px; height: 56px; }
  .region-stop:first-child::after { height: 20px; }
  .route-node { top: -25px; }
  .region-stop h3 { font-size: 30px; }
  .article-section { width: calc(100% - 32px); padding: 82px 0 92px; display: block; }
  .article-section::before { width: calc(100% + 32px); }
  .article-card { padding: 38px 22px 30px; border-radius: 0; box-shadow: none; }
  .article-card > .section-label { margin-bottom: 16px; }
  .article-slide h2, .article-slide h3 { max-width: 100%; margin-bottom: 16px; font-size: clamp(30px, 9.4vw, 42px); line-height: 1.02; }
  .article-slide p, .full-article p { font-size: 14px; line-height: 1.78; }
  .full-article p + p { margin-top: 17px; }
  .article-copy > .full-article { margin-top: 28px; }
  .article-toggle, .article-less { width: auto; min-height: 44px; margin-top: 20px; padding: 0 0 5px; justify-content: flex-start; text-align: left; }
  .article-toggle i { position: static; }
  .full-article { padding-top: 0; }
  .full-article h3 { margin: 42px 0 18px; font-size: clamp(28px, 8.5vw, 38px); line-height: 1.06; }
  .faq { padding: 92px 0; gap: 40px; }
  .faq-item summary { min-height: 84px; padding: 0 16px; gap: 14px; font-size: 17px; }
  .faq-item:hover summary { padding-left: 22px; }
  .faq-item summary > span { width: 30px; height: 30px; }
  .faq-item summary > span::before, .faq-item summary > span::after { top: 13px; left: 8px; width: 12px; }
  .faq-item p { margin: -2px 54px 25px 16px; font-size: 12px; }
  .contact { min-height: auto; padding: 78px 24px 86px 20px; gap: 44px; }
  .contact-copy > p:last-child { font-size: 12px; }
  .contact-actions { gap: 13px; }
  .contact-status { font-size: 10px; }
  .contact-call { min-height: 100px; padding: 15px; grid-template-columns: 50px minmax(0,1fr) 38px; gap: 10px; box-shadow: 8px 8px 0 rgba(11,11,11,.16); }
  .contact-call > i:first-child { width: 50px; height: 50px; font-size: 18px; }
  .contact-call-copy strong { font-size: clamp(18px,5.2vw,22px); }
  .contact-call .contact-arrow { width: 38px; height: 38px; }
  .contact-call:hover { box-shadow: 8px 8px 0 rgba(255,255,255,.82); }
  .contact-microcopy { font-size: 10px; }
  .site-footer { padding: 54px 20px 22px; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .footer-main nav { grid-column: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .floating-actions {
    inset: auto 0 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    justify-items: stretch;
    padding: 7px max(7px, env(safe-area-inset-right)) calc(7px + env(safe-area-inset-bottom)) max(7px, env(safe-area-inset-left));
    transform: none;
    background: rgba(17, 16, 13, .98);
    border-top: 1px solid var(--line);
  }
  .floating-actions a,
  .floating-actions a:hover,
  .floating-actions a:focus-visible {
    width: auto;
    min-width: 0;
    height: 52px;
    grid-template-columns: auto auto;
    justify-content: center;
    gap: 10px;
    transform: none;
    border: 0;
    border-radius: 0;
  }
  .floating-actions a + a { margin-top: 0; }
  .floating-actions i { width: auto; font-size: 20px; }
  .floating-actions span { display: block; padding-right: 0; }
}

@media (max-width: 360px) {
  .contact-call { grid-template-columns: 50px minmax(0,1fr); }
  .contact-call .contact-arrow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* Fatih siyah–sarı kimlik */
body {
  background:
    radial-gradient(circle at 82% 4%, rgba(255, 196, 61, .1), transparent 25%),
    var(--paper);
}

.site-header {
  background: rgba(17, 16, 13, .88);
  border-bottom-color: rgba(255, 196, 61, .14);
}

.site-header.is-scrolled {
  background: rgba(17, 16, 13, .97);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .36);
}

.brand-logo {
  width: 230px;
}

.main-nav a {
  color: var(--muted);
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--yellow);
}

.menu-toggle {
  border-color: var(--line);
  background: #211d14;
}

.menu-toggle span {
  background: var(--yellow);
}

.hero::before {
  background: linear-gradient(145deg, #2a2415 0%, #8a661b 42%, var(--yellow) 100%);
}

.hero::after {
  border-color: rgba(255, 196, 61, .34);
}

.hero-note,
.section-label {
  color: var(--yellow);
}

.hero h1 span {
  background: linear-gradient(transparent 58%, rgba(255, 196, 61, .78) 58%);
}

.hero-proof li {
  border-color: var(--line);
}

.hero-proof b,
.about-copy strong,
.article-slide strong,
.article-copy strong,
.full-article strong {
  color: var(--text);
}

.hero-visual {
  border-color: rgba(255, 196, 61, .46);
  background: rgba(33, 29, 20, .86);
  box-shadow: 24px 24px 0 rgba(255, 196, 61, .92);
}

.hero-media {
  background: #201d18;
}

.hero-caption {
  color: var(--text);
  background: rgba(17, 16, 13, .9);
}

.hero-caption i {
  color: var(--yellow);
}

.hero-badge {
  border-color: #11100d;
  background: var(--yellow);
  color: var(--ink);
}

.hero-route i {
  background: var(--paper);
}

.route-strip {
  border-color: var(--line);
  background: #17140e;
  color: var(--text);
}

.route-strip-track span {
  border-color: var(--line);
  background: #211d14;
  transition: color .28s ease, background .28s ease, border-color .28s ease, transform .32s var(--ease);
}

.route-strip-track span:hover {
  color: var(--ink);
  border-color: var(--yellow);
  background: var(--yellow);
  transform: translateY(-3px);
}

.about-media figcaption {
  color: var(--text);
  background: rgba(17, 16, 13, .92);
}

.services {
  background:
    radial-gradient(circle at 93% 12%, rgba(255, 196, 61, .08), transparent 24%),
    var(--soft);
}

.service-list,
.faq-list {
  border-top-color: var(--yellow);
}

.service-row::before {
  background: radial-gradient(360px circle at var(--mx) var(--my), rgba(255, 196, 61, .22), transparent 72%), #211d14;
}

.service-row:hover {
  box-shadow: 0 18px 48px rgba(0, 0, 0, .28);
}

.service-row > i,
.service-row > a {
  color: var(--yellow);
  border-color: var(--yellow);
}

.service-row > a {
  background: #11100d;
}

.service-row:hover > i,
.service-row:hover > a {
  color: var(--ink);
  background: var(--yellow);
}

.regions {
  overflow: clip;
  background:
    radial-gradient(circle at 92% 6%, rgba(255, 196, 61, .14), transparent 26%),
    linear-gradient(135deg, #11100d 0%, #211d14 58%, #2d2513 100%);
}

.regions::before {
  border-color: rgba(255, 196, 61, .24);
}

.regions::after {
  background: #11100d;
}

.region-stop {
  border-color: var(--line);
  background: rgba(33, 29, 20, .9);
  box-shadow: 0 14px 35px rgba(0, 0, 0, .2);
}

.region-stop::before {
  background: radial-gradient(240px circle at var(--mx) var(--my), rgba(255, 196, 61, .24), transparent 70%);
}

.region-stop:hover {
  box-shadow: 0 22px 50px rgba(0, 0, 0, .34);
}

.route-node {
  background: #11100d;
  box-shadow: 0 0 0 7px rgba(33, 29, 20, .96);
}

.region-stop > i {
  color: var(--yellow);
}

.article-section,
.article-section::before {
  color: var(--text);
  background: #17140e;
}

.article-card {
  border-color: var(--line);
  background: #211d14;
}

.article-card > .section-label {
  color: var(--yellow);
}

.article-slide p,
.full-article p {
  color: var(--muted);
}

.article-toggle,
.article-less {
  color: var(--text);
}

.article-toggle:hover,
.article-toggle:focus-visible,
.article-less:hover,
.article-less:focus-visible {
  color: var(--yellow);
}

.faq-item:hover {
  background: #211d14;
  box-shadow: inset 5px 0 0 var(--yellow);
}

.faq-item summary > span {
  border-color: var(--yellow);
}

.faq-item summary > span::before,
.faq-item summary > span::after {
  background: var(--yellow);
}

.faq-item:hover summary > span::before,
.faq-item:hover summary > span::after,
.faq-item[open] summary > span::before,
.faq-item[open] summary > span::after {
  background: var(--ink);
}

.driver-recruit {
  position: relative;
  width: var(--container);
  min-height: 440px;
  margin: 0 auto 96px;
  padding: 66px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  gap: 72px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 196, 61, .34);
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 196, 61, .2), transparent 32%),
    linear-gradient(135deg, #211d14, #11100d 66%);
  box-shadow: 22px 22px 0 var(--yellow);
}

.driver-recruit::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -210px;
  width: 340px;
  height: 340px;
  border: 70px solid rgba(255, 196, 61, .07);
  border-radius: 50%;
}

.driver-recruit-copy,
.driver-recruit-actions {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.driver-recruit h2 {
  margin-top: 21px;
  font-family: var(--display);
  font-size: clamp(54px, 5.3vw, 84px);
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: .92;
}

.driver-recruit h2 span {
  color: var(--yellow);
}

.driver-recruit-copy > p:last-child {
  max-width: 660px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.driver-recruit-actions {
  display: grid;
  gap: 12px;
}

.driver-recruit-call,
.driver-recruit-whatsapp {
  min-height: 126px;
  padding: 24px 28px;
  border: 1px solid rgba(255, 196, 61, .34);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s ease;
}

.driver-recruit-call {
  display: grid;
  align-content: center;
  background: rgba(17, 16, 13, .84);
}

.driver-recruit-whatsapp {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink);
  background: var(--yellow);
}

.driver-recruit-call:hover,
.driver-recruit-whatsapp:hover {
  transform: translateY(-4px);
  box-shadow: 8px 8px 0 rgba(255, 196, 61, .82);
}

.driver-recruit-call small,
.driver-recruit-whatsapp small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.driver-recruit-whatsapp small {
  color: rgba(17, 16, 13, .65);
}

.driver-recruit-call strong {
  margin-top: 5px;
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(31px, 3vw, 44px);
  line-height: 1;
}

.driver-recruit-call span {
  margin-top: 12px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
}

.driver-recruit-whatsapp > i {
  font-size: 36px;
}

.driver-recruit-whatsapp > span {
  display: grid;
}

.driver-recruit-whatsapp strong {
  margin-top: 7px;
  font-family: var(--display);
  font-size: 29px;
  line-height: 1;
}

.site-footer {
  color: var(--text);
  background: #0b0a08;
}

.footer-main nav a:hover {
  color: var(--yellow);
}

@media (max-width: 920px) {
  .main-nav {
    inset: var(--header-height) 0 auto;
    transform: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: rgba(17, 16, 13, .99);
    transition: opacity .3s var(--ease), visibility .3s var(--ease);
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .driver-recruit {
    width: calc(100% - 48px);
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 52px;
  }
}

@media (max-width: 620px) {
  .brand-logo {
    width: 166px;
  }

  .hero-visual {
    box-shadow: 10px 10px 0 var(--yellow);
  }

  .route-strip,
  .route-strip-track span {
    border-color: var(--line);
    background: #211d14;
  }

  .route-strip-track span:hover,
  .route-strip-track span:active {
    color: var(--ink);
    border-color: var(--yellow);
    background: var(--yellow);
  }

  .driver-recruit {
    width: calc(100% - 32px);
    min-height: auto;
    margin-bottom: 72px;
    padding: 42px 22px 22px;
    gap: 36px;
    box-shadow: 10px 10px 0 var(--yellow);
  }

  .driver-recruit h2 {
    font-size: clamp(40px, 10.8vw, 54px);
    text-wrap: balance;
  }

  .driver-recruit-call,
  .driver-recruit-whatsapp {
    min-height: 112px;
    padding: 20px;
  }

  .driver-recruit-call strong {
    font-size: clamp(29px, 9vw, 38px);
  }
}

.button-primary:focus-visible,
.about-call:focus-visible,
.float-call:focus-visible,
.driver-recruit-whatsapp:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--yellow);
}

/* Açık tema son rötuş: iletişim alanı da beyaz yüzeyde kalır. */
.contact {
  color: var(--ink);
  border-top: 1px solid rgba(23, 21, 16, .1);
  border-bottom: 1px solid rgba(23, 21, 16, .1);
  background: #fffdf8;
}

.contact::before,
.contact::after {
  content: none;
}

.contact .section-label,
.contact-copy > p:last-child,
.contact-status,
.contact-microcopy {
  color: #6d685e;
}

html,
body {
  overflow-x: clip;
}

/* Açık kurumsal tema */
body {
  background:
    radial-gradient(circle at 88% 3%, rgba(255, 196, 61, .13), transparent 24%),
    var(--paper);
}

.site-header,
.site-header.is-scrolled {
  background: rgba(255, 253, 248, .94);
  border-bottom-color: rgba(21, 19, 15, .09);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 40px rgba(39, 32, 13, .08);
}

.brand-logo { width: 208px; }
.main-nav a { color: #6d685e; }
.main-nav a:hover,
.main-nav a.is-active { color: var(--ink); }

.menu-toggle {
  border-color: var(--line);
  background: var(--white);
}

.menu-toggle span { background: var(--ink); }

.hero::before {
  background: linear-gradient(145deg, #fff9df 0%, #ffe189 52%, var(--yellow) 100%);
}

.hero::after { border-color: rgba(21, 19, 15, .14); }
.hero-note,
.section-label { color: #8b6900; }
.hero h1 span { background: linear-gradient(transparent 58%, rgba(255, 196, 61, .76) 58%); }
.hero-proof li { border-color: var(--line); }
.hero-proof b,
.about-copy strong,
.article-slide strong,
.article-copy strong,
.full-article strong { color: var(--ink); }

.hero-visual {
  border-color: rgba(21, 19, 15, .24);
  background: rgba(255, 255, 255, .9);
  box-shadow: 24px 24px 0 rgba(21, 19, 15, .92);
}

.hero-media { background: #e8e4da; }
.hero-caption {
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
}
.hero-caption i { color: var(--yellow-deep); }
.hero-badge {
  border-color: var(--white);
  background: var(--ink);
  color: var(--yellow);
}
.hero-route i { background: var(--paper); }

.route-strip {
  border-color: #dfe1e6;
  background: #f4f5f8;
  color: var(--ink);
}
.route-strip-track span {
  border-color: #d9dbe1;
  background: var(--white);
}
.route-strip-track span:hover {
  color: var(--ink);
  border-color: var(--yellow-deep);
  background: #fff7d5;
}

.about-media figcaption {
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
}

.services {
  background:
    radial-gradient(circle at 93% 12%, rgba(255, 196, 61, .1), transparent 24%),
    var(--soft);
}
.service-list,
.faq-list { border-top-color: var(--ink); }
.service-row::before {
  background: radial-gradient(360px circle at var(--mx) var(--my), rgba(255, 196, 61, .24), transparent 72%), var(--white);
}
.service-row:hover { box-shadow: 0 18px 48px rgba(39, 32, 13, .1); }
.service-row > i {
  color: var(--ink);
  border-color: var(--ink);
}
.service-row > a {
  color: var(--ink);
  border-color: var(--ink);
  background: var(--white);
}
.service-row:hover > i,
.service-row:hover > a {
  color: var(--ink);
  background: var(--yellow);
}

.regions {
  background:
    radial-gradient(circle at 92% 6%, rgba(255, 196, 61, .2), transparent 26%),
    linear-gradient(135deg, #fffdf5 0%, #fff5c7 100%);
}
.regions::before { border-color: rgba(21, 19, 15, .13); }
.regions::after { background: var(--white); }
.region-stop {
  border-color: rgba(21, 19, 15, .15);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 14px 35px rgba(91, 72, 17, .07);
}
.region-stop::before {
  background: radial-gradient(240px circle at var(--mx) var(--my), rgba(255, 196, 61, .3), transparent 70%);
}
.region-stop:hover { box-shadow: 0 22px 50px rgba(91, 72, 17, .14); }
.route-node {
  background: var(--white);
  box-shadow: 0 0 0 7px rgba(255, 255, 255, .92);
}
.region-stop > i { color: #a57b00; }

.article-section,
.article-section::before {
  color: var(--ink);
  background: #f4f5f8;
}
.article-card {
  border-color: #cfd2d9;
  background: var(--white);
}
.article-card > .section-label { color: #756000; }
.article-slide p,
.full-article p { color: #4d4f55; }
.article-toggle,
.article-less { color: var(--ink); }
.article-toggle:hover,
.article-toggle:focus-visible,
.article-less:hover,
.article-less:focus-visible { color: #725a00; }

.faq-item:hover {
  background: #fffbea;
  box-shadow: inset 5px 0 0 var(--yellow);
}
.faq-item summary > span { border-color: var(--ink); }
.faq-item summary > span::before,
.faq-item summary > span::after { background: var(--ink); }

.driver-recruit {
  position: relative;
  width: var(--container);
  min-height: 178px;
  margin: 0 auto;
  padding: 0;
  grid-template-columns: minmax(0, 1fr) minmax(440px, .7fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border: 0;
  border-top: 0;
  border-bottom: 0;
  border-radius: 0;
  background: #fffdf8;
  box-shadow: none;
  scroll-margin-top: calc(var(--header-height) + 14px);
}
.driver-recruit::before { content: none; }
.driver-recruit-copy,
.driver-recruit-actions { min-width: 0; }
.driver-recruit-copy {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.driver-recruit .section-label {
  margin-bottom: 7px;
  color: #755300;
}
.driver-recruit h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(27px, 2.15vw, 35px);
  letter-spacing: -.045em;
  line-height: 1;
}
.driver-recruit h2 span { color: #8f5f00; }
.driver-recruit-copy > p:last-child {
  max-width: 680px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}
.driver-recruit-actions {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  gap: 0;
  align-self: stretch;
  border-left: 0;
}
.driver-recruit-call,
.driver-recruit-whatsapp {
  min-width: 0;
  min-height: 100%;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
  box-shadow: none;
  transition: background .25s ease, color .25s ease;
}
.driver-recruit-whatsapp {
  border-left: 0;
  background: #fff7d7;
}
.driver-recruit-call:hover,
.driver-recruit-whatsapp:hover {
  transform: none;
  background: var(--yellow);
  box-shadow: none;
}
.driver-recruit-call > i,
.driver-recruit-whatsapp > i {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--yellow-deep);
  border-radius: 0;
  background: var(--yellow);
  color: var(--ink);
  font-size: 15px;
}
.driver-recruit-call > span,
.driver-recruit-whatsapp > span {
  min-width: 0;
  margin: 0;
  display: grid;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.driver-recruit-call small,
.driver-recruit-whatsapp small {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .1em;
}
.driver-recruit-call strong,
.driver-recruit-whatsapp strong {
  margin-top: 3px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1;
  white-space: nowrap;
}
.driver-recruit-call strong { display: flex; gap: .28em; }
.driver-recruit-call strong > span {
  margin: 0;
  color: inherit;
  font: inherit;
}

@media (min-width: 621px) {
  .floating-actions { top: 60%; }
}

.site-footer {
  color: var(--ink);
  background: var(--white);
}
.footer-main nav a:hover { color: #8b6900; }

@media (max-width: 920px) {
  .main-nav { background: rgba(255, 253, 248, .99); }
  .driver-recruit {
    width: calc(100% - 48px);
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0 auto;
    padding: 0;
  }
  .driver-recruit-copy { padding: 22px 24px 20px; }
  .driver-recruit-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 0;
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .floating-actions {
    background: rgba(255, 253, 248, .98);
    border-top-color: rgba(21, 19, 15, .14);
    box-shadow: 0 -10px 28px rgba(39, 32, 13, .1);
  }
  .hero-visual { box-shadow: 10px 10px 0 var(--ink); }
  .route-strip,
  .route-strip-track span {
    border-color: #d9dbe1;
    background: var(--white);
  }
  .route-strip-track span:hover,
  .route-strip-track span:active {
    color: var(--ink);
    border-color: var(--yellow-deep);
    background: #fff7d5;
  }
  .driver-recruit {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 0;
    gap: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .driver-recruit-copy { padding: 20px 16px 18px; }
  .driver-recruit h2 { font-size: clamp(27px, 8.8vw, 34px); }
  .driver-recruit-copy > p:last-child { margin-top: 9px; font-size: 10px; line-height: 1.5; }
  .driver-recruit-actions { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .driver-recruit-call,
  .driver-recruit-whatsapp { min-height: 60px; padding: 10px 14px; gap: 10px; }
  .driver-recruit-whatsapp { border-top: 0; border-left: 0; }
  .driver-recruit-call > i,
  .driver-recruit-whatsapp > i { width: 32px; height: 32px; flex-basis: 32px; font-size: 14px; }
  .driver-recruit-call strong,
  .driver-recruit-whatsapp strong { font-size: clamp(16px, 4.8vw, 19px); }
}

.button-primary:focus-visible,
.about-call:focus-visible,
.float-call:focus-visible,
.driver-recruit-call:focus-visible,
.driver-recruit-whatsapp:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

@media (max-width: 620px) {
  .site-header .brand-logo { width: 190px; }
  .footer-brand .brand-logo { width: 190px; }
}

/* İkonsuz, oranlı tipografik marka */
.brand.brand-wordmark {
  min-width: 150px;
  display: inline-grid;
  align-content: center;
  align-items: start;
  gap: 5px;
  line-height: 1;
  text-decoration: none;
}

.brand-wordmark .brand-name {
  color: var(--ink);
  font-family: var(--display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: .8;
  text-transform: uppercase;
}

.brand-wordmark .brand-service {
  color: #946500;
  font-family: var(--body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .24em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-brand.brand-wordmark {
  width: max-content;
}

@media (max-width: 620px) {
  .brand.brand-wordmark {
    min-width: 142px;
    gap: 4px;
  }

  .brand-wordmark .brand-name {
    font-size: 30px;
  }

  .brand-wordmark .brand-service {
    font-size: 9px;
    letter-spacing: .22em;
  }
}
