:root {
  --ink: #08121c;
  --ink-2: #102333;
  --ink-3: #17364a;
  --cyan: #38c2df;
  --cyan-2: #79e3f2;
  --cyan-dark: #1495b6;
  --paper: #f5f8fa;
  --white: #ffffff;
  --muted: #657684;
  --line: rgba(8, 18, 28, .11);
  --line-light: rgba(255, 255, 255, .12);
  --shadow: 0 24px 70px rgba(8, 18, 28, .12);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 34px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 110px 0; position: relative; }
.section-sm { padding: 72px 0; }
.section-dark { color: var(--white); background: var(--ink); }
.section-muted { background: #edf3f6; }

.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 9999;
  background: var(--white); color: var(--ink); padding: 12px 16px; border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.scroll-progress {
  position: fixed; inset: 0 auto auto 0; z-index: 1000; width: 0; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-2));
  box-shadow: 0 0 18px rgba(56, 194, 223, .7);
}

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 900;
  transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}
.site-header.scrolled {
  background: rgba(8, 18, 28, .88);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 35px rgba(0,0,0,.18);
}
.nav-wrap {
  width: var(--container); height: 82px; margin: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--white); min-width: 0; }
.brand-mark {
  width: 49px; height: 49px; border-radius: 15px; object-fit: contain;
  background: var(--white); padding: 5px; box-shadow: 0 8px 25px rgba(0,0,0,.16);
}
.brand-copy { line-height: 1.1; }
.brand-copy strong { display: block; font-size: .94rem; letter-spacing: -.02em; }
.brand-copy span { color: #9eb4c2; font-size: .72rem; }
.nav-links { display: flex; align-items: center; gap: 28px; color: #d9e5eb; font-size: .9rem; font-weight: 700; }
.nav-links a { position: relative; }
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px;
  background: var(--cyan); transition: right .25s ease;
}
.nav-links a:not(.btn):hover::after, .nav-links a.active::after { right: 0; }
.menu-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line-light);
  border-radius: 13px; background: rgba(255,255,255,.06); color: white;
}
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; background: currentColor; transition: .25s ease; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 22px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 800; font-size: .9rem; letter-spacing: -.01em; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--cyan); color: #06131c; box-shadow: 0 13px 35px rgba(56,194,223,.28); }
.btn-primary:hover { background: var(--cyan-2); box-shadow: 0 16px 42px rgba(56,194,223,.38); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-outline { color: var(--white); border-color: rgba(255,255,255,.26); background: rgba(255,255,255,.04); }
.btn-dark { color: var(--white); background: var(--ink); }
.btn-link { padding-inline: 0; min-height: auto; color: var(--cyan-dark); border-radius: 0; }
.btn-icon { width: 18px; height: 18px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 18px;
  color: var(--cyan-dark); font-size: .76rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: currentColor; }
.section-dark .eyebrow, .hero .eyebrow { color: var(--cyan-2); }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading h2, .display-title {
  margin: 0 0 18px; font-size: clamp(2.25rem, 5vw, 4.7rem); line-height: .99; letter-spacing: -.055em;
}
.section-heading h2 { font-size: clamp(2rem, 4vw, 3.7rem); }
.section-heading p { margin: 0; color: var(--muted); font-size: 1.04rem; max-width: 680px; }
.section-dark .section-heading p { color: #a9bdc9; }

.hero {
  min-height: 700px; padding: 122px 0 58px; color: var(--white); background:
    radial-gradient(circle at 78% 18%, rgba(56,194,223,.17), transparent 28%),
    radial-gradient(circle at 16% 78%, rgba(56,194,223,.08), transparent 24%),
    var(--ink);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .2; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 54px 54px; mask-image: linear-gradient(to bottom, black, transparent 88%);
}
.hero-orb {
  position: absolute; width: 500px; height: 500px; right: -150px; top: 80px; border-radius: 50%;
  border: 1px solid rgba(121,227,242,.18); box-shadow: inset 0 0 80px rgba(56,194,223,.04);
}
.hero-orb::before, .hero-orb::after {
  content: ""; position: absolute; border-radius: inherit; inset: 58px; border: 1px dashed rgba(121,227,242,.2);
}
.hero-orb::after { inset: 122px; border-style: solid; }
.hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 44px; align-items: center; position: relative; z-index: 2; }
.hero-copy { min-width: 0; }
.hero-copy h1 { margin: 0; font-size: clamp(2.8rem, 4.25vw, 4.25rem); line-height: 1.01; letter-spacing: -.055em; max-width: 700px; }
.hero-title-mask {
  display: block;
  overflow: hidden;
  padding: .08em .07em .12em .02em;
  margin: -.08em -.07em -.12em -.02em;
}
.hero-title-line { display: block; white-space: nowrap; }
.hero-copy h1 .accent { color: var(--cyan-2); }
.hero-lead { max-width: 650px; margin: 23px 0 0; color: #b6c7d1; font-size: clamp(.98rem, 1.35vw, 1.08rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 28px; }
.hero-options { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.hero-option { border: 1px solid rgba(255,255,255,.12); color: #c8d8e0; background: rgba(255,255,255,.04); padding: 9px 13px; border-radius: 999px; font-size: .77rem; font-weight: 700; }
.hero-option:hover { border-color: var(--cyan); color: var(--white); background: rgba(56,194,223,.08); }

.hero-visual { position: relative; min-height: 440px; }
.hero-image-frame {
  position: absolute; inset: 22px 0 28px 34px; border-radius: 30px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.12); box-shadow: 0 35px 90px rgba(0,0,0,.38);
  background: #152738;
}
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; opacity: .72; filter: saturate(.7) contrast(1.08); transform: scale(1.04); }
.hero-image-frame::after { content:""; position:absolute; inset:0; background: linear-gradient(160deg, rgba(8,18,28,.08), rgba(8,18,28,.72)); }
.floating-panel {
  position: absolute; z-index: 3; padding: 17px; border-radius: 18px;
  background: rgba(11,27,40,.83); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 22px 55px rgba(0,0,0,.3);
}
.floating-panel strong { display:block; font-size:.92rem; }
.floating-panel small { display:block; color:#9eb4c2; margin-top:3px; }
.panel-status { left: 0; top: 0; width: 215px; }
.panel-status::before { content:""; display:inline-block; width:9px; height:9px; border-radius:50%; margin-right:8px; background:#65e198; box-shadow:0 0 18px #65e198; }
.panel-flow { right: -8px; bottom: 0; width: 238px; }
.flow-list { display:grid; gap:10px; margin-top:13px; }
.flow-item { display:flex; align-items:center; gap:10px; color:#c9d7de; font-size:.8rem; }
.flow-num { display:grid; place-items:center; width:28px; height:28px; border-radius:9px; background:rgba(56,194,223,.15); color:var(--cyan-2); font-weight:900; }
.hero-wordmark {
  position:absolute; left:-20px; bottom:72px; z-index:2; writing-mode:vertical-rl; transform:rotate(180deg);
  color:rgba(255,255,255,.18); font-weight:900; letter-spacing:.28em; font-size:.72rem;
}

.trust-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-row { min-height: 86px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.trust-item { padding: 20px 28px; border-right: 1px solid var(--line); }
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display:block; font-size:.88rem; }
.trust-item span { color:var(--muted); font-size:.78rem; }

.problem-grid { display:grid; grid-template-columns:repeat(12,1fr); gap:18px; }
.problem-card {
  position:relative; min-height:270px; padding:28px; border-radius:var(--radius); overflow:hidden;
  background:var(--white); border:1px solid var(--line); box-shadow:0 12px 32px rgba(8,18,28,.05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.problem-card:hover { transform:translateY(-7px); box-shadow:var(--shadow); border-color:rgba(56,194,223,.35); }
.problem-card:nth-child(1), .problem-card:nth-child(2) { grid-column:span 6; }
.problem-card:nth-child(n+3) { grid-column:span 4; }
.problem-index { color:var(--cyan-dark); font-size:.76rem; font-weight:900; letter-spacing:.12em; }
.problem-card h3 { margin:48px 0 12px; font-size:clamp(1.2rem,2vw,1.65rem); line-height:1.12; letter-spacing:-.03em; }
.problem-card p { margin:0 0 25px; color:var(--muted); font-size:.9rem; }
.card-arrow {
  position:absolute; right:24px; bottom:24px; width:44px; height:44px; border-radius:50%; display:grid; place-items:center;
  background:#edf5f7; color:var(--ink); transition:.25s ease;
}
.problem-card:hover .card-arrow { background:var(--cyan); transform:rotate(-35deg); }

.split-grid { display:grid; grid-template-columns: .92fr 1.08fr; gap:80px; align-items:center; }
.media-stack { position:relative; min-height:550px; }
.media-main { position:absolute; inset:0 55px 0 0; border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow); }
.media-main img { width:100%; height:100%; object-fit:cover; }
.media-badge {
  position:absolute; right:0; bottom:38px; width:210px; padding:24px; border-radius:22px; color:white; background:var(--ink-2); box-shadow:0 20px 55px rgba(8,18,28,.25);
}
.media-badge strong { display:block; font-size:1.9rem; line-height:1; color:var(--cyan-2); }
.media-badge span { display:block; margin-top:8px; color:#b6c8d2; font-size:.8rem; }
.check-list { display:grid; gap:14px; margin:30px 0 0; padding:0; list-style:none; }
.check-list li { display:flex; gap:12px; align-items:flex-start; color:var(--ink-2); }
.check-list li::before { content:"✓"; flex:0 0 auto; display:grid; place-items:center; width:25px; height:25px; border-radius:8px; background:rgba(56,194,223,.14); color:var(--cyan-dark); font-weight:900; }

.service-track { display:grid; grid-template-columns:repeat(5, minmax(210px,1fr)); gap:14px; }
.service-mini { padding:24px; min-height:210px; border:1px solid var(--line-light); border-radius:20px; background:rgba(255,255,255,.045); }
.service-mini .num { color:var(--cyan-2); font-size:.72rem; font-weight:900; letter-spacing:.12em; }
.service-mini h3 { margin:42px 0 9px; font-size:1.08rem; line-height:1.2; }
.service-mini p { margin:0; color:#9fb4c0; font-size:.82rem; }

.compare-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.compare-card { padding:34px; border-radius:var(--radius); border:1px solid var(--line); background:var(--white); }
.compare-card.after { background:var(--ink); color:var(--white); border-color:transparent; transform:translateY(26px); }
.compare-label { display:inline-block; padding:7px 11px; border-radius:999px; background:#edf1f3; font-size:.7rem; font-weight:900; letter-spacing:.12em; text-transform:uppercase; }
.after .compare-label { background:rgba(56,194,223,.16); color:var(--cyan-2); }
.compare-card h3 { margin:28px 0 18px; font-size:1.65rem; }
.compare-card ul { margin:0; padding-left:20px; color:var(--muted); }
.after ul { color:#b1c3cc; }

.company-panel {
  padding:52px; border-radius:var(--radius-lg); color:var(--white); background:
    linear-gradient(110deg, rgba(8,18,28,.97), rgba(8,18,28,.72)),
    url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&q=80&w=1600') center/cover;
  box-shadow:var(--shadow); display:grid; grid-template-columns:1.1fr .9fr; gap:60px;
}
.company-tags { display:flex; flex-wrap:wrap; gap:10px; align-content:flex-start; }
.company-tag { padding:12px 14px; border-radius:14px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.1); color:#dce8ed; font-size:.82rem; }

.faq-list { border-top:1px solid var(--line); }
.faq-item { border-bottom:1px solid var(--line); }
.faq-question { width:100%; display:flex; justify-content:space-between; gap:20px; text-align:left; padding:26px 0; border:0; background:transparent; color:var(--ink); font-weight:900; font-size:1rem; }
.faq-plus { flex:0 0 auto; width:30px; height:30px; border-radius:10px; background:#e8f0f3; display:grid; place-items:center; transition:.25s ease; }
.faq-item.open .faq-plus { transform:rotate(45deg); background:var(--cyan); }
.faq-answer { display:grid; grid-template-rows:0fr; transition:grid-template-rows .3s ease; }
.faq-answer > div { overflow:hidden; }
.faq-answer p { margin:0; padding:0 52px 25px 0; color:var(--muted); }
.faq-item.open .faq-answer { grid-template-rows:1fr; }

.contact-shell { display:grid; grid-template-columns:.82fr 1.18fr; gap:20px; }
.contact-info, .contact-form { border-radius:var(--radius-lg); }
.contact-info { padding:46px; color:var(--white); background:var(--ink); position:relative; overflow:hidden; }
.contact-info::after { content:""; position:absolute; width:260px; height:260px; border-radius:50%; right:-90px; bottom:-90px; border:1px solid rgba(121,227,242,.25); box-shadow:0 0 70px rgba(56,194,223,.12); }
.contact-info h2 { margin:0 0 18px; font-size:clamp(2rem,4vw,3.35rem); line-height:1; letter-spacing:-.05em; }
.contact-info p { color:#afc1cb; }
.contact-links { display:grid; gap:14px; margin-top:36px; }
.contact-link { display:flex; align-items:center; gap:12px; color:#e8f0f3; }
.contact-dot { width:10px; height:10px; border-radius:50%; background:var(--cyan); box-shadow:0 0 16px rgba(56,194,223,.65); }
.contact-form { padding:42px; background:var(--white); border:1px solid var(--line); }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-field { display:grid; gap:8px; }
.form-field.full { grid-column:1/-1; }
.form-field label { font-size:.74rem; font-weight:900; letter-spacing:.08em; text-transform:uppercase; color:#5c6e7b; }
.form-field input, .form-field select, .form-field textarea { width:100%; border:1px solid #d7e0e5; border-radius:14px; padding:14px 15px; color:var(--ink); background:#fbfcfd; outline:none; transition:.2s ease; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color:var(--cyan-dark); box-shadow:0 0 0 4px rgba(56,194,223,.12); }
.form-field textarea { min-height:125px; resize:vertical; }
.form-note { margin:14px 0 0; color:var(--muted); font-size:.75rem; }

.cta-band { padding:72px 0; background:var(--cyan); }
.cta-row { display:flex; justify-content:space-between; align-items:center; gap:30px; }
.cta-row h2 { margin:0; max-width:720px; font-size:clamp(2rem,4vw,3.8rem); line-height:.98; letter-spacing:-.055em; }

.site-footer { padding:34px 0; background:#050d14; color:#8fa4b0; }
.footer-row { display:flex; justify-content:space-between; align-items:center; gap:24px; font-size:.78rem; }
.footer-brand { display:flex; align-items:center; gap:12px; color:white; font-weight:800; }
.footer-brand img { width:38px; height:38px; object-fit:contain; background:white; padding:4px; border-radius:11px; }

.whatsapp-float {
  position:fixed; right:22px; bottom:22px; z-index:850; display:flex; align-items:center; gap:10px;
  padding:13px 17px; border-radius:999px; color:#052614; background:#25d366; font-weight:900; font-size:.8rem;
  box-shadow:0 18px 45px rgba(0,0,0,.24); transition:.2s ease;
}
.whatsapp-float:hover { transform:translateY(-3px) scale(1.02); }
.whatsapp-icon { width:20px; height:20px; }

/* Internal pages */
.page-hero { padding:160px 0 90px; color:white; background:var(--ink); position:relative; overflow:hidden; }
.page-hero::after { content:""; position:absolute; width:560px; height:560px; border-radius:50%; right:-200px; top:-170px; border:1px solid rgba(121,227,242,.2); box-shadow:0 0 110px rgba(56,194,223,.08); }
.page-hero-grid { display:grid; grid-template-columns:1.05fr .95fr; gap:60px; align-items:center; position:relative; z-index:1; }
.page-hero h1 { margin:0; font-size:clamp(3rem,6vw,5.9rem); line-height:.92; letter-spacing:-.065em; }
.page-hero p { color:#b4c5cf; max-width:700px; font-size:1.08rem; }
.page-hero-media { height:400px; border-radius:30px; overflow:hidden; border:1px solid rgba(255,255,255,.12); box-shadow:0 25px 70px rgba(0,0,0,.35); }
.page-hero-media img { width:100%; height:100%; object-fit:cover; opacity:.76; }
.breadcrumb { display:flex; gap:9px; margin-bottom:25px; color:#9eb4c2; font-size:.77rem; font-weight:800; }
.breadcrumb a { color:var(--cyan-2); }

.catalog-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
.catalog-card { display:grid; grid-template-columns:180px 1fr; min-height:285px; border-radius:var(--radius); overflow:hidden; background:white; border:1px solid var(--line); transition:.25s ease; }
.catalog-card:hover { transform:translateY(-6px); box-shadow:var(--shadow); }
.catalog-image { min-height:100%; background:#d9e4e9; overflow:hidden; }
.catalog-image img { width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.catalog-card:hover .catalog-image img { transform:scale(1.06); }
.catalog-content { padding:28px; display:flex; flex-direction:column; }
.catalog-kicker { color:var(--cyan-dark); font-size:.7rem; font-weight:900; letter-spacing:.12em; text-transform:uppercase; }
.catalog-content h2 { margin:15px 0 10px; font-size:1.35rem; line-height:1.15; }
.catalog-content p { margin:0 0 18px; color:var(--muted); font-size:.84rem; }
.catalog-content .btn-link { margin-top:auto; align-self:flex-start; }

.process-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.process-card { padding:28px; min-height:250px; border-radius:20px; border:1px solid var(--line); background:white; }
.process-card .num { color:var(--cyan-dark); font-size:2rem; font-weight:900; letter-spacing:-.06em; }
.process-card h3 { margin:48px 0 10px; }
.process-card p { color:var(--muted); font-size:.84rem; }

.detail-grid { display:grid; grid-template-columns:1.05fr .95fr; gap:75px; align-items:start; }
.detail-copy h2 { margin:0 0 18px; font-size:clamp(2rem,4vw,3.5rem); line-height:1; letter-spacing:-.05em; }
.detail-copy p { color:var(--muted); }
.detail-aside { position:sticky; top:110px; padding:32px; border-radius:var(--radius); color:white; background:var(--ink); }
.detail-aside h3 { margin:0 0 14px; font-size:1.45rem; }
.detail-aside p { color:#afc1cb; font-size:.88rem; }
.feature-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin-top:34px; }
.feature-card { padding:24px; border-radius:18px; background:white; border:1px solid var(--line); }
.feature-card strong { display:block; margin-bottom:7px; }
.feature-card span { color:var(--muted); font-size:.82rem; }

.plans-section { background:#edf3f6; }
.plan-group + .plan-group { margin-top:90px; }
.plan-group-heading { display:flex; justify-content:space-between; align-items:end; gap:30px; margin-bottom:36px; }
.plan-group-heading h2 { margin:0; font-size:clamp(2rem,4vw,3.45rem); line-height:1; letter-spacing:-.05em; }
.plan-group-heading p { max-width:540px; margin:0; color:var(--muted); }
.plan-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; align-items:stretch; }
.plan-card { position:relative; display:flex; flex-direction:column; padding:30px; border-radius:var(--radius); background:white; border:1px solid var(--line); box-shadow:0 12px 32px rgba(8,18,28,.05); }
.plan-card.featured { transform:translateY(-16px); border-color:rgba(56,194,223,.7); box-shadow:0 24px 60px rgba(20,149,182,.14); }
.plan-badge { position:absolute; right:20px; top:20px; padding:7px 10px; border-radius:999px; background:var(--cyan); color:var(--ink); font-size:.65rem; font-weight:900; letter-spacing:.09em; text-transform:uppercase; }
.plan-number { color:var(--cyan-dark); font-size:.7rem; font-weight:900; letter-spacing:.14em; text-transform:uppercase; }
.plan-card h3 { margin:18px 0 8px; font-size:1.55rem; line-height:1.05; }
.plan-subtitle { margin:0 0 24px; color:var(--muted); font-size:.82rem; min-height:42px; }
.plan-price { margin:0 0 24px; font-size:2.6rem; line-height:1; font-weight:900; letter-spacing:-.06em; }
.plan-price small { font-size:.76rem; color:var(--muted); letter-spacing:0; }
.plan-list { display:grid; gap:12px; padding:0; margin:0 0 28px; list-style:none; }
.plan-list li { display:flex; gap:10px; color:#425664; font-size:.82rem; }
.plan-list li::before { content:"✓"; color:var(--cyan-dark); font-weight:900; }
.plan-card .btn { margin-top:auto; }

.notice-card { padding:32px; border-radius:var(--radius); color:white; background:linear-gradient(120deg,var(--ink),var(--ink-3)); display:flex; justify-content:space-between; gap:30px; align-items:center; }
.notice-card h3 { margin:0 0 8px; font-size:1.5rem; }
.notice-card p { margin:0; color:#b3c5cf; }

.cursor-glow { position:fixed; z-index:0; width:420px; height:420px; border-radius:50%; pointer-events:none; background:radial-gradient(circle,rgba(56,194,223,.08),transparent 68%); transform:translate(-50%,-50%); opacity:0; transition:opacity .3s ease; }
body:hover .cursor-glow { opacity:1; }

@media (max-width: 1020px) {
  .hero-grid, .page-hero-grid, .split-grid, .contact-shell, .detail-grid, .company-panel { grid-template-columns:1fr; }
  .hero { min-height:auto; }
  .hero-visual { min-height:500px; }
  .trust-row { grid-template-columns:repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right:0; }
  .problem-card, .problem-card:nth-child(1), .problem-card:nth-child(2), .problem-card:nth-child(n+3) { grid-column:span 6; }
  .service-track { grid-template-columns:repeat(2,1fr); }
  .service-mini:last-child { grid-column:1/-1; }
  .catalog-grid { grid-template-columns:1fr; }
  .process-grid { grid-template-columns:repeat(2,1fr); }
  .plan-grid { grid-template-columns:1fr; }
  .plan-card.featured { transform:none; }
  .detail-aside { position:static; }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 28px, 720px); }
  .section { padding:80px 0; }
  .nav-wrap { height:72px; }
  .brand-copy { display:none; }
  .site-header { isolation:isolate; }
  .site-header.menu-active { background:#06111a; box-shadow:0 10px 35px rgba(0,0,0,.3); }
  .brand { position:relative; z-index:3; }
  .menu-toggle {
    display:block; position:relative; z-index:3; flex:0 0 auto;
    background:#102333; border-color:rgba(255,255,255,.22); box-shadow:0 10px 28px rgba(0,0,0,.24);
  }
  .nav-links {
    position:fixed; inset:0; z-index:2; width:100%; min-height:100vh; min-height:100dvh;
    padding:104px 28px 38px;
    background-color:#06111a;
    background-image:radial-gradient(circle at 85% 12%,rgba(56,194,223,.14),transparent 30%),linear-gradient(145deg,#06111a 0%,#0a1b28 100%);
    flex-direction:column; align-items:stretch; justify-content:flex-start; gap:0;
    overflow-y:auto; overscroll-behavior:contain;
    opacity:0; visibility:hidden; pointer-events:none; transform:translateX(100%);
    transition:transform .3s ease,opacity .2s ease,visibility .3s ease; font-size:1.06rem;
    box-shadow:-24px 0 60px rgba(0,0,0,.45);
  }
  .nav-links.open { opacity:1; visibility:visible; pointer-events:auto; transform:translateX(0); }
  .nav-links a:not(.btn) { width:100%; padding:17px 2px; border-bottom:1px solid rgba(255,255,255,.1); }
  .nav-links a:not(.btn)::after { display:none; }
  .nav-links .btn { width:100%; margin-top:24px; }
  .nav-links a { color:#edf7fb; }
  .menu-toggle.open span:nth-child(1) { transform:translateY(6px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity:0; }
  .menu-toggle.open span:nth-child(3) { transform:translateY(-6px) rotate(-45deg); }
  .hero { padding:104px 0 48px; }
  .hero-copy h1 { font-size:clamp(2.55rem,9vw,4rem); line-height:1.03; max-width:760px; }
  .hero-grid { gap:30px; }
  .hero-visual { min-height:370px; }
  .hero-image-frame { inset:24px 0 28px 24px; }
  .panel-status { width:205px; }
  .panel-flow { right:0; width:225px; }
  .hero-wordmark { display:none; }
  .problem-card, .problem-card:nth-child(1), .problem-card:nth-child(2), .problem-card:nth-child(n+3) { grid-column:1/-1; min-height:235px; }
  .compare-grid, .form-grid, .feature-grid { grid-template-columns:1fr; }
  .compare-card.after { transform:none; }
  .media-stack { min-height:440px; }
  .media-main { right:30px; }
  .company-panel { padding:34px; }
  .cta-row, .footer-row, .plan-group-heading, .notice-card { align-items:flex-start; flex-direction:column; }
  .page-hero { padding-top:125px; }
  .page-hero-media { height:320px; }
  .catalog-card { grid-template-columns:130px 1fr; }
}

@media (max-width: 560px) {
  .hero-actions .btn { width:100%; }
  .hero-options {
    display:flex; flex-wrap:nowrap; gap:8px; overflow-x:auto; padding:2px 0 8px;
    scrollbar-width:none; scroll-snap-type:x proximity;
  }
  .hero-options::-webkit-scrollbar { display:none; }
  .hero-option { flex:0 0 auto; text-align:center; scroll-snap-align:start; }
  .hero-copy h1 { font-size:clamp(2.2rem,10vw,2.8rem); letter-spacing:-.045em; }
  .hero-title-line { white-space:normal; }
  .hero-lead { margin-top:18px; }
  .hero-actions { margin-top:24px; }
  .hero-options { margin-top:20px; }
  .hero-visual { min-height:290px; }
  .hero-image-frame { inset:30px 0 30px 10px; }
  .floating-panel { padding:15px; }
  .panel-status { width:175px; }
  .panel-flow { width:182px; }
  .trust-row { grid-template-columns:1fr; }
  .trust-item, .trust-item:first-child { padding:18px 0; border-right:0; border-bottom:1px solid var(--line); }
  .service-track, .process-grid { grid-template-columns:1fr; }
  .service-mini:last-child { grid-column:auto; }
  .media-stack { min-height:390px; }
  .media-main { right:0; }
  .media-badge { right:10px; width:180px; }
  .contact-info, .contact-form { padding:28px; }
  .catalog-card { grid-template-columns:1fr; }
  .catalog-image { height:200px; }
  .plan-card { padding:24px; }
  .whatsapp-float span { display:none; }
  .whatsapp-float { width:52px; height:52px; padding:0; justify-content:center; }
}

/* Product detail pages — enriched content (v2.1.0) */
.product-page-hero { padding-bottom: 78px; }
.product-page-hero h1 {
  max-width: 760px;
  font-size: clamp(2.75rem, 4.8vw, 4.9rem);
  line-height: .98;
  letter-spacing: -.055em;
}
.product-page-hero p { max-width: 720px; margin: 22px 0 0; }
.page-hero-highlights { display:flex; flex-wrap:wrap; gap:9px; margin-top:28px; }
.page-hero-highlights span {
  display:inline-flex; align-items:center; gap:8px; min-height:34px; padding:7px 12px;
  border:1px solid rgba(255,255,255,.13); border-radius:999px; color:#d8e8ee;
  background:rgba(255,255,255,.055); font-size:.72rem; font-weight:800;
}
.page-hero-highlights span::before {
  content:""; width:7px; height:7px; border-radius:50%; background:var(--cyan);
  box-shadow:0 0 14px rgba(56,194,223,.65);
}
.product-detail-grid { align-items: start; }
.product-lead { max-width: 730px; font-size:1.02rem; }
.product-contact-card { overflow:hidden; }
.product-contact-card::after {
  content:""; position:absolute; width:240px; height:240px; right:-115px; bottom:-120px;
  border:1px solid rgba(121,227,242,.22); border-radius:50%; pointer-events:none;
}
.product-contact-card .eyebrow { color:var(--cyan-2); }
.product-contact-card .btn { width:100%; margin-top:24px; position:relative; z-index:1; }
.aside-check-list { display:grid; gap:11px; margin:24px 0 0; padding:0; list-style:none; position:relative; z-index:1; }
.aside-check-list li { display:flex; gap:10px; color:#d6e4ea; font-size:.8rem; }
.aside-check-list li::before { content:"✓"; color:var(--cyan-2); font-weight:900; }
.product-section-heading {
  display:grid; grid-template-columns:minmax(0,1.15fr) minmax(260px,.85fr); gap:60px;
  align-items:end; margin-bottom:42px;
}
.product-section-heading h2 {
  max-width:760px; margin:0; font-size:clamp(2rem,4vw,3.6rem); line-height:1;
  letter-spacing:-.052em;
}
.product-section-heading p { max-width:560px; margin:0; color:var(--muted); }
.section-dark .product-section-heading p { color:#a9bdc9; }
.product-capabilities {
  background:
    radial-gradient(circle at 88% 15%,rgba(56,194,223,.13),transparent 25%),
    radial-gradient(circle at 10% 90%,rgba(56,194,223,.07),transparent 28%),
    var(--ink);
  overflow:hidden;
}
.capability-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px; }
.capability-card {
  min-width:0; padding:27px; border:1px solid var(--line); border-radius:20px;
  background:var(--white); box-shadow:0 10px 28px rgba(8,18,28,.045);
  transition:transform .24s ease,border-color .24s ease,box-shadow .24s ease;
}
.capability-card:hover { transform:translateY(-5px); border-color:rgba(20,149,182,.3); box-shadow:0 18px 42px rgba(8,18,28,.09); }
.capability-icon {
  width:48px; height:48px; display:grid; place-items:center; margin-bottom:21px;
  border-radius:15px; color:var(--cyan-dark); background:#e8f5f8;
}
.capability-icon svg { width:25px; height:25px; }
.capability-card h3 { margin:0 0 9px; font-size:1.03rem; line-height:1.2; }
.capability-card p { margin:0; color:var(--muted); font-size:.82rem; }
.section-dark .capability-card {
  color:white; background:rgba(255,255,255,.055); border-color:rgba(255,255,255,.105);
  box-shadow:none; backdrop-filter:blur(8px);
}
.section-dark .capability-card:hover { border-color:rgba(121,227,242,.34); background:rgba(255,255,255,.075); }
.section-dark .capability-icon { color:var(--cyan-2); background:rgba(56,194,223,.12); }
.section-dark .capability-card p { color:#a9bdc9; }
.feature-grid .capability-card { padding:23px; }
.feature-grid .capability-icon { width:43px; height:43px; margin-bottom:17px; }
.use-case-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px; }
.use-case-card {
  position:relative; min-height:225px; padding:28px; overflow:hidden; border:1px solid var(--line);
  border-radius:21px; background:white;
}
.use-case-card::after {
  content:""; position:absolute; width:120px; height:120px; right:-58px; bottom:-64px;
  border:1px solid rgba(20,149,182,.17); border-radius:50%;
}
.use-case-index { display:block; color:var(--cyan-dark); font-size:.78rem; font-weight:900; letter-spacing:.12em; }
.use-case-card h3 { margin:48px 0 10px; font-size:1.08rem; line-height:1.2; }
.use-case-card p { margin:0; color:var(--muted); font-size:.82rem; }
.product-process-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:14px; }
.product-process-card {
  min-height:265px; padding:28px; display:flex; flex-direction:column; justify-content:space-between;
  border:1px solid var(--line); border-radius:20px; background:white;
}
.product-process-number {
  width:45px; height:45px; display:grid; place-items:center; border-radius:14px;
  color:#06131c; background:var(--cyan); font-size:.76rem; font-weight:900;
}
.product-process-card h3 { margin:35px 0 9px; font-size:1.05rem; line-height:1.2; }
.product-process-card p { margin:0; color:var(--muted); font-size:.8rem; }
.product-faq-section .split-grid { align-items:start; }
.product-faq-section .section-heading { position:sticky; top:120px; }

@media (max-width: 1020px) {
  .product-section-heading { grid-template-columns:1fr; gap:18px; align-items:start; }
  .capability-grid, .use-case-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .product-process-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .product-faq-section .section-heading { position:static; }
}

@media (max-width: 820px) {
  .product-page-hero { padding-top:120px; padding-bottom:62px; }
  .product-page-hero h1 { font-size:clamp(2.35rem,8.5vw,3.7rem); line-height:1.02; }
  .product-page-hero .page-hero-grid { gap:38px; }
  .page-hero-highlights { margin-top:22px; }
  .product-section-heading { margin-bottom:30px; }
}

@media (max-width: 560px) {
  .product-page-hero h1 { font-size:clamp(2.15rem,10vw,2.8rem); letter-spacing:-.045em; }
  .product-page-hero p { font-size:.96rem; }
  .page-hero-highlights { gap:7px; }
  .page-hero-highlights span { font-size:.66rem; }
  .capability-grid, .use-case-grid, .product-process-grid { grid-template-columns:1fr; }
  .capability-card, .use-case-card, .product-process-card { min-height:auto; padding:23px; }
  .use-case-card h3 { margin-top:35px; }
  .product-process-card h3 { margin-top:28px; }
  .product-contact-card { padding:28px; }
}

/* WhatsApp floating widget — icon + dismissible invitation (v2.2.0) */
.whatsapp-float {
  width:60px;
  height:60px;
  padding:0;
  border-radius:50%;
  justify-content:center;
  gap:0;
  color:#fff;
  background:#25d366;
  box-shadow:0 16px 38px rgba(8, 76, 38, .32);
}
.whatsapp-float span { display:none !important; }
.whatsapp-icon { width:30px; height:30px; }

.whatsapp-widget {
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:850;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:12px;
  pointer-events:none;
}
.whatsapp-widget .whatsapp-float {
  position:relative;
  right:auto;
  bottom:auto;
  flex:0 0 auto;
  pointer-events:auto;
}
.whatsapp-widget .whatsapp-float:hover {
  transform:translateY(-3px) scale(1.045);
  box-shadow:0 20px 45px rgba(8, 76, 38, .38);
}
.whatsapp-widget .whatsapp-float:focus-visible,
.whatsapp-bubble-close:focus-visible {
  outline:3px solid rgba(56,194,223,.72);
  outline-offset:4px;
}

.whatsapp-bubble {
  position:relative;
  width:min(292px, calc(100vw - 44px));
  padding:17px 46px 17px 18px;
  border:1px solid rgba(10, 34, 48, .1);
  border-radius:17px;
  color:var(--ink);
  background:#fff;
  box-shadow:0 18px 48px rgba(5, 19, 29, .18);
  pointer-events:auto;
  transform-origin:calc(100% - 28px) 100%;
  animation:whatsappBubbleIn .42s cubic-bezier(.2,.8,.2,1) both;
}
.whatsapp-bubble::after {
  content:"";
  position:absolute;
  right:22px;
  bottom:-7px;
  width:14px;
  height:14px;
  border-right:1px solid rgba(10, 34, 48, .08);
  border-bottom:1px solid rgba(10, 34, 48, .08);
  background:#fff;
  transform:rotate(45deg);
}
.whatsapp-bubble strong {
  display:block;
  margin-bottom:4px;
  font-size:.9rem;
  line-height:1.25;
  color:#0b2738;
}
.whatsapp-bubble span {
  display:block;
  color:#536a78;
  font-size:.78rem;
  line-height:1.45;
}
.whatsapp-bubble-close {
  position:absolute;
  top:8px;
  right:8px;
  z-index:1;
  width:30px;
  height:30px;
  display:grid;
  place-items:center;
  padding:0;
  border:0;
  border-radius:50%;
  color:#526875;
  background:transparent;
  cursor:pointer;
  transition:background-color .18s ease, color .18s ease, transform .18s ease;
}
.whatsapp-bubble-close:hover {
  color:#102b3b;
  background:#eef4f6;
  transform:rotate(4deg);
}
.whatsapp-bubble-close svg { width:15px; height:15px; }
.whatsapp-bubble.is-closing {
  opacity:0;
  transform:translateY(8px) scale(.94);
  transition:opacity .2s ease, transform .2s ease;
}

@keyframes whatsappBubbleIn {
  from { opacity:0; transform:translateY(12px) scale(.92); }
  to { opacity:1; transform:translateY(0) scale(1); }
}

@media (max-width: 620px) {
  .whatsapp-widget { right:14px; bottom:16px; gap:10px; }
  .whatsapp-widget .whatsapp-float,
  .whatsapp-float { width:56px; height:56px; }
  .whatsapp-icon { width:28px; height:28px; }
  .whatsapp-bubble {
    width:min(270px, calc(100vw - 28px));
    padding:15px 42px 15px 16px;
    border-radius:15px;
  }
  .whatsapp-bubble strong { font-size:.84rem; }
  .whatsapp-bubble span { font-size:.75rem; }
  .whatsapp-bubble::after { right:19px; }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-bubble { animation:none; }
  .whatsapp-bubble.is-closing { transition:none; }
}
