:root {
  --ink: #111316;
  --muted: #62666b;
  --paper: #f7f7f4;
  --white: #fff;
  --blue: #2d63ec;
  --blue-dark: #1648bd;
  --lime: #dcff67;
  --line: #d8dbd5;
  --soft: #e7ebe6;
  --shadow: 0 24px 70px rgba(17, 19, 22, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--paper); color: var(--ink); font-family: "DM Sans", sans-serif; -webkit-font-smoothing: antialiased; }
body.is-locked { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: "Manrope", sans-serif; letter-spacing: 0; }
h2 { font-size: clamp(34px, 4.2vw, 62px); line-height: 1.06; }

.progress { position: fixed; z-index: 100; top: 0; left: 0; width: 0; height: 3px; background: var(--blue); transition: width .08s linear; }

.brand { font: 800 21px/1 "Manrope", sans-serif; letter-spacing: 0; }
.brand span { color: var(--blue); }
.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; padding: 0 25px; border: 1px solid var(--blue); border-radius: 999px; background: var(--blue); color: #fff; font-weight: 800; cursor: pointer; transition: .2s ease; }
.button:hover { transform: translateY(-2px); background: var(--blue-dark); box-shadow: 0 11px 28px rgba(45, 99, 236, .22); }
.button--small { min-height: 42px; padding: 0 18px; font-size: 13px; }
.button--outline { border-color: #b9b7b1; background: transparent; color: var(--ink); }
.button--wa { border-color: #25d366; background: #25d366; color: #082715; }
.eyebrow { margin: 0 0 20px; color: #52565b; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.nav { position: sticky; z-index: 50; top: 0; display: flex; width: 100%; min-height: 76px; align-items: center; justify-content: space-between; gap: 18px; padding: 0 clamp(22px, 5vw, 78px); border-bottom: 1px solid rgba(17, 19, 22, .08); background: rgba(246, 244, 238, .92); backdrop-filter: blur(18px); }
.nav nav, .nav-actions { display: flex; align-items: center; gap: 22px; }
.nav nav a, .nav nav button { border: 0; background: none; color: #565a5e; font-size: 13px; font-weight: 700; cursor: pointer; }
.nav.is-scrolled { box-shadow: 0 14px 35px rgba(17,19,22,.07); }
.nav-menu { position: relative; }
.nav-dropdown { position: absolute; top: calc(100% + 16px); left: -18px; display: grid; min-width: 168px; padding: 10px; border: 1px solid rgba(17,19,22,.09); border-radius: 14px; background: #fff; box-shadow: 0 18px 44px rgba(17,19,22,.12); opacity: 0; pointer-events: none; transform: translateY(6px); transition: .18s ease; }
.nav-menu:hover .nav-dropdown, .nav-menu:focus-within .nav-dropdown { opacity: 1; pointer-events: auto; transform: none; }
.nav-dropdown a { padding: 10px 12px; border-radius: 10px; color: var(--ink) !important; }
.nav-dropdown a:hover, .nav-dropdown a[aria-current="page"] { background: #edf2ff; color: var(--blue) !important; }
.mobile-menu-toggle, .mobile-menu { display: none; }
.languages, .currencies { display: flex; gap: 4px; padding: 3px; border-radius: 999px; background: rgba(17,19,22,.06); }
.languages button, .currencies button { min-width: 30px; height: 28px; padding: 0 8px; border: 0; border-radius: 999px; background: transparent; color: #777a7d; font-size: 10px; font-weight: 800; cursor: pointer; }
.currencies button { min-width: 38px; }
.languages button.is-active, .currencies button.is-active { background: var(--ink); color: #fff; }

.hero { position: relative; isolation: isolate; display: grid; min-height: calc(100vh - 76px); padding: 82px clamp(24px, 6vw, 86px) 105px; grid-template-columns: minmax(0, .96fr) minmax(420px, 1.04fr); gap: 64px; align-items: center; overflow: hidden; }
.hero::before { content: ""; position: absolute; z-index: -2; inset: 0; background: linear-gradient(115deg, rgba(255,255,255,.52) 0 24%, transparent 24% 58%, rgba(255,255,255,.44) 58% 58.25%, transparent 58.25% 100%); transform: translate3d(0, calc(var(--hero-bg-shift, 0) * .35px), 0); pointer-events: none; }
.hero::after { content: ""; position: absolute; z-index: -1; inset: 8% 0 auto auto; width: min(620px, 42vw); height: 72%; background-image: linear-gradient(rgba(17,19,22,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(17,19,22,.045) 1px, transparent 1px); background-size: 34px 34px; mask-image: linear-gradient(90deg, transparent, #000 20%, #000 72%, transparent); opacity: .58; transform: translate3d(0, calc(var(--hero-bg-shift, 0) * .5px), 0); pointer-events: none; }
.hero-copy, .hero-visual { position: relative; z-index: 1; }
.hero h1 { max-width: 780px; font-size: clamp(54px, 7vw, 112px); line-height: .93; }
.hero h1 em { color: var(--blue); font-style: normal; }
.hero-lead { max-width: 680px; color: var(--muted); font-size: 19px; line-height: 1.7; }
.hero-direct { max-width: 660px; margin: 18px 0 0; padding: 15px 18px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.62); color: #34383d; font-size: 15px; font-weight: 800; line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 34px; }
.text-link { font-weight: 800; }
.hero-checks { display: flex; flex-wrap: wrap; gap: 11px; margin: 35px 0 0; padding: 0; list-style: none; }
.hero-checks li { padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.6); color: #52565b; font-size: 13px; font-weight: 700; }
.hero-visual { position: relative; min-height: 640px; transform: translate3d(0, calc(var(--hero-shift, 0) * 1px), 0); will-change: transform; }
.hero-visual > img { width: 100%; height: 640px; border-radius: 160px 24px 24px 24px; object-fit: cover; box-shadow: var(--shadow); }
.hero-caption { position: absolute; right: 34px; bottom: -34px; left: 34px; padding: 22px; border-radius: 18px; background: rgba(255,255,255,.94); box-shadow: var(--shadow); font-size: 18px; font-weight: 800; line-height: 1.35; transform: translate3d(0, calc(var(--hero-caption-shift, 0) * 1px), 0); will-change: transform; backdrop-filter: blur(14px); }

.platforms { padding: 38px clamp(24px, 6vw, 86px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.platforms p { margin: 0 auto 24px; max-width: 640px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.platform-logos { display: grid; width: min(1180px, 100%); grid-template-columns: repeat(6, minmax(0, 1fr)); align-items: center; justify-items: center; gap: 32px 34px; margin: auto; }
.platform-logos img { width: 100%; max-width: 150px; max-height: 38px; object-fit: contain; filter: grayscale(1) brightness(0); opacity: .56; }
.platforms small { display: block; max-width: 620px; margin: 24px auto 0; color: #8b8d90; line-height: 1.5; }

.trust-bridge { display: grid; max-width: 1208px; margin: 30px auto 0; padding: 0 24px; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.trust-bridge article { position: relative; overflow: hidden; min-height: 260px; padding: 26px; border: 1px solid rgba(17,19,22,.1); border-radius: 18px; background: linear-gradient(145deg, #fff 0%, #f7f5ef 100%); box-shadow: 0 18px 50px rgba(17,19,22,.05); }
.trust-bridge article::after { content: ""; position: absolute; right: -38px; bottom: -54px; width: 156px; height: 156px; border: 1px solid rgba(45,99,236,.2); border-radius: 50%; background: rgba(45,99,236,.04); }
.bridge-icon { display: grid; width: 54px; height: 54px; margin-bottom: 36px; border: 1px solid rgba(45,99,236,.18); border-radius: 16px; background: #edf2ff; color: var(--blue); place-items: center; }
.bridge-icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.trust-bridge span { position: relative; z-index: 1; display: block; color: var(--blue); font-size: 13px; font-weight: 900; }
.trust-bridge p { position: relative; z-index: 1; max-width: 560px; margin: 12px 0 0; color: #4e5256; font-size: 17px; line-height: 1.6; }

.section { max-width: 1248px; margin: auto; padding: 105px 24px; }
.section-heading { margin-bottom: 48px; }
.section-heading.split { display: grid; grid-template-columns: 1fr .72fr; gap: 52px; align-items: end; }
.section-heading > p, .section-heading.split > p { color: var(--muted); line-height: 1.7; }

.sector-grid, .service-grid, .evidence-grid, .project-grid, .process-grid, .faq-grid, .plan-grid { display: grid; gap: 18px; }
.sector-grid { grid-template-columns: repeat(3, 1fr); }
.sector-grid article { position: relative; overflow: hidden; min-height: 530px; border-radius: 22px; background: #111; color: #fff; }
.sector-grid img { width: 100%; height: 100%; opacity: .74; object-fit: cover; }
.sector-grid article > div { position: absolute; inset: auto 24px 24px; }
.sector-grid span { display: inline-grid; width: 42px; height: 42px; margin-bottom: 18px; border-radius: 50%; background: #fff; color: var(--ink); place-items: center; font-weight: 900; }
.sector-grid h3 { font-size: 29px; }
.sector-grid p { color: rgba(255,255,255,.8); line-height: 1.6; }

.service { max-width: none; background: #111316; color: #fff; }
.service > .section-heading, .service-grid { max-width: 1208px; margin-right: auto; margin-left: auto; }
.service .eyebrow { color: #9da0a5; }
.service-grid { grid-template-columns: 1fr 1fr; }
.service-card { min-height: 545px; padding: 38px; border: 1px solid #323539; border-radius: 22px; background: #1a1d20; }
.service-card--blue { background: var(--blue); }
.service-card > span { color: #b7bac0; font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.service-card h3 { margin-top: 58px; font-size: clamp(31px, 3vw, 44px); line-height: 1.08; }
.service-card > p { color: #c3c6cb; line-height: 1.7; }
.service-card ul { display: grid; gap: 12px; margin: 28px 0; padding: 0; list-style: none; }
.service-card li::before, .plan li::before { content: "✓"; margin-right: 9px; color: var(--lime); font-weight: 900; }
.service-card > a { display: inline-block; margin-top: 18px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-weight: 800; }

.compare-main { position: relative; overflow: hidden; height: 650px; border-radius: 22px; box-shadow: var(--shadow); }
.compare-main img { width: 100%; height: 100%; object-fit: cover; }
.compare-before { position: absolute; inset: 0 auto 0 0; width: 48%; overflow: hidden; }
.compare-before img { max-width: none; width: var(--compare-width, min(1208px, calc(100vw - 48px))); }
.compare-line { position: absolute; z-index: 2; top: 0; bottom: 0; left: 48%; width: 2px; background: #fff; }
.compare-line::after, .mini-line::after { content: "↔"; position: absolute; top: 50%; left: 50%; display: grid; width: 46px; height: 46px; border-radius: 50%; background: #fff; color: var(--ink); transform: translate(-50%, -50%); place-items: center; box-shadow: 0 14px 34px rgba(17,19,22,.16); font-weight: 900; }
.compare-main input { position: absolute; z-index: 3; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; }
.compare-main > b { position: absolute; z-index: 2; top: 20px; padding: 8px 12px; border-radius: 999px; background: rgba(17,19,22,.75); color: #fff; font-size: 11px; }
.label-before { left: 20px; }
.label-after { right: 20px; }
.compare-gallery { display: grid; margin-top: 18px; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.compare-gallery figure { margin: 0; overflow: hidden; border-radius: 18px; background: #fff; box-shadow: 0 16px 40px rgba(17,19,22,.06); }
.compare-gallery figure > div { position: relative; height: 230px; overflow: hidden; }
.compare-gallery img { width: 100%; height: 100%; object-fit: cover; }
.mini-before { position: absolute; inset: 0; overflow: hidden; clip-path: inset(0 50% 0 0); }
.mini-line { position: absolute; z-index: 2; top: 0; bottom: 0; left: 50%; width: 2px; background: #fff; }
.mini-line::after { width: 34px; height: 34px; font-size: 12px; }
.mini-range { position: absolute; z-index: 3; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; }
.compare-gallery figcaption { display: grid; padding: 20px; gap: 4px; }
.compare-gallery small { color: var(--muted); }

.evidence, .pricing { max-width: none; background: #e9e6dd; }
.evidence > .section-heading, .evidence-grid, .evidence-note, .pricing > .section-heading, .pricing-controls, .pricing-context, .plan-grid, .pricing-foot, .addon-strip, .agency-box, .recurring-box, .custom-quote { max-width: 1208px; margin-right: auto; margin-left: auto; }
.evidence-grid { grid-template-columns: repeat(3, 1fr); border-top: 1px solid #c9c5ba; border-bottom: 1px solid #c9c5ba; gap: 0; }
.evidence-grid article { padding: 36px; border-right: 1px solid #c9c5ba; }
.evidence-grid article:last-child { border-right: 0; }
.evidence-grid span { color: #777a7d; font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.evidence-grid strong { display: block; margin: 40px 0 5px; color: var(--blue); font: 800 58px "Manrope"; letter-spacing: 0; }
.evidence-grid p { color: var(--muted); line-height: 1.6; }
.evidence-note { margin-top: 22px !important; color: #85878a; font-size: 11px; line-height: 1.5; }

.testimonials { overflow: hidden; }
.testimonial-marquee { position: relative; margin: -10px calc(50% - 50vw) 0; overflow: hidden; padding: 6px 0 18px; mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); }
.testimonial-track { display: flex; width: max-content; gap: 18px; animation: testimonial-scroll 34s linear infinite; }
.testimonial-track:hover { animation-play-state: paused; }
.testimonial-track article { display: flex; width: min(430px, calc(100vw - 46px)); min-height: 230px; flex: 0 0 auto; flex-direction: column; justify-content: space-between; padding: 30px; border: 1px solid rgba(17,19,22,.1); border-radius: 20px; background: #fff; box-shadow: 0 18px 50px rgba(17,19,22,.055); }
.testimonial-track article::before { content: "“"; color: var(--blue); font: 800 48px/1 "Manrope"; }
.testimonial-track p { margin: 18px 0 32px; color: #1b1e22; font: 800 24px/1.24 "Manrope"; letter-spacing: 0; }
.testimonial-track footer { display: grid; gap: 4px; padding-top: 18px; border-top: 1px solid var(--line); }
.testimonial-track strong { font: 800 15px "Manrope"; }
.testimonial-track span { color: var(--muted); font-size: 12px; font-weight: 800; }
@keyframes testimonial-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}

.project-grid { grid-template-columns: 1.2fr .8fr; }
.project-grid article { position: relative; overflow: hidden; min-height: 320px; border-radius: 22px; background: #111; color: #fff; }
.project-grid article:first-child { min-height: 660px; grid-row: span 2; }
.project-grid img { width: 100%; height: 100%; opacity: .84; object-fit: cover; }
.project-grid div { position: absolute; inset: auto 26px 24px; }
.project-grid span { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.project-grid h3 { margin-top: 7px; font-size: 28px; }
.project-grid p { margin: 5px 0 0; color: rgba(255,255,255,.74); font-size: 12px; }

.process-grid { grid-template-columns: repeat(4, 1fr); padding: 0; list-style: none; }
.process-grid li { position: relative; overflow: hidden; display: flex; min-height: 335px; flex-direction: column; padding: 28px; border: 1px solid rgba(17,19,22,.1); border-radius: 20px; background: #fff; box-shadow: 0 18px 50px rgba(17,19,22,.055); }
.process-grid li::before { content: ""; position: absolute; top: 0; right: 0; left: 0; height: 5px; background: var(--blue); opacity: .95; }
.process-grid li > span { position: relative; z-index: 1; color: var(--blue); font: 800 clamp(48px, 4.4vw, 72px)/.9 "Manrope"; letter-spacing: 0; }
.process-grid h3 { position: relative; z-index: 1; margin-top: auto; font-size: clamp(22px, 1.8vw, 28px); line-height: 1.08; }
.process-grid p { position: relative; z-index: 1; margin-bottom: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }
.stripe-note { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 24px; color: var(--muted); font-size: 13px; line-height: 1.45; }
.stripe-note b { color: #635bff; font: 800 22px/1 "Manrope"; }
.stripe-note span { display: block; max-width: 640px; }

.pricing-controls { display: flex; align-items: center; justify-content: center; }
.segmented { display: flex; padding: 4px; border-radius: 999px; background: #d5d1c7; }
.segmented button { min-height: 42px; padding: 0 22px; border: 0; border-radius: 999px; background: transparent; color: #626467; font-size: 12px; font-weight: 800; cursor: pointer; }
.segmented button.is-active { background: var(--ink); color: #fff; }
.pricing-context { margin-top: 24px !important; margin-bottom: 20px !important; color: var(--muted); font-size: 14px; text-align: center; }
.plan-grid { grid-template-columns: repeat(3, 1fr); }
.plan { position: relative; display: flex; min-height: 520px; flex-direction: column; padding: 30px; border: 1px solid #cbc7bd; border-radius: 20px; background: #f8f7f3; }
.plan.is-featured { border-color: var(--blue); background: #fff; box-shadow: 0 20px 50px rgba(20,25,35,.09); }
.plan-badge { position: absolute; top: 18px; right: 18px; padding: 7px 10px; border-radius: 999px; background: var(--lime); font-size: 10px; font-weight: 900; text-transform: uppercase; }
.plan > span { font-size: 12px; font-weight: 900; text-transform: uppercase; }
.plan > p { color: var(--muted); line-height: 1.5; }
.plan-price { padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.plan-price strong { font: 800 37px "Manrope"; letter-spacing: 0; }
.plan-price small { color: var(--muted); }
.plan ul { display: grid; gap: 14px; margin: 22px 0 30px; padding: 0; list-style: none; }
.plan li { font-size: 14px; }
.plan li::before { color: var(--blue); }
.plan .button { margin-top: auto; }

.addon-strip { display: grid; margin-top: 18px; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: #f8f7f3; gap: 18px; }
.addon-strip > div:first-child { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; }
.addon-strip strong { font: 800 20px "Manrope"; }
.addon-strip p { max-width: 680px; margin: 0; color: var(--muted); line-height: 1.5; }
.addon-strip__items { display: flex; flex-wrap: wrap; gap: 8px; }
.addon-strip__items span { display: grid; min-width: min(255px, 100%); flex: 1 1 255px; padding: 16px; border: 1px solid #d9d6cf; border-radius: 13px; background: #fff; gap: 6px; }
.addon-strip__items b { font: 800 14px "Manrope"; line-height: 1.25; }
.addon-strip__items small { color: var(--muted); font-size: 12px; line-height: 1.45; }
.agency-box { display: grid; grid-template-columns: 190px 1fr; gap: 22px; margin-top: 18px; padding: 24px; border: 1px solid rgba(17,19,22,.1); border-radius: 18px; background: #111316; color: #fff; }
.agency-box > span { color: var(--lime); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.agency-box h3 { font-size: 25px; letter-spacing: 0; }
.agency-box p { margin: 6px 0 0; color: #c9ccd1; line-height: 1.55; }
.recurring-box { display: grid; grid-template-columns: 160px 1fr auto; align-items: center; gap: 22px; margin-top: 18px; padding: 24px; border: 1px solid rgba(45,99,236,.28); border-radius: 18px; background: #edf2ff; }
.recurring-box > span { color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.recurring-box h3 { font-size: 25px; letter-spacing: 0; }
.recurring-box p { margin: 6px 0 0; color: #44506a; line-height: 1.5; }
.custom-quote { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 18px; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.custom-quote strong { display: block; margin-bottom: 6px; font: 800 20px "Manrope"; }
.custom-quote p { max-width: 760px; margin: 0; color: var(--muted); line-height: 1.55; }
.pricing-foot { margin-top: 22px !important; color: #85878a; font-size: 12px; text-align: center; }

.faq { padding-top: 55px; }
.faq-grid { grid-template-columns: 1fr 1fr; align-items: start; gap: 10px; }
.faq details { overflow: hidden; border: 1px solid rgba(17,19,22,.1); border-radius: 16px; background: #fff; box-shadow: 0 12px 34px rgba(17,19,22,.035); transition: border-color .18s ease, box-shadow .18s ease; }
.faq details[open] { border-color: rgba(45,99,236,.28); box-shadow: 0 18px 48px rgba(17,19,22,.06); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 17px 20px; font-family: "Manrope"; font-size: 16px; font-weight: 800; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; display: grid; width: 28px; height: 28px; flex: 0 0 28px; border-radius: 50%; background: #edf2ff; color: var(--blue); place-items: center; font-family: "DM Sans"; font-size: 18px; line-height: 1; }
.faq details[open] summary::after { content: '-'; background: var(--blue); color: #fff; }
.faq details p { margin: 0; padding: 0 20px 19px; color: var(--muted); font-size: 15px; line-height: 1.58; }

.briefing { display: grid; max-width: 1240px; margin: 65px auto; padding: 72px; border-radius: 28px; background: #111316; color: #fff; grid-template-columns: .82fr 1.18fr; gap: 72px; }
.briefing h2 { font-size: clamp(38px, 4vw, 60px); line-height: 1.05; }
.briefing-copy > p:not(.eyebrow) { color: #b7bbc0; font-size: 17px; line-height: 1.65; }
.contact-options { display: grid; margin-top: 40px; border-top: 1px solid #36393d; }
.contact-options a, .contact-options button { display: flex; align-items: center; gap: 14px; padding: 18px 0; border: 0; border-bottom: 1px solid #36393d; background: none; color: #fff; font-weight: 800; text-align: left; cursor: pointer; }
.contact-options b { min-width: 0; overflow-wrap: anywhere; line-height: 1.25; }
.contact-icon { display: grid; width: 40px; height: 40px; flex: 0 0 40px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; background: rgba(255,255,255,.06); place-items: center; }
.contact-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.contact-icon--wa { border-color: rgba(37,211,102,.45); background: #25d366; color: #fff; }
.contact-icon--wa svg { width: 20px; height: 20px; fill: currentColor; stroke: none; }
.smart-form { overflow: hidden; padding: 30px; border-radius: 20px; background: #fff; color: var(--ink); }
.form-progress { height: 3px; margin: -30px -30px 28px; background: #e8e6e0; }
.form-progress span { display: block; width: 33.33%; height: 100%; background: var(--blue); transition: width .3s; }
.form-step { display: none; }
.form-step.is-active { display: block; }
.form-step > p { margin: 0 0 8px; color: var(--blue); font-size: 11px; font-weight: 900; }
.form-step h3 { margin-bottom: 23px; font-size: 27px; }
.form-step h4 { margin: 25px 0 10px; font-size: 13px; }
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.choice-grid--two { grid-template-columns: repeat(2, 1fr); }
.choice-grid label, .form-plan-grid label { position: relative; display: block; cursor: pointer; }
.choice-grid input, .form-plan-grid input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.choice-grid span { display: grid; min-height: 78px; padding: 12px; border: 1px solid #d9d6cf; border-radius: 12px; color: #626569; font-size: 12px; font-weight: 800; text-align: center; place-items: center; }
.choice-grid input:checked + span, .form-plan-grid input:checked + .form-plan-card { border-color: var(--blue); background: #edf2ff; color: var(--blue); box-shadow: inset 0 0 0 1px var(--blue); }
.form-next { margin-top: 30px; }
.form-step > label, .field-row label { display: grid; margin-bottom: 15px; gap: 7px; color: #4f5357; font-size: 12px; font-weight: 800; }
.form-step input, .form-step textarea { width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid #d9d6cf; border-radius: 10px; background: #fbfaf7; outline: none; resize: vertical; }
.form-step textarea { min-height: 92px; line-height: 1.45; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.field-row.has-hidden-city { grid-template-columns: 1fr; }
.phone-input-row { display: flex; align-items: stretch; gap: 9px; }
.phone-input-row > input { min-width: 0; flex: 1; }
.form-helper { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin: 17px 0 14px; padding: 14px; border: 1px solid #e3e0d8; border-radius: 14px; background: #f7f5ef; color: #686b70; font-size: 12px; line-height: 1.45; }
.form-helper button { padding: 8px 10px; border: 1px solid #c9c5ba; border-radius: 999px; background: #fff; color: var(--blue); font-size: 11px; font-weight: 900; cursor: pointer; }
.form-plan-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin: 12px 0 18px; }
.form-plan-grid.is-recurring { grid-template-columns: 1fr; }
.form-plan-card { display: grid; min-height: 94px; padding: 12px; border: 1px solid #d9d6cf; border-radius: 13px; background: #fbfaf7; gap: 7px; }
.form-plan-card strong { font-family: "Manrope"; }
.form-plan-card small { color: #7d8084; font-size: 11px; line-height: 1.35; }
.form-plan-price { margin-top: auto; color: var(--blue); font-weight: 900; }
.form-plan-custom { grid-column: 1 / -1; }
.form-plan-custom .form-plan-card { min-height: 86px; background: #f2f5ff; }
.addon-group { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin: 14px 0 0; padding: 14px; border: 1px solid #d9d6cf; border-radius: 15px; background: #fbfaf7; }
.addon-group legend { padding: 0 6px; color: #36383b; font-size: 13px; font-weight: 900; }
.addon-group label { display: flex; align-items: center; gap: 10px; min-height: 42px; padding: 8px 10px; border: 1px solid #e2ded6; border-radius: 12px; background: #fff; color: #626569; font-size: 12px; font-weight: 800; }
.addon-group input { width: 16px; height: 16px; accent-color: var(--blue); }
.form-agency-note { margin: 10px 0 0; padding: 12px 14px; border-radius: 12px; background: #edf2ff; color: #44506a; font-size: 12px; font-weight: 800; line-height: 1.45; }
.form-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 15px 0 0; padding: 0; list-style: none; }
.form-trust li { padding: 9px 10px; border-radius: 10px; background: #eef3ff; color: #2552c4; font-size: 11px; font-weight: 900; line-height: 1.3; }
.form-buttons { display: flex; align-items: center; justify-content: space-between; margin-top: 24px; }
.back { padding: 10px 0; border: 0; background: none; color: #6d7074; font-weight: 800; cursor: pointer; }
.consent { display: flex !important; align-items: flex-start; gap: 10px !important; }
.consent input { width: 18px; min-height: 18px; }
.consent a { color: var(--blue); text-decoration: underline; }
.send-options { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.send-options .button { flex: 1; min-width: 160px; }
.send-options .button[hidden] { display: none !important; }
.send-options [hidden] { display: none !important; }
.whatsapp-opt { display: inline-flex !important; min-height: 48px; align-items: center; gap: 8px !important; margin: 0 !important; padding: 0 12px; border: 1px solid #d9d6cf; border-radius: 10px; background: #fbfaf7; white-space: nowrap; }
.whatsapp-opt input { width: 16px !important; height: 16px !important; min-height: 16px !important; flex: 0 0 16px; padding: 0 !important; accent-color: var(--blue); }
.whatsapp-opt span { color: #4f5357; font-size: 11px; font-weight: 900; }
.form-step > small { display: block; margin-top: 15px; color: #85878a; text-align: right; }
.form-status { margin-top: 12px; color: var(--blue); font-size: 13px; font-weight: 800; }

.footer { padding: 75px clamp(24px, 6vw, 86px) 30px; background: #08090a; color: #fff; }
.footer-main { display: grid; max-width: 1208px; margin: auto; grid-template-columns: 1.55fr .7fr 1fr 1.2fr 1.15fr; gap: 36px; }
.footer-main > div { display: flex; align-items: flex-start; flex-direction: column; gap: 12px; }
.footer a, .footer button { border: 0; background: none; color: #c9ccd1; padding: 0; cursor: pointer; text-align: left; }
.footer a.is-current { color: #fff; font-weight: 900; }
.footer a.is-current::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--blue); vertical-align: 1px; }
.footer h4 { margin: 0 0 8px; }
.footer-bottom { display: flex; max-width: 1208px; margin: 56px auto 0; justify-content: space-between; border-top: 1px solid #22252a; padding-top: 24px; color: #858a91; }
.footer-bottom button { border: 0; background: none; color: #c9ccd1; cursor: pointer; padding: 0; }
.footer .footer-social { display: inline-flex; align-items: center; gap: 9px; color: #fff; font-weight: 800; }
.footer-social svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.footer-location, .panel-based { display: block; }
.footer-location { margin: 0; color: #fff; font-weight: 800; line-height: 1.45; }

.studio-panel { position: fixed; z-index: 80; inset: 0; visibility: hidden; pointer-events: none; }
.studio-panel.is-open { visibility: visible; pointer-events: auto; }
.panel-scrim { position: absolute; inset: 0; border: 0; background: rgba(0,0,0,.45); opacity: 0; transition: opacity .2s; }
.studio-panel.is-open .panel-scrim { opacity: 1; }
.panel-sheet { position: absolute; top: 0; right: 0; width: min(520px, 100vw); height: 100%; overflow-y: auto; background: var(--paper); transform: translateX(100%); transition: transform .28s ease; box-shadow: -24px 0 70px rgba(0,0,0,.18); }
.studio-panel.is-open .panel-sheet { transform: none; }
.panel-sheet img { width: 100%; height: 290px; object-fit: cover; }
.panel-body { padding: 34px; }
.panel-body p { color: var(--muted); line-height: 1.65; }
.panel-body dl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 26px 0 22px; }
.panel-body dl > div { padding: 14px 12px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.58); }
.panel-body dt { color: var(--blue); font: 800 clamp(18px, 2.6vw, 24px) "Manrope"; letter-spacing: 0; line-height: 1.06; }
.panel-body dd { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.35; }
.panel-based { margin: 0 0 24px; padding: 14px 16px; border-radius: 14px; background: #fff; color: var(--ink) !important; font-weight: 800; line-height: 1.45; }
.panel-close { position: absolute; z-index: 2; top: 18px; right: 18px; display: grid; width: 40px; height: 40px; border: 0; border-radius: 50%; background: #fff; color: var(--ink); font-size: 26px; cursor: pointer; place-items: center; }

.whatsapp-float { position: fixed; z-index: 45; right: 22px; bottom: 22px; display: grid; width: 58px; height: 58px; border: 0; border-radius: 50%; background: #25d366; color: #fff; font-size: 24px; font-weight: 900; place-items: center; box-shadow: 0 18px 40px rgba(0,0,0,.2); cursor: pointer; }
.whatsapp-float svg { width: 28px; height: 28px; fill: currentColor; stroke: none; }
.whatsapp-float span { position: absolute; overflow: hidden; width: 1px; height: 1px; clip: rect(0 0 0 0); }
.scroll-top { position: fixed; z-index: 44; left: 22px; bottom: 22px; display: grid; width: 48px; height: 48px; border: 1px solid rgba(17,19,22,.12); border-radius: 50%; background: #fff; color: var(--ink); font-size: 22px; font-weight: 900; opacity: 0; pointer-events: none; place-items: center; box-shadow: 0 14px 34px rgba(17,19,22,.13); transform: translateY(10px); transition: .2s ease; cursor: pointer; }
.scroll-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
dialog { border: 0; }
dialog::backdrop { background: rgba(17,19,22,.48); backdrop-filter: blur(4px); }
.modal, .exit-modal { width: min(560px, calc(100vw - 32px)); padding: 45px; border-radius: 24px; box-shadow: var(--shadow); }
.modal-close { position: absolute; z-index: 2; top: 16px; right: 16px; display: grid; width: 38px; height: 38px; border: 0; border-radius: 50%; background: #fff; color: var(--ink); font-size: 24px; cursor: pointer; place-items: center; }
.modal h3, .exit-modal h3 { font-size: 31px; }
.modal > p:not(.eyebrow), .modal li, .exit-modal > p { color: var(--muted); line-height: 1.65; }
.modal > div { display: flex; gap: 10px; margin-top: 30px; }
.contact-city { padding: 14px; border-radius: 14px; background: #f3f1eb; font-size: 13px; font-weight: 800; }
.legal-modal { max-height: 85vh; overflow-y: auto; }
.legal-modal > div { display: block; margin-top: 0; }
.legal-modal h2 { font-size: 28px; }
.legal-modal details { border-top: 1px solid rgba(0,0,0,.1); }
.legal-modal summary { padding: 16px 0; font-weight: 800; cursor: pointer; }
.legal-modal details p { color: var(--muted); font-size: 14px; line-height: 1.65; }
.exit-modal { overflow: hidden; border: 1px solid rgba(255,255,255,.22); background: #111316; color: #fff; text-align: center; }
.exit-modal::before { content: ""; position: absolute; inset: auto 0 0; height: 5px; background: var(--lime); opacity: .82; pointer-events: none; }
.exit-modal > span { display: inline-flex; align-items: center; justify-content: center; min-height: 30px; padding: 0 12px; border: 1px solid rgba(220,255,103,.32); border-radius: 999px; color: var(--lime); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.exit-modal h3, .exit-modal p, .exit-modal a, .exit-modal small { position: relative; z-index: 1; }
.exit-modal h3 { margin-top: 20px; }
.exit-modal > p { color: #c9ccd1; }
.exit-modal .button { margin-top: 10px; border-color: var(--lime); background: var(--lime); color: var(--ink); }
.exit-modal small { display: block; margin-top: 16px; color: #8f9398; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .72s cubic-bezier(.2,.8,.2,1), transform .72s cubic-bezier(.2,.8,.2,1); transition-delay: var(--reveal-delay, 0s); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero::before, .hero::after, .hero-visual, .hero-caption, .reveal { transform: none !important; transition: none !important; }
  .testimonial-track { animation: none !important; }
}

@media (max-width: 1080px) {
  .nav nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 75px; }
  .hero-visual, .hero-visual > img { min-height: 560px; height: 560px; }
  .platform-logos { width: min(720px, 100%); grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .section-heading.split, .briefing, .agency-box, .recurring-box { grid-template-columns: 1fr; }
  .trust-bridge { grid-template-columns: 1fr; }
  .sector-grid, .process-grid { grid-template-columns: 1fr 1fr; }
  .briefing { margin-right: 24px; margin-left: 24px; padding: 52px; }
}

@media (max-width: 760px) {
  .nav { top: 0; display: grid; min-height: 68px; padding: 10px 14px; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; }
  .nav .brand { align-self: center; grid-column: 1; }
  .nav-actions { display: contents; }
  .nav-actions .languages, .nav-actions .currencies { display: none; }
  .nav .button { align-self: center; grid-column: 2; min-height: 38px; padding: 0 14px; font-size: 10px; }
  .mobile-menu-toggle { display: none; }
  .mobile-menu-toggle span { display: block; width: 16px; height: 2px; border-radius: 999px; background: var(--ink); transition: .18s ease; }
  .mobile-menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .mobile-menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu { position: sticky; z-index: 45; top: 68px; display: grid; margin: 0; padding: 0 14px 14px; border-bottom: 1px solid rgba(17,19,22,.08); background: rgba(246,244,238,.96); backdrop-filter: blur(18px); gap: 10px; }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu__group, .mobile-menu__controls { display: grid; padding: 12px; border: 1px solid rgba(17,19,22,.08); border-radius: 16px; background: #fff; box-shadow: 0 16px 40px rgba(17,19,22,.08); }
  .mobile-menu__group { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }
  .mobile-menu__group a, .mobile-menu__group button { min-height: 38px; border: 0; border-radius: 11px; background: transparent; color: #555a60; font-size: 13px; font-weight: 800; text-align: left; cursor: pointer; padding: 0 10px; }
  .mobile-menu__group a[aria-current="page"] { background: #edf2ff; color: var(--blue); }
  .mobile-menu__controls { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
  .hero { display: block; min-height: auto; padding: 62px 20px 95px; }
  .hero::after { width: 100%; height: 420px; opacity: .28; background-size: 28px 28px; }
  .hero h1 { font-size: 47px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .text-link { text-align: center; }
  .hero-checks { align-items: center; flex-direction: column; gap: 9px; }
  .hero-visual { min-height: 430px; margin-top: 56px; }
  .hero-visual, .hero-caption { transform: none !important; }
  .hero-visual > img { height: 430px; border-radius: 105px 18px 18px 18px; }
  .hero-caption { right: 20px; bottom: -36px; left: 20px; }
  .platform-logos { width: min(330px, 100%); grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px 20px; }
  .platform-logos img { max-width: 78px; max-height: 22px; }
  .trust-bridge, .sector-grid, .service-grid, .compare-gallery, .evidence-grid, .project-grid, .process-grid, .faq-grid, .plan-grid, .photo-options, .choice-grid, .choice-grid--two, .form-plan-grid, .addon-group, .form-trust { grid-template-columns: 1fr; }
  .section { padding: 84px 20px; }
  .sector-grid article { min-height: 470px; }
  .service-card { min-height: 500px; padding: 28px; }
  .compare-main { height: auto; aspect-ratio: 1 / 1.08; }
  .compare-gallery figure > div { height: auto; aspect-ratio: 1 / .72; }
  .evidence-grid article { border-right: 0; border-bottom: 1px solid #c9c5ba; }
  .testimonial-marquee { margin-right: -20px; margin-left: -20px; mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
  .testimonial-track { gap: 12px; animation-duration: 42s; }
  .testimonial-track article { min-height: 220px; padding: 24px; }
  .testimonial-track p { font-size: 21px; }
  .project-grid article:first-child { min-height: 460px; grid-row: auto; }
  .project-grid article { min-height: 420px; }
  .stripe-note { align-items: flex-start; flex-direction: column; }
  .addon-strip { padding: 20px; border-radius: 16px; overflow: hidden; }
  .addon-strip__items { display: grid; grid-template-columns: minmax(0, 1fr); }
  .addon-strip__items span { min-width: 0; width: 100%; }
  .custom-quote, .addon-strip > div:first-child { align-items: stretch; flex-direction: column; }
  .recurring-box { align-items: stretch; gap: 14px; }
  .briefing { margin: 0; padding: 76px 20px; border-radius: 0; gap: 42px; }
  .contact-options a, .contact-options button { gap: 12px; }
  .contact-options b { font-size: clamp(16px, 4.8vw, 20px); line-height: 1.2; }
  .contact-icon { width: 46px; height: 46px; flex-basis: 46px; }
  .smart-form { padding: 24px 18px; }
  .form-progress { margin: -24px -18px 24px; }
  .form-step > p, .form-step h3, .form-step h4 { text-align: center; }
  .form-step h3 { font-size: 38px; line-height: 1.05; }
  .form-step h4 { margin-right: auto; margin-left: auto; max-width: 310px; line-height: 1.25; }
  .field-row { grid-template-columns: 1fr; }
  .phone-input-row { flex-direction: column; }
  .whatsapp-opt { min-height: 42px; justify-content: center; }
  .form-helper { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 16px; }
}

/* Shared region selector (assets/css/region.css) - mobile placement */
@media (max-width: 700px) {
  .nav-actions { display: flex; align-items: center; gap: 8px; grid-column: 2; justify-self: end; }
  .nav-actions .region { display: inline-flex; }
  .nav-actions .button { min-height: 38px; padding: 0 14px; font-size: 10px; }
}

/* Phase 4: working mobile + tablet navigation (supersedes earlier rules) */
@media (max-width: 1080px) {
  .nav { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; align-items: center; gap: 10px; min-height: 68px; padding: 10px clamp(14px, 4vw, 44px); }
  .nav .brand { grid-column: 1; align-self: center; }
  .nav nav { display: none; }
  .nav-actions { display: flex; align-items: center; gap: 8px; grid-column: 2; justify-self: end; }
  .nav-actions .region { display: inline-flex; }
  .nav-actions .button { display: inline-flex; min-height: 38px; padding: 0 14px; font-size: 11px; }
  .mobile-menu-toggle { display: inline-flex; flex-direction: column; justify-content: center; gap: 4px; grid-column: 3; width: 44px; height: 38px; padding: 0 13px; border: 1px solid rgba(17, 19, 22, .14); border-radius: 999px; background: rgba(255, 255, 255, .66); cursor: pointer; }
  .mobile-menu-toggle span { display: block; width: 16px; height: 2px; border-radius: 999px; background: var(--ink); transition: .18s ease; }
  .mobile-menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
  .mobile-menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .mobile-menu { position: sticky; z-index: 45; top: 68px; display: grid; margin: 0; padding: 12px clamp(14px, 4vw, 44px) 16px; border-bottom: 1px solid rgba(17, 19, 22, .08); background: rgba(246, 244, 238, .97); backdrop-filter: blur(18px); gap: 10px; }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu__group { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; padding: 12px; border: 1px solid rgba(17, 19, 22, .08); border-radius: 16px; background: #fff; box-shadow: 0 16px 40px rgba(17, 19, 22, .08); }
  .mobile-menu__group a, .mobile-menu__group button { min-height: 40px; border: 0; border-radius: 11px; background: transparent; color: #555a60; font-size: 14px; font-weight: 800; text-align: left; cursor: pointer; padding: 0 12px; }
  .mobile-menu__group a[aria-current="page"] { background: #edf2ff; color: var(--blue); }
}
@media (max-width: 760px) {
  .nav-actions .button { display: none; }
}
