:root {
  --navy-950: #071528;
  --navy-900: #0b1f3a;
  --navy-800: #102b4d;
  --blue: #2e6b9c;
  --blue-soft: #dcebf4;
  --ink: #122238;
  --muted: #66758a;
  --line: #dbe4ec;
  --soft: #f4f7f9;
  --white: #ffffff;
  --accent: #bd9251;
  --accent-light: #f1e4cf;
  --green: #68b895;
  --shadow: 0 18px 50px rgba(8, 28, 52, .09);
  --shadow-strong: 0 24px 70px rgba(3, 16, 32, .2);
  --radius: 14px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: var(--font); font-size: 16px; line-height: 1.6; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button { cursor: pointer; }
::selection { color: var(--white); background: var(--blue); }
.container { width: min(1180px, calc(100% - 64px)); margin: 0 auto; }
.skip-link { position: fixed; z-index: 100; left: 18px; top: -80px; padding: 10px 16px; border-radius: 8px; color: var(--white); background: var(--navy-900); transition: top .2s ease; }
.skip-link:focus { top: 18px; }

.site-header { position: fixed; z-index: 50; top: 0; left: 0; width: 100%; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.09); transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease; }
.site-header.scrolled { background: rgba(7, 21, 40, .92); box-shadow: 0 8px 30px rgba(3, 16, 32, .13); backdrop-filter: blur(16px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 88px; gap: 30px; transition: min-height .3s ease; }
.site-header.scrolled .header-inner { min-height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-mark { width: 29px; height: 29px; display: inline-flex; align-items: flex-end; gap: 3px; padding: 3px 4px; border: 1px solid rgba(255,255,255,.6); border-radius: 7px 7px 10px 10px; }
.brand-mark span { display: block; width: 5px; border-radius: 2px 2px 0 0; background: var(--accent); }
.brand-mark span:first-child { height: 42%; opacity: .7; }.brand-mark span:nth-child(2) { height: 68%; }.brand-mark span:last-child { height: 92%; background: var(--green); }
.brand-copy { display: grid; line-height: 1; gap: 5px; }.brand-copy strong { font-size: 12px; letter-spacing: .17em; }.brand-copy small { color: rgba(255,255,255,.55); font-size: 8px; letter-spacing: .25em; }
.main-nav { display: flex; align-items: center; gap: clamp(14px, 1.55vw, 24px); font-size: 12px; letter-spacing: .01em; }
.main-nav > a:not(.button) { color: rgba(255,255,255,.72); transition: color .2s ease; }.main-nav > a:not(.button):hover { color: var(--white); }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 10px; border: 1px solid rgba(255,255,255,.25); border-radius: 9px; background: transparent; }
.menu-toggle span { display: block; width: 20px; height: 1px; margin: 5px auto; background: var(--white); transition: transform .2s ease, opacity .2s ease; }
.menu-open .menu-toggle span:first-child { transform: translateY(6px) rotate(45deg); }.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }.menu-open .menu-toggle span:last-child { transform: translateY(-6px) rotate(-45deg); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 13px; min-height: 52px; padding: 0 22px; border: 1px solid transparent; border-radius: 6px; font-size: 12px; font-weight: 700; letter-spacing: .03em; transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }.button:focus-visible, .text-link:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(104,184,149,.55); outline-offset: 3px; }
.button-primary { color: var(--white); background: var(--blue); box-shadow: 0 12px 26px rgba(46,107,156,.22); }.button-primary:hover { background: #3b7cad; box-shadow: 0 16px 30px rgba(46,107,156,.3); }
.button-accent { color: var(--navy-950); background: var(--accent-light); box-shadow: 0 12px 25px rgba(189,146,81,.13); }.button-accent:hover { background: #fff1d9; }
.button-dark { color: var(--white); background: var(--navy-900); }.button-dark:hover { background: #183b66; }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.04); }.button-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.55); }
.button-small { min-height: 40px; padding: 0 15px; font-size: 10px; }.button-large { min-height: 60px; padding: 0 26px; font-size: 12px; }.arrow { font-size: 18px; line-height: 0; font-weight: 400; }

.section { padding: 118px 0; position: relative; }.section-light { background: var(--white); }.section-soft { background: var(--soft); }.section-dark, .section-navy { color: var(--white); background: var(--navy-900); }.section-navy { background: var(--navy-950); }
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 20px; color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .18em; line-height: 1.2; text-transform: uppercase; }.eyebrow-light { color: var(--accent-light); }.eyebrow-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(189,146,81,.13); }
h1, h2, h3, p { margin-top: 0; } h1, h2 { letter-spacing: -.045em; line-height: 1.04; font-weight: 500; } h1 { max-width: 740px; margin-bottom: 26px; font-size: clamp(42px, 5.25vw, 76px); } h2 { margin-bottom: 23px; font-size: clamp(34px, 4vw, 57px); } h3 { font-size: 22px; line-height: 1.2; } em { color: var(--accent); font-family: var(--serif); font-weight: 400; }
.section-heading { max-width: 700px; margin: 0 0 54px; }.section-heading h2 { margin-bottom: 18px; }.section-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 50px; max-width: none; }.section-heading-row > div { max-width: 700px; }.section-heading-note { max-width: 300px; margin-bottom: 8px; color: var(--muted); font-size: 14px; }.section-heading-light .section-lead { color: rgba(255,255,255,.64); }.section-lead { max-width: 610px; color: var(--muted); font-size: 17px; line-height: 1.75; }.section-heading:not(.section-heading-row) .section-lead { max-width: 590px; }

