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

:root {
  --ink: #10242a;
  --deep: #0b1d22;
  --deep-2: #122e34;
  --paper: #f5f2ea;
  --paper-2: #ece8dd;
  --white: #fffdf8;
  --orange: #e95e36;
  --orange-2: #ff7950;
  --mint: #b9d7cb;
  --line: rgba(16, 36, 42, .15);
  --muted: #667477;
  --radius: 16px;
  --shadow: 0 20px 70px rgba(10, 28, 33, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "IBM Plex Sans", "Segoe UI", sans-serif; font-size: 18px; line-height: 1.65; overflow-x: hidden; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, .brand b { font-family: "Archivo", "Segoe UI", sans-serif; }
.container { width: min(1420px, calc(100% - 64px)); margin: 0 auto; }
.section { padding: 118px 0; }
.kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--orange); font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.kicker::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 12px; padding: 0 25px; border: 0; border-radius: 5px; background: var(--orange); color: white; font-size: 15px; font-weight: 800; cursor: pointer; transition: transform .25s ease, background .25s ease, box-shadow .25s ease; }
.button:hover { transform: translateY(-3px); background: var(--orange-2); box-shadow: 0 12px 35px rgba(233,94,54,.28); }
.button.compact { min-height: 48px; padding: 0 22px; }
.button.dark { background: var(--deep); }
.text-link { display: inline-flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 800; border-bottom: 1px solid currentColor; padding-bottom: 5px; }
.text-link b { color: var(--orange); transition: transform .25s ease; }
.text-link:hover b { transform: translate(4px, -4px); }
.text-link.light { color: white; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.22,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.toast { position: fixed; z-index: 100; top: 104px; left: 50%; transform: translate(-50%, -15px); padding: 13px 22px; border-radius: 50px; background: var(--white); color: var(--ink); box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: .3s ease; font-size: 14px; font-weight: 700; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.site-header { position: absolute; z-index: 20; top: 0; left: 0; width: 100%; color: white; }
.utility-bar { height: 40px; border-bottom: 1px solid rgba(255,255,255,.18); background: rgba(8,25,30,.6); font-size: 12px; }
.utility-inner { height: 40px; display: flex; align-items: center; justify-content: space-between; }
.utility-inner div { display: flex; gap: 12px; align-items: center; }
.utility-inner a { font-weight: 800; }
.utility-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--orange); }
.nav-shell { height: 88px; display: grid; grid-template-columns: 220px 1fr auto; gap: 30px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.16); }
.brand { display: flex; align-items: center; gap: 13px; line-height: 1; }
.brand > span:last-child { display: grid; gap: 6px; }
.brand b { font-size: 25px; letter-spacing: .07em; }
.brand small { font-size: 9px; font-weight: 800; letter-spacing: .24em; opacity: .72; }
.brand-mark { position: relative; width: 47px; height: 42px; display: block; transform: skew(-9deg); }
.brand-mark i { position: absolute; left: 0; width: 45px; height: 9px; background: var(--orange); clip-path: polygon(0 0, 100% 0, 79% 100%, 0 100%); }
.brand-mark i:nth-child(1) { top: 1px; }
.brand-mark i:nth-child(2) { top: 15px; width: 36px; }
.brand-mark i:nth-child(3) { top: 29px; width: 27px; }
.nav-shell nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2.2vw, 36px); }
.nav-shell nav a { position: relative; font-size: 13px; font-weight: 700; white-space: nowrap; }
.nav-shell nav a::after { content: ""; position: absolute; left: 0; bottom: -10px; width: 0; height: 2px; background: var(--orange); transition: width .25s ease; }
.nav-shell nav a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.phone-link { display: grid; line-height: 1.2; }
.phone-link small { font-size: 10px; opacity: .68; }
.phone-link strong { margin-top: 4px; font-size: 14px; }
.menu-toggle { display: none; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: transparent; }
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 5px auto; background: white; }

