:root {
    --navy: #003057;
    --navy-deep: #001f39;
    --ink: #152331;
    --muted: #5b6c79;
    --orange: #f35a00;
    --orange-dark: #cf4900;
    --soft: #f3f6f8;
    --line: #dce4e9;
    --white: #fff;
    --radius: 24px;
    --shadow: 0 22px 60px rgba(0, 31, 57, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Montserrat, Arial, Helvetica, sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy); line-height: 1.13; letter-spacing: -.035em; }
h1 { font-size: clamp(2.75rem, 5.8vw, 5.35rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.75rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.55rem); }
p { color: var(--muted); }
strong { color: var(--ink); }

.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.shell--narrow { width: min(820px, calc(100% - 40px)); }
.section { padding: clamp(76px, 9vw, 132px) 0; }
.section--tight { padding: 44px 0; }
.section--soft { background: var(--soft); }
.section--navy { background: var(--navy-deep); color: var(--white); }
.section--navy h2, .section--navy h3, .section--navy strong { color: var(--white); }
.section--navy p { color: #c5d2dc; }
.section--faq { background: #f7f9fa; }

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link { position: fixed; z-index: 1000; left: 16px; top: 12px; transform: translateY(-150%); background: #fff; color: var(--navy); padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { transform: translateY(0); }

.topline { background: var(--navy-deep); color: #d5e0e7; font-size: .78rem; }
.topline__inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topline a { color: #fff; text-decoration: none; font-weight: 700; }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(0,48,87,.09); backdrop-filter: blur(12px); }
.nav-wrap { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; width: 230px; }
.brand img { width: 100%; }
.primary-nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 30px); }
.primary-nav > a:not(.button) { position: relative; color: var(--navy); text-decoration: none; font-size: .92rem; font-weight: 650; }
.primary-nav > a:not(.button)::after { position: absolute; content: ""; height: 2px; left: 0; right: 100%; bottom: -9px; background: var(--orange); transition: right .2s ease; }
.primary-nav > a:hover::after, .primary-nav > a.active::after { right: 0; }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--navy); }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 12px 24px; border: 1px solid var(--orange); border-radius: 999px; background: var(--orange); color: #fff; font-weight: 750; line-height: 1.2; text-decoration: none; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); background: var(--orange-dark); border-color: var(--orange-dark); }
.button--small { min-height: 42px; padding: 10px 18px; font-size: .86rem; }
.button--outline { color: var(--navy); background: transparent; border-color: var(--navy); }
.button--outline:hover { color: #fff; background: var(--navy); border-color: var(--navy); }
.button--light { color: var(--navy); background: #fff; border-color: #fff; }
.button--light:hover { color: #fff; background: transparent; border-color: #fff; }
.button--ghost { color: var(--navy); background: transparent; border-color: var(--line); }
.text-link { display: inline-flex; gap: 8px; align-items: center; color: var(--navy); font-weight: 750; text-underline-offset: 4px; }
.text-link--light { color: #fff; }
.eyebrow { display: block; margin-bottom: 18px; color: var(--orange); font-size: .75rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow--light { color: #ff9a5f; }

.hero { position: relative; overflow: hidden; min-height: 720px; display: flex; align-items: center; background: linear-gradient(135deg, #f7f9fa 0%, #fff 58%); }
.hero::before { position: absolute; content: ""; width: 640px; height: 640px; right: -300px; top: -260px; border: 90px solid rgba(243,90,0,.07); border-radius: 50%; }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(380px, .82fr); align-items: center; gap: clamp(50px, 7vw, 100px); padding: 92px 0; }
.hero-copy h1 { max-width: 820px; margin-bottom: 26px; }
.hero-lead { max-width: 720px; font-size: clamp(1.08rem, 1.7vw, 1.34rem); }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 34px; }
.check-row { display: flex; flex-wrap: wrap; gap: 10px 22px; padding: 0; margin: 36px 0 0; list-style: none; color: var(--navy); font-size: .9rem; font-weight: 700; }
.check-row li::before { content: "✓"; color: var(--orange); margin-right: 8px; }

.load-card { position: relative; padding: 34px; border: 1px solid rgba(0,48,87,.1); border-radius: 30px; background: var(--navy); color: #fff; box-shadow: var(--shadow); }
.load-card::after { position: absolute; z-index: -1; content: ""; width: 70%; height: 70%; right: -28px; bottom: -28px; border-radius: 30px; background: var(--orange); }
.load-card__head, .load-card__foot, .vehicle-meter__label { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.load-card__head { padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.16); font-weight: 700; }
.status-dot { padding: 5px 10px; border-radius: 999px; background: rgba(255,255,255,.1); color: #b8f4d1; font-size: .72rem; }
.status-dot::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: #55d98a; }
.weight-display { padding: 30px 0 22px; }
.weight-display small { display: block; color: #bdd0dd; }
.weight-display strong { display: block; margin-top: 4px; color: #fff; font-size: clamp(1.6rem, 3vw, 2.6rem); }
.vehicle-meter { margin: 22px 0; }
.vehicle-meter__label { margin-bottom: 9px; color: #dbe5ec; font-size: .8rem; }
.vehicle-meter__label span:first-child { color: #fff; font-weight: 800; font-size: 1rem; }
.meter { overflow: hidden; height: 13px; border-radius: 999px; background: rgba(255,255,255,.12); }
.meter span { display: block; height: 100%; border-radius: inherit; background: #2bd07f; }
.meter--orange span { background: var(--orange); }
.load-card__foot { padding-top: 24px; margin-top: 28px; border-top: 1px solid rgba(255,255,255,.16); color: #bdd0dd; font-size: .75rem; }
.load-card--light { background: #fff; color: var(--ink); }
.load-card--light .load-card__head { color: var(--navy); border-color: var(--line); }
.load-card--light .weight-display small, .load-card--light .vehicle-meter__label { color: var(--muted); }
.load-card--light .weight-display strong, .load-card--light .vehicle-meter__label span:first-child { color: var(--navy); }
.load-card--light .meter { background: var(--line); }
.load-card--light .load-card__foot { color: var(--muted); border-color: var(--line); }

.proof-strip { border-bottom: 1px solid var(--line); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid div { display: flex; flex-direction: column; padding: 8px 28px; border-left: 1px solid var(--line); }
.proof-grid div:first-child { border-left: 0; padding-left: 0; }
.proof-grid strong { color: var(--navy); font-size: 1.25rem; }
.proof-grid span { color: var(--muted); font-size: .82rem; }

.section-heading { max-width: 820px; margin-bottom: 54px; }
.section-heading h2 { margin-bottom: 18px; }
.section-heading p { font-size: 1.05rem; }
.section-heading--light h2 { color: #fff; }
.section-heading--light p { color: #c5d2dc; }
.split-heading { display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: end; margin-bottom: 56px; }
.split-heading h2, .split-heading p { margin-bottom: 0; }
.split-heading p { font-size: 1.05rem; }
.split-heading--light h2 { color: #fff; }
.split-heading--light p { color: #c5d2dc; }
.split-heading--light a { margin-top: 20px; }
.card-grid { display: grid; gap: 24px; }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.problem-card, .feature-card, .detail-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.problem-card h3, .feature-card h3, .detail-card h3 { margin: 24px 0 14px; }
.problem-card p, .feature-card p { margin-bottom: 0; }
.card-number { color: var(--orange); font-weight: 800; font-size: .83rem; letter-spacing: .1em; }
.icon-chip { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; color: #fff; background: var(--navy); font-weight: 900; }
.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.detail-card p { margin-bottom: 22px; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; padding: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); background: rgba(255,255,255,.15); list-style: none; }
.process-grid li { padding: 36px; background: var(--navy-deep); }
.process-grid li > span { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: #ff9a5f; font-weight: 800; }
.process-grid h3 { margin: 24px 0 12px; }
.process-grid p { margin: 0; }

.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.package-card { position: relative; display: flex; flex-direction: column; padding: 38px; border: 1px solid var(--line); border-radius: 28px; background: #fff; }
.package-card--featured { border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-10px); }
.package-card--featured::before { position: absolute; content: "En çok yönlü"; top: -15px; right: 24px; padding: 6px 13px; border-radius: 999px; background: var(--orange); color: #fff; font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.package-label { display: inline-flex; align-self: flex-start; padding: 6px 11px; border-radius: 999px; color: var(--orange-dark); background: #fff0e8; font-size: .72rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.package-card h3 { margin: 24px 0 14px; font-size: 1.7rem; }
.package-card .text-link { margin-top: auto; padding-top: 20px; }
.feature-list { padding: 0; margin: 20px 0 0; list-style: none; }
.feature-list li { position: relative; padding: 8px 0 8px 25px; color: var(--muted); border-bottom: 1px solid rgba(0,48,87,.08); }
.feature-list li::before { position: absolute; left: 0; content: "✓"; color: var(--orange); font-weight: 900; }
.feature-list li:last-child { border-bottom: 0; }
.feature-list--columns { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 20px; }
.feature-list--light li { color: #d2dee7; border-color: rgba(255,255,255,.1); }
.compare-link { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 42px; padding: 24px 30px; border-radius: 20px; background: var(--soft); }
.compare-link p { margin: 0; font-weight: 700; }
.package-grid--dark .package-card { border-color: rgba(255,255,255,.15); background: rgba(255,255,255,.07); }
.package-grid--dark .package-card h3 { color: #fff; }
.package-grid--dark .package-card p { color: #c5d2dc; }

.media-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(44px, 7vw, 90px); align-items: center; }
.media-split--reverse > :first-child { order: 2; }
.media-frame { overflow: hidden; border-radius: 28px; box-shadow: var(--shadow); }
.media-frame img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 30px 0; }
.mini-grid div { display: flex; flex-direction: column; padding: 18px; border-radius: 14px; background: #fff; border: 1px solid var(--line); }
.mini-grid strong { color: var(--navy); }
.mini-grid span { color: var(--muted); font-size: .8rem; }

.ecosystem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ecosystem-grid article { padding-top: 26px; border-top: 3px solid var(--orange); }
.ecosystem-grid a, .founder-grid a { color: var(--navy); font-weight: 750; text-underline-offset: 3px; }

.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(40px, 8vw, 110px); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 24px 42px 24px 0; color: var(--navy); font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; right: 2px; content: "+"; color: var(--orange); font-size: 1.45rem; font-weight: 500; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding-right: 30px; margin-bottom: 24px; }

.cta-band { padding: 66px 0; background: var(--orange); }
.cta-band__inner { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.cta-band h2 { max-width: 850px; margin: 0; color: #fff; font-size: clamp(1.85rem, 3.3vw, 3.2rem); }

.subhero { position: relative; overflow: hidden; background: var(--navy-deep); color: #fff; }
.subhero::before { position: absolute; content: ""; width: 520px; height: 520px; left: -260px; bottom: -330px; border: 80px solid rgba(243,90,0,.15); border-radius: 50%; }
.subhero-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(50px, 8vw, 110px); min-height: 630px; padding: 80px 0; }
.subhero h1 { margin: 18px 0 24px; color: #fff; font-size: clamp(2.6rem, 5vw, 4.7rem); }
.subhero p { max-width: 700px; color: #d0dce4; font-size: 1.08rem; }
.subhero-grid > img { width: 100%; max-height: 430px; object-fit: cover; border-radius: 32px; box-shadow: 0 30px 70px rgba(0,0,0,.28); }
.subhero--plus .subhero-grid > img { object-fit: contain; background: #fff; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 9px; color: #b8c7d2; font-size: .76rem; }
.breadcrumb a { color: inherit; }
.breadcrumb--dark { color: var(--muted); }
.answer-box { display: grid; grid-template-columns: .65fr 1.35fr; gap: 60px; padding: 34px 42px; border-left: 5px solid var(--orange); background: var(--soft); }
.answer-box h2, .answer-box p { margin: 0; }
.answer-box p { font-size: 1.08rem; }
.answer-box strong { color: var(--navy); }

.report-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 20px; }
.report-table { width: 100%; min-width: 760px; border-collapse: collapse; text-align: left; }
.report-table th, .report-table td { padding: 22px 24px; border-bottom: 1px solid var(--line); vertical-align: top; }
.report-table thead th { color: #fff; background: var(--navy); font-size: .8rem; text-transform: uppercase; letter-spacing: .07em; }
.report-table tbody th { width: 18%; color: var(--navy); }
.report-table tbody tr:last-child th, .report-table tbody tr:last-child td { border-bottom: 0; }

.timeline { padding: 0; margin-bottom: 0; list-style: none; }
.timeline li { display: grid; grid-template-columns: 80px 1fr; gap: 28px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.timeline__number { color: var(--orange); font-size: 1.4rem; font-weight: 850; }
.timeline h3 { margin-bottom: 8px; }
.timeline p { max-width: 800px; margin: 0; }
.logistics-grid { display: grid; grid-template-columns: 1fr .9fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.logistics-grid h2 { font-size: clamp(2.2rem, 4vw, 3.6rem); }
.note { padding: 15px 18px; margin-top: 22px; border-left: 3px solid var(--orange); background: rgba(255,255,255,.06); font-size: .8rem; }
.compare-panel { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.comparison-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.comparison-columns article { padding: 30px; border-radius: 20px; background: #fff; border: 1px solid var(--line); }

.price-factors, .principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-factors article, .principle-grid article { padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.price-factors article > span, .principle-grid article > span { color: var(--orange); font-size: .78rem; font-weight: 850; }
.price-factors h3, .principle-grid h3 { margin: 18px 0 10px; }
.price-factors p, .principle-grid p { margin: 0; font-size: .9rem; }
.price-cta { display: flex; justify-content: space-between; align-items: center; gap: 30px; margin-top: 30px; padding: 28px 32px; border-radius: 20px; background: var(--navy); color: #fff; }
.price-cta div { display: flex; flex-direction: column; }
.price-cta strong { color: #fff; }
.price-cta span { color: #c5d2dc; font-size: .85rem; }
.channel-diagram { padding: 36px; border: 1px solid rgba(255,255,255,.15); border-radius: 28px; background: rgba(255,255,255,.05); }
.channel-core { position: relative; display: flex; flex-direction: column; align-items: center; padding: 30px; border-radius: 18px; background: #fff; color: var(--navy); }
.channel-core span { font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.channel-core strong { margin-top: 7px; color: var(--navy); font-size: 1.25rem; }
.channel-branches { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 46px; }
.channel-branches div { position: relative; display: flex; flex-direction: column; padding: 24px; border: 1px solid rgba(255,255,255,.18); border-radius: 16px; }
.channel-branches div::before { position: absolute; content: ""; width: 1px; height: 46px; left: 50%; bottom: 100%; background: rgba(255,255,255,.35); }
.channel-branches span { color: #fff; font-weight: 800; }
.channel-branches small { margin-top: 5px; color: #c5d2dc; }
.decision-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.decision-grid article { padding: 34px; border: 1px solid var(--line); border-radius: 22px; }
.decision-grid h3 { margin: 22px 0 12px; }

.story-grid, .founder-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 8vw, 110px); }
.story-copy p { font-size: 1.06rem; }
.founder-grid h2 { color: #fff; }
.founder-grid a { color: #fff; }

.simple-hero { padding: 90px 0 75px; background: var(--soft); }
.simple-hero--accent { background: var(--navy-deep); }
.simple-hero__inner { max-width: 940px; }
.simple-hero h1 { margin: 20px 0 22px; font-size: clamp(2.7rem, 5vw, 4.8rem); }
.simple-hero p { max-width: 800px; font-size: 1.08rem; }
.simple-hero--accent h1 { color: #fff; }
.simple-hero--accent p { color: #c5d2dc; }
.contact-grid, .proposal-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(45px, 8vw, 100px); align-items: start; }
.contact-list { padding: 0; margin: 36px 0; list-style: none; }
.contact-list li { display: flex; flex-direction: column; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-list li > span { color: var(--muted); font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.contact-list a, .contact-list address { margin-top: 6px; color: var(--navy); font-size: 1.05rem; font-weight: 700; font-style: normal; text-decoration: none; }
.contact-note, .proposal-hint { padding: 24px; border-radius: 18px; background: var(--soft); }
.contact-note p, .proposal-hint p { margin: 7px 0 0; font-size: .88rem; }
.contact-form { padding: 38px; border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); }
.form-heading { margin-bottom: 30px; }
.form-heading h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); }
.contact-form label:not(.check-field) { display: flex; flex-direction: column; gap: 8px; margin-bottom: 19px; color: var(--navy); font-size: .8rem; font-weight: 800; }
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; padding: 13px 15px; border: 1px solid #bdcbd4; border-radius: 10px; color: var(--ink); background: #fff; outline: 0; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(243,90,0,.12); }
.contact-form textarea { resize: vertical; }
.check-field { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; margin: 24px 0; color: var(--muted); font-size: .8rem; }
.check-field input { width: 18px; height: 18px; margin-top: 2px; }
.check-field a { color: var(--navy); }
.form-trap { position: absolute; left: -9999px; }
.form-status { min-height: 24px; margin: 14px 0 0; font-size: .85rem; }
.form-status.is-success { color: #08783f; }
.form-status.is-error { color: #b12f1c; }
.compact-steps { padding: 0; margin: 34px 0; list-style: none; }
.compact-steps li { display: grid; grid-template-columns: 48px 1fr; gap: 18px; margin: 22px 0; }
.compact-steps li > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: #fff; background: var(--navy); font-weight: 800; }
.compact-steps h3 { margin-bottom: 5px; }
.compact-steps p { margin: 0; }
.legal-copy h2 { margin: 46px 0 14px; font-size: 1.65rem; }
.legal-copy h2:first-child { margin-top: 0; }
.not-found { min-height: 65vh; display: grid; place-items: center; padding: 90px 0; text-align: center; }
.not-found .hero-actions { justify-content: center; }

.site-footer { padding: 76px 0 0; background: #001a30; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .65fr .65fr 1.35fr; gap: 42px; padding-bottom: 58px; }
.brand--footer { width: 210px; filter: brightness(0) invert(1); opacity: .9; }
.footer-intro p, .footer-family { color: #aebfcb; font-size: .86rem; }
.footer-intro > a:not(.brand) { color: #fff; font-weight: 700; }
.site-footer h2 { margin-bottom: 20px; color: #fff; font-size: .95rem; letter-spacing: 0; }
.footer-links { padding: 0; margin: 0; list-style: none; }
.footer-links li { margin: 10px 0; }
.footer-links a, .footer-family a { color: #bdcbd5; text-underline-offset: 3px; }
.footer-links a:hover, .footer-family a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.12); color: #91a5b3; font-size: .75rem; }

.cookie-notice { position: fixed; z-index: 200; right: 20px; bottom: 20px; width: min(470px, calc(100% - 40px)); padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow); }
.cookie-notice p { margin-bottom: 14px; font-size: .78rem; }
.cookie-notice > div { display: flex; justify-content: flex-end; gap: 10px; }

@media (max-width: 960px) {
    .topline { display: none; }
    .nav-wrap { min-height: 72px; }
    .brand { width: 190px; }
    .nav-toggle { display: block; }
    .primary-nav { position: absolute; display: none; flex-direction: column; align-items: stretch; gap: 0; top: 100%; left: 0; right: 0; padding: 14px 20px 24px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 20px 30px rgba(0,31,57,.1); }
    .primary-nav.is-open { display: flex; }
    .primary-nav > a:not(.button) { padding: 13px 4px; border-bottom: 1px solid var(--line); }
    .primary-nav > a::after { display: none; }
    .primary-nav .button { margin-top: 14px; }
    .hero { min-height: auto; }
    .hero-grid, .subhero-grid, .split-heading, .media-split, .logistics-grid, .compare-panel, .story-grid, .founder-grid, .contact-grid, .proposal-grid, .faq-layout { grid-template-columns: 1fr; }
    .hero-grid { padding: 70px 0 96px; }
    .subhero-grid { min-height: auto; }
    .subhero-grid > img { max-height: 380px; }
    .split-heading { gap: 20px; }
    .answer-box { grid-template-columns: 1fr; gap: 18px; }
    .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .process-grid, .price-factors, .principle-grid { grid-template-columns: repeat(2, 1fr); }
    .package-grid, .decision-grid, .ecosystem-grid { grid-template-columns: 1fr; }
    .package-card--featured { transform: none; }
    .media-split--reverse > :first-child { order: initial; }
    .faq-layout { gap: 25px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
    .shell { width: min(100% - 28px, 1180px); }
    .section { padding: 70px 0; }
    h1 { font-size: clamp(2.35rem, 12vw, 3.4rem); }
    h2 { font-size: clamp(1.9rem, 9vw, 2.75rem); }
    .hero-grid { grid-template-columns: 1fr; gap: 45px; }
    .load-card { padding: 25px; }
    .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
    .proof-grid div:nth-child(3) { padding-left: 0; border-left: 0; }
    .card-grid--3, .card-grid--4, .detail-grid, .process-grid, .price-factors, .principle-grid, .comparison-columns { grid-template-columns: 1fr; }
    .process-grid li, .problem-card, .feature-card, .detail-card, .package-card { padding: 27px; }
    .feature-list--columns { grid-template-columns: 1fr; }
    .compare-link, .price-cta, .cta-band__inner, .footer-bottom { align-items: flex-start; flex-direction: column; }
    .timeline li { grid-template-columns: 48px 1fr; gap: 15px; }
    .answer-box { padding: 28px 24px; }
    .field-grid { grid-template-columns: 1fr; gap: 0; }
    .contact-form { padding: 26px 20px; }
    .channel-branches { grid-template-columns: 1fr; }
    .channel-branches div::before { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
}

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