.hero { position: relative; min-height: 760px; padding: 180px 0 0; overflow: hidden; background: var(--navy-950); }.hero-grid { display: grid; grid-template-columns: 1fr .92fr; align-items: center; gap: 45px; min-height: 565px; min-width: 0; }.hero-content { position: relative; z-index: 2; min-width: 0; }.hero-content h1 { color: var(--white); }.hero-content h1 em { display: inline; color: var(--accent-light); }.hero-lead { max-width: 610px; color: rgba(255,255,255,.66); font-size: 17px; line-height: 1.75; overflow-wrap: break-word; }.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }.trust-row { display: flex; flex-wrap: wrap; gap: 14px 23px; margin-top: 47px; color: rgba(255,255,255,.58); font-size: 10px; }.trust-row > span { display: inline-flex; align-items: center; gap: 7px; }.trust-icon { display: inline-grid; place-items: center; width: 16px; height: 16px; border-radius: 50%; color: var(--navy-950); background: var(--green); font-size: 10px; font-weight: 800; }
.hero-glow { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(4px); }.hero-glow-one { top: 1%; left: 46%; width: 430px; height: 430px; background: rgba(41,96,143,.18); }.hero-glow-two { bottom: -220px; right: 2%; width: 620px; height: 620px; border: 1px solid rgba(189,146,81,.13); }
.hero-visual { position: relative; min-height: 500px; }.hero-image-wrap { position: absolute; top: 15px; right: -60px; width: min(680px, 52vw); height: 505px; overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: 170px 14px 14px 14px; box-shadow: var(--shadow-strong); transform: rotate(2deg); }.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: rotate(-2deg) scale(1.04); }.hero-image-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,21,40,.47), transparent 43%), linear-gradient(0deg, rgba(7,21,40,.6), transparent 47%); }.hero-caption { position: absolute; bottom: 25px; left: 29px; display: flex; align-items: start; gap: 13px; color: rgba(255,255,255,.75); font-size: 11px; line-height: 1.5; }.hero-caption strong { color: var(--white); font-weight: 600; }.caption-line { width: 24px; height: 1px; margin-top: 8px; background: var(--accent); }
.floating-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 11px; min-width: 200px; padding: 13px 14px; border: 1px solid rgba(255,255,255,.22); border-radius: 10px; color: var(--white); background: rgba(17,43,77,.82); box-shadow: 0 16px 35px rgba(2,14,27,.26); backdrop-filter: blur(12px); }.floating-card small, .floating-card strong { display: block; }.floating-card small { color: rgba(255,255,255,.52); font-size: 9px; }.floating-card strong { margin-top: 2px; font-size: 12px; font-weight: 600; }.floating-card-top { top: 55px; left: -25px; }.floating-card-bottom { right: -17px; bottom: 41px; }.floating-icon { display: grid; place-items: center; width: 29px; height: 29px; border-radius: 50%; color: var(--navy-950); background: var(--accent-light); font-size: 18px; }.floating-icon-green { background: var(--green); }.avatar-stack { display: flex; width: 41px; }.avatar-stack i { display: block; width: 21px; height: 21px; margin-right: -5px; border: 2px solid var(--navy-800); border-radius: 50%; background: #af8f78; }.avatar-stack i:nth-child(2) { background: #7b93a5; }.avatar-stack i:nth-child(3) { background: #d4b07b; }
.hero-bottom-line { position: relative; z-index: 2; display: flex; justify-content: space-between; padding: 25px 0 29px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.4); font-size: 9px; letter-spacing: .18em; }.hero-bottom-line span:last-child { color: rgba(255,255,255,.58); letter-spacing: .08em; }