.hero { position: relative; min-height: 790px; background: var(--deep); color: white; overflow: hidden; }
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide { background-size: cover; background-position: center; opacity: 0; transform: scale(1.035); transition: opacity 1s ease, transform 7s linear; }
.hero-slide.active { opacity: 1; transform: scale(1); }
.route-grid { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 92px 92px; mask-image: linear-gradient(90deg, #000, transparent 72%); }
.hero::after { content: ""; position: absolute; width: 370px; height: 370px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; right: -70px; bottom: -110px; box-shadow: 0 0 0 50px rgba(255,255,255,.025), 0 0 0 100px rgba(255,255,255,.02); }
.hero-content { position: relative; z-index: 2; min-height: 790px; display: flex; align-items: center; justify-content: space-between; padding-top: 105px; }
.hero-copy { width: min(690px, 62%); }
.eyebrow { display: flex; align-items: center; gap: 13px; color: #f8d8cc; font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.eyebrow span { display: grid; place-items: center; width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; color: var(--orange-2); }
.hero h1 { max-width: 680px; margin: 24px 0 22px; font-size: clamp(45px, 4.7vw, 68px); line-height: 1.03; letter-spacing: -.045em; }
.hero-copy > p { max-width: 640px; color: rgba(255,255,255,.82); font-size: 18px; line-height: 1.75; }
.hero-cta { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.hero-note { display: flex; align-items: center; gap: 12px; margin-top: 38px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.66); font-size: 12px; letter-spacing: .04em; }
.pulse { position: relative; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(233,94,54,.16); }
.pulse::after { content: ""; position: absolute; inset: -7px; border: 1px solid var(--orange); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(.6); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }
.hero-side-label { display: flex; align-items: center; gap: 13px; writing-mode: vertical-rl; transform: rotate(180deg); margin-right: 7px; font-size: 10px; letter-spacing: .32em; color: rgba(255,255,255,.38); }
.hero-side-label b { color: white; }
.hero-controls { position: absolute; z-index: 5; left: 50%; bottom: 28px; transform: translateX(-50%); display: flex; align-items: center; gap: 14px; }
.hero-controls > button { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: rgba(5,18,22,.32); color: white; cursor: pointer; transition: .25s ease; }
.hero-controls > button:hover { background: var(--orange); border-color: var(--orange); }
.slide-progress { display: flex; gap: 7px; }
.slide-progress button { width: 32px; height: 3px; border: 0; padding: 0; background: rgba(255,255,255,.3); cursor: pointer; }
.slide-progress button.active { background: var(--orange); }
.hero-controls .pause { width: auto; height: 32px; padding: 0 13px; border-radius: 30px; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }

.quote-launch { position: relative; z-index: 6; margin-top: -72px; }
.quote-shell { min-height: 144px; display: grid; grid-template-columns: 1.3fr 1fr 54px 1fr .9fr auto; align-items: center; gap: 22px; padding: 24px 28px; border: 1px solid rgba(255,255,255,.65); border-top: 4px solid var(--orange); border-radius: 12px; background: var(--white); box-shadow: var(--shadow); }
.quote-intro { display: flex; align-items: center; gap: 18px; }
.quote-intro > span { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; background: var(--deep); color: white; font-family: "Space Grotesk"; }
.quote-intro div { display: grid; }
.quote-intro small, .quote-shell label span { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.quote-intro strong { font-family: "Space Grotesk"; font-size: 18px; line-height: 1.25; }
.quote-shell label { display: grid; gap: 8px; }
.quote-shell input { min-width: 0; width: 100%; height: 44px; border: 0; border-bottom: 1px solid var(--line); outline: none; background: transparent; color: var(--ink); font-size: 14px; }
.quote-shell input:focus { border-color: var(--orange); }
.route-line { display: flex; align-items: center; gap: 5px; color: var(--muted); }
.route-line i { width: 8px; height: 8px; border-radius: 50%; background: #ccd1cd; transition: .3s ease; }
.route-line.complete i { background: var(--orange); }
.route-line.complete b { color: var(--orange); }
.quote-next { min-width: 136px; }
.trust-strip { padding: 46px 0 72px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-grid article { position: relative; min-height: 142px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; padding: 23px 24px; border-right: 1px solid var(--line); transition: background .25s ease, transform .25s ease; }
.trust-grid article:last-child { border-right: 0; }
.trust-grid article:hover { z-index: 2; background: var(--white); transform: translateY(-5px); box-shadow: 0 12px 35px rgba(10,28,33,.08); }
.trust-grid article > span { font-family: "Space Grotesk"; color: var(--orange); font-size: 12px; }
.trust-grid strong { display: block; font-family: "Space Grotesk"; font-size: 16px; }
.trust-grid p { margin: 5px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.trust-grid button { align-self: start; border: 0; background: transparent; cursor: pointer; }

.section-heading { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); align-items: end; gap: 70px; margin-bottom: 50px; }
.section-heading h2, .process-head h2, .scope-copy h2, .evidence-copy > h2, .story-title h2, .faq-intro h2 { max-width: 820px; margin: 14px 0 0; font-size: clamp(36px, 3.6vw, 54px); line-height: 1.08; letter-spacing: -.04em; }
.section-heading > p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.8; }
.services { padding-top: 80px; }
.service-workbench { display: grid; grid-template-columns: 355px 1fr; border: 1px solid var(--line); background: var(--white); box-shadow: 0 22px 65px rgba(10,28,33,.08); }
.service-tabs { display: grid; align-content: stretch; background: var(--deep); color: white; }
.service-tabs button { min-height: 81px; display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 10px; padding: 0 24px; border: 0; border-bottom: 1px solid rgba(255,255,255,.11); background: transparent; color: rgba(255,255,255,.72); text-align: left; cursor: pointer; transition: .25s ease; }
.service-tabs button span { font-size: 10px; color: rgba(255,255,255,.4); }
.service-tabs button b { opacity: 0; transform: translate(-6px, 6px); transition: .25s ease; }
.service-tabs button:hover, .service-tabs button.active { color: white; background: var(--orange); padding-left: 31px; }
.service-tabs button.active b { opacity: 1; transform: none; }
.service-detail { min-height: 510px; display: grid; grid-template-columns: 1.05fr .95fr; animation: appear .45s ease; }
@keyframes appear { from { opacity: 0; transform: translateX(15px); } }
.service-visual { position: relative; min-height: 510px; overflow: hidden; }
.service-visual img { height: 100%; object-fit: cover; transition: transform .8s ease; }
.service-detail:hover .service-visual img { transform: scale(1.04); }
.service-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(8,24,29,.5)); }
.service-visual > span { position: absolute; z-index: 2; left: 24px; bottom: 22px; color: white; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.service-visual > b { position: absolute; z-index: 2; top: 20px; right: 20px; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--white); color: var(--ink); }
.service-info { display: flex; flex-direction: column; justify-content: center; padding: 60px; }
.service-info h3 { margin: 15px 0; font-size: 38px; line-height: 1.1; letter-spacing: -.035em; }
.service-info > p { color: var(--muted); font-size: 15px; line-height: 1.85; }
.service-info ul { display: grid; gap: 13px; padding: 0; margin: 14px 0 30px; list-style: none; }
.service-info li { display: flex; align-items: center; gap: 11px; font-size: 14px; font-weight: 700; }
.service-info li i { width: 18px; height: 18px; border: 1px solid var(--orange); border-radius: 50%; position: relative; }
.service-info li i::after { content: ""; position: absolute; width: 5px; height: 8px; left: 5px; top: 2px; border: solid var(--orange); border-width: 0 2px 2px 0; transform: rotate(45deg); }

.cases { position: relative; background: var(--deep); color: white; overflow: hidden; }
.cases::before { content: ""; position: absolute; right: 5%; top: 11%; width: 420px; height: 420px; border: 1px solid rgba(255,255,255,.045); border-radius: 50%; box-shadow: 0 0 0 54px rgba(255,255,255,.018), 0 0 0 108px rgba(255,255,255,.012); }
.section-heading.light > p { color: rgba(255,255,255,.63); }
.case-controls { display: flex; gap: 10px; }
.case-controls button { width: 52px; height: 52px; border: 1px solid rgba(255,255,255,.2); background: transparent; color: white; cursor: pointer; transition: .2s ease; }
.case-controls button:hover { background: var(--orange); border-color: var(--orange); }
.case-track { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 18px; min-height: 570px; }
.case-track article { position: relative; min-height: 570px; overflow: hidden; background: #1a3238; }
.case-track img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.case-track article:hover img { transform: scale(1.055); }
.case-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,20,24,.05), rgba(7,20,24,.93)); }
.case-top { position: absolute; top: 24px; left: 24px; right: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.case-top span { padding: 7px 10px; background: var(--orange); }
.case-copy { position: absolute; left: 28px; right: 28px; bottom: 27px; }
.case-copy small { color: var(--mint); font-size: 11px; }
.case-copy h3 { margin: 10px 0 12px; font-size: 26px; line-height: 1.17; }
.case-copy p { max-height: 0; margin: 0; overflow: hidden; color: rgba(255,255,255,.72); font-size: 13px; opacity: 0; transition: max-height .4s ease, opacity .4s ease, margin .4s ease; }
.case-track article:hover .case-copy p, .case-track .featured .case-copy p { max-height: 130px; margin-bottom: 17px; opacity: 1; }
.case-copy a { font-size: 12px; font-weight: 800; }
.case-copy a b { color: var(--orange-2); }
.case-disclaimer { margin-top: 20px; color: rgba(255,255,255,.43); font-size: 11px; }

.process { background: var(--white); }
.process-head { display: grid; grid-template-columns: minmax(0, 1fr) auto; grid-template-areas: "kicker switch" "title switch"; align-items: end; margin-bottom: 48px; }
.process-head .kicker { grid-area: kicker; }
.process-head h2 { grid-area: title; }
.process-switch { grid-area: switch; display: flex; border: 1px solid var(--line); }
.process-switch button { min-height: 48px; padding: 0 21px; border: 0; background: transparent; font-size: 13px; font-weight: 800; cursor: pointer; }
.process-switch button.active { background: var(--deep); color: white; }
.process-stage { display: grid; grid-template-columns: .85fr 1.15fr; min-height: 590px; }
.process-stage > img { width: 100%; height: 590px; object-fit: cover; }
.steps { display: grid; background: var(--paper); }
.steps article { display: grid; grid-template-columns: 76px 1fr; gap: 20px; align-items: center; padding: 28px 42px; border-bottom: 1px solid var(--line); transition: .25s ease; }
.steps article:last-child { border-bottom: 0; }
.steps article:hover { background: var(--deep); color: white; padding-left: 50px; }
.steps article > span { display: grid; place-items: center; width: 52px; height: 52px; border: 1px solid var(--line); border-radius: 50%; font-family: "Space Grotesk"; color: var(--orange); }
.steps h3 { margin: 0 0 5px; font-size: 19px; }
.steps p { margin: 0; color: var(--muted); font-size: 13px; }
.steps article:hover p { color: rgba(255,255,255,.66); }

.scope-builder { background: var(--paper-2); }
.scope-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 85px; align-items: center; }
.scope-copy > p { color: var(--muted); font-size: 15px; }
.scope-status { display: flex; align-items: center; gap: 14px; margin: 30px 0; padding: 17px 19px; border-left: 3px solid var(--orange); background: rgba(255,255,255,.58); font-size: 13px; }
.scope-panel { padding: 43px; background: var(--white); box-shadow: var(--shadow); }
.scope-row { display: grid; grid-template-columns: 145px 1fr; gap: 20px; padding: 23px 0; border-bottom: 1px solid var(--line); }
.scope-row > span { padding-top: 8px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.scope-row > div { display: flex; flex-wrap: wrap; gap: 9px; }
.scope-row button { min-height: 39px; padding: 0 14px; border: 1px solid var(--line); border-radius: 30px; background: transparent; font-size: 12px; cursor: pointer; transition: .2s ease; }
.scope-row button:hover, .scope-row button.active { background: var(--deep); border-color: var(--deep); color: white; transform: translateY(-2px); }
.scope-summary { display: grid; grid-template-columns: 145px 1fr; gap: 20px; padding-top: 25px; }
.scope-summary > span { font-size: 12px; font-weight: 800; }
.scope-summary div { display: flex; flex-wrap: wrap; gap: 7px; }
.scope-summary b { padding: 5px 9px; background: rgba(233,94,54,.11); color: var(--orange); font-size: 10px; }
.scope-summary em { color: var(--muted); font-size: 12px; }

.evidence { background: var(--white); }
.evidence-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.evidence-visual { position: relative; min-height: 690px; padding-right: 50px; }
.evidence-visual > img { width: 100%; height: 690px; object-fit: cover; clip-path: polygon(0 0, 100% 0, 100% 90%, 89% 100%, 0 100%); }
.floating-card { position: absolute; right: 0; bottom: 58px; width: 280px; padding: 25px; background: var(--orange); color: white; box-shadow: var(--shadow); }
.floating-card small { display: block; margin-bottom: 9px; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.floating-card strong { font-family: "Space Grotesk"; font-size: 19px; line-height: 1.3; }
.image-index { position: absolute; left: 22px; top: 22px; padding: 8px 10px; background: rgba(10,28,33,.8); color: white; font-size: 10px; }
.evidence-copy > p { color: var(--muted); font-size: 15px; }
.evidence-copy article { display: grid; grid-template-columns: 42px 1fr 38px; gap: 16px; align-items: start; padding: 20px 0; border-bottom: 1px solid var(--line); transition: padding .25s ease; }
.evidence-copy article:hover { padding-left: 10px; }
.evidence-copy article > span { color: var(--orange); font: 700 12px/1 "Space Grotesk"; }
.evidence-copy h3 { margin: 0 0 5px; font-size: 18px; }
.evidence-copy article p { margin: 0; color: var(--muted); font-size: 12px; }
.evidence-copy button { border: 0; background: transparent; cursor: pointer; }

.routes { background: var(--paper); }
.route-map { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); min-height: 390px; padding-top: 85px; }
.map-lines { position: absolute; top: 0; left: 7%; right: 7%; height: 120px; }
.map-lines::before { content: ""; position: absolute; left: 0; right: 0; top: 62px; border-top: 1px dashed rgba(16,36,42,.28); }
.map-lines i { position: absolute; top: 55px; width: 15px; height: 15px; border: 4px solid var(--paper); border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 1px var(--orange); }
.map-lines i:nth-child(1) { left: 3%; }.map-lines i:nth-child(2) { left: 34%; }.map-lines i:nth-child(3) { left: 65%; }.map-lines i:nth-child(4) { right: 3%; }
.route-map article { position: relative; min-height: 290px; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; border: 1px solid var(--line); border-right: 0; background: rgba(255,255,255,.42); transition: .3s ease; }
.route-map article:last-child { border-right: 1px solid var(--line); }
.route-map article:hover { z-index: 3; background: var(--deep); color: white; transform: translateY(-12px); box-shadow: var(--shadow); }
.route-map article > span { position: absolute; top: 24px; left: 28px; color: var(--orange); font: 700 12px/1 "Space Grotesk"; }
.cities { display: flex; align-items: center; gap: 10px; font-family: "Space Grotesk"; font-size: 20px; }
.cities i { color: var(--orange); font-style: normal; }
.route-map small { margin-top: 15px; color: var(--muted); font-size: 11px; }
.route-map article:hover small { color: rgba(255,255,255,.57); }
.route-map article > b { margin-top: 5px; font-size: 12px; }
.route-map article > a { position: absolute; right: 23px; top: 22px; }

.seo-story { background: var(--deep-2); color: white; }
.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; }
.story-title h2 { font-size: clamp(39px, 4vw, 58px); }
.story-stat { display: flex; align-items: center; gap: 20px; margin-top: 55px; }
.story-stat span { display: grid; place-items: center; width: 64px; height: 64px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: var(--orange-2); }
.story-stat p { margin: 0; color: rgba(255,255,255,.58); font-size: 12px; }
.story-copy { padding-top: 34px; }
.story-copy p { color: rgba(255,255,255,.73); font-size: 16px; line-height: 1.95; }
.story-copy .text-link { margin-top: 15px; color: white; }

.testimonials { background: var(--paper-2); }
.demo-badge { padding: 8px 12px; border: 1px solid rgba(233,94,54,.3); color: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testimonial-grid article { min-height: 350px; display: flex; flex-direction: column; justify-content: space-between; padding: 34px; border: 1px solid var(--line); background: var(--white); transition: .3s ease; }
.testimonial-grid article:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.quote-mark { color: var(--orange); font: 700 66px/.6 Georgia, serif; }
.testimonial-grid article > p { color: var(--ink); font-size: 15px; line-height: 1.9; }
.testimonial-grid article > div:last-child { display: flex; align-items: center; gap: 15px; }
.testimonial-grid article > div:last-child > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--deep); color: white; font-size: 11px; }
.testimonial-grid article > div p { display: grid; margin: 0; }
.testimonial-grid small { color: var(--muted); font-size: 10px; }
.demo-note { margin: 18px 0 0; color: var(--muted); font-size: 10px; }

