:root {
  --navy-950: #121212;
  --navy-900: #1b1b1b;
  --navy-800: #2d2d2d;
  --navy-700: #444444;
  --blue-100: #fff3ed;
  --orange-500: #e95516;
  --orange-400: #f16522;
  --orange-100: #fff0e8;
  --ink: #222222;
  --muted: #707070;
  --line: #dfe6ec;
  --surface: #ffffff;
  --soft: #faf7f5;
  --green: #18a57a;
  --shadow-sm: 0 8px 30px rgba(25,25,25,.08);
  --shadow-lg: 0 28px 80px rgba(18,18,18,.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1180px;
  --header-height: 82px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 108px; }
body { margin: 0; color: var(--ink); background: var(--surface); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }
.skip-link { position: fixed; z-index: 999; left: 16px; top: -80px; padding: 10px 16px; border-radius: 8px; background: var(--orange-400); color: var(--navy-950); font-weight: 800; transition: top .2s; }
.skip-link:focus { top: 16px; }

.topbar { position: relative; z-index: 30; color: #dfe9f2; background: var(--navy-950); font-size: .78rem; font-weight: 650; letter-spacing: .01em; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 34px; }
.topbar a { color: var(--orange-400); }
.status-dot { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: #48d7a6; box-shadow: 0 0 0 4px rgba(72,215,166,.12); }

.site-header { position: sticky; z-index: 25; top: 0; height: var(--header-height); background: rgba(255,255,255,.88); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(223,230,236,.6); transition: box-shadow .25s, background .25s; }
.site-header.is-scrolled { background: rgba(255,255,255,.96); box-shadow: 0 10px 32px rgba(18,18,18,.07); }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: max-content; }
.brand-mark { display: grid; flex: 0 0 46px; width: 46px; height: 46px; place-items: center; }
.brand-mark img { display: block; width: 100%; height: 100%; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.03; }
.brand-copy strong { color: var(--navy-900); font-size: 1.02rem; letter-spacing: .15em; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: .65rem; font-weight: 650; letter-spacing: .03em; }
.primary-nav { display: flex; align-items: center; gap: 30px; }
.primary-nav > a:not(.button) { position: relative; color: #494949; font-size: .9rem; font-weight: 700; }
.primary-nav > a:not(.button)::after { content: ""; position: absolute; right: 0; bottom: -7px; left: 0; height: 2px; background: var(--orange-500); transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.primary-nav > a:not(.button):hover::after, .primary-nav > a:not(.button):focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: var(--soft); cursor: pointer; }
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--navy-900); transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 23px; border: 1px solid transparent; border-radius: 13px; font-size: .9rem; font-weight: 800; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.button--small { min-height: 42px; padding: 0 18px; border-radius: 11px; font-size: .82rem; }
.button--primary { color: #fff; background: linear-gradient(135deg, var(--orange-400), #f47b3a); box-shadow: 0 12px 25px rgba(241,101,34,.20); }
.button--primary:hover { box-shadow: 0 16px 32px rgba(241,101,34,.30); }
.button--ghost { color: var(--navy-900); border-color: #ccd7e1; background: rgba(255,255,255,.65); }
.button--ghost:hover { border-color: #9fb2c3; background: #fff; }
.button--light { color: var(--navy-950); background: white; }
.button--full { width: 100%; }

.eyebrow { margin: 0 0 19px; color: #9c3c17; font-size: .73rem; font-weight: 850; letter-spacing: .18em; }
.eyebrow span { color: var(--orange-500); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy-950); line-height: 1.12; letter-spacing: -.035em; }
h2 { margin-bottom: 22px; font-size: clamp(2.1rem, 4.2vw, 3.35rem); }
h3 { font-size: 1.3rem; }

.hero { position: relative; overflow: hidden; min-height: 760px; padding-top: 112px; background: radial-gradient(circle at 70% 20%, rgba(241,101,34,.13), transparent 26%), linear-gradient(180deg, #fffdfc 0%, #faf7f5 100%); }
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .35; background-image: linear-gradient(rgba(25,25,25,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(25,25,25,.035) 1px, transparent 1px); background-size: 38px 38px; mask-image: linear-gradient(to bottom, black, transparent 72%); }
.hero-orb { position: absolute; border-radius: 999px; filter: blur(1px); pointer-events: none; }
.hero-orb--one { width: 320px; height: 320px; right: -110px; top: 70px; border: 70px solid rgba(241,101,34,.055); }
.hero-orb--two { width: 160px; height: 160px; left: -75px; bottom: 70px; border: 36px solid rgba(36,98,148,.055); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr); align-items: center; gap: 62px; }
.hero-copy h1 { margin-bottom: 26px; font-size: clamp(3.4rem, 6.5vw, 5.65rem); font-weight: 840; line-height: .98; }
.hero-copy h1 em { color: var(--orange-500); font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
.hero-lead { max-width: 640px; margin-bottom: 32px; color: #686868; font-size: 1.12rem; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 42px; padding-top: 28px; border-top: 1px solid #dbe4eb; }
.hero-proof div { display: flex; flex-direction: column; }
.hero-proof strong { color: var(--navy-900); font-size: .84rem; }
.hero-proof span { margin-top: 3px; color: var(--muted); font-size: .72rem; line-height: 1.45; }

.hero-visual { position: relative; min-height: 535px; display: grid; place-items: center; }
.hero-visual::before { content: ""; position: absolute; width: 470px; height: 470px; border-radius: 50%; background: linear-gradient(145deg, rgba(244,119,42,.38), rgba(241,101,34,.10)); }
.dashboard-card { position: relative; z-index: 2; width: min(100%, 520px); padding: 26px; border: 1px solid rgba(255,255,255,.78); border-radius: 26px; background: rgba(255,255,255,.92); box-shadow: var(--shadow-lg); backdrop-filter: blur(15px); }
.dashboard-card::after { content: ""; position: absolute; inset: 11px; z-index: -1; border-radius: 20px; border: 1px solid #edf1f4; pointer-events: none; }
.dashboard-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid #e8edf1; }
.dashboard-head > div { display: flex; flex-direction: column; }
.dashboard-kicker { color: var(--muted); font-size: .62rem; font-weight: 850; letter-spacing: .14em; }
.dashboard-head strong { margin-top: 5px; color: var(--navy-950); font-size: .98rem; }
.live-pill { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; border-radius: 999px; color: #157457; background: #e7f8f1; font-size: .68rem; font-weight: 800; }
.live-pill i { width: 6px; height: 6px; border-radius: 50%; background: #20ae7e; box-shadow: 0 0 0 4px rgba(32,174,126,.11); }
.health-score { display: grid; grid-template-columns: 150px 1fr; align-items: center; gap: 26px; padding: 28px 6px 23px; }
.health-ring { display: grid; place-items: center; width: 136px; height: 136px; border-radius: 50%; background: conic-gradient(var(--orange-400) 0 84%, #ebeff2 84%); }
.health-ring::before { content: ""; position: absolute; width: 105px; height: 105px; border-radius: 50%; background: white; }
.health-ring span { position: relative; z-index: 1; text-align: center; }
.health-ring b { display: block; color: var(--navy-900); font-size: 1rem; letter-spacing: .05em; }
.health-ring small { color: var(--muted); font-size: .62rem; }
.health-list { display: grid; gap: 10px; }
.health-list div { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; border-bottom: 1px dashed #e1e7ec; }
.health-list span { color: var(--muted); font-size: .7rem; }
.health-list b { color: var(--navy-800); font-size: .72rem; }
.chart-label { display: flex; justify-content: space-between; margin-bottom: 4px; color: var(--navy-800); font-size: .7rem; font-weight: 750; }
.chart-label small { color: var(--muted); font-weight: 600; }
.mini-chart svg { width: 100%; height: 100px; overflow: visible; }
.chart-area { fill: url(#chartFill); }
.chart-line { fill: none; stroke: var(--orange-500); stroke-width: 3; stroke-linecap: round; }
.floating-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 12px; min-width: 235px; padding: 14px 16px; border: 1px solid rgba(255,255,255,.9); border-radius: 16px; background: rgba(255,255,255,.94); box-shadow: 0 18px 45px rgba(18,18,18,.14); backdrop-filter: blur(12px); }
.floating-card--ticket { top: 38px; right: -5px; }
.floating-card--shield { left: -22px; bottom: 28px; }
.floating-icon { display: grid; flex: 0 0 39px; place-items: center; height: 39px; color: #9c3c17; border-radius: 11px; background: var(--orange-100); }
.floating-icon--blue { color: #155f96; background: #e7f3fb; }
.floating-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.floating-card div { display: flex; flex-direction: column; }
.floating-card small { color: var(--muted); font-size: .64rem; }
.floating-card strong { color: var(--navy-900); font-size: .72rem; }

.trust-strip { padding: 24px 0; border-block: 1px solid #e5ebef; background: white; }
.trust-inner { display: grid; grid-template-columns: 1fr 2.4fr; align-items: center; gap: 40px; }
.trust-inner > span { color: var(--muted); font-size: .72rem; font-weight: 750; letter-spacing: .04em; }
.tech-list { display: flex; align-items: center; justify-content: space-between; gap: 28px; color: #7c8896; }
.tech-list b { font-size: .86rem; letter-spacing: -.01em; filter: grayscale(1); }

.section-head { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 80px; margin-bottom: 56px; }
.section-head h2 { max-width: 700px; margin-bottom: 0; }
.section-head > p { margin-bottom: 5px; color: var(--muted); font-size: .99rem; line-height: 1.8; }
.services { background: #fff; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { position: relative; overflow: hidden; min-height: 300px; padding: 29px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; box-shadow: 0 12px 40px rgba(25,25,25,.04); transition: transform .25s, box-shadow .25s, border-color .25s; }
.service-card:hover { transform: translateY(-5px); border-color: #cbd6df; box-shadow: 0 20px 48px rgba(25,25,25,.09); }
.service-card--featured { grid-row: span 2; min-height: 620px; padding: 36px; color: white; border-color: transparent; background: linear-gradient(155deg, var(--navy-900), #171717 75%); box-shadow: 0 24px 60px rgba(18,18,18,.18); }
.service-card--featured::before { content: ""; position: absolute; width: 300px; height: 300px; right: -135px; bottom: -130px; border: 55px solid rgba(241,101,34,.08); border-radius: 50%; }
.service-card h3 { margin: 22px 0 13px; }
.service-card p { margin-bottom: 23px; color: var(--muted); font-size: .9rem; line-height: 1.72; }
.service-card--featured h3 { margin-top: 34px; color: white; font-size: 2rem; }
.service-card--featured p { color: #bdcbd7; font-size: 1rem; }
.service-icon { display: grid; width: 52px; height: 52px; place-items: center; color: #963814; border-radius: 15px; background: var(--orange-100); }
.service-icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.service-icon--blue { color: #1d6695; background: #e8f4fb; }
.service-icon--green { color: #137b60; background: #e6f7f1; }
.service-icon--purple { color: #6c55a0; background: #f1edfb; }
.service-icon--red { color: #a94b44; background: #fbeceb; }
.tag { display: inline-block; margin-top: 28px; color: var(--orange-400); font-size: .64rem; font-weight: 850; letter-spacing: .15em; }
.service-card ul { display: grid; gap: 13px; margin: 28px 0 40px; padding: 0; list-style: none; }
.service-card li { position: relative; padding-left: 25px; color: #e0e8ef; font-size: .85rem; }
.service-card li::before { content: "✓"; position: absolute; left: 0; color: var(--orange-400); font-weight: 900; }
.service-card--featured > a { position: absolute; right: 36px; bottom: 36px; left: 36px; display: flex; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); color: white; font-size: .82rem; font-weight: 800; }
.service-card--featured > a span { color: var(--orange-400); font-size: 1.3rem; }
.card-link { position: absolute; right: 29px; bottom: 26px; left: 29px; padding-top: 14px; border-top: 1px solid #edf1f4; color: #779; color: #718093; font-size: .68rem; font-weight: 720; }

.solution-section { overflow: hidden; color: white; background: var(--navy-950); }
.solution-grid { display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 100px; }
.solution-copy h2 { color: white; }
.solution-copy > p:not(.eyebrow) { max-width: 670px; color: #adbdca; font-size: 1rem; line-height: 1.8; }
.solution-section .eyebrow { color: var(--orange-400); }
.audience-tabs { display: flex; gap: 8px; margin: 36px 0 26px; }
.audience-tab { padding: 10px 17px; border: 1px solid #4a4a4a; border-radius: 999px; color: #b5c4cf; background: transparent; font-size: .76rem; font-weight: 800; cursor: pointer; transition: .2s; }
.audience-tab:hover, .audience-tab.is-active { color: var(--navy-950); border-color: var(--orange-400); background: var(--orange-400); }
.audience-panel { min-height: 225px; padding: 26px; border: 1px solid rgba(255,255,255,.09); border-radius: 18px; background: rgba(255,255,255,.045); transition: opacity .16s, transform .16s; }
.audience-panel.is-changing { opacity: 0; transform: translateY(5px); }
.audience-panel h3 { margin-bottom: 11px; color: white; font-size: 1.14rem; letter-spacing: -.02em; }
.audience-panel p { color: #aebdca; font-size: .87rem; }
.audience-panel ul { display: grid; gap: 8px; margin: 18px 0 0; padding: 0; list-style: none; }
.audience-panel li { position: relative; padding-left: 22px; color: #d3dde5; font-size: .8rem; }
.audience-panel li::before { content: "•"; position: absolute; left: 3px; color: var(--orange-400); font-size: 1.2rem; line-height: 1; }
.solution-visual { position: relative; min-height: 520px; display: grid; place-items: center; perspective: 1000px; }
.stack-card { position: absolute; width: 86%; height: 390px; border: 1px solid rgba(255,255,255,.11); border-radius: 25px; background: #292929; }
.stack-card--back { transform: translate(55px, -16px) rotate(4deg); opacity: .45; }
.stack-card--mid { transform: translate(26px, -7px) rotate(2deg); opacity: .7; }
.ops-card { position: relative; z-index: 2; width: 88%; padding: 25px; border: 1px solid rgba(255,255,255,.15); border-radius: 25px; background: linear-gradient(155deg, #303030, #202020); box-shadow: 0 35px 70px rgba(0,0,0,.28); }
.ops-header { display: flex; align-items: center; padding-bottom: 21px; border-bottom: 1px solid rgba(255,255,255,.09); }
.ops-logo { display: grid; flex: 0 0 39px; width: 39px; height: 39px; place-items: center; }
.ops-logo img { display: block; width: 100%; height: 100%; object-fit: contain; }
.ops-header div { display: flex; flex: 1; flex-direction: column; margin-left: 12px; }
.ops-header strong { color: white; font-size: .83rem; }
.ops-header small { color: #8fa4b5; font-size: .65rem; }
.ops-header button { border: 0; color: #91a6b7; background: transparent; letter-spacing: .15em; }
.ops-summary { margin: 24px 0; padding: 21px; border-radius: 16px; background: rgba(255,255,255,.055); }
.ops-summary > small { color: #8da2b4; font-size: .59rem; font-weight: 850; letter-spacing: .13em; }
.ops-progress { height: 7px; margin: 14px 0 12px; overflow: hidden; border-radius: 99px; background: #4c4c4c; }
.ops-progress span { display: block; width: 78%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--orange-500), #f7935f); }
.ops-numbers { display: flex; justify-content: space-between; align-items: baseline; }
.ops-numbers strong { color: white; font-size: .82rem; }
.ops-numbers span { color: #8fa4b5; font-size: .62rem; }
.ops-items { display: grid; gap: 11px; }
.ops-items > div { display: flex; align-items: center; padding: 14px; border: 1px solid rgba(255,255,255,.07); border-radius: 13px; background: rgba(255,255,255,.03); }
.ops-bullet { flex: 0 0 10px; height: 10px; margin-right: 12px; border-radius: 50%; }
.ops-bullet--yellow { background: var(--orange-400); box-shadow: 0 0 0 5px rgba(241,101,34,.09); }
.ops-bullet--blue { background: #50a7df; box-shadow: 0 0 0 5px rgba(80,167,223,.09); }
.ops-bullet--green { background: #38c99a; box-shadow: 0 0 0 5px rgba(56,201,154,.09); }
.ops-items span { display: flex; flex: 1; flex-direction: column; }
.ops-items b { color: #edf4f8; font-size: .72rem; }
.ops-items small { color: #8197a9; font-size: .61rem; }
.ops-items em { color: #7690a4; font-size: .62rem; font-style: normal; }

.process-section { background: var(--soft); }
.section-head--center { display: block; max-width: 760px; margin-inline: auto; text-align: center; }
.section-head--center > p { max-width: 620px; margin: 0 auto; }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-grid::before { content: ""; position: absolute; z-index: 0; top: 39px; right: 12%; left: 12%; height: 1px; background: linear-gradient(90deg, transparent, #c9d5df 12%, #c9d5df 88%, transparent); }
.process-card { position: relative; z-index: 1; min-height: 250px; padding: 28px; border: 1px solid #e0e7ed; border-radius: 18px; background: white; }
.process-card span { display: grid; width: 48px; height: 48px; place-items: center; border: 7px solid var(--soft); border-radius: 50%; color: var(--navy-900); background: var(--orange-400); font-size: .7rem; font-weight: 900; box-shadow: 0 0 0 1px #f3b493; }
.process-card h3 { margin: 28px 0 12px; font-size: 1.15rem; }
.process-card p { color: var(--muted); font-size: .82rem; line-height: 1.75; }

.about-grid { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 90px; }
.about-visual { position: relative; min-height: 570px; border-radius: var(--radius-lg); background: linear-gradient(145deg, #eef4f8, #e4edf3); }
.about-visual::before, .about-visual::after { content: ""; position: absolute; border-radius: 50%; }
.about-visual::before { width: 270px; height: 270px; top: 58px; left: 50%; transform: translateX(-50%); border: 58px solid rgba(241,101,34,.35); }
.about-visual::after { width: 390px; height: 390px; right: -80px; bottom: -110px; border: 1px solid rgba(25,25,25,.08); }
.about-panel { position: absolute; right: 35px; bottom: 35px; left: 35px; z-index: 2; padding: 36px; border-radius: 22px; color: white; background: rgba(25,25,25,.96); box-shadow: 0 25px 55px rgba(25,25,25,.24); }
.about-sun { display: block; width: 31px; height: 31px; margin-bottom: 24px; border: 8px solid var(--orange-400); border-radius: 50%; box-shadow: 0 0 0 7px rgba(241,101,34,.09); }
.about-panel > p { margin-bottom: 30px; color: white; font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; line-height: 1.42; letter-spacing: -.02em; }
.about-signature { display: flex; flex-direction: column; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); }
.about-signature strong { color: var(--orange-400); font-size: .78rem; letter-spacing: .16em; }
.about-signature small { margin-top: 4px; color: #a8bbc9; font-size: .65rem; }
.about-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1rem; line-height: 1.83; }
.value-list { display: grid; gap: 5px; margin-top: 33px; }
.value-list > div { display: grid; grid-template-columns: 45px 1fr; gap: 16px; padding: 19px 0; border-bottom: 1px solid #e4eaee; }
.value-list span { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 10px; color: #9c3c17; background: var(--orange-100); font-size: .66rem; font-weight: 900; }
.value-list p { margin: 0; color: var(--muted); font-size: .82rem; }
.value-list strong { display: block; margin-bottom: 4px; color: var(--navy-900); font-size: .9rem; }

.workshop-banner { padding: 0 0 112px; background: white; }
.workshop-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: 48px 56px; overflow: hidden; position: relative; border-radius: 26px; color: white; background: linear-gradient(120deg, #df4f13, #f4772a); box-shadow: 0 22px 60px rgba(223,79,19,.18); }
.workshop-inner::after { content: ""; position: absolute; width: 310px; height: 310px; right: -115px; top: -140px; border: 50px solid rgba(255,255,255,.12); border-radius: 50%; }
.workshop-inner > div { position: relative; z-index: 1; max-width: 750px; }
.workshop-kicker { color: #8a3414; font-size: .65rem; font-weight: 900; letter-spacing: .15em; }
.workshop-inner h2 { margin: 10px 0 13px; color: var(--navy-950); font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
.workshop-inner p { margin: 0; color: #8d3a1c; font-size: .9rem; }
.workshop-inner .button { position: relative; z-index: 1; flex: 0 0 auto; }

.contact-section { color: white; background: #161616; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 85px; align-items: start; }
.contact-copy { padding-top: 20px; }
.contact-copy h2 { color: white; }
.contact-copy > p:not(.eyebrow) { max-width: 530px; color: #a9bac8; font-size: 1rem; line-height: 1.8; }
.contact-section .eyebrow { color: var(--orange-400); }
.contact-details { display: grid; gap: 14px; margin-top: 36px; }
.contact-details > * { display: flex; align-items: center; gap: 14px; width: fit-content; }
.contact-icon { display: grid; flex: 0 0 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; color: var(--orange-400); background: rgba(255,255,255,.05); }
.contact-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-details > * > span:last-child { display: flex; flex-direction: column; }
.contact-details small { color: #7f94a6; font-size: .64rem; }
.contact-details strong { color: #e7eff4; font-size: .8rem; }
.contact-form { padding: 33px; border: 1px solid rgba(255,255,255,.09); border-radius: 23px; background: white; box-shadow: 0 28px 65px rgba(0,0,0,.22); }
.form-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; padding-bottom: 18px; border-bottom: 1px solid #e7ecef; }
.form-head span { color: var(--navy-900); font-size: 1.1rem; font-weight: 850; }
.form-head small { color: var(--muted); font-size: .67rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form label { display: block; margin-bottom: 17px; color: #5a5a5a; font-size: .72rem; font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: 7px; border: 1px solid #dce4ea; border-radius: 10px; outline: none; color: var(--ink); background: #fafcfd; transition: border-color .2s, box-shadow .2s, background .2s; }
.contact-form input, .contact-form select { height: 47px; padding: 0 13px; }
.contact-form textarea { min-height: 100px; padding: 12px 13px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: #f16522; background: white; box-shadow: 0 0 0 4px rgba(241,101,34,.11); }
.contact-form ::placeholder { color: #9ba8b4; }
.form-note { margin: 13px 0 0; color: #82909d; font-size: .63rem; text-align: center; }
.form-note.is-error { color: #b0443d; }

.site-footer { color: #aebdca; background: var(--navy-950); border-top: 1px solid #383838; }
.footer-main { display: grid; grid-template-columns: 1.8fr repeat(3, 1fr); gap: 55px; padding: 68px 0 50px; }
.brand--footer .brand-copy strong { color: white; }
.brand--footer .brand-copy small { color: #8398aa; }
.footer-brand p { max-width: 340px; margin: 22px 0 0; color: #8296a7; font-size: .78rem; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links strong { margin-bottom: 7px; color: white; font-size: .76rem; }
.footer-links a, .footer-links span { color: #8296a7; font-size: .72rem; transition: color .2s; }
.footer-links a:hover { color: var(--orange-400); }
.footer-bottom { display: flex; justify-content: space-between; padding: 21px 0; border-top: 1px solid #333333; color: #6e8497; font-size: .64rem; }
.whatsapp-float { position: fixed; z-index: 20; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 9px; padding: 12px 16px; border-radius: 999px; color: white; background: #159b6f; box-shadow: 0 14px 35px rgba(4,60,41,.28); font-size: .73rem; font-weight: 850; transition: transform .2s, box-shadow .2s; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 17px 42px rgba(4,60,41,.34); }
.whatsapp-float svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal--delay, .reveal--delay-1 { transition-delay: .1s; }
.reveal--delay-2 { transition-delay: .2s; }
.reveal--delay-3 { transition-delay: .3s; }
.reveal.is-visible { opacity: 1; transform: none; }

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

@media (max-width: 1040px) {
  .section { padding: 92px 0; }
  .primary-nav { gap: 20px; }
  .primary-nav > a:not(.button) { font-size: .82rem; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-copy { max-width: 790px; }
  .hero-visual { width: min(100%, 680px); margin-inline: auto; }
  .trust-inner { grid-template-columns: 1fr; gap: 15px; text-align: center; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--featured { grid-row: span 2; }
  .solution-grid { gap: 55px; }
  .about-grid { gap: 55px; }
  .contact-grid { gap: 55px; }
  .footer-main { grid-template-columns: 1.5fr repeat(3, 1fr); gap: 35px; }
}

@media (max-width: 820px) {
  :root { --header-height: 72px; }
  .topbar__inner > span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .topbar__inner > a { display: none; }
  .nav-toggle { display: block; }
  .primary-nav { position: fixed; inset: calc(34px + var(--header-height)) 0 auto; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 18px 20px 28px; border-bottom: 1px solid #dde5eb; background: rgba(255,255,255,.985); box-shadow: 0 20px 40px rgba(18,18,18,.13); transform: translateY(-130%); opacity: 0; pointer-events: none; transition: transform .25s ease, opacity .2s; }
  .primary-nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .primary-nav > a:not(.button) { padding: 14px 4px; border-bottom: 1px solid #eef2f5; font-size: .95rem; }
  .primary-nav > a:not(.button)::after { display: none; }
  .nav-cta { margin-top: 16px; }
  .hero { padding-top: 85px; }
  .hero-grid { gap: 45px; }
  .hero-copy h1 { font-size: clamp(3rem, 11vw, 4.7rem); }
  .hero-proof { gap: 10px; }
  .hero-visual { min-height: 500px; }
  .floating-card--ticket { right: 0; }
  .floating-card--shield { left: 0; }
  .section-head { display: block; }
  .section-head > p { max-width: 650px; margin-top: 24px; }
  .solution-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .solution-visual { min-height: 500px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .about-visual { min-height: 510px; }
  .about-copy { order: -1; }
  .workshop-inner { display: block; padding: 42px; }
  .workshop-inner .button { margin-top: 26px; }
  .contact-copy { padding-top: 0; }
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-links:last-child { grid-column: 2 / span 2; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 74px 0; }
  .topbar__inner { justify-content: center; min-height: 32px; }
  .topbar { font-size: .68rem; }
  .brand-mark { flex-basis: 40px; width: 40px; height: 40px; }
  .brand-copy small { font-size: .58rem; }
  .hero { padding-top: 70px; }
  .hero-copy h1 { font-size: clamp(2.75rem, 14vw, 4rem); }
  .hero-lead { font-size: .98rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-proof { grid-template-columns: 1fr; gap: 14px; }
  .hero-proof div { padding-left: 13px; border-left: 2px solid var(--orange-400); }
  .hero-visual { min-height: 445px; }
  .hero-visual::before { width: 330px; height: 330px; }
  .dashboard-card { padding: 19px; border-radius: 20px; }
  .health-score { grid-template-columns: 110px 1fr; gap: 14px; padding-block: 22px 15px; }
  .health-ring { width: 104px; height: 104px; }
  .health-ring::before { width: 80px; height: 80px; }
  .health-ring b { font-size: .76rem; }
  .floating-card { min-width: 190px; padding: 11px; }
  .floating-card--ticket { top: -16px; }
  .floating-card--shield { bottom: -6px; }
  .floating-icon { flex-basis: 34px; height: 34px; }
  .floating-card strong { font-size: .62rem; }
  .tech-list { flex-wrap: wrap; justify-content: center; }
  .tech-list b { flex: 0 0 27%; }
  .section-head { margin-bottom: 38px; }
  h2 { font-size: clamp(1.85rem, 10vw, 2.7rem); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card--featured { min-height: auto; padding: 27px; }
  .service-card--featured { padding-bottom: 100px; }
  .service-card--featured > a { right: 27px; bottom: 28px; left: 27px; }
  .service-card:not(.service-card--featured) { padding-bottom: 75px; }
  .solution-grid { gap: 50px; }
  .audience-tabs { overflow-x: auto; padding-bottom: 4px; }
  .audience-tab { flex: 0 0 auto; }
  .solution-visual { min-height: 440px; }
  .ops-card { width: 97%; padding: 18px; }
  .stack-card { width: 92%; height: 340px; }
  .ops-numbers { display: block; }
  .ops-numbers span { display: block; margin-top: 3px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { min-height: auto; }
  .about-visual { min-height: 470px; }
  .about-panel { right: 18px; bottom: 18px; left: 18px; padding: 27px; }
  .about-panel > p { font-size: 1.28rem; }
  .workshop-banner { padding-bottom: 74px; }
  .workshop-inner { padding: 34px 27px; }
  .workshop-inner .button { width: 100%; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 25px 20px; }
  .form-head { align-items: flex-start; flex-direction: column; gap: 4px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-links:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 5px; }
  .whatsapp-float { right: 14px; bottom: 14px; padding: 12px; }
  .whatsapp-float span { display: none; }
}