.stats-section { background: #eef3f6; }.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 38px 0; }.stat-item { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 5px 24px; border-right: 1px solid #d7e0e8; }.stat-item:last-child { border: 0; }.stat-item strong { color: var(--navy-900); font-size: 31px; letter-spacing: -.06em; }.stat-item span { max-width: 100px; color: var(--muted); font-size: 10px; line-height: 1.35; }.stat-item .stat-suffix { margin-left: 1px; color: var(--accent); font-size: 19px; font-weight: 700; }

.about-grid { display: grid; grid-template-columns: .92fr 1fr; align-items: center; gap: clamp(60px, 9vw, 132px); }.about-visual { position: relative; min-height: 480px; }.about-orbit { position: absolute; border: 1px solid #d7e4ec; border-radius: 50%; transform: rotate(-16deg); }.orbit-one { top: 4%; left: 2%; width: 440px; height: 360px; }.orbit-two { top: 17%; left: 11%; width: 370px; height: 280px; border-color: #e7d8c3; transform: rotate(25deg); }.about-paper { position: absolute; border-radius: 9px; background: var(--white); box-shadow: var(--shadow); }.paper-back { top: 54px; left: 34px; width: 305px; height: 320px; padding: 28px; border: 1px solid #eef2f5; transform: rotate(-9deg); }.paper-front { top: 110px; right: 28px; width: 315px; min-height: 294px; padding: 25px; border: 1px solid #e6edf2; transform: rotate(7deg); }.paper-kicker { color: #a8b3be; font-size: 8px; font-weight: 800; letter-spacing: .18em; }.paper-bar { display: block; width: 82%; height: 5px; margin-top: 13px; border-radius: 5px; background: #e2eaf0; }.paper-bar-short { width: 43%; margin-top: 25px; background: #c9dce9; }.paper-bar-mid { width: 64%; margin-top: 8px; }.paper-chart { display: flex; align-items: end; gap: 7px; height: 108px; margin-top: 28px; padding-bottom: 4px; border-bottom: 1px solid #e7edf1; }.paper-chart i { display: block; width: 22px; border-radius: 4px 4px 0 0; background: #d3e3ed; }.paper-chart i:nth-child(1) { height: 37%; }.paper-chart i:nth-child(2) { height: 52%; background: #aac6da; }.paper-chart i:nth-child(3) { height: 41%; }.paper-chart i:nth-child(4) { height: 69%; background: var(--blue); }.paper-chart i:nth-child(5) { height: 58%; background: #6e9fbe; }.paper-chart i:nth-child(6) { height: 89%; background: var(--navy-900); }.paper-head { display: flex; align-items: center; gap: 8px; }.paper-head b { margin-left: auto; color: #c1cbd2; font-size: 9px; }.mini-mark { width: 14px; height: 14px; border-radius: 4px; background: var(--navy-900); }.paper-front > strong { display: block; margin-top: 27px; color: var(--navy-900); font-size: 31px; letter-spacing: -.07em; }.paper-front > small { color: var(--muted); font-size: 9px; }.sparkline { display: flex; align-items: end; gap: 7px; height: 48px; margin-top: 18px; border-bottom: 1px solid #e7edf1; }.sparkline span { width: 28px; height: 25%; border-radius: 3px 3px 0 0; background: #d6e6ef; }.sparkline span:nth-child(2) { height: 41%; }.sparkline span:nth-child(3) { height: 33%; }.sparkline span:nth-child(4) { height: 58%; background: #86adc5; }.sparkline span:nth-child(5) { height: 50%; }.sparkline span:nth-child(6) { height: 74%; background: var(--blue); }.sparkline span:nth-child(7) { height: 91%; background: var(--navy-900); }.paper-foot { display: flex; justify-content: space-between; margin-top: 13px; color: var(--muted); font-size: 8px; }.paper-foot b { color: #4a9c7b; }.about-note { position: absolute; bottom: 38px; left: 0; display: flex; align-items: center; gap: 10px; padding: 12px 15px; border: 1px solid #e3eaf0; border-radius: 8px; background: rgba(255,255,255,.92); box-shadow: 0 12px 25px rgba(8,28,52,.08); font-size: 10px; line-height: 1.25; }.about-note strong { color: var(--navy-900); font-size: 12px; }.note-check { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; color: var(--white); background: var(--green); }
.about-copy > p:not(.eyebrow) { max-width: 600px; color: var(--muted); font-size: 15px; line-height: 1.75; }.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px 25px; margin: 27px 0 28px; }.check-list span { display: flex; align-items: center; gap: 9px; color: var(--ink); font-size: 12px; }.check-list span::before { content: "✓"; display: grid; place-items: center; width: 17px; height: 17px; flex: 0 0 17px; border-radius: 50%; color: var(--blue); background: var(--blue-soft); font-size: 10px; font-weight: 800; }.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--navy-900); border-bottom: 1px solid #b9cbd6; padding-bottom: 5px; font-size: 12px; font-weight: 800; transition: color .2s ease, border-color .2s ease; }.text-link:hover { color: var(--blue); border-color: var(--blue); }.text-link span { font-size: 16px; font-weight: 400; }

.services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 13px; }.service-card { display: flex; min-height: 250px; flex-direction: column; padding: 23px 19px 18px; border: 1px solid #e1e8ed; border-radius: 9px; background: var(--white); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }.service-card:hover { border-color: #b6cfdf; box-shadow: var(--shadow); transform: translateY(-6px); }.icon-box { display: grid; place-items: center; width: 41px; height: 41px; margin-bottom: 23px; border-radius: 8px; color: var(--blue); background: var(--blue-soft); }.icon-box svg { width: 19px; height: 19px; }.service-card h3 { margin-bottom: 9px; font-size: 16px; letter-spacing: -.02em; }.service-card p { min-height: 82px; margin-bottom: 15px; color: var(--muted); font-size: 11px; line-height: 1.55; }.service-link { display: inline-flex; align-items: center; gap: 7px; margin-top: auto; color: var(--blue); font-size: 10px; font-weight: 800; }.service-link span { font-size: 16px; font-weight: 400; transition: transform .2s ease; }.service-card:hover .service-link span { transform: translateX(3px); }

.opening-section { position: relative; padding: 112px 0; overflow: hidden; }.opening-pattern { position: absolute; top: -120px; right: -100px; width: 610px; height: 610px; border: 1px solid rgba(189,146,81,.15); border-radius: 50%; box-shadow: 0 0 0 55px rgba(189,146,81,.025), 0 0 0 110px rgba(189,146,81,.025); }.opening-pattern::after { content: ""; position: absolute; top: 50%; left: -20%; width: 150%; height: 1px; background: rgba(189,146,81,.14); transform: rotate(-33deg); }.opening-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; }.opening-copy { max-width: 570px; }.opening-copy h2 { color: var(--white); }.opening-copy p:not(.eyebrow) { max-width: 500px; color: rgba(255,255,255,.63); font-size: 16px; line-height: 1.75; }.opening-copy .button { margin-top: 22px; }.steps-card { padding: 27px; border: 1px solid rgba(255,255,255,.13); border-radius: 9px; background: rgba(255,255,255,.055); }.steps-card-head { display: flex; justify-content: space-between; padding-bottom: 21px; border-bottom: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.72); font-size: 11px; }.step-count { color: var(--accent); font-size: 9px; letter-spacing: .1em; }.opening-steps { display: grid; grid-template-columns: repeat(2, 1fr); }.opening-steps > div { display: flex; align-items: center; gap: 12px; padding: 21px 8px 16px 0; border-bottom: 1px solid rgba(255,255,255,.09); }.opening-steps > div:nth-child(odd) { margin-right: 18px; }.opening-steps b { color: var(--accent); font-size: 10px; }.opening-steps span { color: rgba(255,255,255,.83); font-size: 12px; }

.switch-section { padding: 60px 0; background: var(--white); }.switch-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px; padding: 42px 50px; border: 1px solid #dce7ee; border-radius: 10px; box-shadow: 0 15px 35px rgba(8,28,52,.04); }.switch-card .eyebrow { margin-bottom: 12px; }.switch-card h2 { max-width: 570px; margin-bottom: 14px; font-size: 34px; }.switch-card p:not(.eyebrow) { max-width: 590px; margin-bottom: 0; color: var(--muted); font-size: 14px; }.switch-icon { display: grid; place-items: center; width: 62px; height: 62px; border-radius: 50%; color: var(--blue); background: var(--blue-soft); font-size: 33px; }.switch-card .button { white-space: nowrap; }

