:root {
  --navy-950: #07111f;
  --navy-900: #0b1728;
  --navy-800: #10243b;
  --blue-700: #006eb7;
  --blue-600: #0788d1;
  --blue-500: #20a5ed;
  --cyan-400: #59cff5;
  --ink: #132033;
  --muted: #667085;
  --line: #e5eaf0;
  --soft: #f4f8fb;
  --white: #ffffff;
  --shadow-sm: 0 12px 30px rgba(7, 17, 31, .08);
  --shadow-lg: 0 28px 70px rgba(7, 17, 31, .18);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-soft { background: var(--soft); }
.section-dark { background: var(--navy-950); color: white; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: currentColor; border-radius: 99px; }
.section-dark .eyebrow { color: var(--cyan-400); }
h1,h2,h3,h4,p { margin-top: 0; }
h1,h2,h3,h4 { line-height: 1.12; letter-spacing: -.035em; }
h1 { font-size: clamp(42px, 6vw, 72px); }
h2 { font-size: clamp(34px, 4vw, 52px); }
h3 { font-size: 22px; }
p { color: var(--muted); }
.section-dark p { color: #b8c5d4; }
.lead { font-size: 19px; line-height: 1.75; }
.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading.center { text-align: center; margin-inline: auto; }
.section-heading h2 { margin-bottom: 18px; }

/* Topbar */
.topbar { background: #06101d; color: #c6d1df; font-size: 13px; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar-contact, .topbar-social { display: flex; align-items: center; gap: 18px; }
.topbar a { transition: color .2s ease; }
.topbar a:hover { color: var(--cyan-400); }
.topbar-sep { width: 1px; height: 14px; background: #263549; }
.social-link { font-weight: 700; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229,234,240,.88);
}
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 190px; }
.brand img { width: 66px; height: 50px; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-size: 17px; color: var(--navy-950); letter-spacing: -.025em; }
.brand-copy span { font-size: 10px; color: var(--blue-700); text-transform: uppercase; letter-spacing: .15em; font-weight: 800; margin-top: 5px; }
.site-nav { display: flex; align-items: center; gap: 7px; }
.site-nav a { padding: 11px 14px; border-radius: 10px; color: #344054; font-weight: 700; font-size: 14px; transition: all .2s ease; }
.site-nav a:hover, .site-nav a.active { color: var(--blue-700); background: #eef8fe; }
.nav-cta { margin-left: 7px; background: var(--navy-950) !important; color: white !important; width: 46px; height: 46px; padding: 0 !important; display: inline-flex; align-items: center; justify-content: center; }
.nav-cta-icon { width: 18px; height: 18px; flex: 0 0 18px; }
.nav-cta:hover { background: var(--blue-700) !important; transform: translateY(-1px); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px; background: white; align-items: center; justify-content: center; }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after { display: block; width: 20px; height: 2px; background: var(--navy-950); border-radius: 99px; transition: .2s ease; }
.menu-toggle span { position: relative; }
.menu-toggle span::before, .menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 13px 21px; border-radius: 12px; font-weight: 800; font-size: 14px; border: 1px solid transparent; transition: all .22s ease; }
.btn-primary { color: white; background: linear-gradient(135deg, var(--blue-700), var(--blue-500)); box-shadow: 0 10px 25px rgba(0,110,183,.24); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(0,110,183,.3); }
.btn-secondary { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: white; }
.btn-secondary:hover { background: rgba(255,255,255,.14); }
.btn-light { background: white; color: var(--navy-950); border-color: var(--line); }
.btn-light:hover { border-color: #cbd5e1; transform: translateY(-2px); }
.arrow { font-size: 18px; line-height: 1; }

/* Hero */
.hero { position: relative; overflow: hidden; background: var(--navy-950); color: white; }
.hero::before { content: ""; position: absolute; width: 620px; height: 620px; border-radius: 50%; background: radial-gradient(circle, rgba(32,165,237,.24) 0%, rgba(32,165,237,0) 68%); top: -260px; right: -140px; }
.hero::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(to bottom, black, transparent 85%); pointer-events: none; }
.hero-inner { position: relative; z-index: 1; min-height: 650px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 58px; padding: 74px 0 88px; }
.hero .eyebrow { color: var(--cyan-400); }
.hero h1 { max-width: 760px; margin-bottom: 24px; }
.hero h1 span { color: var(--cyan-400); }
.hero p { color: #c0ccda; font-size: 18px; max-width: 670px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-trust { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 20px; color: #9fb0c4; font-size: 13px; font-weight: 700; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust i { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan-400); box-shadow: 0 0 0 5px rgba(89,207,245,.1); }
.hero-visual { position: relative; }
.hero-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.12); }
.hero-image img { width: 100%; min-height: 440px; object-fit: cover; }
.hero-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,17,31,.48), transparent 48%); }
.hero-card { position: absolute; left: -34px; bottom: 28px; z-index: 2; width: 238px; padding: 19px; background: rgba(255,255,255,.96); color: var(--ink); border-radius: 18px; box-shadow: 0 20px 50px rgba(0,0,0,.25); }
.hero-card strong { display: block; font-size: 16px; margin-bottom: 5px; }
.hero-card p { color: var(--muted); font-size: 13px; line-height: 1.5; margin: 0; }
.hero-card-tag { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; background: #e6f6ff; color: var(--blue-700); font-weight: 900; margin-bottom: 12px; }

/* Cards and grids */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card, .service-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.feature-card:hover, .service-card:hover { transform: translateY(-5px); border-color: #c8dfed; box-shadow: 0 20px 44px rgba(7,17,31,.11); }
.icon-tile { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 14px; background: linear-gradient(135deg, #e9f7ff, #f5fbff); color: var(--blue-700); margin-bottom: 20px; font-size: 19px; font-weight: 900; border: 1px solid #d9effb; }
.feature-card h3, .service-card h3 { margin-bottom: 11px; }
.feature-card p, .service-card p { margin-bottom: 0; font-size: 15px; }

/* Split sections */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; aspect-ratio: 1.17/1; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.split-badge { position: absolute; right: -18px; bottom: 26px; background: white; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg); padding: 17px 20px; max-width: 220px; }
.split-badge strong { color: var(--blue-700); font-size: 27px; display: block; line-height: 1; margin-bottom: 6px; }
.split-badge span { color: var(--muted); font-size: 13px; font-weight: 700; }
.check-list { list-style: none; padding: 0; margin: 27px 0 0; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; color: #3d4b5f; font-weight: 650; }
.check-list li::before { content: "✓"; flex: 0 0 24px; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: #e8f8ff; color: var(--blue-700); font-weight: 900; font-size: 13px; }

/* Testimonials */
.testimonial { display: flex; flex-direction: column; }
.quote-mark { font-size: 46px; line-height: .8; color: var(--blue-500); font-family: Georgia, serif; margin-bottom: 14px; }
.testimonial p { flex: 1; }
.person { margin-top: 18px; padding-top: 17px; border-top: 1px solid var(--line); }
.person strong { display: block; font-size: 15px; }
.person span { color: var(--muted); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }

/* FAQ */
.faq-list { max-width: 880px; margin: 0 auto; display: grid; gap: 12px; }
.faq-list details { background: white; border: 1px solid var(--line); border-radius: 16px; padding: 0 22px; box-shadow: 0 8px 18px rgba(7,17,31,.04); }
.faq-list summary { list-style: none; cursor: pointer; padding: 21px 34px 21px 0; font-weight: 800; position: relative; color: var(--ink); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: #eef8fe; color: var(--blue-700); font-size: 18px; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: -4px 0 22px; max-width: 760px; }

/* CTA */
.cta-box { border-radius: var(--radius-lg); background: linear-gradient(135deg, #006eb7, #0d9fe6); color: white; padding: 54px; display: flex; align-items: center; justify-content: space-between; gap: 40px; box-shadow: 0 22px 55px rgba(0,110,183,.23); }
.cta-box h2 { margin-bottom: 12px; font-size: clamp(30px, 4vw, 44px); }
.cta-box p { color: #e1f4ff; margin-bottom: 0; max-width: 680px; }
.cta-box .btn-light { flex-shrink: 0; }

/* Page hero */
.page-hero { position: relative; min-height: 365px; display: flex; align-items: end; color: white; overflow: hidden; background: var(--navy-950); }
.page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .34; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,17,31,.95), rgba(7,17,31,.55) 55%, rgba(7,17,31,.4)); }
.page-hero-content { position: relative; z-index: 1; padding: 86px 0 62px; max-width: 770px; }
.page-hero h1 { font-size: clamp(40px, 5vw, 60px); margin-bottom: 16px; }
.page-hero p { color: #c3d0df; font-size: 18px; max-width: 670px; margin-bottom: 0; }
.breadcrumb { display: flex; gap: 9px; align-items: center; color: #a9bad0; font-size: 13px; font-weight: 700; margin-bottom: 20px; }
.breadcrumb a { color: var(--cyan-400); }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { min-height: 250px; position: relative; overflow: hidden; }
.service-number { position: absolute; top: 18px; right: 22px; font-size: 54px; font-weight: 900; color: #eff5f8; line-height: 1; letter-spacing: -.08em; }
.service-card .icon-tile { position: relative; z-index: 1; }
.service-card h3, .service-card p { position: relative; z-index: 1; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: .88fr 1.12fr; gap: 42px; align-items: stretch; }
.contact-panel { background: var(--navy-950); color: white; padding: 38px; border-radius: var(--radius-lg); position: relative; overflow: hidden; }
.contact-panel::after { content: ""; position: absolute; width: 330px; height: 330px; border-radius: 50%; background: rgba(32,165,237,.13); right: -170px; bottom: -170px; }
.contact-panel h2 { font-size: 34px; margin-bottom: 16px; }
.contact-panel > p { color: #b9c7d7; }
.contact-list { display: grid; gap: 16px; margin-top: 28px; position: relative; z-index: 1; }
.contact-item { display: flex; gap: 13px; align-items: flex-start; padding: 15px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.045); border-radius: 14px; }
.contact-item .mini-icon { flex: 0 0 38px; width: 38px; height: 38px; border-radius: 10px; background: rgba(89,207,245,.14); color: var(--cyan-400); display: grid; place-items: center; font-weight: 900; }
.contact-item strong { display: block; font-size: 13px; margin-bottom: 2px; }
.contact-item span, .contact-item a { color: #c4d0dd; font-size: 14px; }
.contact-form-card { background: white; border: 1px solid var(--line); padding: 38px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: grid; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13px; font-weight: 800; color: #344054; }
.form-group input, .form-group textarea { width: 100%; border: 1px solid #d7dee7; background: #fbfcfd; border-radius: 12px; padding: 13px 14px; color: var(--ink); outline: none; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.form-group input { min-height: 48px; }
.form-group textarea { min-height: 150px; resize: vertical; }
.form-group input:focus, .form-group textarea:focus { background: white; border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(32,165,237,.11); }
.form-note { font-size: 12px; color: var(--muted); margin: 14px 0 0; }
.contact-form-card .btn { border: 0; }

/* Footer */
.site-footer { background: #050c16; color: #c6d0dc; }
.footer-main { padding: 54px 0 36px; display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 50px; }
.footer-brand { max-width: 420px; }
.footer-brand .brand-copy strong { color: white; }
.footer-brand p { color: #8797aa; font-size: 14px; margin: 18px 0 0; }
.footer-col h4 { color: white; font-size: 14px; letter-spacing: .02em; margin-bottom: 16px; }
.footer-links { display: grid; gap: 10px; font-size: 14px; }
.footer-links a { color: #9eacbc; transition: color .2s ease; }
.footer-links a:hover { color: var(--cyan-400); }
.footer-bottom { border-top: 1px solid #162232; min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 12.5px; color: #8595a7; }
.developer-credit a { color: #c9d5e1; font-weight: 800; transition: color .2s ease; }
.developer-credit a:hover { color: var(--cyan-400); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

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

@media (max-width: 1020px) {
  .topbar-social { display: none; }
  .menu-toggle { display: inline-flex; }
  .site-nav { position: fixed; top: 117px; left: 20px; right: 20px; display: grid; gap: 4px; background: #ffffff !important; border: 1px solid var(--line); box-shadow: var(--shadow-lg); padding: 12px; border-radius: 18px; isolation: isolate; opacity: 0; transform: translateY(-12px); visibility: hidden; transition: .2s ease; }
  .site-nav.open { opacity: 1; transform: none; visibility: visible; }
  .site-nav a { padding: 13px 14px; }
  .nav-cta { margin: 4px 0 0; text-align: center; }
  .hero-inner { grid-template-columns: 1fr; min-height: auto; padding: 72px 0 86px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { max-width: 720px; }
  .hero-image img { min-height: 390px; }
  .hero-card { left: 22px; }
  .split { gap: 44px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1.2fr .8fr; }
  .footer-col:last-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .topbar { display: none; }
  .header-inner { min-height: 70px; }
  .site-nav { top: 82px; left: 14px; right: 14px; }
  .brand { min-width: 0; }
  .brand img { width: 58px; height: 44px; }
  .brand-copy strong { font-size: 15px; }
  .section { padding: 72px 0; }
  .section-heading { margin-bottom: 30px; }
  .hero-inner { padding: 58px 0 72px; gap: 40px; }
  .hero p { font-size: 16px; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { gap: 12px 18px; }
  .hero-image img { min-height: 320px; }
  .hero-card { position: relative; left: auto; bottom: auto; margin: -28px 14px 0; width: auto; }
  .grid-3, .services-grid { grid-template-columns: 1fr; }
  .feature-card, .service-card { padding: 24px; }
  .split, .contact-layout { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: initial; }
  .split-media img { aspect-ratio: 1.15 / 1; }
  .split-badge { right: 12px; bottom: 12px; }
  .cta-box { padding: 36px 26px; display: block; }
  .cta-box .btn { margin-top: 24px; width: 100%; }
  .page-hero { min-height: 330px; }
  .page-hero-content { padding: 68px 0 48px; }
  .contact-panel, .contact-form-card { padding: 28px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .footer-col:last-child { grid-column: auto; }
  .footer-bottom { padding: 20px 0; min-height: 0; flex-direction: column; align-items: flex-start; }
}


/* New conversion-focused sections */
.trust-strip-wrap { padding-top: 0; margin-top: -42px; position: relative; z-index: 2; }
.trust-strip { background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 24px; }
.trust-strip article { padding: 10px 12px; }
.trust-strip strong { display: block; font-size: 18px; margin-bottom: 8px; color: var(--navy-950); }
.trust-strip p { margin: 0; font-size: 14px; }
.services-detailed .service-card { min-height: 0; }
.services-detailed .service-card ul { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.services-detailed .service-card li { background: #eef8fe; color: var(--blue-700); border: 1px solid #d9effb; padding: 7px 10px; border-radius: 999px; font-size: 12px; font-weight: 800; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.process-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.process-step { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; background: linear-gradient(135deg, #e9f7ff, #f5fbff); color: var(--blue-700); font-size: 18px; font-weight: 900; border: 1px solid #d9effb; margin-bottom: 18px; }
.proof-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 50px; align-items: center; }
.proof-list { display: grid; gap: 16px; margin-top: 26px; }
.proof-list article { background: white; border: 1px solid var(--line); border-radius: 18px; padding: 18px 20px; box-shadow: 0 10px 24px rgba(7,17,31,.06); }
.proof-list strong { display: block; margin-bottom: 6px; color: var(--navy-950); }
.proof-list p { margin: 0; }
.proof-visual img { width: 100%; aspect-ratio: 1.12 / 1; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.contact-panel-cta { margin-top: 22px; width: 100%; }
.footer-socials { display: flex; gap: 14px; margin-top: 16px; flex-wrap: wrap; }
.footer-socials a { color: #9eacbc; font-size: 14px; font-weight: 700; }
.footer-socials a:hover { color: var(--cyan-400); }
.footer-service-area { margin-top: 8px !important; color: #aab7c5 !important; font-weight: 700; }
.whatsapp-float { position: fixed; right: 18px; bottom: 18px; z-index: 120; min-height: 56px; display: inline-flex; align-items: center; gap: 12px; padding: 0 18px 0 14px; border-radius: 999px; color: white; background: linear-gradient(135deg, #18b85f, #25d366); box-shadow: 0 18px 36px rgba(15, 122, 60, .28); font-weight: 800; }
.whatsapp-float .wa-icon { width: 28px; height: 28px; flex: 0 0 28px; }
.whatsapp-float:hover { transform: translateY(-2px); }
@media (max-width: 1020px) {
  .trust-strip { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .trust-strip-wrap { margin-top: -28px; }
  .process-grid { grid-template-columns: 1fr; }
  .whatsapp-float { right: 14px; bottom: calc(14px + env(safe-area-inset-bottom)); width: 56px; height: 56px; padding: 0; justify-content: center; }
  .whatsapp-float span { display: none; }
}

/* Unified icon system */
.icon-svg { width: 24px; height: 24px; display: block; }
.icon-tile .icon-svg { width: 25px; height: 25px; }
.mini-icon .icon-svg { width: 20px; height: 20px; }
.process-step { position: relative; }
.process-step .icon-svg { width: 23px; height: 23px; }
.process-step span { position: absolute; right: -6px; top: -7px; min-width: 21px; height: 21px; padding: 0 5px; display: grid; place-items: center; border-radius: 999px; background: var(--blue-700); color: white; font-size: 9px; font-weight: 900; line-height: 1; box-shadow: 0 4px 10px rgba(0,110,183,.22); }
.nav-cta-icon { width: 20px; height: 20px; }
:focus-visible { outline: 3px solid rgba(32,165,237,.55); outline-offset: 3px; }
@media (max-width: 760px) {
  .site-nav .nav-cta { width: 100%; height: 48px; margin-top: 6px; }
  .site-nav .nav-cta::after { content: "Área do cliente"; margin-left: 9px; font-size: 14px; font-weight: 800; }
  .hero h1 { font-size: clamp(38px, 11vw, 52px); }
  .hero-trust { display: grid; grid-template-columns: 1fr; }
  .contact-item { align-items: center; }
  .footer-brand .brand { max-width: 100%; }
}
@media (max-width: 1020px) {
  .site-header { background: #ffffff; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .site-nav { background: #ffffff !important; opacity: 0; }
  .site-nav.open { opacity: 1; }
}