.guide { background: var(--white); }
.guide-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 28px; }
.guide-feature { position: relative; min-height: 580px; overflow: hidden; }
.guide-feature img { position: absolute; inset: 0; height: 100%; object-fit: cover; transition: transform .8s ease; }
.guide-feature:hover img { transform: scale(1.04); }
.guide-feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(7,20,24,.92)); }
.guide-feature > div { position: absolute; z-index: 2; left: 38px; right: 38px; bottom: 33px; color: white; }
.guide-feature span, .guide-list small { color: var(--orange-2); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.guide-feature h3 { margin: 10px 0; max-width: 600px; font-size: 31px; line-height: 1.15; }
.guide-feature p { max-width: 600px; color: rgba(255,255,255,.69); font-size: 13px; }
.guide-feature a { font-size: 12px; font-weight: 800; }
.guide-list { display: grid; }
.guide-list > article { display: grid; grid-template-columns: 44px 1fr 35px; gap: 15px; align-items: center; padding: 23px 25px; border-top: 1px solid var(--line); transition: .25s ease; }
.guide-list > article:hover { background: var(--paper); padding-left: 32px; }
.guide-list > article > span { color: var(--orange); font-size: 11px; }
.guide-list h3 { margin: 5px 0 0; font-size: 18px; line-height: 1.3; }
.download-card { display: grid; grid-template-columns: 60px 1fr 30px; align-items: center; gap: 17px; padding: 24px; background: var(--orange); color: white; }
.download-card > span { display: grid; place-items: center; width: 54px; height: 54px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; font-size: 11px; }
.download-card div { display: grid; }
.download-card small { color: rgba(255,255,255,.75); }
.download-card strong { font-family: "Space Grotesk"; }

.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; }
.faq-intro > p { color: var(--muted); font-size: 15px; }
.faq-intro .button { margin-top: 20px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list article { border-bottom: 1px solid var(--line); }
.faq-list article > button { width: 100%; display: grid; grid-template-columns: 48px 1fr 34px; gap: 12px; align-items: center; padding: 24px 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
.faq-list article > button span { color: var(--orange); font-size: 10px; }
.faq-list article > button strong { font-family: "Space Grotesk"; font-size: 18px; }
.faq-list article > button b { font-size: 25px; font-weight: 400; text-align: right; }
.faq-list article > div { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.faq-list article > div > p { overflow: hidden; margin: 0 46px 0 60px; color: var(--muted); font-size: 14px; }
.faq-list article.open > div { grid-template-rows: 1fr; }
.faq-list article.open > div > p { margin-bottom: 24px; }

.final-cta { position: relative; overflow: hidden; padding: 88px 0; background: var(--orange); color: white; }
.final-cta::before { content: ""; position: absolute; width: 450px; height: 450px; left: -140px; top: -220px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; box-shadow: 0 0 0 60px rgba(255,255,255,.035), 0 0 0 120px rgba(255,255,255,.025); }
.final-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.final-grid .kicker { color: white; opacity: .75; }
.final-grid h2 { margin: 12px 0 0; font-size: clamp(38px, 3.8vw, 56px); line-height: 1.08; letter-spacing: -.04em; }
.final-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.light-button { grid-column: 1 / -1; min-height: 63px; background: var(--white); color: var(--ink); }
.light-button:hover { background: white; color: var(--ink); }
.final-actions > a:not(.button) { display: grid; padding: 18px; border: 1px solid rgba(255,255,255,.36); font-size: 11px; }
.final-actions > a strong { margin-top: 3px; font-size: 13px; }

footer { padding: 82px 0 18px; background: #07171b; color: rgba(255,255,255,.7); }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 65px; }
.brand.inverted { color: white; }
.footer-brand > p { max-width: 360px; margin: 28px 0; font-size: 13px; }
.socials { display: flex; gap: 8px; }
.socials a { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; font-size: 10px; transition: .2s ease; }
.socials a:hover { background: var(--orange); border-color: var(--orange); color: white; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-grid h3 { margin-bottom: 14px; color: white; font-size: 16px; }
.footer-grid a, .footer-grid p { font-size: 12px; }
.footer-grid a:hover { color: var(--orange-2); }
.footer-grid > div > strong { color: white; font-family: "Space Grotesk"; font-size: 21px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 65px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.11); font-size: 10px; }
.footer-bottom div { display: flex; gap: 22px; }
.mobile-actions { display: none; }

@media (max-width: 1180px) {
  .container { width: min(100% - 42px, 1120px); }
  .nav-shell { grid-template-columns: 180px 1fr auto; }
  .nav-shell nav { gap: 15px; }
  .nav-shell nav a { font-size: 11px; }
  .phone-link { display: none; }
  .quote-shell { grid-template-columns: 1.1fr 1fr 35px 1fr 1fr; }
  .quote-next { grid-column: 1 / -1; }
  .service-workbench { grid-template-columns: 290px 1fr; }
  .service-info { padding: 42px; }
  .case-track { grid-template-columns: 1.15fr 1fr; }
  .case-track article:last-child { display: none; }
}

@media (max-width: 900px) {
  body { font-size: 16px; }
  .container { width: min(100% - 32px, 820px); }
  .section { padding: 82px 0; }
  .utility-inner > span, .utility-inner .utility-dot, .utility-inner div { font-size: 10px; }
  .nav-shell { height: 78px; display: flex; justify-content: space-between; }
  .nav-shell nav { position: absolute; top: 118px; left: 16px; right: 16px; display: grid; gap: 0; padding: 15px; background: var(--deep); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .25s ease; box-shadow: var(--shadow); }
  .nav-shell nav.open { opacity: 1; visibility: visible; transform: none; }
  .nav-shell nav a { padding: 13px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 13px; }
  .nav-actions .compact { display: none; }
  .menu-toggle { display: block; }
  .hero, .hero-content { min-height: 700px; }
  .hero-content { padding-top: 120px; align-items: center; }
  .hero-copy { width: 90%; }
  .hero h1 { font-size: clamp(42px, 8vw, 58px); }
  .hero-side-label { display: none; }
  .hero-controls { bottom: 24px; }
  .quote-launch { margin-top: -45px; }
  .quote-shell { grid-template-columns: 1fr 1fr; padding: 24px; }
  .quote-intro { grid-column: 1 / -1; }
  .route-line { display: none; }
  .quote-next { grid-column: 1 / -1; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid article:nth-child(2) { border-right: 0; }
  .trust-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .section-heading h2, .process-head h2, .scope-copy h2, .evidence-copy > h2, .story-title h2, .faq-intro h2 { font-size: clamp(35px, 6vw, 48px); }
  .service-workbench { grid-template-columns: 1fr; }
  .service-tabs { grid-template-columns: 1fr 1fr; }
  .service-tabs button { min-height: 68px; }
  .service-detail { grid-template-columns: 1fr; }
  .service-visual { min-height: 410px; }
  .case-track { grid-template-columns: 1fr 1fr; min-height: 520px; }
  .case-track article { min-height: 520px; }
  .process-head { grid-template-columns: 1fr; grid-template-areas: "kicker" "title" "switch"; gap: 24px; }
  .process-switch { justify-self: start; }
  .process-stage { grid-template-columns: 1fr; }
  .process-stage > img { height: 430px; }
  .scope-grid, .evidence-grid, .story-grid, .faq-grid, .final-grid { grid-template-columns: 1fr; gap: 55px; }
  .evidence-visual { min-height: 590px; }
  .evidence-visual > img { height: 590px; }
  .route-map { grid-template-columns: 1fr 1fr; padding-top: 0; }
  .map-lines { display: none; }
  .route-map article:nth-child(2) { border-right: 1px solid var(--line); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-grid article { min-height: auto; }
  .guide-grid { grid-template-columns: 1fr; }
  .final-actions { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  html { scroll-padding-top: 70px; }
  body { padding-bottom: 58px; }
  .container { width: calc(100% - 28px); }
  .section { padding: 70px 0; }
  .utility-inner > span { display: none; }
  .utility-inner { justify-content: flex-end; }
  .brand b { font-size: 21px; }
  .brand-mark { transform: scale(.86) skew(-9deg); transform-origin: left center; margin-right: -5px; }
  .hero, .hero-content { min-height: 690px; }
  .hero-slide { background-position: 62% center; }
  .hero-content { padding-top: 118px; align-items: flex-start; }
  .hero-copy { width: 100%; padding-top: 70px; }
  .eyebrow { font-size: 10px; line-height: 1.4; }
  .hero h1 { margin-top: 18px; font-size: 42px; }
  .hero-copy > p { font-size: 16px; line-height: 1.65; }
  .hero-cta { align-items: flex-start; flex-direction: column; gap: 18px; margin-top: 26px; }
  .hero-note { margin-top: 24px; font-size: 10px; }
  .hero-controls { bottom: 38px; }
  .hero-controls .pause { display: none; }
  .quote-launch { margin-top: 0; background: var(--white); }
  .quote-shell { width: 100%; grid-template-columns: 1fr; border: 0; border-top: 4px solid var(--orange); border-radius: 0; box-shadow: none; }
  .quote-intro, .quote-next { grid-column: auto; }
  .trust-strip { padding: 30px 0 55px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-grid article:last-child { border-bottom: 0; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2, .process-head h2, .scope-copy h2, .evidence-copy > h2, .story-title h2, .faq-intro h2 { font-size: 35px; }
  .service-tabs { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .service-tabs button { min-width: 220px; scroll-snap-align: start; }
  .service-detail { min-height: auto; }
  .service-visual { min-height: 340px; }
  .service-info { padding: 34px 25px 40px; }
  .service-info h3 { font-size: 31px; }
  .case-track { display: block; min-height: 540px; }
  .case-track article { display: none; min-height: 540px; }
  .case-track article:first-child { display: block; }
  .case-track .case-copy p { max-height: 150px; margin-bottom: 17px; opacity: 1; }
  .process-switch { width: 100%; }
  .process-switch button { flex: 1; padding: 0 10px; }
  .process-stage > img { height: 330px; }
  .steps article { grid-template-columns: 54px 1fr; padding: 24px 20px; }
  .steps article:hover { padding-left: 24px; }
  .scope-panel { padding: 28px 20px; }
  .scope-row, .scope-summary { grid-template-columns: 1fr; gap: 12px; }
  .evidence-visual { min-height: 460px; padding-right: 22px; }
  .evidence-visual > img { height: 460px; }
  .floating-card { width: 235px; right: 0; bottom: 25px; }
  .evidence-copy article { grid-template-columns: 34px 1fr 25px; }
  .route-map { grid-template-columns: 1fr; }
  .route-map article { min-height: 220px; border-right: 1px solid var(--line); }
  .story-grid { gap: 25px; }
  .story-copy { padding-top: 0; }
  .testimonial-grid article { padding: 27px; }
  .guide-feature { min-height: 500px; }
  .guide-feature > div { left: 24px; right: 24px; bottom: 24px; }
  .guide-feature h3 { font-size: 27px; }
  .guide-list > article { grid-template-columns: 35px 1fr 25px; padding: 22px 10px; }
  .download-card { grid-template-columns: 54px 1fr 20px; padding: 20px 14px; }
  .faq-list article > button { grid-template-columns: 35px 1fr 25px; }
  .faq-list article > button strong { font-size: 16px; }
  .faq-list article > div > p { margin-left: 47px; margin-right: 15px; }
  .final-actions { grid-template-columns: 1fr; }
  .light-button { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 42px 25px; }
  .footer-brand, .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .mobile-actions { position: fixed; z-index: 50; bottom: 0; left: 0; right: 0; display: grid; grid-template-columns: 1fr 1fr 1.2fr; height: 58px; background: var(--white); box-shadow: 0 -7px 28px rgba(10,28,33,.15); }
  .mobile-actions a { display: grid; place-items: center; border-right: 1px solid var(--line); font-size: 12px; font-weight: 800; }
  .mobile-actions a:last-child { background: var(--orange); color: white; }
}

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

/* Revizyon iki  Menü, plan konsolu, rota sahnesi ve operasyon footer */
.site-header { transition: transform .35s ease; }
.nav-shell { grid-template-columns: 235px 1fr auto; height: 84px; margin-top: 14px; padding: 0 14px 0 0; border: 0; border-radius: 15px; background: rgba(255,253,248,.97); color: var(--ink); box-shadow: 0 18px 55px rgba(3,18,22,.22); backdrop-filter: blur(16px); }
.nav-shell .brand { align-self: stretch; padding: 0 44px 0 26px; background: var(--deep); color: white; clip-path: polygon(0 0, 100% 0, calc(100% - 27px) 50%, 100% 100%, 0 100%); border-radius: 14px 0 0 14px; }
.nav-shell nav a { font-size: 12px; color: var(--ink); }
.nav-shell nav a::after { bottom: -13px; }
.nav-shell .phone-link { color: var(--ink); }
.nav-shell .menu-toggle { border-color: var(--line); }
.nav-shell .menu-toggle span { background: var(--ink); }
.site-header.is-sticky { position: fixed; transform: translateY(0); }
.site-header.is-sticky .utility-bar { height: 0; overflow: hidden; border: 0; opacity: 0; }
.site-header.is-sticky .nav-shell { height: 70px; margin-top: 8px; box-shadow: 0 12px 44px rgba(3,18,22,.2); }
.site-header.is-sticky .brand b { font-size: 21px; }
.hero-content { padding-top: 145px; }

.quote-launch { margin-top: -54px; }
.move-console { position: relative; overflow: hidden; border-top: 4px solid var(--orange); border-radius: 12px; background: var(--deep); color: white; box-shadow: 0 24px 70px rgba(7,24,29,.24); }
.move-console::after { content: ""; position: absolute; top: -110px; right: -65px; width: 290px; height: 290px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 46px rgba(255,255,255,.025), 0 0 0 92px rgba(255,255,255,.018); pointer-events: none; }
.console-head { min-height: 96px; display: grid; grid-template-columns: 235px 300px 1fr; gap: 30px; align-items: center; padding: 20px 30px; }
.console-head > div:nth-child(2) { display: grid; }
.console-head > div:nth-child(2) small { color: var(--mint); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.console-head > div:nth-child(2) strong { font: 600 20px/1.3 "Space Grotesk", sans-serif; }
.console-head > p { max-width: 530px; justify-self: end; margin: 0; color: rgba(255,255,255,.58); font-size: 12px; }
.console-index { display: flex; align-items: center; gap: 12px; }
.console-index span { display: grid; place-items: center; width: 43px; height: 43px; border-radius: 50%; background: var(--orange); font: 700 12px/1 "Space Grotesk"; }
.console-index i { width: 34px; height: 1px; background: rgba(255,255,255,.25); }
.console-index b { font-size: 9px; letter-spacing: .16em; }
.console-form { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 48px 1fr .85fr auto; align-items: center; gap: 20px; padding: 23px 30px; background: var(--white); color: var(--ink); }
.console-form label { display: grid; gap: 5px; }
.console-form label span { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.console-form input { width: 100%; height: 43px; border: 0; border-bottom: 1px solid var(--line); outline: none; background: transparent; color: var(--ink); font-size: 14px; }
.console-form input:focus { border-color: var(--orange); }
.route-pulse { display: flex; align-items: center; justify-content: center; gap: 4px; color: var(--orange); }
.route-pulse i { width: 7px; height: 7px; border: 2px solid var(--orange); border-radius: 50%; }
.route-pulse span { font-size: 16px; }
.console-foot { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); min-height: 42px; background: #132b31; }
.console-foot span { display: flex; align-items: center; gap: 9px; padding: 0 28px; border-right: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.62); font-size: 11px; letter-spacing: .02em; }
.console-foot span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--mint); }
.plan-proof { position: relative; padding: 27px 0 78px; background: var(--paper); }
.proof-shell { display: grid; grid-template-columns: 280px 1fr; align-items: stretch; border: 1px solid var(--line); background: rgba(255,253,248,.6); }
.proof-title { display: flex; flex-direction: column; justify-content: center; padding: 26px; border-right: 1px solid var(--line); }
.proof-title small { color: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.proof-title strong { margin-top: 6px; font: 600 17px/1.35 "Space Grotesk"; }
.proof-track { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-track article { position: relative; min-height: 120px; display: grid; grid-template-columns: 48px 1fr; gap: 12px; align-items: center; padding: 20px; border-right: 1px solid var(--line); transition: .25s ease; }
.proof-track article:last-child { border: 0; }
.proof-track article:hover { z-index: 2; background: var(--deep); color: white; transform: translateY(-5px); box-shadow: var(--shadow); }
.proof-track article p { margin: 4px 0 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.proof-track article:hover p { color: rgba(255,255,255,.58); }
.proof-track article b { font: 600 14px/1.3 "Space Grotesk"; }
.proof-track article em { position: absolute; right: 10px; top: 8px; color: rgba(16,36,42,.16); font: normal 700 10px/1 "Space Grotesk"; }
.proof-track article:hover em { color: var(--orange-2); }
.proof-icon { position: relative; display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid rgba(233,94,54,.5); color: var(--orange); font: 700 18px/1 "Space Grotesk"; transform: rotate(45deg); }
.proof-icon::after { transform: rotate(-45deg); }
.proof-icon.contract::after { content: "≡"; }.proof-icon.wrap::after { content: "◇"; }.proof-icon.truck::after { content: "▰"; font-size: 13px; }.proof-icon.check::after { content: "✓"; }

.services, .scope-builder, .guide { position: relative; overflow: hidden; }
.services::before, .scope-builder::before, .guide::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .38; background-image: radial-gradient(rgba(16,36,42,.16) 1px, transparent 1px); background-size: 18px 18px; mask-image: linear-gradient(135deg, #000, transparent 32%, transparent 70%, #000); }
.services::after { content: ""; position: absolute; right: -80px; top: 155px; }
.service-workbench, .section-heading, .guide-grid { position: relative; z-index: 2; }
.scope-builder::before { background-image: repeating-linear-gradient(45deg, transparent 0 28px, rgba(16,36,42,.055) 28px 29px); }
.guide::before { background-size: 22px 22px; mask-image: linear-gradient(45deg, #000, transparent 42%); }

.routes { position: relative; overflow: hidden; background: #e7e2d6; }
.routes .reveal { opacity: 1; transform: none; }
.routes::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(16,36,42,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(16,36,42,.04) 1px, transparent 1px); background-size: 60px 60px; }
.route-watermark { position: absolute; right: -32px; top: 30px; color: rgba(16,36,42,.045); font: 700 170px/1 "Space Grotesk"; writing-mode: vertical-rl; }
.route-theater { position: relative; z-index: 2; min-height: 625px; display: grid; grid-template-columns: 1.3fr .7fr; background: var(--deep); box-shadow: 0 25px 75px rgba(9,28,33,.18); }
.route-visual { position: relative; overflow: hidden; min-height: 625px; }
.route-visual > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.route-visual-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,23,27,.12), rgba(7,23,27,.92)); }
.route-km { position: absolute; top: 28px; right: 28px; display: grid; min-width: 128px; padding: 17px 20px; border: 1px solid rgba(255,255,255,.25); color: white; backdrop-filter: blur(10px); background: rgba(7,23,27,.3); }
.route-km small { font-size: 9px; color: var(--mint); text-transform: uppercase; letter-spacing: .1em; }
.route-km strong { font: 600 26px/1.2 "Space Grotesk"; }
.route-diagram { position: absolute; left: 10%; right: 10%; bottom: 200px; height: 45px; }
.route-diagram i { position: absolute; left: 10px; right: 10px; top: 20px; height: 2px; background: linear-gradient(90deg, var(--orange), var(--mint)); }
.route-diagram i::after { content: ""; position: absolute; inset: -5px 0; background: repeating-linear-gradient(90deg, transparent 0 46px, rgba(255,255,255,.25) 46px 47px); }
.route-diagram span { position: absolute; z-index: 2; top: 10px; width: 22px; height: 22px; border: 5px solid rgba(255,255,255,.28); border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 1px white; }
.route-diagram .origin { left: 0; }.route-diagram .destination { right: 0; background: var(--mint); }
.route-cities { position: absolute; left: 8%; right: 8%; bottom: 100px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 25px; align-items: end; color: white; }
.route-cities > div:last-child { text-align: right; }
.route-cities small { display: block; color: rgba(255,255,255,.5); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.route-cities strong { font: 600 clamp(34px, 4vw, 58px)/1 "Space Grotesk"; letter-spacing: -.04em; }
.route-cities > b { color: var(--orange-2); font-size: 28px; }
.route-plan { position: absolute; left: 8%; right: 8%; bottom: 36px; display: flex; justify-content: space-between; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.65); font-size: 11px; }
.route-selector { display: flex; flex-direction: column; background: #132e34; color: white; }
.selector-head { height: 76px; display: flex; align-items: center; justify-content: space-between; padding: 0 27px; border-bottom: 1px solid rgba(255,255,255,.11); }
.selector-head span { color: var(--orange-2); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.selector-head b { color: rgba(255,255,255,.45); font-size: 10px; }
.route-selector button { flex: 1; display: grid; grid-template-columns: 36px 1fr auto; grid-template-rows: auto auto; column-gap: 12px; align-items: center; padding: 19px 25px; border: 0; border-bottom: 1px solid rgba(255,255,255,.1); background: transparent; color: rgba(255,255,255,.65); text-align: left; cursor: pointer; transition: .25s ease; }
.route-selector button > span { grid-row: 1 / 3; color: var(--orange-2); font-size: 10px; }
.route-selector button > strong { color: inherit; font: 600 16px/1.25 "Space Grotesk"; }
.route-selector button > small { color: rgba(255,255,255,.35); font-size: 9px; }
.route-selector button > b { grid-column: 3; grid-row: 1 / 3; }
.route-selector button:hover, .route-selector button.active { padding-left: 32px; background: var(--orange); color: white; }
.route-selector button:hover span, .route-selector button.active span, .route-selector button:hover small, .route-selector button.active small { color: white; }
.route-selector > a { min-height: 68px; display: flex; align-items: center; justify-content: space-between; padding: 0 27px; font-size: 11px; font-weight: 800; }
.route-selector > a b { color: var(--orange-2); }

.readiness { position: relative; overflow: hidden; background: var(--deep); color: white; }
.readiness .reveal { opacity: 1; transform: none; }
.readiness-pattern { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-around; color: rgba(255,255,255,.025); font: 700 115px/1 "Space Grotesk"; letter-spacing: .08em; transform: rotate(-8deg) scale(1.15); pointer-events: none; }
.readiness-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; align-items: center; }
.readiness-copy h2 { margin: 14px 0 22px; font-size: clamp(38px, 4vw, 57px); line-height: 1.08; letter-spacing: -.045em; }
.readiness-copy > p { color: rgba(255,255,255,.62); font-size: 15px; }
.readiness-copy .text-link { color: white; }
.readiness-score { margin: 32px 0; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.readiness-score > strong { color: var(--orange-2); font: 600 25px/1 "Space Grotesk"; }
.readiness-score > div { height: 4px; margin: 15px 0 10px; overflow: hidden; background: rgba(255,255,255,.12); }
.readiness-score i { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--orange), var(--mint)); transition: width .4s ease; }
.readiness-score small { color: rgba(255,255,255,.46); font-size: 10px; }
.readiness-board { background: var(--white); color: var(--ink); box-shadow: 0 25px 70px rgba(0,0,0,.2); }
.board-head { min-height: 66px; display: flex; align-items: center; justify-content: space-between; padding: 0 28px; background: var(--paper-2); border-bottom: 1px solid var(--line); }
.board-head span { color: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.board-head small { color: var(--muted); font-size: 9px; }
.board-group { display: grid; grid-template-columns: 105px 1fr 1fr; border-bottom: 1px solid var(--line); }
.board-group > span { display: flex; align-items: center; padding: 20px; border-right: 1px solid var(--line); color: var(--muted); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.board-group button { position: relative; min-height: 105px; display: grid; grid-template-columns: 34px 1fr 24px; gap: 12px; align-items: center; padding: 18px; border: 0; border-right: 1px solid var(--line); background: transparent; color: var(--ink); text-align: left; cursor: pointer; transition: .25s ease; }
.board-group button:last-child { border-right: 0; }
.board-group button:hover { background: var(--paper); }
.board-group button i { position: relative; width: 27px; height: 27px; border: 1px solid var(--line); border-radius: 50%; }
.board-group button.done i { border-color: var(--orange); background: var(--orange); }
.board-group button.done i::after { content: "✓"; position: absolute; inset: 0; display: grid; place-items: center; color: white; font-size: 12px; }
.board-group button b { font: 600 13px/1.45 "Space Grotesk"; }
.board-group button.done b { text-decoration: line-through; color: var(--muted); }
.board-group button em { color: rgba(16,36,42,.18); font: normal 700 10px/1 "Space Grotesk"; }
.board-download { min-height: 78px; display: grid; grid-template-columns: 50px 1fr 30px; gap: 14px; align-items: center; padding: 0 28px; background: var(--orange); color: white; }
.board-download > span { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; font-size: 9px; }
.board-download div { display: grid; }.board-download small { font-size: 9px; opacity: .7; }.board-download b { font: 600 14px/1.3 "Space Grotesk"; }.board-download em { font-style: normal; font-size: 22px; }

footer { padding: 0; background: #07171b; }
.footer-network { position: relative; overflow: hidden; padding: 72px 0; background: #173b4f; color: white; }
.footer-network::before { content: ""; position: absolute; inset: 0; opacity: .16; background-image: radial-gradient(circle at 50% 45%, transparent 0 13%, rgba(255,255,255,.22) 13.2% 13.5%, transparent 13.8%), linear-gradient(25deg, transparent 45%, rgba(255,255,255,.14) 46%, transparent 47%), radial-gradient(rgba(255,255,255,.35) 1px, transparent 1px); background-size: 540px 300px, 480px 280px, 22px 22px; background-position: center, center, center; }
.network-lines { position: absolute; inset: 0; pointer-events: none; }
.network-lines::before { content: ""; position: absolute; left: 25%; right: 9%; top: 50%; height: 1px; background: linear-gradient(90deg, transparent, rgba(77,197,225,.65), rgba(255,255,255,.1)); }
.network-lines i { position: absolute; top: calc(50% - 5px); width: 10px; height: 10px; border: 2px solid #4dc5e1; border-radius: 50%; background: #173b4f; }
.network-lines i:nth-child(1){left:30%}.network-lines i:nth-child(2){left:51%}.network-lines i:nth-child(3){left:72%}.network-lines i:nth-child(4){left:90%}
.network-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.25fr repeat(3, 1fr); gap: 0; }
.network-title { padding-right: 45px; }
.network-title small { color: #4dc5e1; font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.network-title strong { display: block; margin: 8px 0; font: 600 24px/1.2 "Space Grotesk"; }
.network-title p { margin: 0; color: rgba(255,255,255,.48); font-size: 11px; }
.network-inner article { position: relative; padding: 8px 30px; border-left: 1px solid rgba(255,255,255,.16); }
.network-inner article > span { position: absolute; right: 18px; top: 0; color: rgba(255,255,255,.12); font: 700 31px/1 "Space Grotesk"; }
.network-inner article h3 { margin: 0 0 9px; font-size: 14px; }
.network-inner article p { color: rgba(255,255,255,.56); font-size: 10px; line-height: 1.7; }
.network-inner article a { color: #4dc5e1; font-size: 11px; font-weight: 700; }
.footer-main { padding: 76px 0 18px; background: #07171b; }
.footer-stamp { display: flex; align-items: center; gap: 13px; }
.footer-stamp > span { display: grid; place-items: center; width: 47px; height: 47px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: var(--orange-2); font: 700 12px/1 "Space Grotesk"; }
.footer-stamp p { display: grid; margin: 0; }.footer-stamp small { color: rgba(255,255,255,.35); font-size: 8px; text-transform: uppercase; }.footer-stamp b { color: rgba(255,255,255,.72); font-size: 10px; }
.footer-contact .footer-quote { width: 100%; display: flex; justify-content: space-between; margin-top: 8px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.2); }
.footer-contact .footer-quote:hover { background: var(--orange); color: white; border-color: var(--orange); }

@media (max-width: 1180px) {
  .nav-shell { grid-template-columns: 205px 1fr auto; }
  .nav-shell .brand { padding-left: 20px; }
  .console-head { grid-template-columns: 205px 260px 1fr; }
  .proof-shell { grid-template-columns: 230px 1fr; }
  .proof-track article { grid-template-columns: 38px 1fr; padding: 15px 12px; }
  .proof-icon { width: 36px; height: 36px; }
  .readiness-grid { gap: 55px; }
}

@media (max-width: 900px) {
  .nav-shell { display: flex; height: 74px; padding-right: 14px; }
  .nav-shell .brand { min-width: 210px; }
  .nav-shell nav { top: 94px; color: white; }
  .nav-shell nav a { color: white; }
  .site-header.is-sticky .nav-shell nav { top: 78px; }
  .hero-content { padding-top: 155px; }
  .console-head { grid-template-columns: 1fr 1fr; }
  .console-head > p { display: none; }
  .console-form { grid-template-columns: 1fr 40px 1fr; }
  .console-form label:nth-of-type(3), .console-form .quote-next { grid-column: span 1; }
  .console-form .quote-next { grid-column: 2 / 4; }
  .proof-shell { grid-template-columns: 1fr; }
  .proof-title { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-track { grid-template-columns: 1fr 1fr; }
  .proof-track article:nth-child(2) { border-right: 0; }.proof-track article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .route-theater { grid-template-columns: 1fr; }
  .route-visual { min-height: 540px; }
  .route-selector button { min-height: 88px; }
  .readiness-grid { grid-template-columns: 1fr; }
  .network-inner { grid-template-columns: 1fr 1fr; gap: 35px 0; }
  .network-title { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .nav-shell { width: calc(100% - 24px); margin-top: 8px; border-radius: 11px; }
  .nav-shell .brand { min-width: 180px; clip-path: none; border-radius: 10px 0 0 10px; padding-right: 15px; }
  .hero-content { padding-top: 130px; }
  .quote-launch { margin-top: 0; }
  .move-console { width: 100%; border-radius: 0; }
  .console-head { grid-template-columns: 1fr; gap: 13px; padding: 23px 18px; }
  .console-head > div:nth-child(2) { display: none; }
  .console-form { grid-template-columns: 1fr; padding: 23px 18px; }
  .route-pulse { transform: rotate(90deg); }
  .console-form .quote-next { grid-column: auto; }
  .console-foot { grid-template-columns: 1fr; padding: 10px 0; }
  .console-foot span { min-height: 28px; border: 0; }
  .plan-proof { padding-top: 18px; }
  .proof-track { grid-template-columns: 1fr; }
  .proof-track article { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-track article:nth-child(2) { border-bottom: 1px solid var(--line); }
  .route-watermark { display: none; }
  .route-visual { min-height: 460px; }
  .route-cities { bottom: 105px; gap: 10px; }
  .route-cities strong { font-size: 33px; }
  .route-diagram { bottom: 195px; }
  .route-plan { align-items: flex-start; flex-direction: column; gap: 4px; }
  .route-selector button { min-height: 85px; padding: 15px; }
  .readiness-pattern { font-size: 70px; }
  .board-group { grid-template-columns: 1fr; }
  .board-group > span { min-height: 44px; border-right: 0; border-bottom: 1px solid var(--line); }
  .board-group button { min-height: 82px; border-right: 0; border-bottom: 1px solid var(--line); }
  .network-inner { grid-template-columns: 1fr; }
  .network-title { grid-column: auto; }
  .network-inner article { padding: 8px 0 8px 22px; }
}

/* Okunabilirlik ve tipografi revizyonu */
:root {
  --font-body: "IBM Plex Sans", "Segoe UI", sans-serif;
  --font-display: "Archivo", "Segoe UI", sans-serif;
}

body { font-family: var(--font-body); font-size: 18px; line-height: 1.65; }
button, input { font-family: var(--font-body); }
h1, h2, h3, .brand b, .console-head strong, .console-index span, .proof-title strong,
.proof-track article b, .steps article > span, .floating-card strong, .cities,
.route-km strong, .route-cities strong, .route-selector button > strong,
.readiness-score > strong, .board-group button b, .board-download b,
.network-title strong, .footer-grid > div > strong, .footer-stamp b,
.faq-list article > button strong, .download-card strong { font-family: var(--font-display); }

.utility-bar { font-size: 13px; }
.brand small { font-size: 11px; letter-spacing: .19em; }
.nav-shell nav { gap: clamp(20px, 2vw, 32px); }
.nav-shell nav a { font-size: 15px; font-weight: 600; }
.phone-link small { font-size: 12px; }
.phone-link strong { font-size: 16px; }
.kicker, .eyebrow { font-size: 14px; }
.hero-copy > p { font-size: 19px; }
.hero-note { font-size: 14px; }
.hero-side-label { font-size: 12px; }

.hero-controls {
  z-index: 14;
  width: max-content;
  left: auto;
  right: max(32px, calc((100vw - 1420px) / 2 + 32px));
  bottom: 100px;
  transform: none;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 40px;
  background: rgba(7,23,27,.62);
  backdrop-filter: blur(10px);
}
.hero-controls > button { width: 46px; height: 46px; font-size: 17px; }
.hero-controls .pause { height: 38px; padding: 0 16px; font-size: 12px; }
.slide-progress button { width: 38px; height: 4px; }

.section-heading > p, .service-info > p, .scope-copy > p,
.evidence-copy > p, .faq-intro > p { font-size: 17px; }
.service-tabs button { font-size: 16px; }
.service-tabs button span, .service-visual > span { font-size: 12px; }
.service-info li { font-size: 16px; }
.case-top { font-size: 12px; }
.case-copy small { font-size: 13px; }
.case-copy p { font-size: 15px; }
.case-copy a, .case-disclaimer { font-size: 13px; }
.process-switch button { font-size: 15px; }
.steps p, .scope-status { font-size: 15px; }
.scope-row > span, .scope-summary > span { font-size: 14px; }
.scope-row button { min-height: 43px; font-size: 14px; }
.scope-summary b, .scope-summary em { font-size: 13px; }
.floating-card small, .image-index { font-size: 12px; }
.evidence-copy article > span { font-size: 13px; }
.evidence-copy article p { font-size: 15px; }
.story-stat p { font-size: 14px; }
.guide-feature span, .guide-list small { font-size: 12px; }
.guide-feature p { font-size: 15px; }
.guide-feature a { font-size: 14px; }
.guide-list > article > span { font-size: 13px; }
.faq-list article > button span { font-size: 12px; }
.faq-list article > div > p { font-size: 16px; }
.final-actions > a:not(.button) { font-size: 13px; }
.final-actions > a strong { font-size: 15px; }

.console-head > div:nth-child(2) small { font-size: 12px; }
.console-head > div:nth-child(2) strong { font-size: 23px; }
.console-head > p { font-size: 14px; line-height: 1.6; }
.console-index span { width: 48px; height: 48px; font-size: 14px; }
.console-index b { font-size: 12px; letter-spacing: .12em; }
.console-form { padding-top: 27px; padding-bottom: 27px; }
.console-form label span { font-size: 12px; }
.console-form input { height: 48px; font-size: 16px; }
.console-foot { min-height: 48px; }
.console-foot span { font-size: 13px; }
.proof-title small { font-size: 12px; }
.proof-title strong { font-size: 20px; }
.proof-track article { min-height: 138px; }
.proof-track article b { font-size: 16px; }
.proof-track article p { font-size: 14px; }
.proof-track article em { font-size: 12px; }

.route-km small, .route-cities small { font-size: 11px; }
.route-plan { font-size: 14px; }
.selector-head span, .selector-head b { font-size: 12px; }
.route-selector button > span { font-size: 12px; }
.route-selector button > small { font-size: 12px; }
.route-selector button > strong { font-size: 18px; }
.route-selector > a { font-size: 13px; }
.readiness-score small { font-size: 13px; }
.board-head span, .board-head small { font-size: 12px; }
.board-group > span { font-size: 12px; }
.board-group button b { font-size: 15px; }
.board-group button em { font-size: 12px; }
.board-download > span, .board-download small { font-size: 12px; }
.board-download b { font-size: 16px; }
.network-title small { font-size: 12px; }
.network-title p { font-size: 14px; }
.network-inner article h3 { font-size: 16px; }
.network-inner article p, .network-inner article a { font-size: 13px; }
.footer-brand > p, .footer-grid a, .footer-grid p { font-size: 14px; }
.footer-grid h3 { font-size: 18px; }
.footer-bottom { font-size: 12px; }
.footer-stamp small { font-size: 10px; }
.footer-stamp b { font-size: 12px; }

@media (max-width: 1180px) {
  .nav-shell nav a { font-size: 14px; }
  .nav-shell nav { gap: 14px; }
  .proof-track article { padding: 18px 15px; }
}

@media (max-width: 900px) {
  body { font-size: 17px; }
  .utility-inner > span, .utility-inner .utility-dot, .utility-inner div { font-size: 12px; }
  .nav-shell nav a { font-size: 16px; padding: 15px; }
  .hero-controls { right: 24px; bottom: 92px; }
  .console-form input { font-size: 16px; }
}

@media (max-width: 620px) {
  .hero-controls { left: 50%; right: auto; bottom: 28px; transform: translateX(-50%); }
  .hero-controls .pause { display: none; }
  .console-foot span { min-height: 36px; }
  .proof-track article { min-height: 120px; }
}

/* Sözcüksüz taşıma desenleri */
.services::after {
  content: "";
  width: 190px;
  height: 150px;
  right: 3%;
  top: 125px;
  border: 2px solid rgba(16,36,42,.06);
  background:
    linear-gradient(135deg, transparent 48%, rgba(233,94,54,.1) 49% 51%, transparent 52%),
    linear-gradient(45deg, transparent 48%, rgba(16,36,42,.07) 49% 51%, transparent 52%);
  box-shadow: -34px 34px 0 -2px var(--paper), -34px 34px 0 0 rgba(16,36,42,.045);
  transform: rotate(8deg);
}
.cases::before {
  content: "";
  width: 420px;
  height: 420px;
  right: -120px;
  top: 25px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
  background-image:
    radial-gradient(circle at 28% 42%, rgba(255,121,80,.32) 0 4px, transparent 5px),
    radial-gradient(circle at 72% 63%, rgba(185,215,203,.3) 0 4px, transparent 5px),
    repeating-linear-gradient(0deg, transparent 0 41px, rgba(255,255,255,.025) 42px 43px),
    repeating-linear-gradient(90deg, transparent 0 41px, rgba(255,255,255,.025) 42px 43px);
}
.route-watermark {
  width: 220px;
  height: 220px;
  right: -45px;
  top: 35px;
  border: 1px solid rgba(16,36,42,.08);
  border-radius: 50%;
  writing-mode: initial;
  background:
    radial-gradient(ellipse at center, transparent 0 38%, rgba(16,36,42,.045) 39% 40%, transparent 41%),
    linear-gradient(90deg, transparent 49.5%, rgba(16,36,42,.05) 50%, transparent 50.5%);
}
.route-watermark::before, .route-watermark::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  height: 1px;
  background: rgba(16,36,42,.07);
}
.route-watermark::before { top: 36%; }
.route-watermark::after { bottom: 36%; }
.route-watermark i { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.route-watermark i:nth-child(1) { left: 26%; top: 36%; }
.route-watermark i:nth-child(2) { left: 53%; top: 61%; }
.route-watermark i:nth-child(3) { right: 22%; top: 34%; background: var(--deep); }

.readiness-pattern {
  inset: auto auto -210px -185px;
  width: 720px;
  height: 720px;
  display: block;
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 50%;
  color: transparent;
  transform: none;
  background:
    radial-gradient(ellipse at center, transparent 0 27%, rgba(255,255,255,.04) 27.2% 27.5%, transparent 27.8%),
    radial-gradient(ellipse at center, transparent 0 42%, rgba(255,255,255,.035) 42.2% 42.5%, transparent 42.8%),
    repeating-linear-gradient(0deg, transparent 0 58px, rgba(255,255,255,.022) 59px 60px),
    repeating-linear-gradient(90deg, transparent 0 58px, rgba(255,255,255,.022) 59px 60px);
}
.readiness-pattern::before, .readiness-pattern::after {
  content: "";
  position: absolute;
  border: 1px dashed rgba(255,121,80,.2);
  border-radius: 50%;
}
.readiness-pattern::before { inset: 20%; }
.readiness-pattern::after { inset: 34% 13%; transform: rotate(-18deg); }
.readiness-pattern i { position: absolute; z-index: 2; width: 11px; height: 11px; border: 2px solid var(--orange-2); border-radius: 50%; background: var(--deep); }
.readiness-pattern i:nth-child(1) { left: 24%; top: 38%; }
.readiness-pattern i:nth-child(2) { left: 53%; top: 24%; }
.readiness-pattern i:nth-child(3) { left: 69%; top: 55%; border-color: var(--mint); }
.readiness-pattern b { position: absolute; left: 25%; right: 28%; top: 46%; height: 2px; background: linear-gradient(90deg, var(--orange-2), rgba(185,215,203,.32)); transform: rotate(9deg); }

/* Footer üstü sade rota şeridi */
.footer-network { padding: 44px 0; background: #163a4b; }
.footer-network::before {
  opacity: .12;
  background-image:
    radial-gradient(circle at 12% 45%, rgba(77,197,225,.8) 0 2px, transparent 3px),
    radial-gradient(circle at 88% 58%, rgba(255,255,255,.6) 0 2px, transparent 3px),
    repeating-linear-gradient(90deg, transparent 0 84px, rgba(255,255,255,.08) 85px 86px);
  background-size: auto;
}
.network-simple { position: relative; z-index: 2; display: grid; grid-template-columns: 320px 1fr auto; gap: 48px; align-items: center; }
.network-title { padding: 0; }
.network-title small { color: #58cbe2; font-size: 12px; }
.network-title strong { margin: 6px 0 8px; font: 600 23px/1.25 var(--font-display); }
.network-title p { max-width: 310px; font-size: 13px; line-height: 1.55; color: rgba(255,255,255,.58); }
.network-route { display: grid; grid-template-columns: auto 1fr auto 1fr auto 1fr auto; align-items: center; gap: 14px; }
.network-route > i { height: 1px; background: linear-gradient(90deg, #58cbe2, rgba(255,255,255,.18)); }
.network-route > span { position: relative; display: grid; gap: 3px; min-width: 82px; padding-left: 17px; }
.network-route > span::before { content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border: 2px solid #58cbe2; border-radius: 50%; background: #163a4b; }
.network-route > span.origin::before { border-color: var(--orange-2); }
.network-route b { color: white; font-size: 15px; }
.network-route small { color: rgba(255,255,255,.52); font-size: 12px; }
.network-action { min-height: 48px; display: flex; align-items: center; gap: 18px; padding: 0 19px; border: 1px solid rgba(255,255,255,.2); color: white; font-size: 14px; font-weight: 700; white-space: nowrap; }
.network-action b { color: var(--orange-2); }
.network-action:hover { border-color: var(--orange-2); background: rgba(255,121,80,.08); }

@media (max-width: 1180px) {
  .network-simple { grid-template-columns: 260px 1fr; gap: 30px; }
  .network-action { grid-column: 1 / -1; width: max-content; }
}

@media (max-width: 900px) {
  .network-simple { grid-template-columns: 1fr; }
  .network-route { grid-template-columns: auto 1fr auto; row-gap: 22px; }
  .network-route > i:nth-of-type(2) { display: none; }
}

@media (max-width: 620px) {
  .services::after, .route-watermark { display: none; }
  .readiness-pattern { width: 520px; height: 520px; left: -280px; bottom: -120px; }
  .network-route { grid-template-columns: 1fr 1fr; gap: 18px; }
  .network-route > i { display: none; }
  .network-action { width: 100%; justify-content: space-between; }
}
