:root {
  --ink: #07111d;
  --navy: #06111f;
  --navy-soft: #0a1a2c;
  --blue: #0b94f3;
  --blue-light: #44b8ff;
  --blue-dark: #0874d4;
  --white: #ffffff;
  --paper: #f7f9fc;
  --muted: #647184;
  --line: #dde4ec;
  --radius: 22px;
  --shadow: 0 22px 65px rgba(7, 17, 29, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { display: block; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue-dark);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.container { width: min(1160px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 118px 0; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 82px;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: height .25s ease, background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

.site-header.scrolled {
  height: 70px;
  background: rgba(6, 17, 31, .9);
  border-color: rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px);
}

.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; }

.brand { display: inline-flex; flex: 0 0 auto; align-items: center; font-weight: 800; }
.brand-logo-clip { position: relative; width: 133px; height: 36px; display: block; overflow: hidden; }
.brand-logo-clip img { position: absolute; width: 200px; max-width: none; height: auto; left: -35px; top: -32px; }

.main-nav { display: flex; align-items: center; gap: 34px; font-size: .91rem; font-weight: 600; }
.main-nav > a:not(.nav-cta) { color: #c9d3de; transition: color .2s ease; }
.main-nav > a:not(.nav-cta):hover { color: var(--white); }
.nav-cta { padding: 10px 19px; background: var(--blue); border-radius: 100px; transition: background .2s, transform .2s; }
.nav-cta:hover { background: var(--blue-light); transform: translateY(-1px); }

.menu-toggle { display: none; flex: 0 0 44px; width: 44px; height: 44px; padding: 0; background: transparent; border: 0; }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 6px auto; background: white; transition: transform .25s; }

.hero {
  position: relative;
  min-height: 820px;
  padding: 178px 0 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 42%, rgba(10, 109, 187, .19), transparent 28%),
    linear-gradient(135deg, #06111f 0%, #071625 55%, #05101d 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero-glow { position: absolute; border-radius: 50%; filter: blur(10px); pointer-events: none; }
.hero-glow-one { width: 420px; height: 420px; right: -220px; top: 130px; background: rgba(0, 143, 255, .08); }
.hero-glow-two { width: 240px; height: 240px; left: -180px; bottom: 80px; background: rgba(0, 143, 255, .1); }

.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 82px; }
.hero-grid > * { min-width: 0; }

.eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 20px; color: var(--blue-dark); font-size: .75rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 2px; background: currentColor; }
.hero .eyebrow { color: var(--blue-light); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.12; }
h1 { max-width: 660px; margin-bottom: 25px; font-size: clamp(3.5rem, 6vw, 5.5rem); letter-spacing: -.058em; }
h1 em, h2 em { color: var(--blue-light); font-style: normal; }
.hero-text { max-width: 590px; margin-bottom: 34px; color: #bac6d3; font-size: 1.16rem; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 30px; }

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 23px; border: 1px solid transparent; border-radius: 11px; font-weight: 750; cursor: pointer; transition: transform .2s, background .2s, border-color .2s, box-shadow .2s; }
.button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: linear-gradient(135deg, var(--blue), var(--blue-dark)); box-shadow: 0 12px 30px rgba(9, 148, 243, .25); }
.button-primary:hover { box-shadow: 0 16px 34px rgba(9, 148, 243, .34); }
.button-secondary { margin-top: 18px; color: var(--white); border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.06); }
.button-secondary:hover { background: rgba(255,255,255,.1); }
.button-ghost { width: 100%; color: var(--blue-dark); border-color: #cfdbea; background: transparent; }
.button-ghost:hover { border-color: var(--blue); background: #f1f8ff; }

.text-link { position: relative; color: inherit; font-size: .92rem; font-weight: 750; }
.text-link::after { content: ""; position: absolute; right: 0; bottom: -5px; left: 0; height: 1px; background: currentColor; transform-origin: left; transition: transform .2s; }
.text-link:hover::after { transform: scaleX(.65); }

.hero-proof { display: flex; gap: 0; margin-top: 56px; }
.hero-proof div { min-width: 130px; padding-right: 28px; }
.hero-proof div + div { padding-left: 28px; border-left: 1px solid rgba(255,255,255,.13); }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { margin-bottom: 1px; font-size: .96rem; }
.hero-proof span { color: #8999a9; font-size: .74rem; }

.hero-visual { position: relative; height: 500px; display: flex; align-items: center; justify-content: center; }
.visual-orbit { position: absolute; border: 1px solid rgba(50, 176, 255, .12); border-radius: 50%; }
.orbit-one { width: 520px; height: 520px; }
.orbit-two { width: 390px; height: 390px; border-style: dashed; animation: rotate 30s linear infinite; }
@keyframes rotate { to { transform: rotate(360deg); } }

.dashboard-card { position: relative; z-index: 2; width: 480px; overflow: hidden; color: var(--ink); background: rgba(255,255,255,.98); border: 1px solid rgba(255,255,255,.65); border-radius: 20px; box-shadow: 0 32px 85px rgba(0,0,0,.42); transform: perspective(1200px) rotateY(-5deg) rotateX(2deg); }
.dash-top { height: 58px; display: flex; align-items: center; justify-content: space-between; padding: 0 22px; border-bottom: 1px solid #e9eef3; }
.dash-brand { display: flex; align-items: center; gap: 9px; font-size: .76rem; font-weight: 800; }
.mini-mark { width: 22px; height: 22px; display: block; border: 6px solid var(--blue); border-radius: 7px 7px 10px 10px; transform: rotate(45deg) scale(.72); }
.status { display: flex; align-items: center; gap: 7px; color: #67778a; font-size: .63rem; }
.status i { width: 7px; height: 7px; background: #25b77a; border-radius: 50%; box-shadow: 0 0 0 4px rgba(37,183,122,.12); }
.dash-body { padding: 23px; }
.dash-greeting { margin-bottom: 14px; color: #526174; font-size: .75rem; font-weight: 700; }
.dash-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dash-metrics article { padding: 15px 17px; background: #f6f8fb; border: 1px solid #e8edf3; border-radius: 12px; }
.dash-metrics span, .dash-metrics strong, .dash-metrics small { display: block; }
.dash-metrics span { color: #788697; font-size: .64rem; }
.dash-metrics strong { margin: 3px 0 1px; font-size: 1.45rem; letter-spacing: -.04em; }
.dash-metrics small { color: #2a9f70; font-size: .57rem; }
.chart-card { margin-top: 13px; padding: 15px 15px 0; border: 1px solid #e8edf3; border-radius: 12px; }
.chart-head { display: flex; justify-content: space-between; font-size: .66rem; font-weight: 700; }
.chart-head small { color: #96a1af; font-weight: 500; }
.chart { width: 100%; height: 125px; overflow: visible; }
.chart-area { fill: url(#chartFill); }
.chart-line { fill: none; stroke: var(--blue); stroke-width: 3; stroke-linecap: round; }

.floating-chip { position: absolute; z-index: 4; display: flex; align-items: center; gap: 11px; padding: 11px 15px; color: var(--ink); background: rgba(255,255,255,.97); border: 1px solid rgba(255,255,255,.7); border-radius: 12px; box-shadow: 0 16px 38px rgba(0,0,0,.26); animation: float 4.5s ease-in-out infinite; }
.floating-chip small, .floating-chip strong { display: block; white-space: nowrap; }
.floating-chip small { color: #8390a0; font-size: .56rem; }
.floating-chip strong { font-size: .68rem; }
.chip-icon { width: 29px; height: 29px; display: grid; place-items: center; color: #f59d2a; background: #fff4e5; border-radius: 8px; }
.chip-icon.check { color: #159d6a; background: #e8f8f1; }
.chip-icon svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.chip-alert { top: 52px; right: -25px; }
.chip-sync { bottom: 33px; left: -28px; animation-delay: -2s; }
@keyframes float { 50% { transform: translateY(-9px); } }

.client-strip { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; margin-top: 87px; padding: 29px 0; border-top: 1px solid rgba(255,255,255,.1); }
.client-strip p { margin: 0; color: #7f8e9e; font-size: .72rem; }
.client-strip div { display: flex; align-items: center; gap: 22px; }
.client-strip span { color: #c7d0da; font-size: .72rem; font-weight: 700; letter-spacing: .05em; }
.client-strip i { width: 3px; height: 3px; background: var(--blue); border-radius: 50%; }

.section-heading { display: grid; grid-template-columns: 1.4fr .6fr; align-items: end; gap: 90px; margin-bottom: 56px; }
.section-heading h2, .pricing-heading h2, .contact-copy h2, .process-intro h2 { margin-bottom: 0; font-size: clamp(2.35rem, 4.3vw, 3.7rem); letter-spacing: -.052em; }
.section-heading h2 em, .pricing-heading h2 em { color: var(--blue-dark); }
.section-heading > p { margin-bottom: 3px; color: var(--muted); font-size: .98rem; }

.solutions { background: var(--paper); }
.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.solution-card { position: relative; min-height: 390px; padding: 31px; overflow: hidden; background: var(--white); border: 1px solid #e6ebf1; border-radius: var(--radius); transition: transform .3s, box-shadow .3s, border-color .3s; }
.solution-card::after { content: ""; position: absolute; right: -70px; bottom: -80px; width: 180px; height: 180px; background: radial-gradient(circle, rgba(11,148,243,.1), transparent 68%); }
.solution-card:hover { transform: translateY(-7px); border-color: #cfe5f6; box-shadow: var(--shadow); }
.solution-card.featured { color: var(--white); background: var(--navy-soft); border-color: var(--navy-soft); }
.solution-card.featured p { color: #a7b5c3; }
.solution-card.featured li { color: #d7e0e9; border-color: rgba(255,255,255,.08); }
.solution-card.featured li::before { color: var(--blue-light); }
.solution-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 43px; color: var(--blue-dark); background: #ecf7ff; border-radius: 13px; }
.featured .solution-icon { color: var(--blue-light); background: rgba(26,158,246,.12); }
.solution-icon svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.solution-number { position: absolute; top: 33px; right: 30px; color: #a4afbb; font-size: .68rem; font-weight: 800; letter-spacing: .12em; }
.solution-card h3 { margin-bottom: 11px; font-size: 1.28rem; letter-spacing: -.02em; }
.solution-card p { min-height: 52px; margin-bottom: 21px; color: var(--muted); font-size: .88rem; }
.solution-card ul, .price-card ul { padding: 0; margin: 0; list-style: none; }
.solution-card li { position: relative; padding: 7px 0 7px 19px; color: #465467; border-top: 1px solid #edf0f4; font-size: .78rem; }
.solution-card li::before { content: "·"; position: absolute; left: 3px; color: var(--blue-dark); font-size: 1.3rem; line-height: 1; }

.custom-banner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 19px; margin-top: 18px; padding: 22px 27px; background: #eaf5fd; border: 1px solid #d9edfb; border-radius: 16px; }
.custom-mark { width: 42px; height: 42px; display: grid; place-items: center; color: var(--blue-dark); background: white; border-radius: 11px; }
.custom-mark svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; }
.custom-banner h3 { margin: 0 0 2px; font-size: .96rem; }
.custom-banner p { margin: 0; color: var(--muted); font-size: .8rem; }
.custom-banner .text-link { color: var(--blue-dark); }

.process { color: var(--white); background: var(--navy); }
.process-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 110px; }
.process-intro { position: sticky; top: 120px; align-self: start; }
.process-intro h2 { max-width: 470px; }
.process-intro > p:not(.eyebrow) { max-width: 430px; margin: 23px 0; color: #96a6b7; }
.process-list { padding: 0; margin: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 76px 1fr; gap: 24px; min-height: 154px; padding: 8px 0 34px; border-bottom: 1px solid rgba(255,255,255,.1); }
.process-list li + li { padding-top: 34px; }
.process-list > li > span { width: 50px; height: 50px; display: grid; place-items: center; color: var(--blue-light); background: rgba(18,157,255,.1); border: 1px solid rgba(18,157,255,.2); border-radius: 50%; font-size: .7rem; font-weight: 800; }
.process-list h3 { margin: 2px 0 9px; font-size: 1.25rem; }
.process-list p { max-width: 520px; margin: 0; color: #92a3b4; font-size: .89rem; }

.pricing { background: var(--white); }
.pricing-heading { max-width: 790px; margin: 0 auto 56px; text-align: center; }
.pricing-heading .eyebrow { justify-content: center; }
.pricing-heading > p:last-child { max-width: 620px; margin: 21px auto 0; color: var(--muted); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 33px 30px 30px; border: 1px solid var(--line); border-radius: var(--radius); }
.price-card.popular { border: 2px solid var(--blue); box-shadow: 0 25px 65px rgba(11,148,243,.14); }
.popular-label { position: absolute; top: -14px; left: 50%; padding: 5px 15px; color: var(--white); background: var(--blue); border-radius: 100px; font-size: .63rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transform: translateX(-50%); }
.price-kicker { margin-bottom: 9px; color: var(--blue-dark); font-size: .65rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.price-card h3 { margin-bottom: 22px; font-size: 1.35rem; }
.price { margin-bottom: 15px; }
.price small, .price strong { display: block; }
.price small { margin-bottom: 2px; color: var(--muted); font-size: .7rem; }
.price strong { font-size: clamp(1.45rem, 2.4vw, 1.85rem); letter-spacing: -.04em; }
.price-desc { min-height: 73px; color: var(--muted); font-size: .83rem; }
.price-card ul { flex: 1; margin: 9px 0 27px; }
.price-card li { position: relative; padding: 7px 0 7px 24px; color: #435164; font-size: .79rem; }
.price-card li::before { content: "✓"; position: absolute; left: 0; top: 8px; width: 15px; height: 15px; display: grid; place-items: center; color: var(--blue-dark); background: #e9f6ff; border-radius: 50%; font-size: .58rem; font-weight: 900; }
.enterprise-row { display: grid; grid-template-columns: 1fr 1.35fr auto; align-items: center; gap: 36px; margin-top: 19px; padding: 25px 30px; color: var(--white); background: var(--navy-soft); border-radius: 17px; }
.enterprise-row span { color: var(--blue-light); font-size: .63rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.enterprise-row h3 { margin: 3px 0 0; font-size: 1.13rem; }
.enterprise-row p { margin: 0; color: #a8b5c3; font-size: .8rem; }
.enterprise-row p strong { color: white; }
.enterprise-row > a { width: 43px; height: 43px; display: grid; place-items: center; background: var(--blue); border-radius: 50%; transition: transform .2s, background .2s; }
.enterprise-row > a:hover { background: var(--blue-light); transform: translateX(3px); }
.enterprise-row svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.pricing-note { max-width: 850px; margin: 22px auto 0; color: #8994a2; font-size: .7rem; text-align: center; }

.contact { padding-top: 30px; background: var(--white); }
.modal-overlay { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 20px; background: rgba(6, 17, 31, 0.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .3s, visibility .3s; }
.modal-overlay.open { opacity: 1; visibility: visible; pointer-events: all; }
.modal-dialog { position: relative; width: 100%; max-width: 1160px; max-height: calc(100vh - 40px); overflow-y: auto; overflow-x: hidden; border-radius: 30px; transform: translateY(20px) scale(0.98); transition: transform .3s; scrollbar-width: none; }
.modal-dialog::-webkit-scrollbar { display: none; }
.modal-overlay.open .modal-dialog { transform: translateY(0) scale(1); }
.modal-close { position: absolute; top: 20px; right: 20px; z-index: 10; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; padding: 0; color: white; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50%; cursor: pointer; transition: background .2s, transform .2s; }
.modal-close:hover { background: rgba(255, 255, 255, 0.2); transform: scale(1.05); }
.modal-close svg { width: 24px; }
.contact-shell { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; padding: 70px; overflow: hidden; color: var(--white); background: linear-gradient(135deg, #071523, #09243a); border-radius: 30px; }
.contact-shell::before { content: ""; position: absolute; width: 390px; height: 390px; left: -200px; bottom: -250px; background: rgba(11,148,243,.17); border-radius: 50%; filter: blur(10px); }
.contact-copy { position: relative; z-index: 1; padding-top: 12px; }
.eyebrow.light { color: var(--blue-light); }
.contact-copy h2 { max-width: 470px; }
.contact-copy > p:not(.eyebrow) { margin: 23px 0 33px; color: #a9b8c7; font-size: .93rem; }
.contact-location { display: flex; align-items: center; gap: 9px; color: #ccd6e0; font-size: .78rem; }
.contact-location svg { width: 19px; fill: none; stroke: var(--blue-light); stroke-width: 1.7; }
.contact-methods { display: grid; gap: 10px; margin-top: 28px; }
.contact-methods > a { display: flex; align-items: center; gap: 12px; width: fit-content; color: #dbe5ee; transition: color .2s, transform .2s; }
.contact-methods > a:hover { color: var(--white); transform: translateX(3px); }
.contact-methods > a > span:first-child { width: 35px; height: 35px; display: grid; place-items: center; color: var(--blue-light); background: rgba(18,157,255,.1); border: 1px solid rgba(18,157,255,.18); border-radius: 9px; }
.contact-methods svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.contact-methods small, .contact-methods strong { display: block; }
.contact-methods small { color: #7f91a3; font-size: .62rem; font-weight: 500; }
.contact-methods strong { font-size: .78rem; font-weight: 700; }
.contact-form { position: relative; z-index: 1; padding: 30px; color: var(--ink); background: white; border-radius: 19px; }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.contact-form label { display: block; margin-bottom: 13px; color: #344256; font-size: .72rem; font-weight: 750; }
.contact-form input, .contact-form textarea { width: 100%; margin-top: 6px; padding: 12px 14px; color: var(--ink); background: #f7f9fb; border: 1px solid #e2e8ef; border-radius: 9px; outline: none; resize: vertical; transition: border-color .2s, box-shadow .2s; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #a4afbb; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(11,148,243,.1); }
.form-button { width: 100%; border: 0; }
.whatsapp-option { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 13px; padding-top: 13px; border-top: 1px solid #e8edf2; }
.whatsapp-option > span { color: #84909e; font-size: .66rem; }
.whatsapp-option > a { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 6px; color: #159d6a; font-size: .68rem; font-weight: 800; transition: color .2s; }
.whatsapp-option > a:hover { color: #08794f; }
.whatsapp-option svg { width: 16px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.site-footer { padding: 80px 0 28px; color: #a2b0be; background: var(--navy); }
.footer-main { display: grid; grid-template-columns: 1fr .8fr 1fr; align-items: center; gap: 60px; padding-bottom: 55px; }
.footer-main .brand { color: white; }
.footer-logo { width: 166px; height: 45px; }
.footer-logo img { width: 250px; left: -44px; top: -40px; }
.footer-main > p { max-width: 270px; margin: 0; font-size: .77rem; }
.footer-main nav { display: flex; justify-content: flex-end; gap: 25px; font-size: .75rem; }
.footer-main nav a { transition: color .2s; }
.footer-main nav a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.08); color: #657687; font-size: .67rem; }
.footer-bottom a { transition: color .2s; }
.footer-bottom a:hover { color: var(--white); }

.reveal { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-short { transition-delay: .1s; }
.reveal-delay, .reveal-delay-long { transition-delay: .2s; }

@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .dashboard-card { width: 420px; }
  .chip-alert { right: -5px; }
  .chip-sync { left: -5px; }
  .contact-shell { gap: 48px; padding: 55px 45px; }
  .footer-main { gap: 30px; }
}

@media (max-width: 860px) {
  .container { width: min(100% - 34px, 690px); }
  .section { padding: 90px 0; }
  .menu-toggle { display: block; position: relative; z-index: 3; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 0; height: 100vh; height: 100dvh; display: flex; flex-direction: column; justify-content: center; gap: 28px; font-size: 1.25rem; background: rgba(6,17,31,.98); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity .25s, visibility .25s, transform .25s; }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  body.menu-open .site-header { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
  .nav-cta { margin-top: 6px; padding: 12px 27px; }
  .hero { min-height: auto; padding-top: 145px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-visual { width: min(100%, 560px); margin: 20px auto 0; }
  .hero-proof { justify-content: center; }
  .client-strip { margin-top: 58px; }
  .client-strip p { display: none; }
  .client-strip div { width: 100%; justify-content: center; flex-wrap: wrap; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .section-heading > p { max-width: 590px; }
  .solution-grid, .pricing-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: 0; }
  .solution-card p, .price-desc { min-height: 0; }
  .price-card { padding: 32px; }
  .process-grid { grid-template-columns: 1fr; gap: 62px; }
  .process-intro { position: static; }
  .process-list li { min-height: 135px; }
  .enterprise-row { grid-template-columns: 1fr auto; }
  .enterprise-row > p { grid-column: 1; }
  .enterprise-row > a { grid-row: 1 / 3; grid-column: 2; }
  .contact-shell { grid-template-columns: 1fr; gap: 38px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main nav { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .container { width: calc(100% - 28px); }
  .section { padding: 74px 0; }
  .site-header { height: 70px; }
  .hero-copy { width: 100%; }
  .hero-copy .eyebrow { max-width: 100%; justify-content: center; font-size: .62rem; letter-spacing: .12em; }
  .hero-copy .eyebrow span { flex: 0 0 24px; }
  h1 { width: 100%; font-size: clamp(2.8rem, 12.5vw, 3.15rem); overflow-wrap: break-word; }
  .hero { padding-top: 125px; }
  .hero-text { font-size: 1rem; }
  .hero-actions { width: 100%; flex-direction: column; gap: 20px; }
  .hero-actions .button { width: 100%; }
  .hero-proof { width: 100%; margin-top: 44px; }
  .hero-proof div { min-width: 0; flex: 1; padding-right: 12px; }
  .hero-proof div + div { padding-left: 12px; }
  .hero-proof strong { font-size: .79rem; }
  .hero-proof span { font-size: .62rem; }
  .hero-visual { height: 340px; }
  .dashboard-card { width: 320px; transform: perspective(1000px) rotateY(-5deg) rotateX(2deg); }
  .dash-top { height: 44px; padding: 0 16px; }
  .dash-brand { font-size: 0.7rem; }
  .mini-mark { width: 18px; height: 18px; border-width: 5px; }
  .status { font-size: 0.55rem; }
  .dash-body { padding: 14px; }
  .dash-greeting { margin-bottom: 10px; font-size: 0.65rem; }
  .dash-metrics { gap: 10px; }
  .dash-metrics article { padding: 10px 12px; }
  .dash-metrics span { font-size: 0.55rem; }
  .dash-metrics strong { font-size: 1.15rem; }
  .dash-metrics small { font-size: 0.5rem; }
  .chart-card { padding: 12px 12px 0; margin-top: 10px; }
  .chart-head { font-size: 0.55rem; }
  .chart { height: 70px; }
  .floating-chip { padding: 8px 12px; gap: 8px; border-radius: 10px; }
  .floating-chip strong { font-size: 0.6rem; }
  .floating-chip small { font-size: 0.5rem; }
  .chip-icon { width: 22px; height: 22px; border-radius: 6px; }
  .chip-icon svg { width: 13px; }
  .chip-alert { top: 30px; right: -15px; }
  .chip-sync { bottom: 20px; left: -15px; }
  .orbit-one { width: 340px; height: 340px; }
  .orbit-two { width: 260px; height: 260px; }
  .client-strip div { gap: 12px; }
  .client-strip span { font-size: .62rem; }
  .section-heading h2, .pricing-heading h2, .contact-copy h2, .process-intro h2 { font-size: 2.35rem; }
  .solution-card { padding: 26px; }
  .custom-banner { grid-template-columns: auto 1fr; }
  .custom-banner .text-link { grid-column: 2; justify-self: start; }
  .process-list li { grid-template-columns: 56px 1fr; gap: 13px; }
  .process-list > li > span { width: 43px; height: 43px; }
  .enterprise-row { padding: 24px; }
  .contact { padding-top: 0; }
  .modal-overlay { padding: 0; }
  .modal-dialog { max-height: 100dvh; border-radius: 0; }
  .modal-close { top: 15px; right: 15px; width: 38px; height: 38px; background: rgba(0,0,0,0.3); border-color: transparent; }
  .contact-shell { width: 100%; padding: 52px 20px 20px; border-radius: 0; }
  .modal-overlay .contact-shell { min-height: 100dvh; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 21px; }
  .whatsapp-option { flex-direction: column; align-items: center; text-align: center; }
  .footer-main nav { flex-wrap: wrap; gap: 15px 24px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

@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; }
}

.success-page { min-height: 100vh; color: var(--white); background: radial-gradient(circle at 50% 38%, rgba(11,148,243,.15), transparent 28%), var(--navy); }
.success-shell { min-height: 100vh; display: grid; place-items: center; padding: 100px 24px 60px; }
.success-brand { position: absolute; top: 25px; left: max(24px, calc((100% - 1160px) / 2)); }
.success-card { width: min(560px, 100%); padding: 55px; text-align: center; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 28px; box-shadow: 0 30px 80px rgba(0,0,0,.22); }
.success-icon { width: 66px; height: 66px; display: grid; place-items: center; margin: 0 auto 26px; color: var(--blue-light); background: rgba(18,157,255,.12); border: 1px solid rgba(18,157,255,.24); border-radius: 50%; }
.success-icon svg { width: 34px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.success-card .eyebrow { justify-content: center; color: var(--blue-light); }
.success-card h1 { margin: 0 0 19px; font-size: clamp(2.7rem, 7vw, 4rem); }
.success-card > p:not(.eyebrow) { max-width: 420px; margin: 0 auto 30px; color: #a9b8c7; }
@media (max-width: 560px) { .success-card { padding: 42px 22px; } }
