:root {
  --page-bg: #f7f8fb;
  --surface: #ffffff;
  --surface-soft: #f1f4f8;
  --ink: #111827;
  --muted: #5f6b7a;
  --line: rgba(17, 24, 39, .1);
  --brand: #1463ff;
  --brand-2: #6d4aff;
  --accent: #10b981;
  --danger: #e24a4a;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(24, 39, 75, .12);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--page-bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; top: -80px; left: 16px; z-index: 1000; padding: 12px 16px; background: var(--ink); color: #fff; border-radius: 10px; }
.skip-link:focus { top: 16px; }
.visually-hidden { position:absolute!important; width:1px!important; height:1px!important; padding:0!important; margin:-1px!important; overflow:hidden!important; clip:rect(0,0,0,0)!important; white-space:nowrap!important; border:0!important; }

.site-header { position: sticky; top: 0; z-index: 80; border-bottom: 1px solid transparent; background: rgba(247,248,251,.82); backdrop-filter: blur(18px); transition: border-color .25s ease, box-shadow .25s ease; }
body.menu-open .site-header { z-index: 10000 !important; }
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 10px 30px rgba(17,24,39,.06); }
.nav { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 850; letter-spacing: -.04em; font-size: 1.18rem; }
.brand-mark { width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg,var(--brand),var(--brand-2)); box-shadow: 0 8px 24px color-mix(in srgb,var(--brand) 28%,transparent); }
.brand-official img { display:block; width:168px; height:auto; }
.brand-sanweb img { display: block; width: 142px; height: auto; }
.brand small { display: block; color: var(--muted); font-size: .65rem; font-weight: 650; letter-spacing: 0; line-height: 1; }
.nav-links-desktop { display: flex; align-items: center; gap: 28px; color: #354052; font-size: .9rem; font-weight: 650; }
.nav-links-desktop a:not(.btn):hover { color: var(--brand); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); color: var(--ink); font-size: 1.3rem; }

.btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 12px 20px; border: 1px solid transparent; border-radius: 14px; font-weight: 500; line-height: 1.1; transition: transform .25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .25s ease, background .25s ease, border-color .25s ease; will-change: transform; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(0) scale(0.97); }
.btn-primary { color: #fff; background: linear-gradient(135deg,var(--brand),var(--brand-2)); box-shadow: 0 12px 28px color-mix(in srgb,var(--brand) 25%,transparent); }
.btn-primary:hover { box-shadow: 0 16px 36px color-mix(in srgb,var(--brand) 38%,transparent); }
.btn-secondary { background: var(--surface); border-color: var(--line); }
.btn-secondary:hover { border-color: color-mix(in srgb,var(--brand) 30%,transparent); }
.btn-whatsapp { color: #073c2d; background: #c9f8e6; }
.btn-lg { min-height: 56px; padding: 16px 25px; border-radius: 16px; }

.hero { position: relative; overflow: hidden; padding: 78px 0 58px; }
.hero::before { content: ""; position: absolute; width: 660px; height: 660px; right: -300px; top: -300px; border-radius: 50%; background: radial-gradient(circle,color-mix(in srgb,var(--brand) 20%,transparent),transparent 68%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: minmax(0,1.04fr) minmax(340px,.96fr); gap: 68px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 18px; padding: 7px 12px; border: 1px solid color-mix(in srgb,var(--brand) 20%,transparent); border-radius: 999px; color: var(--brand); background: color-mix(in srgb,var(--brand) 7%,white); font-size: .78rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px color-mix(in srgb,var(--accent) 15%,transparent); }
h1,h2,h3 { margin: 0; line-height: 1.08; letter-spacing: -.045em; will-change: transform, opacity; }
h1 { max-width: 820px; font-size: clamp(2.55rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem,4vw,3.4rem); }
h3 { font-size: 1.2rem; }

@keyframes gradientShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.gradient-text {
  background: linear-gradient(120deg,var(--brand),var(--brand-2),#45f3c1,var(--brand));
  background-size: 280% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--brand);
  animation: gradientShimmer 6s ease infinite;
}

/* Animações de entrada no Hero (Page Load) */
@keyframes heroFadeUp {
  0% { opacity: 0; transform: translateY(32px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes heroStageIn {
  0% { opacity: 0; transform: translateX(45px) scale(0.93); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes heroBadgeIn {
  0% { opacity: 0; transform: scale(0.75) translateY(20px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.hero-content .eyebrow { animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both; }
.hero-content h1 { animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both; }
.hero-content .hero-copy { animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both; }
.hero-content .hero-actions { animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both; }
.hero-content .trust-row { animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both; }
.product-stage { animation: heroStageIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both; }
.float-card { animation: heroBadgeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both, badgeFloat 4.8s ease-in-out infinite 1.7s; }

.hero-copy { max-width: 640px; margin: 23px 0 0; color: var(--muted); font-size: clamp(1rem,2vw,1.18rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 11px 21px; margin-top: 25px; color: var(--muted); font-size: .82rem; font-weight: 700; }
.trust-row span::before { content: "✓"; margin-right: 7px; color: var(--accent); }

.product-stage { position: relative; min-height: 470px; display: grid; place-items: center; }
.visual-frame { overflow:hidden; border:1px solid rgba(71,190,255,.24); border-radius:25px; background:#050a11; box-shadow:0 35px 100px rgba(0,0,0,.58),0 0 75px rgba(0,126,255,.11); }
.visual-frame img { width:100%; height:100%; object-fit:cover; }
.visual-frame-hero { width:min(100%,590px); aspect-ratio:3/2; transform:rotate(1.2deg); }
.device { position: relative; width: min(100%,540px); padding: 12px; border: 1px solid rgba(255,255,255,.8); border-radius: 28px; background: #151923; box-shadow: var(--shadow); transform: rotate(1.5deg); }
.device-top { height: 23px; display: flex; align-items: center; gap: 6px; padding: 0 5px; }
.device-top i { width: 7px; height: 7px; border-radius: 50%; background: #465063; }
.device-screen { overflow: hidden; aspect-ratio: 16/10; border-radius: 17px; background: #fff; }
.device-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.phone { position: absolute; right: -12px; bottom: 2px; width: 145px; padding: 7px; border-radius: 25px; background: #11151d; box-shadow: 0 20px 55px rgba(15,23,42,.3); transform: rotate(-5deg); }
.phone-screen { overflow: hidden; aspect-ratio: 9/18; border-radius: 19px; background: var(--surface-soft); }
.phone-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.float-card { position: absolute; left: -24px; bottom: 34px; max-width: 205px; padding: 14px 16px; border: 1px solid rgba(255,255,255,.82); border-radius: 16px; background: rgba(255,255,255,.92); box-shadow: 0 16px 45px rgba(17,24,39,.13); backdrop-filter: blur(12px); font-size: .78rem; font-weight: 500; }
.float-card strong { display: block; color: var(--brand); font-size: 1.35rem; }

.signal-bar { padding: 18px 0; border-block: 1px solid var(--line); background: var(--surface); }
.signals { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.signal { display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--muted); font-size: .82rem; font-weight: 750; text-align: center; }
.signal b { color: var(--brand); font-size: 1.15rem; }

.section { padding: 100px 0; }
.section-dark { color: #fff; background: #0d1220; }
.section-soft { background: var(--surface-soft); }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading p { margin: 17px 0 0; color: var(--muted); font-size: 1.05rem; }
.section-dark .section-heading p { color: #a8b2c4; }

.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.compare-card { padding: clamp(24px,4vw,40px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.compare-card.negative { background: #fffafa; }
.compare-card.positive { border-color: color-mix(in srgb,var(--brand) 30%,transparent); background: linear-gradient(145deg,#fff,color-mix(in srgb,var(--brand) 7%,white)); box-shadow: var(--shadow); }
.compare-label { display: inline-flex; margin-bottom: 19px; padding: 6px 10px; border-radius: 9px; background: #feecec; color: #b52b2b; font-size: .73rem; font-weight: 850; text-transform: uppercase; }
.positive .compare-label { color: #086644; background: #dff8ee; }
.check-list { list-style: none; margin: 24px 0 0; padding: 0; }
.check-list li { position: relative; padding: 11px 0 11px 31px; border-bottom: 1px solid var(--line); color: var(--muted); }
.check-list li:last-child { border-bottom: 0; }
.check-list li::before { content: "×"; position: absolute; left: 2px; color: var(--danger); font-size: 1.3rem; font-weight: 900; }
.positive .check-list li::before { content: "✓"; color: var(--accent); }
.price-card .check-list li::before { content: "✓"; color: var(--accent); }

.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.card { min-height: 100%; padding: 27px; border: 1px solid var(--line); border-radius: 19px; background: var(--surface); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.card:hover { transform: translateY(-5px); border-color: color-mix(in srgb,var(--brand) 28%,transparent); box-shadow: 0 20px 45px rgba(30,45,75,.09); }
.card-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 21px; border-radius: 14px; color: var(--brand); background: color-mix(in srgb,var(--brand) 10%,white); font-size: 1.35rem; font-weight: 900; }
.card p { margin: 12px 0 0; color: var(--muted); font-size: .92rem; }
.wide-visual { overflow:hidden; margin:0 0 30px; border:1px solid var(--line); border-radius:24px; background:#060b12; box-shadow:var(--shadow); }
.wide-visual img { width:100%; height:clamp(300px,42vw,540px); object-fit:cover; }
.wide-visual-segments img { height:clamp(250px,34vw,430px); }

.segment-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.segment-card { padding:28px; border:1px solid var(--line); border-radius:20px; background:var(--surface); transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease; }
.segment-card:hover { transform:translateY(-5px); border-color:color-mix(in srgb,var(--brand) 36%,transparent); box-shadow:0 24px 65px rgba(0,0,0,.28); }
.segment-icon { width:46px; height:46px; display:grid; place-items:center; margin-bottom:20px; border:1px solid rgba(0,168,255,.2); border-radius:14px; color:#78ddff; background:rgba(0,168,255,.09); font-size:1.25rem; font-weight:700; }
.segment-card p { margin:12px 0 17px; color:var(--muted); font-size:.9rem; }
.segment-card ul { display:grid; gap:8px; margin:0; padding:0; list-style:none; color:#c3cfdd; font-size:.84rem; }
.segment-card li { position:relative; padding-left:19px; }
.segment-card li::before { content:"✓"; position:absolute; left:0; color:var(--accent); }
.segment-fit { display:grid; grid-template-columns:auto minmax(260px,1fr) auto; align-items:center; gap:22px; margin-top:22px; padding:22px 24px; border:1px solid rgba(0,168,255,.25); border-radius:18px; background:linear-gradient(115deg,rgba(0,126,255,.12),rgba(0,200,255,.04)); }
.segment-fit strong { color:#76dcff; }
.segment-fit span { color:var(--muted); font-size:.88rem; }

.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; counter-reset: steps; }
.step { position: relative; padding: 31px; border: 1px solid rgba(255,255,255,.1); border-radius: 20px; background: rgba(255,255,255,.045); counter-increment: steps; }
.step::before { content: "0" counter(steps); display: block; margin-bottom: 44px; color: color-mix(in srgb,var(--brand) 82%,white); font-size: 1.45rem; font-weight: 900; }
.step p { color: #aab3c4; }

.showcase { display: grid; grid-template-columns: minmax(0,1fr) minmax(300px,.8fr); gap: 50px; align-items: center; }
.showcase-copy p { color: var(--muted); }
.showcase-visual { align-self:stretch; min-height:480px; overflow:hidden; display:grid; place-items:center; margin:0; border:1px solid rgba(0,168,255,.22); border-radius:24px; background:#070c13; box-shadow:var(--shadow); }
.showcase-visual img { width:100%; height:100%; object-fit:contain; }
.feature-lines { display: grid; gap: 12px; margin-top: 25px; }
.feature-line { display: flex; gap: 13px; align-items: flex-start; padding: 14px; border-radius: 14px; background: var(--surface); border: 1px solid var(--line); }
.feature-line b:first-child { color: var(--accent); }

.pricing { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 29px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); }
.price-card.featured { border: 2px solid var(--brand); box-shadow: var(--shadow); transform: translateY(-10px); }
.popular { position: absolute; top: -14px; right: 22px; padding: 7px 12px; border-radius: 999px; color: #fff; background: var(--brand); font-size: .7rem; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; }
.price-name { color: var(--muted); font-size: .82rem; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }
.price-from { display: inline-block; font-size: .74rem; font-weight: 800; color: #4ef0b8; text-transform: uppercase; letter-spacing: .05em; margin-top: 10px; margin-bottom: -8px; }
.price { margin: 14px 0 4px; font-size: clamp(2.2rem,4vw,3.25rem); font-weight: 900; letter-spacing: -.055em; line-height: 1; }
.price small { font-size: .9rem; letter-spacing: 0; color: var(--muted); }
.price-note { min-height: 45px; color: var(--muted); font-size: .82rem; }
.price-card .check-list { flex: 1; }
.price-card .btn { margin-top: 22px; }

.faq { display: grid; gap: 10px; max-width: 850px; margin: 0 auto; }
.faq details { border: 1px solid var(--line); border-radius: 15px; background: var(--surface); }
.faq summary { position: relative; padding: 20px 52px 20px 21px; cursor: pointer; list-style: none; font-weight: 820; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 21px; top: 17px; color: var(--brand); font-size: 1.35rem; }
.faq details[open] summary::after { content: "−"; }
.faq p { margin: 0; padding: 0 21px 21px; color: var(--muted); }

.final-cta { padding: 44px; border-radius: 28px; color: #fff; background: linear-gradient(125deg,#0e1629,var(--brand),var(--brand-2)); box-shadow: var(--shadow); }
.final-cta-grid { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.final-cta p { margin: 13px 0 0; color: rgba(255,255,255,.76); }
.final-cta .btn { flex-shrink: 0; color: var(--ink); background: #fff; }

.site-footer { padding: 40px 0; color: var(--muted); }
.footer-row { display: flex; justify-content: space-between; align-items: center; gap: 24px; font-size: .82rem; }
.footer-geo { margin: 6px 0 0; font-size: .78rem; color: var(--muted); }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }

.reveal { will-change: transform, opacity; }

/* Oculta controles injetados pelo SWCore (lightbox, day, tooltip) que não possuem CSS nesta landing page */
.sw-lightbox-ovl, .sw-day-fab, .sw-tooltip {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Animação suave e bidirecional de entrada e reanimação para títulos e seções */
.sw-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}
.sw-reveal.is-in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Levitação sutil do painel no hero */
@keyframes heroStageFloat {
  0%, 100% { transform: rotate(1.2deg) translateY(0); }
  50% { transform: rotate(1.2deg) translateY(-8px); }
}
.visual-frame-hero {
  animation: heroStageFloat 6s ease-in-out infinite;
  will-change: transform;
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.float-card {
  animation: badgeFloat 4.8s ease-in-out infinite 1s;
  will-change: transform;
}

/* AcheMe */
.theme-acheme { --brand:#ef8a35; --brand-2:#c94f88; --accent:#18b980; --page-bg:#fffaf6; --surface-soft:#f9f0ea; }
.theme-acheme .hero::after { content:""; position:absolute; left:-120px; bottom:-200px; width:420px; height:420px; border-radius:50%; background:radial-gradient(circle,rgba(239,138,53,.14),transparent 70%); }

/* SWSIS — painel tecnológico noturno */
.theme-swsis {
  --brand:#087cff;
  --brand-2:#00c8ff;
  --accent:#27d6a0;
  --page-bg:#070b13;
  --surface:#101722;
  --surface-soft:#0b111b;
  --ink:#f5f8fd;
  --muted:#96a6ba;
  --line:rgba(158,190,225,.14);
  --shadow:0 30px 90px rgba(0,0,0,.46);
  color-scheme:dark;
}
.theme-swsis .site-header { background:rgba(7,11,19,.8); }
.theme-swsis .site-header.is-scrolled { box-shadow:0 16px 45px rgba(0,0,0,.3); }
.theme-swsis .nav-links { color:#c1cede; }
.theme-swsis .hero { background:radial-gradient(circle at 78% 24%,rgba(0,168,255,.16),transparent 35%),linear-gradient(180deg,#070b13,#09111d); }
.theme-swsis .eyebrow { color:#75dfff; border-color:rgba(0,200,255,.26); background:rgba(0,200,255,.08); }
.theme-swsis .float-card { color:#dce8f4; border-color:rgba(255,255,255,.13); background:rgba(12,21,33,.9); box-shadow:0 20px 55px rgba(0,0,0,.45); }
.theme-swsis .card-icon { background:rgba(0,168,255,.1); border:1px solid rgba(0,200,255,.2); color:#00c8ff; }
.card-icon svg { width:24px; height:24px; stroke:currentColor; }

/* Preços com destaque mensal e confiança */
.price-monthly { margin:8px 0 2px; color:var(--accent); font-size:.95rem; font-weight:600; }
.price-monthly strong { font-size:1.18rem; font-weight:850; color:#4ef0b8; }
.pricing-trust { display:flex; flex-wrap:wrap; justify-content:center; gap:14px 26px; margin-top:34px; color:var(--muted); font-size:.86rem; font-weight:650; }
.pricing-trust span { display:inline-flex; align-items:center; gap:7px; }
.pricing-trust span::before { content:"✓"; color:var(--accent); font-weight:900; }

/* Botão Flutuante de WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(37,211,102,.45), 0 4px 14px rgba(0,0,0,.35);
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
}
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(37,211,102,.45);
  z-index: -1;
  animation: whatsappSonar 2.6s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  pointer-events: none;
}
@keyframes whatsappSonar {
  0% { transform: scale(0.95); opacity: 0.85; }
  100% { transform: scale(1.48); opacity: 0; }
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 16px 36px rgba(37,211,102,.6), 0 6px 18px rgba(0,0,0,.4);
  color: #ffffff;
}
.whatsapp-float svg { width: 32px; height: 32px; fill: currentColor; }
@media (max-width: 640px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
}
.theme-swsis .signal-bar { background:#0a111b; }
.theme-swsis .section-dark { background:#05080e; }
.theme-swsis .compare-card.negative { background:#12171f; }
.theme-swsis .compare-card.positive { border-color:rgba(0,168,255,.34); background:linear-gradient(145deg,#101926,#0c2233); }
.theme-swsis .compare-label { color:#ff9b9b; background:rgba(226,74,74,.12); }
.theme-swsis .positive .compare-label { color:#73e9be; background:rgba(39,214,160,.1); }
.theme-swsis .card-icon { background:rgba(0,168,255,.1); }
.theme-swsis .card:hover { box-shadow:0 22px 60px rgba(0,0,0,.34),0 0 0 1px rgba(0,168,255,.08); }
.theme-swsis .price-card.featured { background:linear-gradient(180deg,#102438,#101722); box-shadow:0 30px 90px rgba(0,0,0,.5),0 0 65px rgba(0,168,255,.1); }
.theme-swsis .faq details { background:#0f1722; }
.theme-swsis .final-cta { background:radial-gradient(circle at 78% 0,rgba(0,205,255,.24),transparent 35%),linear-gradient(125deg,#09233a,#075ed1); }
.theme-swsis .final-cta .btn { color:#07101c; background:#fff; }
.theme-swsis .site-footer { border-top:1px solid var(--line); background:#05080e; }
.dashboard { overflow:hidden; border:1px solid rgba(255,255,255,.6); border-radius:24px; background:#e9eef6; box-shadow:var(--shadow); transform:rotate(1.5deg); }
.dash-top { height:48px; display:flex; align-items:center; gap:8px; padding:0 16px; background:#fff; }
.dash-top i { width:8px; height:8px; border-radius:50%; background:#d0d7e4; }
.dash-body { min-height:390px; display:grid; grid-template-columns:62px 1fr; }
.dash-side { padding:18px 12px; background:#125ebd; }
.dash-side i { display:block; height:27px; margin-bottom:14px; border-radius:7px; background:rgba(255,255,255,.2); }
.dash-main { padding:25px; }
.dash-title { width:36%; height:16px; margin-bottom:22px; border-radius:6px; background:#243047; }
.dash-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:11px; }
.dash-stat { height:83px; padding:13px; border-radius:13px; background:#fff; }
.dash-stat::before,.dash-stat::after { content:""; display:block; height:8px; border-radius:8px; background:#dce3ee; }
.dash-stat::after { width:60%; height:17px; margin-top:14px; background:#1766d3; }
.dash-content { display:grid; grid-template-columns:1.35fr .65fr; gap:11px; margin-top:11px; }
.dash-chart,.dash-list { height:205px; border-radius:14px; background:#fff; }
.dash-chart { position:relative; overflow:hidden; background:linear-gradient(180deg,#fff 0 65%,#eef5ff); }
.dash-chart::after { content:""; position:absolute; inset:60px 25px 30px; border-bottom:4px solid #1766d3; transform:skewY(-8deg); box-shadow:42px -17px 0 -1px #1766d3,84px 10px 0 -1px #1766d3; }
.dash-list { padding:19px; }
.dash-list i { display:block; height:10px; margin-bottom:15px; border-radius:7px; background:#e0e6ef; }

.theme-swsis .dashboard { border-color:rgba(61,185,255,.24); background:#0b1421; box-shadow:0 35px 100px rgba(0,0,0,.58),0 0 75px rgba(0,126,255,.12); }
.theme-swsis .dash-top { background:#080e17; }
.theme-swsis .dash-top i { background:#32445d; }
.theme-swsis .dash-side { background:linear-gradient(180deg,#075ed1,#073b86); }
.theme-swsis .dash-title { background:#758ba5; }
.theme-swsis .dash-stat,.theme-swsis .dash-chart,.theme-swsis .dash-list { background:#121d2b; }
.theme-swsis .dash-stat::before,.theme-swsis .dash-list i { background:#2a394c; }
.theme-swsis .dash-stat::after { background:#078cff; }
.theme-swsis .dash-chart { background:linear-gradient(180deg,#121d2b 0 65%,#0b2238); }
.theme-swsis .dash-chart::after { border-color:#0ba5ff; box-shadow:42px -17px 0 -1px #0ba5ff,84px 10px 0 -1px #0ba5ff; }

/* Off-canvas Drawer Navigation */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.nav-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.nav-drawer {
  display: none;
}

@media (max-width: 920px) {
  .nav-links-desktop {
    display: none !important;
  }

  .nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 86vw);
    height: 100vh;
    height: 100dvh;
    z-index: 10000;
    padding: 24px 22px 36px;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    background: #0d1522 !important;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: -15px 0 60px rgba(0, 0, 0, 0.85);
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.38s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-drawer.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-drawer-header .brand img {
    height: 32px;
    width: auto;
  }
  .nav-close {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 1.3rem;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
  }
  .nav-close:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: scale(1.08);
  }

  .nav-drawer-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .nav-drawer-links a {
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #f1f5f9 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-drawer-links a::after {
    content: "→";
    opacity: 0.4;
    transform: translateX(-4px);
    transition: opacity 0.2s, transform 0.2s;
    color: var(--brand-2);
    font-size: 1.15rem;
  }
  .nav-drawer-links a:hover, .nav-drawer-links a:active {
    background: rgba(0, 200, 255, 0.1);
    color: #00c8ff !important;
    transform: translateX(4px);
  }
  .nav-drawer-links a:hover::after, .nav-drawer-links a:active::after {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-drawer-footer {
    margin-top: auto;
    padding-top: 24px;
  }
  .nav-drawer-footer .btn {
    width: 100%;
    min-height: 52px;
  }

  .menu-toggle { display:grid; place-items:center; cursor: pointer; }
  .hero-grid,.showcase { grid-template-columns:1fr; }
  .showcase-visual { min-height:0; aspect-ratio:3/2; }
  .showcase-visual img { height:auto; }
  .hero { padding-top:55px; }
  .hero-grid { gap:45px; }
  .product-stage { min-height:390px; max-width:650px; width:100%; margin:auto; }
  .visual-frame-hero { width:min(100%,600px); }
  .cards,.pricing,.segment-grid { grid-template-columns:repeat(2,1fr); }
  .segment-fit { grid-template-columns:1fr; }
  .price-card.featured { transform:none; }
}

@media (max-width: 640px) {
  .container { width:min(calc(100% - 48px),var(--container)); }
  .nav { min-height:66px; }
  .brand small { display:none; }
  .hero { padding:42px 0; }
  h1 { font-size:clamp(2.35rem,12vw,3.5rem); }
  .hero-actions .btn { width:100%; }
  .trust-row { display:grid; grid-template-columns:1fr 1fr; }
  .product-stage { min-height:300px; padding-right:22px; }
  .wide-visual { border-radius:17px; }
  .wide-visual img { height:260px; }
  .wide-visual-segments img { height:210px; }
  .phone { width:103px; right:0; }
  .float-card { left:4px; bottom:-10px; }
  .signals { grid-template-columns:1fr 1fr; }
  .signal { justify-content:flex-start; }
  .section { padding:72px 0; }
  .section-heading { margin-bottom:34px; }
  .compare,.cards,.steps,.pricing,.segment-grid { grid-template-columns:1fr; }
  .cards { gap:12px; }
  .step::before { margin-bottom:26px; }
  .final-cta { padding:30px 23px; }
  .final-cta-grid,.footer-row { align-items:flex-start; flex-direction:column; }
  .final-cta .btn { width:100%; }
  .dash-body { min-height:280px; grid-template-columns:46px 1fr; }
  .dash-main { padding:15px; }
  .dash-stats { grid-template-columns:1fr 1fr; }
  .dash-stat:last-child { display:none; }
  .dash-content { grid-template-columns:1fr; }
  .dash-list { display:none; }
  .dash-chart { height:145px; }
}

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