:root {
  --ink: #0a1d1a;
  --ink-2: #16312d;
  --forest: #0d342c;
  --green: #116452;
  --mint: #e5f2ec;
  --lime: #c8f55f;
  --paper: #f6f7f2;
  --white: #ffffff;
  --muted: #66736f;
  --line: #dbe1dc;
  --orange: #ff785a;
  --shadow: 0 24px 70px rgba(15, 49, 42, 0.14);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; padding: 12px 16px; background: var(--lime); border-radius: 8px; transition: top .2s; }
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s, box-shadow .25s;
}
.site-header.scrolled { background: rgba(246,247,242,.91); backdrop-filter: blur(18px); border-color: rgba(20,52,45,.1); box-shadow: 0 8px 30px rgba(10,29,26,.05); }
.nav-wrap { height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 19px; letter-spacing: -.5px; white-space: nowrap; }
.brand strong { font-weight: 750; }
.brand-mark { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: var(--ink); color: var(--lime); }
.brand-mark svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.brand-mark svg path:last-child { stroke-width: 1.3; opacity: .8; }
.main-nav { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.main-nav a, .text-link { font-size: 14px; font-weight: 600; color: #344a46; transition: color .2s; }
.main-nav a:hover, .text-link:hover { color: var(--green); }
.nav-actions { display: flex; align-items: center; gap: 22px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 16px; padding: 0 23px; border: 1px solid transparent; border-radius: 11px; font-weight: 720; font-size: 14px; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button span { font-size: 18px; line-height: 1; }
.button-small { min-height: 44px; padding: 0 18px; border-radius: 9px; }
.button-dark { background: var(--ink); color: white; box-shadow: 0 8px 24px rgba(10,29,26,.15); }
.button-primary { background: var(--green); color: white; box-shadow: 0 12px 30px rgba(17,100,82,.2); }
.button-primary:hover { background: #0d5545; box-shadow: 0 16px 34px rgba(17,100,82,.27); }
.button-ghost { border-color: #cbd4ce; background: rgba(255,255,255,.42); }
.button-ghost svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.button-outline { border-color: #c9d2cd; background: white; }
.button-lime { background: var(--lime); color: var(--ink); min-height: 58px; }
.menu-toggle { display: none; border: 0; background: none; width: 40px; height: 40px; padding: 9px; }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 6px 0; background: var(--ink); transition: transform .2s; }

.hero { min-height: 860px; position: relative; overflow: hidden; padding: 168px 0 52px; background: radial-gradient(circle at 85% 10%, #e0eee7 0, transparent 32%), linear-gradient(180deg, #f7f8f3, #f2f5f0); }
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .42; background-image: linear-gradient(rgba(18,67,57,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(18,67,57,.05) 1px, transparent 1px); background-size: 56px 56px; mask-image: linear-gradient(to bottom, black, transparent 78%); }
.hero-glow { position: absolute; width: 540px; height: 540px; border: 1px solid rgba(17,100,82,.10); border-radius: 50%; right: -110px; top: 105px; box-shadow: 0 0 0 90px rgba(17,100,82,.025), 0 0 0 180px rgba(17,100,82,.018); }
.hero-grid { position: relative; display: grid; grid-template-columns: .91fr 1.09fr; gap: 68px; align-items: center; }
.hero-copy { padding-top: 4px; }
.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 9px; text-transform: uppercase; color: var(--green); font-size: 12px; letter-spacing: 1.65px; font-weight: 800; }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: #21b782; box-shadow: 0 0 0 5px rgba(33,183,130,.12); }
.hero h1 { margin: 22px 0 24px; font-size: clamp(62px, 6vw, 86px); line-height: .94; letter-spacing: -5.7px; font-weight: 760; }
.hero h1 em { color: var(--green); font-family: Georgia, serif; font-weight: 400; }
.hero-lead { max-width: 560px; margin: 0; color: #50605c; font-size: 19px; line-height: 1.7; letter-spacing: -.15px; }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { display: flex; align-items: center; gap: 14px; margin-top: 30px; }
.hero-note p { margin: 0; color: #6e7a76; font-size: 12px; line-height: 1.55; }
.hero-note strong { color: var(--ink-2); }
.avatar-stack { display: flex; padding-left: 8px; }
.avatar-stack span { width: 30px; height: 30px; display: grid; place-items: center; margin-left: -8px; border: 2px solid var(--paper); border-radius: 50%; background: #d3e3da; color: var(--green); font-size: 9px; font-weight: 800; }
.avatar-stack span:nth-child(2) { background: #f1d8c2; color: #81502f; }
.avatar-stack span:nth-child(3) { background: #d9d7ef; color: #504b85; }

.api-window { border: 1px solid #28453f; border-radius: 18px; overflow: hidden; color: #dcebe6; background: #0b201d; box-shadow: 0 38px 80px rgba(10,29,26,.25), 0 0 0 8px rgba(255,255,255,.35); transform: rotate(.5deg); }
.window-bar { height: 51px; display: flex; align-items: center; padding: 0 18px; border-bottom: 1px solid #243d38; background: #102925; }
.window-dots { display: flex; gap: 6px; }
.window-dots span { width: 8px; height: 8px; border-radius: 50%; background: #36524c; }
.window-dots span:first-child { background: #ff765e; }
.window-title { margin: 0 auto; font-size: 11px; color: #8ba39d; letter-spacing: .3px; }
.status-pill { display: flex; align-items: center; gap: 6px; padding: 5px 8px; border: 1px solid #2c4a43; border-radius: 20px; color: #a8c2bb; font-size: 10px; }
.response-bar i { width: 6px; height: 6px; border-radius: 50%; background: #59db97; box-shadow: 0 0 8px rgba(89,219,151,.8); }
.request-tabs { height: 50px; display: flex; align-items: flex-end; gap: 6px; padding: 0 17px; border-bottom: 1px solid #233c37; }
.request-tab { height: 38px; padding: 0 14px; border: 0; border-bottom: 2px solid transparent; background: none; color: #718b85; cursor: pointer; font-size: 11px; }
.request-tab.active { color: #dcebe6; border-bottom-color: var(--lime); }
.endpoint-row { display: flex; align-items: center; gap: 12px; min-height: 61px; padding: 11px 16px; border-bottom: 1px solid #203934; background: #0e2521; }
.method { padding: 5px 8px; border-radius: 5px; background: rgba(200,245,95,.1); color: var(--lime); font-size: 10px; font-weight: 800; }
.endpoint-row code { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: #b7cac5; font-family: "SFMono-Regular", Consolas, monospace; font-size: 11px; }
.copy-button { display: grid; place-items: center; flex: 0 0 32px; height: 32px; margin-left: auto; border: 1px solid #2a4640; border-radius: 7px; background: #132e29; color: #8da59f; cursor: pointer; }
.copy-button svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.copy-button.copied { color: var(--lime); border-color: #527145; }
.code-area { min-height: 315px; padding: 24px; overflow: auto; background: linear-gradient(135deg, rgba(26,63,54,.24), transparent 50%); }
.code-area pre { margin: 0; white-space: pre-wrap; font-family: "SFMono-Regular", Consolas, monospace; font-size: 12px; line-height: 1.86; }
.token-key { color: #85dac2; }.token-string { color: #d9e797; }.token-number { color: #e3a783; }.token-bool { color: #c0abf5; }.token-punc { color: #89a29c; }
.response-bar { height: 43px; display: flex; align-items: center; gap: 22px; padding: 0 18px; border-top: 1px solid #203934; background: #102925; color: #78928c; font: 10px "SFMono-Regular", Consolas, monospace; }
.response-bar span:first-child { display: flex; align-items: center; gap: 7px; color: #8fd4b0; margin-right: auto; }
.proof-strip { position: relative; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; margin-top: 94px; padding: 25px 34px; border: 1px solid rgba(31,73,64,.12); border-radius: 16px; background: rgba(255,255,255,.6); backdrop-filter: blur(12px); }
.proof-item { display: flex; align-items: baseline; justify-content: center; gap: 9px; }
.proof-item strong { font-size: 23px; letter-spacing: -1px; }
.proof-item span { color: #697672; font-size: 11px; }
.proof-divider { width: 1px; height: 30px; background: #d8ded9; }

.section { padding: 118px 0; }
.product-section { background: white; }
.section-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 100px; align-items: end; margin-bottom: 52px; }
.section-heading h2, .center-heading h2, .coverage-copy h2, .cta-copy h2 { margin: 15px 0 0; font-size: clamp(42px, 4.6vw, 63px); line-height: 1.02; letter-spacing: -3.4px; }
.section-heading > p { margin: 0; color: var(--muted); line-height: 1.75; font-size: 16px; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.feature-card { position: relative; min-height: 354px; padding: 31px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #f8f9f5; }
.feature-wide { grid-column: 1 / -1; min-height: 420px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; padding: 52px; background: #eef5f0; }
.feature-index { display: block; margin-bottom: 58px; color: #83908c; font: 11px "SFMono-Regular", Consolas, monospace; }
.feature-card h3 { max-width: 420px; margin: 0 0 14px; font-size: 25px; letter-spacing: -1.1px; }
.feature-card p { max-width: 430px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.feature-copy { display: flex; flex-direction: column; align-items: flex-start; }
.feature-copy .feature-index { margin-bottom: auto; }
.feature-copy h3 { font-size: 34px; }
.feature-copy a { margin-top: 29px; color: var(--green); font-weight: 750; font-size: 13px; }
.feature-copy a span { margin-left: 7px; }
.hierarchy-demo { display: flex; flex-direction: column; justify-content: center; padding: 5px 20px; }
.hierarchy-row { min-height: 66px; display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 14px; padding: 10px 17px; border: 1px solid #d2ded6; border-radius: 12px; background: rgba(255,255,255,.76); box-shadow: 0 10px 25px rgba(29,73,62,.05); }
.hierarchy-row.active { border-color: #79a698; box-shadow: 0 0 0 3px rgba(17,100,82,.07), 0 12px 24px rgba(29,73,62,.08); }
.hierarchy-row.muted { opacity: .62; }
.hierarchy-icon { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 8px; background: var(--mint); color: var(--green); font: 10px "SFMono-Regular", Consolas, monospace; }
.hierarchy-row div { display: flex; flex-direction: column; gap: 3px; }
.hierarchy-row small { color: #86928e; font-size: 8px; letter-spacing: 1.2px; }
.hierarchy-row strong { font-size: 13px; }.hierarchy-row b { color: #83918d; font-weight: 400; }
.hierarchy-line { height: 10px; width: 1px; margin-left: 38px; background: #a9bdb5; }
.feature-icon { width: 53px; height: 53px; display: grid; place-items: center; margin-bottom: 54px; border: 1px solid rgba(255,255,255,.17); border-radius: 14px; color: white; }
.feature-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.feature-icon-green { background: var(--green); color: var(--lime); box-shadow: 0 12px 24px rgba(17,100,82,.17); }
.dark-card { background: var(--ink); color: white; border-color: var(--ink); }
.dark-card .feature-index, .dark-card p { color: #8fa59f; }
.dark-card::after { content: ""; position: absolute; width: 240px; height: 240px; right: -90px; top: -90px; border: 1px solid #28443e; border-radius: 50%; box-shadow: 0 0 0 45px rgba(255,255,255,.015), 0 0 0 90px rgba(255,255,255,.01); }
.mini-code { position: absolute; inset: auto 31px 31px; padding: 12px 14px; border: 1px solid #2e4742; border-radius: 9px; color: #8fa59f; background: #102824; font: 10px "SFMono-Regular", Consolas, monospace; }
.mini-code span { color: var(--lime); }

.coverage-section { padding: 0; color: white; background: var(--ink); }
.coverage-grid { width: min(100%, 1440px); display: grid; grid-template-columns: 1.12fr .88fr; }
.coverage-visual { position: relative; min-height: 790px; overflow: hidden; background: #0d2824; }
.coverage-visual::before { content: ""; position: absolute; width: 500px; height: 500px; left: 50%; top: 50%; transform: translate(-50%,-50%); border-radius: 50%; background: radial-gradient(circle, rgba(65,148,123,.18), transparent 68%); }
.map-grid { position: absolute; inset: 110px 90px; display: grid; grid-template-columns: repeat(8, 1fr); gap: 9px; transform: rotate(-8deg) skewX(-7deg); opacity: .85; }
.map-grid span { position: relative; min-height: 66px; border: 1px solid #285148; border-radius: 7px; background: #173a33; }
.map-grid span:nth-child(8n+1), .map-grid span:nth-child(8n+8) { opacity: .25; }
.map-grid span.hot { background: #256250; border-color: #4c8f7b; box-shadow: inset 0 0 20px rgba(200,245,95,.05); }
.map-label { position: absolute; display: flex; align-items: center; gap: 12px; padding: 12px 15px; border: 1px solid #3b5e56; border-radius: 10px; background: rgba(11,32,29,.88); backdrop-filter: blur(10px); box-shadow: 0 12px 34px rgba(0,0,0,.2); }
.map-label i { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(200,245,95,.11); }
.map-label span { display: flex; flex-direction: column; gap: 3px; }.map-label small { color: #7f9a93; font-size: 8px; letter-spacing: 1.2px; }.map-label strong { font-size: 11px; }
.map-label-istanbul { left: 13%; top: 28%; }.map-label-ankara { right: 18%; top: 48%; }
.coverage-badge { position: absolute; left: 10%; bottom: 10%; display: flex; flex-direction: column; padding-left: 17px; border-left: 2px solid var(--lime); }
.coverage-badge strong { font-size: 40px; letter-spacing: -2px; }.coverage-badge span { color: #859d97; font-size: 11px; }
.coverage-copy { padding: 105px 70px 90px; background: #0a201c; }
.section-kicker.light { color: var(--lime); }
.coverage-copy h2 { font-size: clamp(46px, 5vw, 68px); }
.coverage-copy > p { margin: 25px 0 43px; color: #91a49f; line-height: 1.75; }
.coverage-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid #27403a; }
.coverage-list li { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; min-height: 62px; border-bottom: 1px solid #27403a; }
.coverage-list li span { color: #637d76; font: 10px "SFMono-Regular", Consolas, monospace; }.coverage-list li strong { font-size: 13px; }.coverage-list li small { color: #6f8881; font-size: 10px; text-align: right; }

.use-cases { background: #eef1ec; }
.center-heading { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.center-heading .section-kicker { justify-content: center; }
.use-case-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.use-card { position: relative; min-height: 310px; padding: 27px; border: 1px solid #d6dcd7; border-radius: 18px; background: rgba(255,255,255,.6); transition: transform .25s, box-shadow .25s, background .25s; }
.use-card:hover { transform: translateY(-5px); background: white; box-shadow: 0 20px 45px rgba(20,52,45,.08); }
.use-card > span { color: #929c98; font: 10px "SFMono-Regular", Consolas, monospace; }
.use-icon { width: 50px; height: 50px; display: grid; place-items: center; margin-top: 65px; border-radius: 13px; color: var(--green); background: #dcebe3; font-size: 22px; }
.use-card h3 { margin: 22px 0 9px; font-size: 19px; }.use-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.pricing-section { background: white; }
.pricing-heading { margin-bottom: 46px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.price-card { position: relative; min-height: 520px; display: flex; flex-direction: column; padding: 33px; border: 1px solid var(--line); border-radius: 20px; background: #fbfcfa; }
.plan-name { font-weight: 800; font-size: 18px; }.price-card > div > p { min-height: 46px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.price { display: flex; flex-direction: column; gap: 7px; margin: 35px 0; padding-bottom: 32px; border-bottom: 1px solid var(--line); }.price strong { font-size: 35px; letter-spacing: -1.8px; }.price small { color: var(--muted); font-size: 11px; }
.price-card ul { display: flex; flex-direction: column; gap: 16px; margin: 0 0 34px; padding: 0; list-style: none; color: #41524e; font-size: 13px; }
.price-card li::before { content: "✓"; display: inline-grid; place-items: center; width: 18px; height: 18px; margin-right: 10px; border-radius: 50%; color: var(--green); background: var(--mint); font-size: 10px; font-weight: 800; }
.price-card .button { margin-top: auto; }
.featured-price { border: 2px solid var(--green); background: #f1f7f3; box-shadow: 0 22px 55px rgba(17,100,82,.12); }
.popular-label { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); padding: 7px 14px; border-radius: 20px; color: var(--lime); background: var(--green); font-size: 9px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; white-space: nowrap; }
.pricing-note { margin: 20px 0 0; color: #89938f; text-align: center; font-size: 10px; }

.cta-section { padding: 35px 0 100px; background: white; }
.cta-card { position: relative; min-height: 470px; display: grid; grid-template-columns: 1fr .8fr; gap: 70px; align-items: center; overflow: hidden; padding: 70px; border-radius: 28px; color: white; background: var(--green); }
.cta-pattern { position: absolute; width: 570px; height: 570px; top: -230px; right: -140px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 75px rgba(255,255,255,.025), 0 0 0 150px rgba(255,255,255,.018); }
.cta-copy { position: relative; }.cta-copy h2 { font-size: clamp(45px, 5vw, 65px); }.cta-copy p { max-width: 540px; color: #bed3cc; line-height: 1.7; }
.signup-form { position: relative; padding: 28px; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: rgba(5,37,30,.26); backdrop-filter: blur(12px); }
.signup-form label { display: block; margin-bottom: 8px; color: #d5e3df; font-size: 11px; font-weight: 700; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.form-field { min-width: 0; }
.input-row { display: flex; flex-direction: column; gap: 10px; }
.signup-form input, .signup-form textarea { width: 100%; padding: 0 14px; outline: none; border: 1px solid #4d7e72; border-radius: 9px; color: white; background: #174d40; resize: vertical; }
.signup-form input { height: 52px; }
.signup-form textarea { min-height: 78px; padding-top: 13px; line-height: 1.5; }
.signup-form input::placeholder, .signup-form textarea::placeholder { color: #87aaa1; }
.signup-form input:focus, .signup-form textarea:focus { border-color: var(--lime); box-shadow: 0 0 0 3px rgba(200,245,95,.12); }
.signup-form > p { margin: 12px 0 0; color: #9fc0b7; text-align: center; font-size: 9px; }.signup-form > p.success { color: var(--lime); font-size: 11px; }

.site-footer { color: white; background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 70px; padding-top: 74px; padding-bottom: 70px; }
.brand-footer { color: white; }.brand-footer .brand-mark { background: var(--lime); color: var(--ink); }
.footer-brand p { max-width: 330px; margin: 23px 0; color: #819791; font-size: 13px; line-height: 1.7; }.mail-link { color: var(--lime); font-size: 13px; font-weight: 700; }
.footer-column { display: flex; flex-direction: column; gap: 15px; }.footer-column h3 { margin: 5px 0 10px; color: #dbe5e2; font-size: 12px; }.footer-column a { color: #78908a; font-size: 12px; transition: color .2s; }.footer-column a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 23px; padding-bottom: 26px; border-top: 1px solid #203a34; color: #59736c; font-size: 10px; }.footer-bottom i { color: var(--lime); font-style: normal; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: none; }.reveal-delay { transition-delay: .12s; }

@media (max-width: 1060px) {
  .main-nav { gap: 18px; }.nav-actions .text-link { display: none; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 34px; }.hero h1 { font-size: 65px; }
  .coverage-copy { padding-inline: 45px; }.use-case-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .nav-wrap { height: 72px; }.nav-actions { display: none; }.menu-toggle { display: block; margin-left: auto; }
  .main-nav { position: fixed; inset: 72px 16px auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 10px; border: 1px solid var(--line); border-radius: 14px; background: white; box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }.main-nav a { padding: 14px; border-bottom: 1px solid #edf0ed; }.main-nav a:last-child { border-bottom: 0; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .hero { padding-top: 130px; }.hero-grid { grid-template-columns: 1fr; }.hero-copy { text-align: center; }.eyebrow { justify-content: center; }.hero-lead { margin-inline: auto; }.hero-actions, .hero-note { justify-content: center; }
  .api-window { max-width: 650px; width: 100%; margin: 30px auto 0; transform: none; }.proof-strip { margin-top: 60px; grid-template-columns: 1fr 1fr; gap: 24px; }.proof-divider { display: none; }
  .section { padding: 85px 0; }.section-heading { grid-template-columns: 1fr; gap: 24px; }.feature-wide { grid-template-columns: 1fr; }.feature-copy .feature-index { margin-bottom: 42px; }
  .coverage-grid { grid-template-columns: 1fr; }.coverage-visual { min-height: 560px; }.coverage-copy { padding: 80px 32px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 570px; margin: auto; }.price-card { min-height: 480px; }
  .cta-card { grid-template-columns: 1fr; gap: 40px; padding: 55px 40px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }.footer-brand { grid-column: 1/-1; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: 56px; letter-spacing: -4px; }.hero-lead { font-size: 16px; }.hero-actions { flex-direction: column; }.hero-actions .button { width: 100%; }
  .window-title { display: none; }.code-area { min-height: 335px; padding: 20px 16px; }.code-area pre { font-size: 10px; }.proof-strip { padding: 23px 15px; }.proof-item { flex-direction: column; align-items: center; gap: 2px; }
  .section-heading h2, .center-heading h2, .coverage-copy h2, .cta-copy h2 { font-size: 40px; letter-spacing: -2.5px; }
  .feature-grid { grid-template-columns: 1fr; }.feature-wide { grid-column: auto; padding: 30px 24px; }.feature-copy h3 { font-size: 28px; }.feature-card { padding: 25px; }.hierarchy-demo { padding: 15px 0 0; }
  .use-case-grid { grid-template-columns: 1fr; }.use-card { min-height: 250px; }.use-icon { margin-top: 40px; }
  .coverage-visual { min-height: 450px; }.map-grid { inset: 75px 20px; gap: 5px; }.map-grid span { min-height: 45px; }.map-label-istanbul { left: 6%; }.map-label-ankara { right: 6%; }.coverage-copy { padding-inline: 22px; }.coverage-list li { grid-template-columns: 35px 1fr auto; }
  .cta-card { width: calc(100% - 20px); padding: 42px 22px; border-radius: 22px; }.signup-form { padding: 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 45px 20px; }.footer-brand { grid-column: 1/-1; }.footer-bottom { flex-direction: column; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }.reveal { opacity: 1; transform: none; transition: none; }.button { transition: none; }
}
