:root {
  --navy: #071052;
  --navy-2: #0b166e;
  --blue: #2447d8;
  --periwinkle: #7a78e8;
  --ice: #f4f6fb;
  --paper: #faf9f6;
  --ink: #111427;
  --muted: #667087;
  --line: rgba(16, 27, 70, .12);
  --gold: #d8a04a;
  --radius-lg: 34px;
  --radius-md: 22px;
  --shadow: 0 28px 80px rgba(11, 21, 70, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
::selection { background: #7a78e8; color: #fff; }

.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 999;
  opacity: .035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
.cursor-glow {
  position: fixed; width: 420px; height: 420px; border-radius: 50%; pointer-events:none; z-index:0;
  background: radial-gradient(circle, rgba(70,91,233,.09) 0, transparent 66%);
  transform: translate(-50%,-50%); opacity: 0; transition: opacity .25s ease;
}

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 86px; padding: 0 clamp(22px, 4vw, 72px);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: .35s ease;
  color: #fff;
}
.site-header.scrolled {
  height: 74px;
  background: rgba(7,16,82,.82);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 12px 30px rgba(2, 7, 34, .16);
}
.brand { display:flex; align-items:center; gap:14px; min-width: 0; }
.brand-mark {
  display:grid; place-items:center; width: 50px; height: 50px; border-radius: 50%;
  overflow:hidden; box-shadow: 0 8px 24px rgba(29,43,139,.35); flex:0 0 auto;
}
.brand-mark img { width:100%; height:100%; object-fit:cover; }
.brand-copy { font-size: 12px; line-height:1.1; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.brand-copy small { font-size: 9px; font-weight:600; opacity:.7; letter-spacing:.05em; }
.desktop-nav { display:flex; align-items:center; gap: 30px; }
.desktop-nav a { position:relative; font-size:12px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; opacity:.8; }
.desktop-nav a::after { content:""; position:absolute; left:0; right:100%; bottom:-8px; height:1px; background:#fff; transition:.25s; }
.desktop-nav a:hover::after { right:0; }
.desktop-nav a:hover { opacity:1; }
.header-cta { justify-self:end; border:1px solid rgba(255,255,255,.28); border-radius:999px; padding:12px 18px; font-size:12px; font-weight:800; letter-spacing:.04em; transition:.25s; }
.header-cta:hover { background:#fff; color:var(--navy); transform:translateY(-1px); }
.menu-toggle { display:none; background:none; border:0; padding:10px; }
.menu-toggle span { display:block; width:24px; height:2px; margin:5px 0; background:#fff; transition:.3s; }
.mobile-menu { display:none; }

.hero {
  position: relative; min-height: 820px; height: min(980px, 100svh); padding: 150px clamp(22px,5vw,92px) 72px;
  background:
    radial-gradient(circle at 78% 18%, rgba(91,104,238,.26), transparent 28%),
    radial-gradient(circle at 10% 74%, rgba(35,62,190,.17), transparent 30%),
    linear-gradient(135deg, #050b36 0%, #071052 46%, #0c176d 100%);
  color:#fff;
  display:grid; grid-template-columns:minmax(0,1.05fr) minmax(420px,.75fr); gap:7vw; align-items:center;
  overflow:hidden;
}
.hero::before {
  content:""; position:absolute; inset:0; opacity:.18; pointer-events:none;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
  background-size: 72px 72px; mask-image:linear-gradient(to right,#000,transparent 70%);
}
.hero-ambient { position:absolute; border-radius:50%; filter:blur(1px); pointer-events:none; }
.hero-ambient-one { width:600px; height:600px; right:-260px; top:-120px; border:1px solid rgba(255,255,255,.08); box-shadow: inset 0 0 80px rgba(255,255,255,.025); }
.hero-ambient-two { width:320px; height:320px; right:18%; bottom:-160px; border:1px solid rgba(255,255,255,.08); }
.hero-copy,.hero-visual { position:relative; z-index:2; }
.eyebrow,.section-kicker { display:flex; align-items:center; gap:10px; font-size:11px; font-weight:800; letter-spacing:.18em; text-transform:uppercase; }
.eyebrow { margin-bottom:28px; color:rgba(255,255,255,.66); }
.eyebrow span { width:34px; height:1px; background:var(--gold); }
.hero h1 { max-width:860px; margin:0; font-family:"Space Grotesk",sans-serif; font-size:clamp(52px,5.6vw,92px); line-height:.92; letter-spacing:-.055em; font-weight:600; }
.hero h1 em,.section h2 em,.section-dark h2 em,.projects h2 em,.caixa-copy h2 em,.faq h2 em { font-style:normal; color:#8f90ef; }
.hero-lead { max-width:700px; margin:30px 0 0; color:rgba(255,255,255,.73); font-size:clamp(16px,1.25vw,19px); line-height:1.75; }
.hero-actions { display:flex; gap:28px; align-items:center; margin-top:34px; flex-wrap:wrap; }
.btn { display:inline-flex; align-items:center; justify-content:center; gap:18px; border-radius:999px; min-height:56px; padding:0 24px; font-size:13px; font-weight:800; letter-spacing:.02em; transition:.3s cubic-bezier(.2,.8,.2,1); }
.btn svg { width:18px; height:18px; fill:none; stroke:currentColor; stroke-width:1.8; transition:.25s; }
.btn:hover svg { transform:translateX(4px); }
.btn-primary { background:linear-gradient(135deg,#6e70e9,#4a59df); color:#fff; box-shadow:0 18px 40px rgba(62,75,210,.36), inset 0 0 0 1px rgba(255,255,255,.2); }
.btn-primary:hover { transform:translateY(-3px); box-shadow:0 22px 52px rgba(62,75,210,.44); }
.text-link { font-size:13px; color:rgba(255,255,255,.72); border-bottom:1px solid rgba(255,255,255,.28); padding-bottom:7px; }
.text-link span { margin-left:8px; }
.hero-proof { display:flex; align-items:center; gap:26px; margin-top:52px; padding-top:30px; border-top:1px solid rgba(255,255,255,.12); max-width:720px; }
.hero-proof > div { display:flex; align-items:center; gap:12px; }
.hero-proof strong { font-family:"Space Grotesk",sans-serif; font-size:25px; letter-spacing:-.04em; }
.hero-proof span { color:rgba(255,255,255,.54); font-size:10px; line-height:1.45; text-transform:uppercase; letter-spacing:.08em; }
.hero-proof i { width:1px; height:36px; background:rgba(255,255,255,.12); }
.hero-visual { justify-self:end; width:min(100%,560px); }
.hero-image-frame { position:relative; height:650px; border-radius:30px 30px 90px 30px; overflow:hidden; box-shadow:0 48px 100px rgba(0,0,0,.38); border:1px solid rgba(255,255,255,.16); transform:rotate(1.4deg); }
.hero-image-frame img { height:115%; object-fit:cover; object-position:center 33%; transform:translateY(-4%); }
.image-shade { position:absolute; inset:0; background:linear-gradient(to top,rgba(1,5,25,.86) 0,transparent 44%), linear-gradient(to bottom,rgba(7,16,82,.14),transparent 40%); }
.project-index { position:absolute; top:22px; right:22px; border:1px solid rgba(255,255,255,.22); background:rgba(7,16,82,.22); backdrop-filter:blur(10px); border-radius:999px; padding:8px 12px; font-size:10px; font-weight:800; letter-spacing:.12em; }
.hero-caption { position:absolute; bottom:30px; left:30px; right:30px; }
.hero-caption span { display:block; color:rgba(255,255,255,.62); font-size:10px; letter-spacing:.15em; text-transform:uppercase; margin-bottom:8px; }
.hero-caption strong { font-family:"Space Grotesk",sans-serif; font-size:22px; }
.hero-bottom-line { position:absolute; left:5vw; right:5vw; bottom:28px; height:1px; background:linear-gradient(90deg,rgba(255,255,255,.2),transparent); }

.trust-strip { background:#fff; border-bottom:1px solid var(--line); overflow:hidden; }
.trust-track { min-height:74px; display:flex; align-items:center; justify-content:center; gap:30px; white-space:nowrap; font-family:"Space Grotesk",sans-serif; font-size:11px; font-weight:700; letter-spacing:.13em; color:#68708b; }
.trust-track i { color:#8a88ed; font-size:8px; }

.section { padding: clamp(90px,10vw,150px) clamp(22px,7vw,130px); }
.section-heading { display:grid; grid-template-columns:1.25fr .7fr; gap:10vw; align-items:end; margin-bottom:70px; }
.section-kicker { color:#68708b; margin-bottom:18px; }
.section-kicker.light { color:rgba(255,255,255,.58); }
.section-heading h2,.projects h2,.journey h2,.about h2,.faq h2 { margin:0; max-width:900px; font-family:"Space Grotesk",sans-serif; font-size:clamp(42px,4.6vw,72px); line-height:.98; letter-spacing:-.05em; font-weight:600; }
.section-heading p,.projects-head>p { margin:0; color:var(--muted); line-height:1.8; font-size:15px; max-width:520px; }
.solution-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.solution-card { position:relative; min-height:430px; padding:28px; display:flex; flex-direction:column; justify-content:space-between; border:1px solid var(--line); border-radius:28px; background:rgba(255,255,255,.62); overflow:hidden; transition:.4s cubic-bezier(.2,.8,.2,1); }
.solution-card:hover { transform:translateY(-8px); box-shadow:var(--shadow); border-color:rgba(82,87,190,.28); }
.solution-card.featured { background:linear-gradient(145deg,#091255,#101c7d); color:#fff; border-color:rgba(255,255,255,.12); }
.card-glow { position:absolute; width:240px; height:240px; border-radius:50%; right:-100px; top:-90px; background:radial-gradient(circle,rgba(119,124,242,.5),transparent 68%); }
.card-top { display:flex; justify-content:space-between; align-items:flex-start; position:relative; }
.card-top span { font-size:11px; color:#8890a4; letter-spacing:.14em; }
.featured .card-top span { color:rgba(255,255,255,.5); }
.card-top svg { width:42px; height:42px; fill:none; stroke:currentColor; stroke-width:1.15; opacity:.8; }
.card-copy h3 { margin:0 0 16px; font-family:"Space Grotesk",sans-serif; font-size:31px; letter-spacing:-.04em; }
.card-copy p { margin:0; color:var(--muted); line-height:1.75; font-size:14px; }
.featured .card-copy p { color:rgba(255,255,255,.64); }
.solution-card a { display:flex; justify-content:space-between; align-items:center; padding-top:22px; border-top:1px solid var(--line); font-size:12px; font-weight:800; }
.featured a { border-top-color:rgba(255,255,255,.12); }
.solution-card a span { transition:.25s; }
.solution-card:hover a span { transform:translate(3px,-3px); }

.section-dark { position:relative; background:linear-gradient(145deg,#060c38,#071052 50%,#0b176f); color:#fff; }
.statement { padding:130px clamp(22px,7vw,130px); overflow:hidden; }
.statement::after { content:"HJL"; position:absolute; right:-2vw; bottom:-6vw; font-family:"Space Grotesk",sans-serif; font-size:26vw; line-height:.7; color:rgba(255,255,255,.025); font-weight:700; }
.statement-grid { position:relative; z-index:2; display:grid; grid-template-columns:.45fr 1.4fr .65fr; gap:5vw; align-items:start; }
.statement blockquote { margin:0; font-family:"Space Grotesk",sans-serif; font-size:clamp(38px,4.2vw,67px); line-height:1.03; letter-spacing:-.045em; font-weight:500; }
.statement-note { padding-top:12px; }
.statement-note p { margin:0 0 40px; color:rgba(255,255,255,.64); font-size:14px; line-height:1.8; }
.statement-note span { font-size:10px; letter-spacing:.15em; text-transform:uppercase; color:rgba(255,255,255,.45); }

.projects { background:#f1f2f7; padding:1px 0; overflow:hidden; }
.projects-head { display:grid; grid-template-columns:1.2fr .7fr; gap:8vw; align-items:end; padding-bottom:60px; }
.project-marquee { overflow:hidden; padding-bottom:10px; }
.project-track { display:flex; width:max-content; animation:project-marquee 48s linear infinite; will-change:transform; transform:translate3d(0,0,0); backface-visibility:hidden; }
.project-group { display:flex; gap:18px; padding-right:18px; }
@media (hover:hover) and (pointer:fine) { .project-marquee:hover .project-track { animation-play-state:paused; } }
.project-card { position:relative; margin:0; border-radius:28px; overflow:hidden; flex:0 0 auto; background:#111; box-shadow:0 18px 46px rgba(12,17,49,.14); }
.project-card.tall { width:360px; height:500px; }
.project-card.wide { width:470px; height:500px; }
.project-card img { width:100%; height:100%; object-fit:cover; transition:transform .7s cubic-bezier(.2,.8,.2,1); }
.project-card:hover img { transform:scale(1.035); }
.project-card::after { content:""; position:absolute; inset:0; background:linear-gradient(to top,rgba(4,8,32,.74),transparent 48%); }
.project-card figcaption { position:absolute; z-index:2; left:24px; bottom:24px; color:#fff; }
.project-card figcaption span { display:block; font-size:9px; letter-spacing:.15em; text-transform:uppercase; color:rgba(255,255,255,.64); margin-bottom:7px; }
.project-card figcaption strong { font-family:"Space Grotesk",sans-serif; font-size:18px; }
.projects-foot { display:flex; justify-content:space-between; align-items:center; padding-top:44px; padding-bottom:100px; }
.projects-foot p { font-family:"Space Grotesk",sans-serif; font-size:24px; }
.btn-outline { border:1px solid rgba(17,20,39,.18); background:rgba(255,255,255,.52); }
.btn-outline:hover { background:#fff; transform:translateY(-2px); }
@keyframes project-marquee { from { transform:translate3d(0,0,0); } to { transform:translate3d(-50%,0,0); } }

.journey { background:#fff; position:relative; }
.journey-heading { display:grid; grid-template-columns:.4fr 1.2fr; gap:6vw; margin-bottom:90px; }
.journey-heading .section-kicker { margin-top:10px; }
.journey-line { position:relative; height:1px; background:#dfe2eb; margin:0 0 28px; }
.journey-line span { position:absolute; left:0; top:-1px; height:3px; width:0%; background:linear-gradient(90deg,#6f70e8,#4255db); transition:width 1.5s cubic-bezier(.2,.8,.2,1); }
.journey-line.active span { width:100%; }
.journey-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:30px; }
.journey-step { position:relative; padding-top:12px; }
.journey-step::before { content:""; position:absolute; top:-34px; left:0; width:11px; height:11px; border-radius:50%; background:#fff; border:2px solid #7376e8; box-shadow:0 0 0 7px rgba(115,118,232,.08); }
.journey-step b { font-size:10px; color:#777f95; letter-spacing:.1em; }
.journey-step h3 { margin:18px 0 10px; font-family:"Space Grotesk",sans-serif; font-size:22px; }
.journey-step p { margin:0; color:var(--muted); line-height:1.7; font-size:13px; }

.caixa-section { display:grid; grid-template-columns:1fr 1fr; min-height:760px; background:#06104f; color:#fff; }
.caixa-visual { position:relative; min-height:760px; display:grid; place-items:center; background:radial-gradient(circle at 50% 45%,rgba(80,104,230,.32),transparent 48%),#050b39; overflow:hidden; }
.caixa-visual::before { content:""; position:absolute; width:620px; height:620px; border:1px solid rgba(255,255,255,.08); border-radius:50%; }
.caixa-image-wrap { position:relative; z-index:2; width:min(62%,520px); aspect-ratio:1/1; padding:15px; border-radius:42px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12); backdrop-filter:blur(15px); transform:rotate(-2deg); box-shadow:0 40px 90px rgba(0,0,0,.32); }
.caixa-image-wrap img { height:100%; object-fit:cover; border-radius:30px; }
.caixa-label { position:absolute; bottom:34px; left:40px; font-size:9px; letter-spacing:.16em; color:rgba(255,255,255,.5); }
.caixa-copy { padding:110px clamp(32px,7vw,110px); display:flex; flex-direction:column; justify-content:center; background:linear-gradient(145deg,#0a176f,#09145f); }
.caixa-copy h2 { margin:0; font-family:"Space Grotesk",sans-serif; font-size:clamp(42px,4.6vw,72px); line-height:.98; letter-spacing:-.05em; font-weight:600; }
.caixa-copy>p { color:rgba(255,255,255,.65); line-height:1.8; font-size:15px; max-width:620px; }
.caixa-copy ul { list-style:none; padding:0; margin:26px 0 34px; border-top:1px solid rgba(255,255,255,.12); }
.caixa-copy li { display:flex; gap:20px; align-items:center; padding:17px 0; border-bottom:1px solid rgba(255,255,255,.12); font-size:13px; }
.caixa-copy li span { color:#8e90ed; font-size:10px; }
.btn-light { background:#fff; color:var(--navy); width:max-content; }
.btn-light:hover { transform:translateY(-3px); box-shadow:0 18px 40px rgba(0,0,0,.18); }
.caixa-copy small { margin-top:20px; max-width:620px; color:rgba(255,255,255,.4); font-size:10px; line-height:1.6; }

.about { display:grid; grid-template-columns:.85fr 1.1fr; gap:8vw; align-items:center; }
.about-copy .large { margin:28px 0 18px; font-size:18px; line-height:1.75; color:#363c50; }
.about-copy>p:not(.large) { color:var(--muted); line-height:1.8; font-size:14px; }
.about-signature { margin-top:46px; font-family:"Space Grotesk",sans-serif; font-size:34px; font-weight:700; color:var(--navy); }
.about-signature span { display:block; font-family:"Manrope",sans-serif; font-size:10px; font-weight:800; letter-spacing:.13em; text-transform:uppercase; color:#7c8397; margin-top:6px; }
.about-image { position:relative; }
.about-image img { aspect-ratio:1.25/1; object-fit:cover; object-position:center; border-radius:32px; box-shadow:var(--shadow); }
.about-pin { position:absolute; left:24px; bottom:24px; background:rgba(255,255,255,.9); backdrop-filter:blur(12px); border-radius:999px; padding:12px 16px; box-shadow:0 12px 30px rgba(6,16,66,.16); font-size:11px; font-weight:800; }
.pin-dot { display:inline-block; width:7px; height:7px; border-radius:50%; background:#6f70e8; margin-right:7px; box-shadow:0 0 0 4px rgba(111,112,232,.12); }

.faq { display:grid; grid-template-columns:.7fr 1.3fr; gap:8vw; background:#f4f5f9; }
.faq-list details { border-top:1px solid #d9dce5; }
.faq-list details:last-child { border-bottom:1px solid #d9dce5; }
.faq-list summary { list-style:none; cursor:pointer; padding:26px 0; display:flex; justify-content:space-between; gap:20px; align-items:center; font-family:"Space Grotesk",sans-serif; font-size:18px; font-weight:600; }
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list summary span { width:34px; height:34px; display:grid; place-items:center; border-radius:50%; border:1px solid #d0d4df; transition:.3s; flex:0 0 auto; }
.faq-list details[open] summary span { transform:rotate(45deg); background:var(--navy); color:#fff; border-color:var(--navy); }
.faq-list details p { margin:-6px 60px 26px 0; color:var(--muted); line-height:1.75; font-size:14px; }

.final-cta { min-height:660px; display:grid; place-items:center; text-align:center; overflow:hidden; }
.final-glow { position:absolute; width:760px; height:760px; border-radius:50%; background:radial-gradient(circle,rgba(99,106,236,.26),transparent 62%); top:-320px; left:50%; transform:translateX(-50%); }
.final-cta-inner { position:relative; z-index:2; max-width:1050px; padding:90px 22px; }
.final-cta h2 { margin:0; font-family:"Space Grotesk",sans-serif; font-size:clamp(48px,5.7vw,88px); line-height:.95; letter-spacing:-.055em; font-weight:600; }
.final-cta p { margin:26px auto 30px; max-width:640px; color:rgba(255,255,255,.62); line-height:1.7; }
.btn.big { min-height:64px; padding:0 30px; }

.contact { background:#fff; padding-bottom:80px; }
.contact-grid { display:grid; grid-template-columns:1fr .75fr; gap:10vw; }
.contact-main h2 { margin:0 0 34px; font-family:"Space Grotesk",sans-serif; font-size:clamp(38px,4vw,62px); line-height:1; letter-spacing:-.045em; }
.contact-phone { display:block; font-family:"Space Grotesk",sans-serif; font-size:clamp(34px,4vw,58px); color:#656adf; letter-spacing:-.04em; margin-bottom:28px; }
.contact-main address { font-style:normal; color:var(--muted); line-height:1.8; font-size:14px; }
.social-links { display:flex; gap:24px; flex-wrap:wrap; margin-top:34px; }
.social-links a { font-size:12px; font-weight:800; border-bottom:1px solid #cfd2dd; padding-bottom:5px; }
.hours { padding-top:44px; }
.hours h3 { margin:0 0 24px; font-family:"Space Grotesk",sans-serif; font-size:22px; }
.hours>div { display:flex; justify-content:space-between; gap:20px; padding:16px 0; border-top:1px solid #e0e2e9; font-size:12px; }
.hours>div:last-child { border-bottom:1px solid #e0e2e9; }
.hours span { color:#7a8194; }
.hours strong { font-weight:700; }
.hours .closed strong { color:#a0a5b3; }

.contact-email { display:inline-block; margin-bottom:18px; color:#323852; font-size:14px; font-weight:700; border-bottom:1px solid #d4d7e2; padding-bottom:4px; transition:.25s ease; }
.contact-email:hover { color:#656adf; border-color:#656adf; }
.contact-details { align-self:start; margin-top:24px; padding:34px; border:1px solid #e0e2e9; border-radius:26px; background:linear-gradient(145deg,rgba(255,255,255,.9),rgba(244,246,252,.78)); box-shadow:0 24px 70px rgba(25,34,70,.08); }
.contact-details-kicker { display:block; margin-bottom:14px; color:#656adf; font-size:10px; font-weight:800; letter-spacing:.18em; }
.contact-details h3 { margin:0 0 12px; font-family:"Space Grotesk",sans-serif; font-size:clamp(24px,2.4vw,34px); letter-spacing:-.035em; }
.contact-details>p { margin:0 0 28px; color:#747b8f; line-height:1.7; font-size:13px; max-width:480px; }
.contact-detail-row { display:grid; grid-template-columns:130px 1fr; gap:20px; align-items:start; padding:18px 0; border-top:1px solid #e0e2e9; }
.contact-detail-row:last-child { border-bottom:1px solid #e0e2e9; }
.contact-detail-row span { color:#8a90a0; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; }
.contact-detail-row a,.contact-detail-row strong { color:#21263a; font-size:13px; font-weight:800; line-height:1.45; word-break:break-word; }
.contact-detail-row a:hover { color:#656adf; }
.map-wrap { margin-top:70px; border-radius:30px; overflow:hidden; height:430px; box-shadow:var(--shadow); border:1px solid var(--line); }
.map-wrap iframe { border:0; width:100%; height:100%; filter:saturate(.7) contrast(1.05); }

footer { padding:42px clamp(22px,7vw,130px) 32px; background:#050a32; color:#fff; }
.footer-brand { display:flex; align-items:center; gap:16px; }
.footer-brand img { width:46px; height:46px; object-fit:cover; border-radius:50%; }
.footer-brand span { font-size:10px; text-transform:uppercase; letter-spacing:.12em; color:rgba(255,255,255,.48); }
footer>p { margin:18px 0 40px; color:rgba(255,255,255,.5); font-size:12px; }
.footer-bottom { padding-top:22px; border-top:1px solid rgba(255,255,255,.1); display:flex; justify-content:space-between; color:rgba(255,255,255,.42); font-size:10px; }
.footer-bottom a { color:rgba(255,255,255,.7); }

.whatsapp-float { position:fixed; right:22px; bottom:22px; z-index:80; width:58px; height:58px; border-radius:50%; display:grid; place-items:center; background:#25D366; color:#fff; box-shadow:0 14px 34px rgba(37,211,102,.3); transition:.25s; }
.whatsapp-float:hover { transform:translateY(-4px) scale(1.04); }
.whatsapp-float svg { width:27px; fill:currentColor; }

.reveal { opacity:0; transform:translateY(26px); filter:blur(5px); transition:opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1), filter .8s ease; transition-delay:var(--delay,0ms); }
.reveal.visible { opacity:1; transform:none; filter:none; }

@media (max-width: 1120px) {
  .desktop-nav { gap:18px; }
  .desktop-nav a { font-size:10px; }
  .hero { grid-template-columns:1fr .75fr; gap:5vw; }
  .hero-image-frame { height:580px; }
  .solution-grid { grid-template-columns:1fr; }
  .solution-card { min-height:340px; }
  .statement-grid { grid-template-columns:.4fr 1.2fr; }
  .statement-note { grid-column:2; }
}

@media (max-width: 860px) {
  .site-header { height:74px; grid-template-columns:1fr auto; padding:0 20px; }
  .brand-mark { width:44px; height:44px; }
  .desktop-nav,.header-cta { display:none; }
  .menu-toggle { display:block; z-index:102; }
  .menu-toggle.active span:first-child { transform:translateY(3.5px) rotate(45deg); }
  .menu-toggle.active span:last-child { transform:translateY(-3.5px) rotate(-45deg); }
  .mobile-menu { display:flex; position:fixed; z-index:99; inset:0; padding:120px 24px 34px; background:rgba(5,10,50,.98); color:#fff; flex-direction:column; gap:20px; transform:translateY(-100%); opacity:0; transition:.45s cubic-bezier(.2,.8,.2,1); pointer-events:none; }
  .mobile-menu.open { transform:none; opacity:1; pointer-events:auto; }
  .mobile-menu a { font-family:"Space Grotesk",sans-serif; font-size:30px; letter-spacing:-.03em; }
  .mobile-menu-cta { margin-top:auto; text-align:center; background:#6d70e9; padding:16px; border-radius:999px; font-size:14px!important; }

  .hero { min-height:auto; height:auto; padding:126px 20px 70px; grid-template-columns:1fr; gap:52px; }
  .hero h1 { font-size:clamp(48px,14vw,70px); }
  .hero-lead { font-size:15px; line-height:1.7; }
  .hero-proof { gap:15px; justify-content:space-between; }
  .hero-proof>div { gap:8px; }
  .hero-proof strong { font-size:21px; }
  .hero-proof span { font-size:8px; }
  .hero-visual { width:100%; justify-self:stretch; }
  .hero-image-frame { height:540px; transform:none; border-radius:24px 24px 62px 24px; }
  .hero-bottom-line { display:none; }
  .trust-track { justify-content:flex-start; padding-left:22px; min-height:64px; gap:20px; font-size:9px; overflow:hidden; }

  .section { padding:88px 20px; }
  .section-heading,.projects-head,.journey-heading,.about,.faq,.contact-grid { grid-template-columns:1fr; gap:36px; }
  .section-heading { margin-bottom:40px; }
  .section-heading h2,.projects h2,.journey h2,.about h2,.faq h2 { font-size:clamp(40px,11vw,58px); }
  .solution-card { min-height:360px; padding:24px; }
  .statement { padding:90px 20px; }
  .statement-grid { grid-template-columns:1fr; gap:32px; }
  .statement-note { grid-column:auto; max-width:520px; }
  .project-card.tall,.project-card.wide { width:310px; height:420px; }
  .projects-foot { flex-direction:column; align-items:flex-start; gap:20px; padding-bottom:80px; }
  .journey-heading { margin-bottom:70px; }
  .journey-grid { grid-template-columns:1fr 1fr; row-gap:55px; }
  .journey-line { display:none; }
  .journey-step::before { top:-18px; }

  .caixa-section { grid-template-columns:1fr; }
  .caixa-visual { min-height:560px; }
  .caixa-image-wrap { width:min(72%,430px); }
  .caixa-copy { padding:80px 20px; }
  .caixa-copy h2 { font-size:clamp(42px,11vw,60px); }
  .about { display:grid; }
  .about-image { order:-1; }
  .about-image img { aspect-ratio:1/1; }
  .faq-list details p { margin-right:0; }
  .final-cta { min-height:600px; }
  .final-cta h2 { font-size:clamp(48px,12.5vw,68px); }
  .contact { padding-bottom:70px; }
  .map-wrap { height:360px; margin-top:50px; }
}

@media (max-width: 560px) {
  .brand-copy { display:none; }
  .hero-actions { align-items:stretch; flex-direction:column; gap:18px; }
  .btn { width:100%; }
  .text-link { width:max-content; }
  .hero-proof { display:grid; grid-template-columns:1fr 1fr 1fr; gap:10px; }
  .hero-proof i { display:none; }
  .hero-proof>div { flex-direction:column; align-items:flex-start; gap:4px; }
  .hero-image-frame { height:470px; }
  .hero-caption { left:20px; right:20px; bottom:20px; }
  .hero-caption strong { font-size:18px; }
  .solution-card { min-height:390px; }
  .statement blockquote { font-size:39px; }
  .project-card.tall,.project-card.wide { width:276px; height:390px; }
  .journey-grid { grid-template-columns:1fr; gap:46px; }
  .caixa-visual { min-height:500px; }
  .caixa-image-wrap { width:78%; border-radius:30px; }
  .caixa-image-wrap img { border-radius:20px; }
  .caixa-label { left:20px; bottom:24px; }
  .about-image img { border-radius:24px; }
  .about-pin { left:14px; bottom:14px; }
  .faq-list summary { font-size:16px; }
  .contact-phone { font-size:35px; }
  .social-links { flex-direction:column; align-items:flex-start; }
  .contact-details { margin-top:0; padding:26px 22px; }
  .contact-detail-row { grid-template-columns:1fr; gap:8px; }
  .footer-brand { align-items:flex-start; flex-direction:column; gap:4px; }
  .footer-bottom { gap:20px; flex-direction:column; }
  .whatsapp-float { width:56px; height:56px; right:16px; bottom:16px; }
}


@media (max-width: 720px) {
  .project-marquee { overflow:hidden; touch-action:pan-y; }
  .project-track { animation:project-marquee 36s linear infinite !important; }
  .project-group { gap:14px; padding-right:14px; }
  .project-card.tall,.project-card.wide { width:276px; height:390px; }
}

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