.segments-grid { display: flex; flex-wrap: wrap; gap: 9px; max-width: 1020px; }.segment-pill { display: inline-flex; align-items: center; gap: 9px; padding: 12px 16px; border: 1px solid #dee8ee; border-radius: 7px; color: #34495e; background: var(--white); font-size: 12px; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease; }.segment-pill::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }.segment-pill:hover { color: var(--white); background: var(--navy-900); border-color: var(--navy-900); transform: translateY(-2px); }

.tax-section { overflow: hidden; }.tax-section::before { content: ""; position: absolute; top: -260px; left: -210px; width: 550px; height: 550px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 65px rgba(255,255,255,.018), 0 0 0 130px rgba(255,255,255,.018); }.tax-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }.tax-card { position: relative; min-height: 255px; padding: 28px; border: 1px solid rgba(255,255,255,.13); border-radius: 8px; background: rgba(255,255,255,.055); transition: background .25s ease, border-color .25s ease, transform .25s ease; }.tax-card:hover { background: rgba(255,255,255,.1); border-color: rgba(189,146,81,.55); transform: translateY(-5px); }.tax-card:first-child { background: rgba(189,146,81,.12); border-color: rgba(189,146,81,.45); }.tax-index { color: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: .14em; }.tax-card h3 { margin: 29px 0 11px; color: var(--white); font-size: 22px; }.tax-card p { margin-bottom: 0; color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.65; }.tax-mark { position: absolute; right: 24px; top: 20px; color: rgba(255,255,255,.35); font-size: 38px; font-family: var(--serif); }.center-cta { margin-top: 35px; text-align: center; }

.differentials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }.differential-card { min-height: 205px; padding: 26px; border-top: 2px solid var(--blue); background: var(--white); box-shadow: 0 10px 25px rgba(8,28,52,.05); transition: box-shadow .25s ease, transform .25s ease; }.differential-card:nth-child(2n) { border-top-color: var(--accent); }.differential-card:nth-child(3n) { border-top-color: var(--green); }.differential-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }.differential-card .icon-box { width: 35px; height: 35px; margin-bottom: 20px; }.differential-card h3 { margin-bottom: 8px; font-size: 17px; }.differential-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }

.timeline { display: grid; grid-template-columns: repeat(5, 1fr); position: relative; }.timeline::before { content: ""; position: absolute; top: 28px; left: 8%; right: 8%; height: 1px; background: #cfdae2; }.timeline-item { position: relative; padding-right: 26px; }.timeline-number { position: relative; z-index: 1; display: grid; place-items: center; width: 57px; height: 57px; margin-bottom: 31px; border: 1px solid #c7d8e3; border-radius: 50%; color: var(--blue); background: var(--white); font-size: 12px; font-weight: 800; }.timeline-item:nth-child(2) .timeline-number, .timeline-item:nth-child(4) .timeline-number { color: var(--accent); border-color: #dfcaa9; }.timeline-item h3 { margin-bottom: 9px; font-size: 16px; }.timeline-item p { max-width: 165px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }

.technology-section { padding: 118px 0; overflow: hidden; }.technology-grid { display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: 90px; }.technology-copy h2 { color: var(--white); }.technology-copy > p:not(.eyebrow) { max-width: 510px; color: rgba(255,255,255,.61); font-size: 16px; line-height: 1.75; }.technology-points { display: grid; gap: 14px; margin-top: 34px; }.technology-points span { display: flex; align-items: center; gap: 13px; color: rgba(255,255,255,.82); font-size: 12px; }.technology-points b { color: var(--accent); font-size: 10px; }.dashboard-wrap { position: relative; padding: 20px 0 35px; }.dashboard-window { overflow: hidden; border: 7px solid #213b5a; border-radius: 14px; background: #f6f9fb; box-shadow: 0 22px 60px rgba(0,0,0,.28); transform: perspective(1000px) rotateY(-6deg) rotateX(2deg); }.dashboard-top { display: flex; align-items: center; gap: 14px; padding: 10px 14px; color: #b3c3d0; background: #213b5a; font-size: 8px; }.window-dots { display: inline-flex; gap: 4px; }.window-dots i { display: block; width: 6px; height: 6px; border-radius: 50%; background: #6a859e; }.window-dots i:first-child { background: #d5a66a; }.window-secure { margin-left: auto; color: #77c3a4; }.dashboard-body { display: grid; grid-template-columns: 104px 1fr; min-height: 320px; }.dashboard-body aside { display: grid; align-content: start; gap: 17px; padding: 22px 10px; color: #9aabba; background: #edf2f5; font-size: 8px; }.dashboard-body aside span { display: block; }.dashboard-body aside .dash-logo { margin-bottom: 16px; color: var(--navy-900); font-size: 8px; font-weight: 900; letter-spacing: .13em; line-height: 1.1; }.dashboard-body aside .dash-active { padding: 8px; border-radius: 4px; color: var(--blue); background: var(--blue-soft); font-weight: 800; }.dash-main { padding: 23px 24px; }.dash-welcome { display: flex; justify-content: space-between; align-items: end; }.dash-welcome small { display: block; color: #98a9b7; font-size: 7px; letter-spacing: .15em; }.dash-welcome strong { display: block; margin-top: 4px; color: #19324d; font-size: 17px; letter-spacing: -.04em; }.dash-date { padding: 7px 8px; border: 1px solid #dce6ec; border-radius: 4px; color: #8092a1; background: #fff; font-size: 8px; }.dash-date b { margin-left: 7px; color: #2e6b9c; }.dash-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 20px; }.dash-metrics > div { padding: 12px; border: 1px solid #e0e8ee; border-radius: 5px; background: #fff; }.dash-metrics small { display: block; color: #8b9aa6; font-size: 8px; }.dash-metrics strong { display: block; margin-top: 5px; color: #1b3652; font-size: 18px; letter-spacing: -.05em; }.dash-metrics b { display: inline-block; margin-top: 4px; color: #4f9f7d; font-size: 8px; }.chart-box { margin-top: 12px; padding: 15px 14px; border: 1px solid #e0e8ee; border-radius: 5px; background: #fff; }.chart-label { display: flex; justify-content: space-between; color: #314a63; font-size: 9px; font-weight: 700; }.chart-label b { color: #9ba9b4; font-size: 7px; font-weight: 500; }.chart-lines { position: relative; height: 100px; margin-top: 12px; overflow: hidden; color: #5fa88b; }.chart-lines > span { display: block; height: 25%; border-top: 1px solid #eff3f5; }.chart-lines svg { position: absolute; inset: 5px 0 0; width: 100%; height: 100%; }.dashboard-badge { position: absolute; right: -22px; bottom: 9px; display: flex; align-items: center; gap: 8px; padding: 10px 13px; border: 1px solid rgba(255,255,255,.16); border-radius: 6px; color: rgba(255,255,255,.84); background: #173858; box-shadow: 0 10px 25px rgba(0,0,0,.22); font-size: 10px; }.dashboard-badge span { display: grid; place-items: center; width: 17px; height: 17px; border-radius: 50%; color: var(--navy-900); background: var(--green); font-size: 9px; }

.benefits-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: start; gap: 100px; }.benefits-copy .section-lead { margin-bottom: 28px; }.benefits-list { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 25px; }.benefits-list > div { display: grid; grid-template-columns: 27px 1fr; column-gap: 11px; row-gap: 1px; padding: 21px 0; border-bottom: 1px solid #dce5eb; }.benefits-list span { grid-row: span 2; color: var(--accent); font-size: 10px; font-weight: 800; }.benefits-list strong { font-size: 13px; }.benefits-list small { color: var(--muted); font-size: 10px; }

.testimonials-section { overflow: hidden; }.slider-controls { display: flex; gap: 8px; }.slider-button { display: grid; place-items: center; width: 39px; height: 39px; border: 1px solid #d2e0e8; border-radius: 50%; color: var(--navy-900); background: transparent; font-size: 17px; transition: background .2s ease, color .2s ease; }.slider-button:hover { color: var(--white); background: var(--navy-900); }.testimonials-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }.testimonial-card { min-height: 265px; padding: 30px; border: 1px solid #dce6ec; border-radius: 8px; background: var(--white); }.quote-mark { display: block; margin-bottom: 19px; color: var(--accent); font-family: var(--serif); font-size: 45px; line-height: .6; }.testimonial-card blockquote { min-height: 86px; margin: 0 0 27px; color: #304257; font-family: var(--serif); font-size: 20px; line-height: 1.35; }.testimonial-author { display: flex; align-items: center; gap: 10px; padding-top: 17px; border-top: 1px solid #e5ebef; }.author-avatar { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; color: var(--white); background: var(--navy-900); font-size: 11px; font-weight: 800; }.testimonial-author strong, .testimonial-author small { display: block; }.testimonial-author strong { font-size: 11px; }.testimonial-author small { color: var(--muted); font-size: 9px; }.demo-note { margin-top: 17px; color: #a0adb7; font-size: 9px; }

.faq-section { overflow: hidden; }.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 120px; }.faq-intro p:not(.eyebrow) { max-width: 315px; color: var(--muted); font-size: 14px; line-height: 1.7; }.faq-intro .text-link { margin-top: 11px; }.faq-list { border-top: 1px solid #dbe4ea; }.faq-item { border-bottom: 1px solid #dbe4ea; }.faq-question { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; padding: 21px 0; border: 0; color: var(--ink); background: transparent; text-align: left; font-size: 14px; font-weight: 700; }.faq-question span:last-child { display: grid; place-items: center; width: 25px; height: 25px; border: 1px solid #ccd9e1; border-radius: 50%; color: var(--blue); font-size: 18px; line-height: 1; transition: transform .2s ease, background .2s ease; }.faq-answer { max-height: 0; overflow: hidden; color: var(--muted); font-size: 13px; line-height: 1.7; transition: max-height .3s ease, padding .3s ease; }.faq-item.open .faq-answer { max-height: 160px; padding: 0 45px 21px 0; }.faq-item.open .faq-question span:last-child { color: var(--white); background: var(--blue); transform: rotate(45deg); }

.cta-section { position: relative; padding: 90px 0; overflow: hidden; background: var(--navy-900); }.cta-glow { position: absolute; top: -300px; right: -120px; width: 580px; height: 580px; border: 1px solid rgba(189,146,81,.17); border-radius: 50%; box-shadow: 0 0 0 80px rgba(189,146,81,.025), 0 0 0 160px rgba(189,146,81,.025); }.cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 50px; }.cta-inner h2 { max-width: 730px; margin-bottom: 16px; color: var(--white); }.cta-inner p:not(.eyebrow) { max-width: 530px; margin-bottom: 0; color: rgba(255,255,255,.63); font-size: 15px; }.cta-inner .button { flex-shrink: 0; }.whatsapp-symbol { font-size: 23px; line-height: 0; }

.contact-section { padding-bottom: 80px; }.contact-grid { display: grid; grid-template-columns: .83fr 1.17fr; gap: 120px; align-items: start; }.contact-copy h2 { max-width: 450px; }.contact-copy > .section-lead { margin-bottom: 30px; }.contact-details { display: grid; gap: 16px; }.contact-details a { display: flex; align-items: center; gap: 12px; }.detail-icon { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 7px; color: var(--blue); background: var(--blue-soft); font-size: 16px; }.detail-icon-green { color: #3f936e; background: #dbf0e6; }.contact-details small, .contact-details strong, .hours small, .hours strong { display: block; }.contact-details small, .hours small { color: #9aa7b1; font-size: 9px; }.contact-details strong, .hours strong { margin-top: 1px; color: var(--ink); font-size: 12px; }.hours { display: flex; align-items: center; gap: 12px; margin-top: 30px; padding-top: 20px; border-top: 1px solid #e0e8ed; }.hours-icon { display: grid; place-items: center; width: 30px; height: 30px; color: var(--accent); font-size: 22px; }.contact-form-wrap { padding: 31px; border: 1px solid #dae4ea; border-radius: 9px; background: #fbfcfd; box-shadow: 0 18px 45px rgba(8,28,52,.06); }.form-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 27px; color: var(--navy-900); font-size: 17px; font-weight: 800; }.form-tag { padding: 5px 9px; border-radius: 4px; color: #4e9b79; background: #e1f2ea; font-size: 9px; font-weight: 700; }.contact-form-wrap form { display: grid; gap: 16px; }.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }label { display: grid; gap: 7px; color: #34485e; font-size: 10px; font-weight: 800; letter-spacing: .02em; }input, select, textarea { width: 100%; border: 1px solid #d9e3e9; border-radius: 5px; padding: 12px 13px; outline: 0; color: var(--ink); background: var(--white); font-size: 12px; font-weight: 400; transition: border-color .2s ease, box-shadow .2s ease; }input::placeholder, textarea::placeholder { color: #aab6be; }input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(46,107,156,.11); }textarea { resize: vertical; min-height: 100px; }.form-submit { width: 100%; margin-top: 4px; }.form-status { min-height: 18px; margin: 0; color: #4c9c78; font-size: 11px; }

.map-section { padding: 0 0 95px; background: var(--white); }.map-card { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; overflow: hidden; min-height: 320px; border-radius: 10px; background: var(--soft); }.map-art { position: relative; min-height: 320px; overflow: hidden; background: #dce8e6; }.map-art::before, .map-art::after { content: ""; position: absolute; width: 110%; height: 1px; background: rgba(80,131,130,.35); transform: rotate(28deg); }.map-art::before { top: 36%; left: -7%; }.map-art::after { top: 68%; left: -2%; transform: rotate(-25deg); }.map-road { position: absolute; display: block; background: rgba(255,255,255,.78); border: 1px solid rgba(124,164,158,.27); transform-origin: left center; }.road-one { top: 20%; left: -4%; width: 112%; height: 20px; transform: rotate(18deg); }.road-two { top: 61%; left: -8%; width: 118%; height: 31px; transform: rotate(-13deg); }.road-three { top: -13%; left: 49%; width: 112%; height: 14px; transform: rotate(77deg); }.map-block { position: absolute; width: 66px; height: 46px; border: 1px solid rgba(105,153,149,.24); border-radius: 4px; background: rgba(177,208,202,.43); transform: rotate(13deg); }.block-one { top: 20%; left: 18%; }.block-two { bottom: 19%; left: 28%; width: 86px; transform: rotate(-14deg); }.block-three { top: 28%; right: 15%; width: 73px; height: 62px; transform: rotate(23deg); }.map-pin { position: absolute; top: 44%; left: 50%; display: grid; place-items: center; width: 53px; height: 53px; border: 7px solid rgba(255,255,255,.6); border-radius: 50%; color: var(--white); background: var(--navy-900); box-shadow: 0 8px 20px rgba(8,28,52,.25); font-size: 24px; transform: translate(-50%,-50%); }.map-copy { display: flex; flex-direction: column; justify-content: center; padding: 44px 60px; }.map-copy .eyebrow { margin-bottom: 15px; }.map-copy h3 { margin-bottom: 16px; color: var(--navy-900); font-size: 25px; }.map-copy h3 em { color: var(--blue); font-family: var(--font); font-size: 15px; font-style: normal; }.map-copy p:not(.eyebrow) { max-width: 350px; margin-bottom: 20px; color: var(--muted); font-size: 13px; line-height: 1.7; }

.site-footer { color: rgba(255,255,255,.7); background: var(--navy-950); }.footer-top { display: grid; grid-template-columns: 1.55fr .8fr 1fr 1fr; gap: 55px; padding: 74px 0 59px; }.brand-light .brand-mark { border-color: rgba(255,255,255,.35); }.footer-brand p { max-width: 220px; margin: 20px 0 22px; color: rgba(255,255,255,.48); font-size: 12px; line-height: 1.7; }.social-links { display: flex; gap: 7px; }.social-links a { display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: rgba(255,255,255,.7); font-size: 10px; font-weight: 800; transition: color .2s ease, background .2s ease; }.social-links a:hover { color: var(--navy-950); background: var(--white); }.footer-column { display: grid; align-content: start; gap: 11px; }.footer-column h3 { margin-bottom: 9px; color: var(--white); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }.footer-column a, .footer-column span { color: rgba(255,255,255,.5); font-size: 11px; transition: color .2s ease; }.footer-column a:hover { color: var(--white); }.footer-column .arrow { font-size: 14px; }.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.11); color: rgba(255,255,255,.36); font-size: 9px; }.footer-bottom > div { display: flex; gap: 18px; }.footer-bottom a:hover { color: var(--white); }.demo-badge { padding: 4px 7px; border: 1px solid rgba(189,146,81,.4); border-radius: 3px; color: var(--accent); font-size: 8px; letter-spacing: .1em; }

.whatsapp-float { position: fixed; z-index: 45; right: 23px; bottom: 23px; display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; color: var(--white); background: #4fa980; box-shadow: 0 10px 25px rgba(30,130,88,.28); font-size: 30px; animation: floatPulse 3.2s infinite; }.whatsapp-float::before { content: ""; position: absolute; inset: -5px; border: 1px solid rgba(79,169,128,.35); border-radius: 50%; animation: ripple 3.2s infinite; }.whatsapp-tooltip { position: absolute; right: 70px; width: max-content; padding: 8px 11px; border-radius: 5px; color: var(--white); background: var(--navy-900); opacity: 0; pointer-events: none; transform: translateX(8px); transition: opacity .2s ease, transform .2s ease; font-size: 10px; }.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }
@keyframes floatPulse { 0%, 78%, 100% { transform: translateY(0); } 82% { transform: translateY(-4px); } 86% { transform: translateY(0); } 90% { transform: translateY(-2px); } }.whatsapp-float:hover { animation-play-state: paused; transform: scale(1.05); }.whatsapp-float:hover::before { animation-play-state: paused; } @keyframes ripple { 0%, 70%, 100% { opacity: 0; transform: scale(.95); } 15% { opacity: 1; } 45% { opacity: 0; transform: scale(1.25); } }

.service-dialog { width: min(520px, calc(100% - 32px)); padding: 32px; border: 1px solid #dbe5eb; border-radius: 12px; color: var(--ink); background: var(--white); box-shadow: var(--shadow-strong); }.service-dialog::backdrop { background: rgba(4,17,32,.62); backdrop-filter: blur(4px); }.dialog-close { position: absolute; top: 15px; right: 17px; display: grid; place-items: center; width: 30px; height: 30px; border: 0; border-radius: 50%; color: var(--muted); background: var(--soft); font-size: 22px; line-height: 1; }.dialog-icon { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 25px; border-radius: 9px; color: var(--blue); background: var(--blue-soft); }.dialog-icon svg { width: 22px; height: 22px; }.service-dialog h2 { margin-bottom: 12px; font-size: 33px; }.service-dialog > p:not(.eyebrow) { margin-bottom: 23px; color: var(--muted); font-size: 14px; }.toast { position: fixed; z-index: 60; right: 24px; bottom: 95px; max-width: 315px; padding: 13px 16px; border: 1px solid #c6e5d6; border-radius: 7px; color: #2b7657; background: #effaf4; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity .25s ease, transform .25s ease; font-size: 12px; }.toast.show { opacity: 1; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }.reveal-delay { transition-delay: .1s; }.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .main-nav { gap: 13px; }.main-nav > a:not(.button) { font-size: 11px; }.services-grid { grid-template-columns: repeat(4, 1fr); }.hero-image-wrap { right: -20px; width: min(630px, 54vw); }.floating-card-top { left: -10px; }.floating-card-bottom { right: -5px; }
}
@media (max-width: 960px) {
  .container { width: calc(100% - 42px); max-width: 720px; }.site-header { background: rgba(7,21,40,.9); backdrop-filter: blur(14px); }.header-inner, .site-header.scrolled .header-inner { min-height: 70px; }.menu-toggle { display: block; }.main-nav { position: absolute; top: 70px; right: 0; left: 0; display: grid; gap: 0; max-height: 0; overflow: hidden; padding: 0 21px; background: rgba(7,21,40,.98); box-shadow: 0 20px 30px rgba(3,16,32,.2); transition: max-height .35s ease, padding .35s ease; }.menu-open .main-nav { max-height: calc(100vh - 70px); padding: 8px 21px 25px; overflow-y: auto; }.main-nav > a:not(.button) { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 13px; }.nav-cta { margin-top: 18px; }.hero { min-height: auto; padding-top: 140px; }.hero-grid { grid-template-columns: 1fr; gap: 25px; min-height: auto; }.hero-content { max-width: 670px; }.hero-visual { min-height: 390px; }.hero-image-wrap { top: 5px; right: 0; left: 0; width: 100%; height: 390px; }.floating-card-top { top: 25px; left: 18px; }.floating-card-bottom { right: 18px; bottom: 20px; }.hero-bottom-line { margin-top: 15px; }.stats-grid { grid-template-columns: repeat(2, 1fr); }.stat-item:nth-child(2) { border-right: 0; }.stat-item:nth-child(-n+2) { border-bottom: 1px solid #d7e0e8; padding-bottom: 18px; }.stat-item:nth-child(n+3) { padding-top: 18px; }.about-grid, .technology-grid, .benefits-grid, .contact-grid { grid-template-columns: 1fr; gap: 60px; }.about-visual { max-width: 600px; width: 100%; margin: 0 auto; }.section-heading-row { align-items: start; flex-direction: column; gap: 14px; }.section-heading-note { max-width: 560px; margin: 0; }.services-grid { grid-template-columns: repeat(3, 1fr); }.opening-grid { gap: 55px; }.switch-card { grid-template-columns: auto 1fr; }.switch-card .button { grid-column: 2; justify-self: start; }.segments-grid { max-width: 680px; }.differentials-grid { grid-template-columns: repeat(2, 1fr); }.timeline { grid-template-columns: repeat(3, 1fr); row-gap: 38px; }.timeline::before { display: none; }.timeline-item { padding-right: 20px; }.timeline-number { margin-bottom: 18px; }.timeline-item p { max-width: 190px; }.dashboard-wrap { max-width: 680px; margin: 0 auto; width: 100%; }.cta-inner { align-items: start; flex-direction: column; gap: 28px; }.map-card { grid-template-columns: 1fr; }.map-art { min-height: 250px; }.map-copy { padding: 37px; }.footer-top { grid-template-columns: 1.3fr 1fr 1fr; }.footer-brand { grid-column: span 3; }.footer-bottom { flex-wrap: wrap; }.footer-bottom > span:first-child { flex: 1 1 100%; }
}
@media (max-width: 680px) {
  .container { width: calc(100% - 34px); max-width: 520px; }.section { padding: 82px 0; }.hero { padding-top: 126px; }.hero-grid { width: calc(100% - 34px); max-width: 520px; }.hero-content h1 { max-width: 100%; font-size: clamp(36px, 10.2vw, 50px); overflow-wrap: anywhere; }.hero-lead { max-width: 100%; font-size: 15px; overflow-wrap: anywhere; }.hero-actions { display: grid; grid-template-columns: 1fr; }.hero-actions .button { width: 100%; }.trust-row { display: grid; gap: 11px; margin-top: 29px; }.hero-visual { min-height: 340px; margin: 10px -2px 0; }.hero-image-wrap { height: 340px; border-radius: 100px 10px 10px 10px; }.hero-caption { bottom: 17px; left: 18px; }.floating-card { min-width: 172px; padding: 10px; }.floating-card-top { top: 15px; left: 8px; }.floating-card-bottom { right: 8px; bottom: 12px; }.floating-card small { font-size: 8px; }.floating-card strong { font-size: 10px; }.hero-bottom-line { display: grid; gap: 7px; padding-top: 19px; font-size: 8px; }.stats-grid { padding: 24px 0; }.stat-item { justify-content: start; gap: 8px; padding-right: 10px; padding-left: 5px; }.stat-item strong { font-size: 25px; }.stat-item span { font-size: 9px; }.about-visual { min-height: 380px; margin-top: -10px; transform: scale(.9); transform-origin: center; }.about-copy h2 { font-size: 39px; }.check-list { gap: 12px 8px; }.check-list span { font-size: 10px; }.services-grid { grid-template-columns: repeat(2, 1fr); gap: 9px; }.service-card { min-height: 227px; padding: 17px 14px 14px; }.service-card p { min-height: 92px; font-size: 10px; }.service-card h3 { font-size: 14px; }.icon-box { width: 35px; height: 35px; margin-bottom: 17px; }.opening-section { padding: 81px 0; }.opening-grid { grid-template-columns: 1fr; gap: 44px; }.opening-copy h2 { font-size: 39px; }.steps-card { padding: 20px 16px; }.opening-steps > div { padding: 18px 3px 14px 0; }.opening-steps > div:nth-child(odd) { margin-right: 8px; }.opening-steps span { font-size: 10px; }.switch-section { padding: 34px 0; }.switch-card { grid-template-columns: 1fr; gap: 20px; padding: 28px 23px; }.switch-card .button { grid-column: auto; width: 100%; }.switch-card h2 { font-size: 30px; }.switch-icon { width: 50px; height: 50px; font-size: 25px; }.segments-grid { gap: 7px; }.segment-pill { padding: 9px 11px; font-size: 10px; }.tax-grid { grid-template-columns: 1fr; }.tax-card { min-height: 210px; }.differentials-grid { grid-template-columns: 1fr; }.differential-card { min-height: 170px; }.timeline { grid-template-columns: repeat(2, 1fr); gap: 30px 22px; }.timeline-item:nth-child(5) { grid-column: span 2; }.timeline-item h3 { font-size: 14px; }.timeline-item p { font-size: 11px; }.technology-grid { gap: 35px; }.technology-copy h2 { font-size: 39px; }.dashboard-window { transform: none; border-width: 4px; }.dashboard-body { grid-template-columns: 73px 1fr; min-height: 270px; }.dashboard-body aside { gap: 12px; padding: 14px 7px; font-size: 7px; }.dash-main { padding: 15px 11px; }.dash-welcome strong { font-size: 14px; }.dash-date { font-size: 7px; }.dash-metrics strong { font-size: 14px; }.chart-box { padding: 10px 8px; }.dashboard-badge { right: 0; bottom: 0; }.benefits-grid { gap: 40px; }.benefits-copy h2 { font-size: 39px; }.benefits-list { grid-template-columns: 1fr; }.testimonials-section .section-heading-row { align-items: end; flex-direction: row; }.testimonials-track { display: flex; overflow-x: auto; gap: 11px; padding-bottom: 10px; scroll-snap-type: x mandatory; scrollbar-width: none; }.testimonials-track::-webkit-scrollbar { display: none; }.testimonial-card { min-width: calc(100% - 26px); min-height: 260px; scroll-snap-align: start; padding: 25px; }.slider-controls { flex-shrink: 0; }.faq-grid { gap: 47px; }.faq-question { padding: 17px 0; font-size: 12px; }.faq-item.open .faq-answer { padding-right: 20px; }.cta-section { padding: 73px 0; }.cta-inner h2 { font-size: 39px; }.button-large { width: 100%; min-height: 58px; padding: 0 16px; font-size: 10px; }.contact-grid { gap: 45px; }.contact-copy h2 { font-size: 39px; }.contact-form-wrap { padding: 23px 17px; }.form-row { grid-template-columns: 1fr; gap: 16px; }.form-heading { align-items: start; flex-direction: column; gap: 10px; }.map-card { border-radius: 8px; }.map-copy { padding: 30px 23px; }.map-copy h3 { font-size: 22px; }.footer-top { grid-template-columns: repeat(2, 1fr); gap: 35px 25px; padding: 58px 0 42px; }.footer-brand { grid-column: span 2; }.footer-column { gap: 9px; }.footer-bottom { display: grid; gap: 12px; padding: 18px 0 78px; }.footer-bottom > div { gap: 13px; }.whatsapp-float { right: 16px; bottom: 16px; width: 53px; height: 53px; }.whatsapp-tooltip { display: none; }.toast { right: 17px; bottom: 82px; left: 17px; max-width: none; }.service-dialog { padding: 27px 22px; }.service-dialog h2 { font-size: 29px; }
}
@media (max-width: 680px) {
  .hero-content h1, .hero-content .hero-lead { width: calc(100vw - 68px); max-width: calc(100vw - 68px); word-break: break-word; }
  .hero .eyebrow { max-width: calc(100vw - 34px); flex-wrap: wrap; font-size: 8px; letter-spacing: .13em; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }.reveal { opacity: 1; transform: none; } }
