:root {
  --bg: #05070a;
  --bg-soft: #0b1017;
  --bg-card: rgba(15, 23, 35, 0.65);
  --bg-card-hover: rgba(20, 32, 48, 0.85);
  --text: #f1f5f9;
  --text-secondary: #a0abbd;
  --text-muted: #79859c;
  --cyan: #00effe;
  --cyan-dim: rgba(0, 239, 254, 0.12);
  --blue: #2ed3ff;
  --line: rgba(255, 255, 255, 0.07);
  --line-hover: rgba(255, 255, 255, 0.14);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.4);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 40px;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { margin: 0; background: var(--bg); color: var(--text); line-height: 1.65; font-weight: 400; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 100;
  background: var(--cyan); color: #05070a; padding: .6rem 1.2rem;
  border-radius: 999px; font-weight: 600; font-size: .875rem; transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }

/* Container */
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

/* Typography */
h1,h2,h3,h4,p { margin-top: 0; }
h1 {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1.05; letter-spacing: -.04em; font-weight: 700;
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.1; letter-spacing: -.03em; font-weight: 600;
}
h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.2; letter-spacing: -.02em; font-weight: 600;
}
h4 { font-size: 1rem; font-weight: 600; letter-spacing: -.01em; }
p { color: var(--text-secondary); line-height: 1.65; }
ul { margin: 0; padding: 0; list-style: none; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--cyan); border: 1px solid var(--line); border-radius: 999px;
  padding: 4px 12px; background: var(--cyan-dim); margin-bottom: 16px;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 24px; border-radius: 999px;
  border: 1px solid var(--line); font-size: .925rem; font-weight: 600;
  cursor: pointer; transition: all .25s ease; white-space: nowrap;
}
.btn-primary { background: var(--cyan); color: #05070a; border-color: var(--cyan); box-shadow: 0 4px 20px rgba(0,239,254,.18); }
.btn-primary:hover { box-shadow: 0 8px 32px rgba(0,239,254,.28); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--line-hover); background: rgba(255,255,255,.05); transform: translateY(-1px); }
.btn-sm { min-height: 40px; padding: 0 18px; font-size: .85rem; }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }

/* Section */
.section { padding: 80px 0; }
.section-header { max-width: 680px; margin-bottom: 48px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { font-size: 1.05rem; max-width: 560px; }

/* Nav */
.nav-bar { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; gap: 20px; }
.brand-logo { width: 140px; flex-shrink: 0; }
.nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.nav-links a {
  font-size: .85rem; font-weight: 500; color: var(--text-secondary);
  padding: 6px 14px; border-radius: 999px; transition: color .2s ease, background .2s ease;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,.05); }

/* Nav Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  font-size: .85rem; font-weight: 500; color: var(--text-secondary);
  padding: 6px 14px; border-radius: 999px; transition: color .2s ease, background .2s ease;
  background: none; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 4px;
  font-family: inherit; line-height: inherit; white-space: nowrap;
}
.nav-dropdown-toggle:hover { color: var(--text); background: rgba(255,255,255,.05); }
.nav-dropdown-toggle i { font-size: .6rem; transition: transform .2s ease; }
.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown.is-open .nav-dropdown-toggle i { transform: rotate(180deg); }

/* Menu: controlled exclusively by .is-open class (no CSS hover) */
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  opacity: 0; pointer-events: none; transition: opacity .2s ease;
  padding-top: 12px;
}
.nav-dropdown-menu-inner {
  min-width: 170px; padding: 8px; border-radius: 12px;
  background: rgba(15,23,35,.95); backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 2px;
}
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1; pointer-events: auto;
}
.nav-dropdown-menu a {
  display: block; padding: 10px 16px; border-radius: 8px;
  font-size: .85rem; font-weight: 500; color: var(--text-secondary);
  transition: color .2s ease, background .2s ease;
  text-decoration: none; white-space: nowrap;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--text); background: rgba(255,255,255,.05); outline: none;
}

@media (max-width: 768px) {
  .nav-dropdown { position: static; }
  .nav-dropdown-toggle { font-size: 1.1rem; padding: 12px 24px; justify-content: center; width: 100%; }
  .nav-dropdown-menu {
    position: static; transform: none;
    opacity: 1; pointer-events: auto; padding-top: 0;
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease;
  }
  .nav-dropdown-menu-inner {
    background: transparent; border: none; backdrop-filter: none; padding: 0 8px;
    min-width: auto;
  }
  .nav-dropdown.is-open .nav-dropdown-menu { max-height: 300px; }
}

/* Hero */
.hero { position: relative; min-height: 85vh; display: grid; align-content: center; overflow: hidden; padding: 40px 0 60px; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-gradient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 30% 20%, rgba(0,239,254,.06), transparent 60%),
              radial-gradient(ellipse 50% 40% at 80% 80%, rgba(46,211,255,.04), transparent 50%);
}
.hero-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
}
.hero-glint {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,239,254,.08), transparent 70%);
  top: -200px; right: -200px; filter: blur(60px);
}
.hero-content { position: relative; z-index: 1; max-width: 820px; }
.hero-content h1 { margin-bottom: 16px; }
.hero-content .subhead { font-size: 1.1rem; color: var(--text-secondary); max-width: 640px; margin-bottom: 8px; }
.hero-content .subtext { font-size: .95rem; color: var(--text-muted); max-width: 560px; margin-bottom: 32px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.hero-tags span {
  font-size: .78rem; font-weight: 500; color: var(--text-muted);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 4px 14px; background: rgba(255,255,255,.03);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Features */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature-card {
  border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 28px 24px; background: var(--bg-card);
  backdrop-filter: blur(12px); transition: all .3s ease;
}
.feature-card:hover { background: var(--bg-card-hover); border-color: var(--line-hover); transform: translateY(-2px); }
.feature-icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--cyan-dim); display: grid; place-items: center;
  margin-bottom: 16px; font-size: 1.1rem; color: var(--cyan);
}
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { font-size: .88rem; color: var(--text-muted); margin: 0; }

/* Services — Featured (2 cols) */
.services-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.service-card.featured {
  border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 28px; background: var(--bg-card);
  backdrop-filter: blur(12px); transition: all .3s ease;
  display: grid; grid-template-rows: auto 1fr; gap: 20px;
}
.service-card.featured:hover { background: var(--bg-card-hover); border-color: var(--line-hover); transform: translateY(-2px); }
.service-card.featured .featured-header { display: flex; align-items: flex-start; gap: 16px; }
.service-card.featured .featured-body ul { margin: 12px 0 16px; }
.service-card.featured .featured-body li {
  font-size: .85rem; color: var(--text-muted); padding: 3px 0;
}
.service-card.featured .featured-body li::before { content: "—"; color: var(--cyan); margin-right: 8px; font-weight: 300; }

/* Services — Minor (3 cols) */
.services-minor { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.service-card.minor {
  border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 24px; background: var(--bg-card);
  backdrop-filter: blur(12px); transition: all .3s ease;
  display: flex; flex-direction: column;
}
.service-card.minor:hover { background: var(--bg-card-hover); border-color: var(--line-hover); transform: translateY(-2px); }
.service-card.minor .moji { font-size: 1.4rem; margin-bottom: 12px; }
.service-card.minor h3 { margin-bottom: 6px; }
.service-card.minor p { font-size: .85rem; color: var(--text-muted); margin-bottom: 16px; flex: 1; }
.service-card.minor .service-cta { font-size: .85rem; font-weight: 600; color: var(--cyan); transition: opacity .2s ease; display: inline-flex; align-items: center; gap: 4px; }
.service-card.minor .service-cta:hover { opacity: .75; }
.service-card.minor .service-points {
  list-style: none; margin: -8px 0 16px; padding: 0;
  display: grid; gap: 4px;
}
.service-card.minor .service-points li {
  font-size: .8rem; color: var(--text-muted); padding: 1px 0;
}
.service-card.minor .service-points li::before {
  content: "—"; color: var(--cyan); margin-right: 6px; font-weight: 300;
}

/* Condo */
.condo-section {
  background: linear-gradient(135deg, rgba(0,239,254,.04), rgba(46,211,255,.02));
  border-radius: var(--radius-xl); padding: 60px 0; margin: 40px 0;
}
.condo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.condo-card {
  border: 1px solid var(--line); border-radius: var(--radius-md); padding: 24px;
  background: var(--bg-card); backdrop-filter: blur(12px);
  transition: all .3s ease; display: flex; flex-direction: column;
}
.condo-card:hover { background: var(--bg-card-hover); border-color: var(--line-hover); transform: translateY(-2px); }
.condo-card h3 { margin-bottom: 8px; }
.condo-card p { font-size: .88rem; color: var(--text-muted); margin-bottom: 20px; flex: 1; }
.condo-card .btn { align-self: flex-start; }

/* Brands */
.brands-header { text-align: center; margin-bottom: 48px; }
.brands-header p { max-width: 600px; margin: 0 auto; }
.brands-group { margin-bottom: 40px; }
.brands-group:last-child { margin-bottom: 0; }
.brands-group h4 {
  color: var(--text-muted); margin-bottom: 20px;
  font-size: .82rem; text-transform: uppercase; letter-spacing: .08em;
}
.brands-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 12px; }
.brand-pill {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px 16px; text-align: center; font-size: .85rem;
  font-weight: 500; color: var(--text-muted); background: var(--bg-card);
  transition: all .3s ease;
}
.brand-pill:hover { color: var(--text); border-color: var(--line-hover); background: rgba(255,255,255,.06); transform: translateY(-1px); }

/* Final CTA */
.cta-section { text-align: center; padding: 80px 0; }
.cta-section h2 { margin-bottom: 12px; }
.cta-section p { max-width: 500px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); padding: 40px 0 48px; color: var(--text-muted); font-size: .88rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.footer-brand img { width: 100px; margin-bottom: 8px; }
.footer-brand p { font-size: .85rem; max-width: 360px; margin: 0; }
.footer-contact { margin: 12px 0; font-size: .85rem; }
.footer-contact a { color: var(--text-secondary); display: inline-block; margin-right: 16px; transition: color .2s ease; }
.footer-contact a:hover { color: var(--cyan); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: var(--text-secondary); font-weight: 500; transition: color .2s ease; }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom { margin-top: 32px; font-size: .82rem; color: var(--text-muted); }

/* Float WhatsApp */
.float-whatsapp {
  position: fixed; right: 20px; bottom: 20px; z-index: 50;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: 999px;
  background: #22c55e; color: #fff; font-weight: 600; font-size: .9rem;
  box-shadow: 0 4px 24px rgba(34,197,94,.3); transition: all .25s ease;
}
.float-whatsapp:hover { box-shadow: 0 8px 36px rgba(34,197,94,.4); transform: translateY(-2px); }
.float-whatsapp .icon { display: grid; place-items: center; width: 24px; height: 24px; font-size: 1.2rem; line-height: 1; }

/* Find Solution Popup */
.find-popup {
  position: fixed; inset: 0; z-index: 80;
  display: grid; place-items: center; padding: 20px;
  background: rgba(0,0,0,.55); backdrop-filter: blur(4px);
  animation: findPopupFade .4s ease both;
}
@keyframes findPopupFade { from { opacity: 0; } to { opacity: 1; } }
.find-popup-inner {
  position: relative; width: min(380px, 100%); padding: 32px 28px 28px;
  border-radius: var(--radius-md); border: 1px solid var(--line);
  background: rgba(10,16,26,.98); backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg); text-align: center;
  animation: findPopupSlide .35s ease both;
}
@keyframes findPopupSlide { from { opacity: 0; transform: translateY(16px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
.find-popup-close {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px; border-radius: 50%;
  border: none; background: rgba(255,255,255,.06); color: var(--text-muted);
  font-size: 1rem; cursor: pointer; display: grid; place-items: center;
  transition: all .2s ease;
}
.find-popup-close:hover { background: rgba(255,255,255,.12); color: var(--text); }
.find-popup-inner h3 { margin-bottom: 6px; }
.find-popup-inner p { font-size: .85rem; color: var(--text-muted); margin-bottom: 16px; }
.find-popup-inner .btn { min-height: 42px; font-size: .85rem; }
@media (max-width: 640px) {
  .find-popup-inner { padding: 28px 20px 24px; }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 20px; border: 1px solid var(--line); border-radius: var(--radius-md);
  background: rgba(5,7,10,.96); backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg); max-width: 1000px; margin: 0 auto;
}
.cookie-banner p { font-size: .85rem; color: var(--text-muted); margin: 0; max-width: 600px; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }

/* Cookie Modal */
.modal-backdrop { position: fixed; inset: 0; z-index: 70; display: grid; place-items: center; padding: 20px; background: rgba(0,0,0,.6); }
.modal {
  width: min(420px, 100%); padding: 28px; border-radius: var(--radius-md);
  border: 1px solid var(--line); background: #0a101a; box-shadow: var(--shadow-lg);
}
.modal h2 { font-size: 1.2rem; margin-bottom: 20px; }
.modal label { display: flex; align-items: center; gap: 10px; margin: 12px 0; color: var(--text-secondary); font-size: .9rem; cursor: pointer; }
.modal label input { accent-color: var(--cyan); width: 18px; height: 18px; }
.modal-actions { display: flex; gap: 8px; margin-top: 24px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Mobile nav */
.nav-toggle {
  display: none; background: none; border: none; color: var(--text); font-size: 1.3rem;
  cursor: pointer; padding: 4px; line-height: 1; z-index: 31;
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 0; z-index: 30;
    background: rgba(5,7,10,.98); backdrop-filter: blur(24px);
    flex-direction: column; align-items: center; justify-content: center; gap: 8px;
    opacity: 0; pointer-events: none; transition: opacity .3s ease;
  }
  .nav-links.is-open { opacity: 1; pointer-events: all; }
  .nav-links a { font-size: 1.1rem; padding: 12px 24px; }
  .nav-bar { flex-wrap: nowrap; }
}
body.nav-open { overflow: hidden; }

/* Forms */
.form-card {
  border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: clamp(24px, 4vw, 40px); background: var(--bg-card);
  backdrop-filter: blur(12px); max-width: 600px; margin: 0 auto;
}
.form-card label { display: block; font-size: .85rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-card input, .form-card select, .form-card textarea {
  width: 100%; padding: 12px 16px; border-radius: var(--radius-sm);
  border: 1px solid var(--line); background: rgba(255,255,255,.04);
  color: var(--text); font-size: .92rem; font-family: inherit;
  transition: border-color .2s ease; margin-bottom: 20px;
  -webkit-appearance: none; appearance: none;
}
.form-card input:focus, .form-card select:focus, .form-card textarea:focus {
  border-color: var(--cyan); outline: none;
}
.form-card select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23a0abbd'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-card select option { background: #0b1017; color: var(--text); }
.form-card textarea { min-height: 100px; resize: vertical; }
.form-card .btn { width: 100%; margin-top: 8px; }

/* Quiz */
.quiz-wrap { max-width: 600px; margin: 0 auto; }
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-step h3 { margin-bottom: 16px; }
.quiz-options { display: grid; gap: 10px; }
.quiz-option {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px 18px; background: var(--bg-card); cursor: pointer;
  transition: all .2s ease; font-size: .95rem; color: var(--text-secondary);
}
.quiz-option:hover { border-color: var(--line-hover); background: var(--bg-card-hover); }
.quiz-option.selected { border-color: var(--cyan); background: var(--cyan-dim); color: var(--text); }
.quiz-result { margin-top: 24px; text-align: center; }
.quiz-result.hidden { display: none; }
.quiz-recommendation { font-size: 1.1rem; color: var(--cyan); font-weight: 600; margin: 12px 0 20px; }

/* Steps page */
.steps-page-list { display: grid; gap: 32px; margin: 32px 0; counter-reset: step-counter; }
.steps-page-item {
  display: flex; gap: 20px; align-items: flex-start;
  border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 24px; background: var(--bg-card); backdrop-filter: blur(6px);
}
.steps-page-num {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: var(--cyan); color: #05070a;
  display: grid; place-items: center; font-size: 1.1rem; font-weight: 800;
}
.steps-page-item h3 { margin-bottom: 4px; }
.steps-page-item p { font-size: .9rem; color: var(--text-muted); margin: 0; }

/* Contract types */
.contract-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin: 24px 0; }
.contract-chip {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px 16px; text-align: center; font-size: .85rem;
  font-weight: 500; color: var(--text-muted); background: var(--bg-card);
}

/* Support blocks */
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0; }
.support-block {
  border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 28px 24px; background: var(--bg-card); backdrop-filter: blur(6px);
}
.support-block h3 { margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.support-block p { font-size: .88rem; color: var(--text-muted); margin-bottom: 16px; }
.support-block .btn { margin-right: 8px; margin-bottom: 8px; }

/* Service hub */
.service-hub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.service-hub-card {
  border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 28px 24px; background: var(--bg-card); backdrop-filter: blur(6px);
  display: flex; flex-direction: column; transition: all .3s ease;
}
.service-hub-card:hover { background: var(--bg-card-hover); border-color: var(--line-hover); transform: translateY(-2px); }
.service-hub-card .sh-icon { font-size: 1.4rem; color: var(--cyan); margin-bottom: 12px; }
.service-hub-card h3 { margin-bottom: 6px; }
.service-hub-card p { font-size: .85rem; color: var(--text-muted); margin-bottom: 8px; flex: 1; }
.service-hub-card .sh-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.service-hub-card .sh-tags span { font-size: .72rem; color: var(--text-muted); border: 1px solid var(--line); border-radius: 999px; padding: 2px 10px; }
.service-hub-card .sh-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* Logo inline filter for internal pages */
.internal-page .ic-footer .footer-logo { filter: brightness(0) invert(1); }

/* Internal Pages — Dark Theme (matching home) */
.internal-page .brand-logo { width: 130px; filter: brightness(0) invert(1); }
.back-link { display: inline-flex; align-items: center; gap: 6px; font-size: .9rem; font-weight: 600; color: var(--text-secondary); transition: color .2s ease; }
.back-link:hover { color: var(--cyan); }
.ic-page { width: min(880px, calc(100% - 40px)); margin: 0 auto; padding: 0 0 48px; }
.ic-header { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; gap: 20px; }

/* Card component (privacy page) */
.ic-card { padding: clamp(32px, 5vw, 56px); border-radius: var(--radius-lg); background: var(--bg-card); backdrop-filter: blur(12px); border: 1px solid var(--line); }
.ic-card h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--text); margin-bottom: 12px; }
.ic-card .lead { font-size: 1.05rem; color: var(--text-secondary); margin-bottom: 24px; max-width: 680px; }
.ic-card h2 { font-size: 1.15rem; color: var(--text); margin-top: 32px; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.ic-card h2 i { color: var(--cyan); font-size: .9rem; }
.ic-card p { color: var(--text-secondary); max-width: 680px; }
.ic-card li { color: var(--text-secondary); }
.ic-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 32px 0; }
.ic-box { padding: 24px; border-radius: 16px; background: rgba(255,255,255,.03); border: 1px solid var(--line); }
.ic-box h2 { font-size: 1.1rem; color: var(--text); margin-bottom: 12px; }
.ic-box li { padding: 4px 0; color: var(--text-secondary); font-size: .92rem; }
.ic-box li::before { content: "—"; color: var(--cyan); margin-right: 8px; font-weight: 300; }
.ic-card .btn { margin-top: 8px; }
.ic-card .btn-primary { background: var(--cyan); color: #05070a; border-color: var(--cyan); box-shadow: 0 4px 20px rgba(0,239,254,.18); }
.ic-card .btn-primary:hover { box-shadow: 0 8px 32px rgba(0,239,254,.28); }
.ic-footer { width: min(880px, calc(100% - 40px)); margin: 0 auto; padding: 24px 0 32px; color: var(--text-muted); font-size: .85rem; }
.internal-page .ic-footer img { filter: brightness(0) invert(1); }

/* Internal page — dark header */
.internal-page .ic-header {
  background: rgba(5, 7, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  margin-bottom: 40px;
  position: sticky;
  top: 0;
  z-index: 20;
}
.internal-page .ic-header .ic-header-inner {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.internal-page .ic-header .brand-logo { width: 120px; filter: brightness(0) invert(1); }
.internal-page .back-link { color: var(--text-muted); font-weight: 500; }
.internal-page .back-link:hover { color: var(--cyan); opacity: 1; }

/* Internal page — hero banner (alternate) */
.ic-hero {
  background: linear-gradient(135deg, #0b1729, #07101f);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 60px) 0;
  margin: 0 auto 40px;
  width: min(880px, calc(100% - 40px));
}
.ic-hero .ic-page { width: 100%; padding: 0 clamp(24px, 4vw, 48px); }
.ic-hero h1 { color: #fff; margin-bottom: 12px; }
.ic-hero .lead { color: #a0abbd; }

/* Subpage section */
.ic-section { margin-top: 40px; }
.ic-section h2 { font-size: 1.15rem; color: var(--text); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.ic-section h2 i { color: var(--cyan); font-size: 1rem; width: 24px; text-align: center; }
.ic-section p, .ic-section li { color: var(--text-secondary); }

/* Tech tags */
.tech-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.tech-tags span {
  font-size: .78rem; font-weight: 500; color: var(--text-muted);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 4px 14px; background: rgba(255,255,255,.03);
}

/* FA icons on home */
.feature-icon i { font-size: 1.1rem; }
.service-icon i { font-size: 1.1rem; }
.moji i { font-size: 1.2rem; }

/* ========== Internal Page Components — Dark ========== */

/* Hero two-column */
.ic-hero-wrap {
  background: linear-gradient(135deg, #0b1729, #07101f);
  border-radius: var(--radius-lg);
  margin: 0 auto 48px;
  width: min(980px, calc(100% - 40px));
  padding: 0;
  position: relative;
  overflow: hidden;
}
.ic-hero-wrap::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
  pointer-events: none;
}
.ic-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: clamp(40px, 5vw, 64px) clamp(28px, 4vw, 56px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.ic-hero-grid h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: #fff; margin-bottom: 12px; }
.ic-hero-grid .lead { color: #a0abbd; font-size: 1rem; margin-bottom: 24px; max-width: 480px; }
.ic-hero-grid .hero-actions { justify-content: flex-start; }
.ic-hero-grid .hero-actions .btn-ghost { color: #fff; border-color: rgba(255,255,255,.15); }
.ic-hero-grid .hero-actions .btn-ghost:hover { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.06); }

/* Right column — visual indicators */
.ic-hero-visual {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}
.ic-hero-visual .vcard {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 20px 16px;
  backdrop-filter: blur(8px);
  transition: all .3s ease;
}
.ic-hero-visual .vcard:hover { background: rgba(255,255,255,.07); transform: translateY(-2px); }
.ic-hero-visual .vcard i { color: var(--cyan); font-size: 1rem; margin-bottom: 10px; display: block; }
.ic-hero-visual .vcard strong { display: block; color: #fff; font-size: .85rem; margin-bottom: 4px; }
.ic-hero-visual .vcard span { color: #79859c; font-size: .78rem; }

/* Trust strip */
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px;
}
.trust-strip span {
  font-size: .73rem; font-weight: 500; color: #a0abbd;
  border: 1px solid rgba(255,255,255,.1); border-radius: 999px;
  padding: 3px 12px;
}

/* Problem block — dark glass */
.problem-block {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-left: 4px solid var(--cyan);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 44px);
  margin-bottom: 48px;
}
.problem-block h2 { font-size: 1.25rem; color: var(--text); margin-bottom: 10px; }
.problem-block p { color: var(--text-secondary); max-width: 680px; }

/* Benefit grid — dark glass */
.benefit-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin: 28px 0 40px; }
.benefit-card {
  border: 1px solid var(--line); border-radius: 16px;
  padding: 24px; background: var(--bg-card);
  backdrop-filter: blur(6px);
  transition: all .3s ease;
}
.benefit-card:hover { background: var(--bg-card-hover); border-color: var(--line-hover); transform: translateY(-2px); }
.benefit-card { display: flex; align-items: flex-start; gap: 14px; }
.benefit-card i { color: var(--cyan); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.benefit-card div { flex: 1; }
.benefit-card h3 { font-size: .9rem; color: var(--text); margin: 0 0 3px; }
.benefit-card p { font-size: .8rem; color: var(--text-muted); margin: 0; }

/* Example question blocks — dark glass */
.example-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0 40px; }
.example-q {
  border: 1px solid var(--line); border-radius: 14px;
  padding: 18px 20px; background: var(--bg-card);
  backdrop-filter: blur(6px);
  display: flex; align-items: flex-start; gap: 12px;
  transition: all .3s ease;
}
.example-q:hover { border-color: var(--line-hover); background: var(--bg-card-hover); }
.example-q i { color: var(--cyan); font-size: .85rem; margin-top: 2px; flex-shrink: 0; }
.example-q span { font-size: .88rem; color: var(--text-secondary); line-height: 1.4; }

/* Steps timeline — dark glass */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 28px 0 40px; }
.step-card {
  border: 1px solid var(--line); border-radius: 16px;
  padding: 24px; background: var(--bg-card); text-align: center;
  backdrop-filter: blur(6px);
  transition: all .3s ease; position: relative;
}
.step-card:hover { border-color: var(--line-hover); background: var(--bg-card-hover); transform: translateY(-2px); }
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--cyan); color: #05070a;
  display: grid; place-items: center;
  font-size: .85rem; font-weight: 800;
  margin: 0 auto 12px;
}
.step-card h3 { font-size: .9rem; color: var(--text); margin-bottom: 6px; }
.step-card p { font-size: .82rem; color: var(--text-muted); margin: 0; }

/* Audience profile tags — dark */
.profile-wrap { margin: 24px 0 40px; }
.profile-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.profile-tags span {
  font-size: .82rem; font-weight: 500; color: var(--text-muted);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 16px; background: rgba(255,255,255,.03);
  transition: all .2s ease;
}
.profile-tags span:hover { border-color: var(--cyan); background: var(--cyan-dim); color: var(--text); }

/* CTA intermediate block */
.cta-block {
  background: linear-gradient(135deg, #0b1729, #15283f);
  border-radius: 20px;
  padding: clamp(32px, 4vw, 48px) clamp(24px, 3vw, 40px);
  text-align: center;
  margin: 40px 0;
}
.cta-block h2 { color: #fff; font-size: 1.35rem; margin-bottom: 10px; }
.cta-block p { color: #a0abbd; max-width: 480px; margin: 0 auto 20px; }
.cta-block .cta-actions { justify-content: center; }
.cta-block .btn-ghost { color: #fff; border-color: rgba(255,255,255,.15); }
.cta-block .btn-ghost:hover { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.06); }

/* FAQ — dark glass accordion */
.faq-grid { margin: 28px 0 40px; }
.faq-item {
  border: 1px solid var(--line); border-radius: 14px;
  padding: 18px 20px; margin-bottom: 10px;
  background: var(--bg-card); backdrop-filter: blur(6px);
  cursor: pointer;
  transition: all .2s ease;
}
.faq-item:hover { border-color: var(--line-hover); background: var(--bg-card-hover); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: .92rem; color: var(--text);
}
.faq-q i { color: var(--cyan); font-size: .8rem; transition: transform .2s ease; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
  margin-top: 12px; font-size: .85rem; color: var(--text-muted);
  display: none; line-height: 1.5;
}
.faq-item.open .faq-a { display: block; }

/* Before/After — dark tinted */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0 40px; }
.ba-col { padding: 20px; border-radius: 16px; }
.ba-col.before { background: rgba(153,27,27,.12); border: 1px solid rgba(239,68,68,.2); }
.ba-col.after { background: rgba(22,101,52,.12); border: 1px solid rgba(34,197,94,.2); }
.ba-col h3 { font-size: .95rem; margin-bottom: 12px; }
.ba-col.before h3 { color: #fca5a5; }
.ba-col.after h3 { color: #86efac; }
.ba-col li { font-size: .85rem; padding: 3px 0; }
.ba-col.before li { color: #fecaca; }
.ba-col.after li { color: #bbf7d0; }
.ba-col li::before { content: "✕"; margin-right: 8px; font-weight: 300; }
.ba-col.after li::before { content: "✓"; color: #22c55e; }

/* Section label */
.section-label {
  font-size: .73rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 8px; display: block;
}

/* ========== Premium Additions ========== */

/* Subtle noise overlay */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 9999;
  pointer-events: none; opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 256px 256px;
}
@media (prefers-reduced-motion: reduce) { body::after { display: none; } }

/* Section dividers with glow */
.section-divider {
  width: 100%; height: 1px; border: none; margin: 0;
  background: linear-gradient(90deg, transparent, var(--line), rgba(0,239,254,.15), var(--line), transparent);
}

/* Audience split layout */
.audience-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start;
}
.audience-panel {
  border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 32px 28px; background: linear-gradient(135deg, rgba(0,239,254,.04), rgba(46,211,255,.01));
  backdrop-filter: blur(8px);
}
.audience-panel-title {
  font-size: .95rem; color: var(--text); font-weight: 600; margin-bottom: 16px;
}
.audience-panel-list { display: grid; gap: 8px; }
.audience-panel-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .88rem; color: var(--text-secondary); padding: 6px 0;
}
.audience-panel-item i { color: var(--cyan); font-size: .6rem; }
@media (max-width: 768px) {
  .audience-split { grid-template-columns: 1fr; }
}

/* Timeline steps */
.steps-timeline {
  position: relative; display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 12px; margin: 40px 0; padding: 20px 0;
}
.steps-timeline::before {
  content: ""; position: absolute; top: 48px; left: 60px; right: 60px;
  height: 2px; background: linear-gradient(90deg, var(--cyan), var(--line), var(--cyan), var(--line), var(--cyan), transparent);
  opacity: .3;
}
.step-tl {
  text-align: center; position: relative; transition: all .3s ease;
}
.step-tl:hover { transform: translateY(-4px); }
.step-tl-num {
  width: 40px; height: 40px; border-radius: 50%; margin: 0 auto 12px;
  background: var(--cyan-dim); border: 1px solid var(--line);
  display: grid; place-items: center; font-size: .85rem; font-weight: 700;
  color: var(--cyan); transition: all .3s ease; position: relative; z-index: 1;
}
.step-tl:hover .step-tl-num { background: var(--cyan); color: #05070a; border-color: var(--cyan); box-shadow: 0 0 20px rgba(0,239,254,.2); }
.step-tl h3 { font-size: .85rem; margin-bottom: 4px; }
.step-tl p { font-size: .75rem; color: var(--text-muted); margin: 0; line-height: 1.4; }
.timeline-cta { text-align: center; margin-top: 8px; }
@media (max-width: 960px) {
  .steps-timeline { grid-template-columns: repeat(3, 1fr); gap: 24px 12px; }
  .steps-timeline::before { display: none; }
}
@media (max-width: 640px) {
  .steps-timeline { grid-template-columns: repeat(2, 1fr); }
}

/* Contract model cards */
.contract-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 24px 0;
}
.contract-card {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 20px; background: var(--bg-card);
  backdrop-filter: blur(6px); transition: all .3s ease;
}
.contract-card:hover { background: var(--bg-card-hover); border-color: var(--line-hover); transform: translateY(-2px); }
.contract-card h3 {
  font-size: .85rem; color: var(--text); margin: 0 0 4px; font-weight: 600;
}
.contract-card i { color: var(--cyan); font-size: .82rem; margin-bottom: 8px; display: block; }
.contract-card p {
  font-size: .78rem; color: var(--text-muted); margin: 0; line-height: 1.4;
}
@media (max-width: 960px) { .contract-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .contract-cards { grid-template-columns: 1fr; } }

/* Signal cards (vertical layout) */
.signal-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.signal-card {
  border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 28px 24px 24px; background: var(--bg-card);
  backdrop-filter: blur(6px); transition: all .3s ease;
  display: flex; flex-direction: column; align-items: flex-start; gap: 0;
  text-align: left;
}
.signal-card:hover {
  background: var(--bg-card-hover); border-color: var(--cyan); transform: translateY(-3px);
}
.signal-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(0,239,254,.08); display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; transition: background .3s ease, box-shadow .3s ease; flex-shrink: 0;
}
.signal-card:hover .signal-icon { background: rgba(0,239,254,.15); box-shadow: 0 0 16px rgba(0,239,254,.12); }
.signal-icon i { color: var(--cyan); font-size: 1rem; }
.signal-card h3 { font-size: .95rem; color: var(--text); margin: 0 0 6px; font-weight: 600; }
.signal-card p { font-size: .82rem; color: var(--text-muted); margin: 0; line-height: 1.55; flex: 1; }
.signal-hint {
  display: block; font-size: .72rem; color: var(--cyan); margin-top: 14px; padding-top: 12px;
  border-top: 1px solid var(--line); width: 100%; opacity: 0; transition: opacity .3s ease;
}
.signal-card:hover .signal-hint { opacity: .8; }
.signal-cta {
  text-align: center; margin-top: 40px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
@media (max-width: 900px) { .signal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .signal-grid { grid-template-columns: 1fr; } .signal-card { padding: 24px 20px 20px; } }

/* Condo cards with bullets */
.condo-card .condo-bullets {
  list-style: none; margin: 8px 0 16px; padding: 0;
  display: grid; gap: 4px;
}
.condo-card .condo-bullets li {
  font-size: .78rem; color: var(--text-muted); padding: 1px 0;
}
.condo-card .condo-bullets li::before {
  content: "—"; color: var(--cyan); margin-right: 6px; font-weight: 300;
}

/* Stagger reveal */
.reveal-stagger > * {
  opacity: 0; transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 400ms; }

/* Button glow variant */
.btn-glow { position: relative; overflow: hidden; }
.btn-glow::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(0,239,254,.15), transparent 60%);
  opacity: 0; transition: opacity .3s ease; pointer-events: none;
}
.btn-glow:hover::after { opacity: 1; }

/* Card glow track (desktop only) */
@media (hover: hover) {
  .card-glow {
    position: relative; overflow: hidden;
  }
  .card-glow::before {
    content: ""; position: absolute; inset: -1px; border-radius: inherit;
    background: radial-gradient(circle 120px at var(--mx, 50%) var(--my, 50%), rgba(0,239,254,.08), transparent 70%);
    opacity: 0; transition: opacity .4s ease; pointer-events: none; z-index: 0;
  }
  .card-glow:hover::before { opacity: 1; }
  .card-glow > * { position: relative; z-index: 1; }
}

/* Divider spacing helper */
.gap-section { height: 1px; margin: 0; border: none; }

/* Benefit card - compact variant */
.benefit-card.compact { padding: 20px; text-align: left; display: flex; gap: 14px; align-items: flex-start; }
.benefit-card.compact i { margin: 2px 0 0; font-size: 1rem; flex-shrink: 0; }
.benefit-card.compact h3 { font-size: .9rem; margin-bottom: 2px; }
.benefit-card.compact p { font-size: .82rem; }

/* Increment feature-grid columns on large screens */
@media (min-width: 1200px) {
  .feature-grid { grid-template-columns: repeat(5, 1fr); }
}

/* ========== Scroll Progress ========== */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 100;
  height: 2px; background: linear-gradient(90deg, var(--cyan), var(--blue));
  width: 0%; transition: width .1s linear;
}

/* ========== Hero Refinements ========== */
.hero { min-height: 85vh; display: grid; align-content: center; overflow: hidden; padding: 40px 0 60px; }
.hero-layout { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-content { max-width: 680px; }
.hero-lines-dot {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(0,239,254,.12) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 50% 50% at 20% 50%, black 20%, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse 50% 50% at 20% 50%, black 20%, transparent 60%);
}
.hero-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(60px);
  animation: heroOrbFloat 12s ease-in-out infinite;
}
.orb-1 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(0,239,254,.06), transparent 70%); top: 10%; right: 5%; }
.orb-2 { width: 200px; height: 200px; background: radial-gradient(circle, rgba(46,211,255,.04), transparent 70%); bottom: 15%; right: 20%; animation-delay: -6s; }
@keyframes heroOrbFloat { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-20px) scale(1.05); } }

/* Hero floating cards */
.hero-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  flex-shrink: 0; perspective: 800px;
}
.hero-card {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px 16px; background: rgba(15,23,35,.5); backdrop-filter: blur(8px);
  font-size: .78rem; font-weight: 500; color: var(--text-secondary);
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
  animation: heroCardFloat 4s ease-in-out infinite;
}
.hero-card i { color: var(--cyan); font-size: .7rem; }
.hero-card-1 { animation-delay: 0s; }
.hero-card-2 { animation-delay: -1s; }
.hero-card-3 { animation-delay: -2s; }
.hero-card-4 { animation-delay: -3s; }
@keyframes heroCardFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.hero-card:hover { border-color: var(--line-hover); background: rgba(15,23,35,.7); }

/* ========== Nav Active State ========== */
.nav-bar.is-sticky {
  position: fixed; top: 0; left: 0; right: 0; z-index: 30;
  background: rgba(5,7,10,.92); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 12px max(20px, calc((100vw - 1120px) / 2)); animation: navStickyIn .3s ease both;
}
@keyframes navStickyIn { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.nav-bar.is-sticky .container { width: auto; margin: 0; display: flex; align-items: center; justify-content: space-between; }

/* ========== Back to Top ========== */
.back-to-top {
  position: fixed; right: 24px; bottom: 80px; z-index: 49;
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--bg-card); backdrop-filter: blur(8px);
  color: var(--text-muted); font-size: .85rem; cursor: pointer;
  display: grid; place-items: center; transition: all .25s ease;
  opacity: 0; pointer-events: none; transform: translateY(10px);
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { border-color: var(--cyan); color: var(--cyan); background: var(--cyan-dim); }

/* ========== Featured Badge ========== */
.featured-badge {
  position: absolute; top: -1px; left: 24px;
  font-size: .65rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: #05070a; background: var(--cyan);
  padding: 3px 10px; border-radius: 0 0 8px 8px;
}
.service-card.featured { position: relative; padding-top: 36px; }
.service-card.featured .service-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--cyan-dim); display: grid; place-items: center;
  flex-shrink: 0; font-size: 1.1rem; color: var(--cyan);
}

/* ========== Founder Card ========== */
.founder-card {
  max-width: 700px; margin: 0 auto;
  border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 36px; background: var(--bg-card); backdrop-filter: blur(12px);
  display: grid; grid-template-columns: auto 1fr; gap: 36px; align-items: center;
}
.founder-photo-wrap { text-align: center; position: relative; }
.founder-photo-wrap img {
  width: 120px; height: 120px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(0,239,254,.3); display: block;
}
.founder-badge {
  display: inline-block; margin-top: 8px;
  font-size: .68rem; color: var(--cyan); border: 1px solid rgba(0,239,254,.2);
  border-radius: 999px; padding: 2px 10px; background: rgba(0,239,254,.08);
  white-space: nowrap;
}
.founder-info h3 { font-size: 1.15rem; margin-bottom: 2px; }
.founder-role { font-size: .82rem; color: var(--text-muted); margin-bottom: 12px; }
.founder-desc { font-size: .9rem; color: var(--text-secondary); margin-bottom: 18px; line-height: 1.6; }
.founder-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ========== Benefit Tags ========== */
.benefit-tag {
  font-size: .62rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--cyan); border: 1px solid rgba(0,239,254,.15);
  border-radius: 999px; padding: 1px 8px; vertical-align: middle; margin-left: 6px;
  opacity: .8;
}
.benefit-card:hover .benefit-tag { opacity: 1; }

/* ========== CTA Premium Block ========== */
.cta-premium {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 60px) clamp(28px, 4vw, 48px);
  text-align: center;
}
.cta-premium-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 60%, rgba(0,239,254,.06), transparent 70%);
  pointer-events: none;
}
.cta-premium .section-header p { margin: 0 auto 28px; }

/* ========== Contract Filter ========== */
.contract-filter {
  text-align: center; margin-bottom: 28px;
}
.filter-label {
  display: block; font-size: .88rem; color: var(--text-muted); margin-bottom: 12px;
}
.filter-chips {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
}
.filter-chip {
  border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 16px; font-size: .8rem; font-weight: 500;
  background: transparent; color: var(--text-muted); cursor: pointer;
  transition: all .2s ease; font-family: inherit;
}
.filter-chip:hover { border-color: var(--line-hover); color: var(--text); background: rgba(255,255,255,.05); }
.filter-chip.active { border-color: var(--cyan); color: var(--text); background: var(--cyan-dim); }
.contract-card.is-hidden { display: none; }

/* ========== Timeline Icon Steps ========== */
.step-tl-num { font-size: 1rem; }
.step-tl-num i { font-style: normal; }

/* ========== Gustavo CTA Refinements ========== */
.gustavo-cta { bottom: 88px; }
.gustavo-actions .btn-primary { background: #22c55e; border-color: #22c55e; }
.gustavo-actions .btn-primary:hover { box-shadow: 0 6px 24px rgba(34,197,94,.35); }

/* ========== Global Micro-interactions ========== */
.btn i, .service-cta i, .feature-icon i { transition: transform .2s ease; }
.btn:hover i, .service-cta:hover i { transform: translateX(2px); }
.btn-primary:hover i { transform: scale(1.1); }
.feature-card:hover .feature-icon i { transform: scale(1.1); color: var(--cyan); }

/* ========== Timeline Sequence Reveal ========== */
.steps-timeline.reveal-stagger.is-visible .step-tl:nth-child(1) { transition-delay: 0ms; }
.steps-timeline.reveal-stagger.is-visible .step-tl:nth-child(2) { transition-delay: 100ms; }
.steps-timeline.reveal-stagger.is-visible .step-tl:nth-child(3) { transition-delay: 200ms; }
.steps-timeline.reveal-stagger.is-visible .step-tl:nth-child(4) { transition-delay: 300ms; }
.steps-timeline.reveal-stagger.is-visible .step-tl:nth-child(5) { transition-delay: 400ms; }
.steps-timeline.reveal-stagger.is-visible .step-tl:nth-child(6) { transition-delay: 500ms; }

/* ========== Section Dividers Refined ========== */
.section-divider {
  width: 100%; height: 1px; border: none; margin: 24px 0;
  background: linear-gradient(90deg, transparent, var(--line), rgba(0,239,254,.12), var(--line), transparent);
}
.gustavo-cta {
  position: fixed; right: 24px; bottom: 88px; z-index: 55;
  display: flex; flex-direction: column; align-items: flex-end;
  pointer-events: none;
}
.gustavo-cta[hidden] { display: none; }
.gustavo-cta-inner {
  pointer-events: auto; position: relative;
  animation: gustavoFadeIn .45s ease both;
}
@keyframes gustavoFadeIn { from { opacity: 0; transform: translateY(12px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* Avatar dot (initial state) */
.gustavo-avatar {
  display: flex; align-items: center; gap: 8px;
  cursor: pointer; transition: opacity .2s ease;
}
.gustavo-avatar .gustavo-photo {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(0,239,254,.3); flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(0,239,254,.3);
}
.gustavo-avatar .gustavo-photo.pulse {
  animation: gustavoPulse 1.2s ease 1;
}
@keyframes gustavoPulse {
  0% { box-shadow: 0 0 0 0 rgba(0,239,254,.35); }
  50% { box-shadow: 0 0 0 8px rgba(0,239,254,.05); }
  100% { box-shadow: 0 0 0 0 rgba(0,239,254,0); }
}

/* Typing dots */
.gustavo-typing { display: flex; gap: 3px; align-items: center; padding: 6px 10px; background: rgba(255,255,255,.06); border-radius: 999px; }
.gustavo-typing .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--text-muted); animation: gustavoDot 1.2s ease-in-out infinite; }
.gustavo-typing .dot:nth-child(2) { animation-delay: .2s; }
.gustavo-typing .dot:nth-child(3) { animation-delay: .4s; }
@keyframes gustavoDot { 0%,60%,100% { opacity: .3; transform: scale(.8); } 30% { opacity: 1; transform: scale(1); } }

/* Badge for small screens */
.gustavo-badge { display: none; }

/* Bubble (expanded state) */
.gustavo-bubble {
  display: none; width: min(320px, calc(100vw - 48px));
  background: rgba(10,16,26,.97); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0,239,254,.15); border-radius: var(--radius-md);
  box-shadow: 0 8px 40px rgba(0,0,0,.5), 0 0 0 1px rgba(0,239,254,.06);
  overflow: hidden; position: relative;
  animation: gustavoBubbleIn .4s ease both;
}
@keyframes gustavoBubbleIn {
  from { opacity: 0; transform: translateY(8px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.gustavo-cta.expanded .gustavo-avatar { display: none; }
.gustavo-cta.expanded .gustavo-bubble { display: block; }

/* Close button */
.gustavo-close {
  position: absolute; top: 8px; right: 8px; z-index: 1;
  width: 28px; height: 28px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.06); color: var(--text-muted);
  font-size: .85rem; cursor: pointer; display: grid; place-items: center;
  transition: all .2s ease;
}
.gustavo-close:hover { background: rgba(255,255,255,.12); color: var(--text); }

/* Header */
.gustavo-header {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px 0;
}
.gustavo-header .gustavo-photo {
  width: 36px; height: 36px; border-radius: 50%; object-fit: cover;
  border: 1.5px solid rgba(0,239,254,.25); flex-shrink: 0;
}
.gustavo-header strong { font-size: .88rem; color: var(--text); display: block; }
.gustavo-header .gustavo-role { font-size: .72rem; color: var(--text-muted); display: block; margin-top: 1px; }

/* Body */
.gustavo-body { padding: 12px 20px 0; }
.gustavo-msg {
  font-size: .88rem; color: var(--text); margin: 0 0 6px; line-height: 1.5;
}
.gustavo-sub {
  font-size: .8rem; color: var(--text-secondary); margin: 0; line-height: 1.45;
}

/* Actions */
.gustavo-actions {
  display: flex; gap: 8px; padding: 14px 20px 18px;
}
.gustavo-actions .btn { flex: 1; min-height: 38px; font-size: .82rem; }
.gustavo-actions .btn-primary { background: #22c55e; border-color: #22c55e; color: #fff; box-shadow: 0 4px 16px rgba(34,197,94,.25); }
.gustavo-actions .btn-primary:hover { box-shadow: 0 6px 24px rgba(34,197,94,.35); }
.gustavo-actions .btn-primary i { font-size: .9rem; }

/* Responsive Gustavo CTA */
@media (max-width: 640px) {
  .gustavo-cta { right: 12px; bottom: 76px; }
  .gustavo-bubble { width: min(290px, calc(100vw - 32px)); }
  .gustavo-header { padding: 14px 16px 0; }
  .gustavo-body { padding: 10px 16px 0; }
  .gustavo-actions { padding: 12px 16px 14px; }
  .gustavo-actions .btn { font-size: .78rem; min-height: 36px; }
  .gustavo-msg { font-size: .84rem; }
  .gustavo-sub { font-size: .76rem; }
}

/* Avatar-only mode for very small screens */
@media (max-width: 420px) {
  .gustavo-avatar .gustavo-typing { display: none; }
  .gustavo-badge { display: inline-block; font-size: .68rem; color: var(--cyan); border: 1px solid rgba(0,239,254,.2); border-radius: 999px; padding: 2px 8px; background: rgba(0,239,254,.08); white-space: nowrap; }
}

/* Reduced motion for Gustavo CTA */
@media (prefers-reduced-motion: reduce) {
  .gustavo-cta-inner { animation: none; }
  .gustavo-bubble { animation: none; }
  .gustavo-avatar .gustavo-photo.pulse { animation: none; box-shadow: 0 0 0 2px rgba(0,239,254,.2); }
  .gustavo-typing .dot { animation: none; opacity: .5; }
}

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

/* Responsive */
@media (max-width: 960px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .services-featured { grid-template-columns: 1fr; }
  .services-minor { grid-template-columns: 1fr 1fr; }
  .condo-grid { grid-template-columns: repeat(2, 1fr); }
  .ic-grid { grid-template-columns: 1fr; }
  .hero-cards { display: none; }
  .hero-layout { grid-template-columns: 1fr; gap: 0; }
  .founder-card { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .founder-actions { justify-content: center; }
  .contract-filter .filter-chips { gap: 6px; }
  .filter-chip { font-size: .75rem; padding: 5px 12px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1120px); }
  .section { padding: 48px 0; }
  .hero { min-height: auto; padding: 20px 0 48px; }
  .hero-content .subhead { font-size: 1rem; }
  .hero-tags { gap: 6px; }
  .hero-tags span { font-size: .72rem; padding: 3px 10px; }
  .feature-grid { grid-template-columns: 1fr; }
  .services-minor { grid-template-columns: 1fr; }
  .condo-grid { grid-template-columns: 1fr; }
  .condo-section { padding: 32px 0; border-radius: var(--radius-md); }
  .brands-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); }
  .nav-bar { flex-wrap: wrap; justify-content: center; }
  .nav-links { justify-content: center; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; justify-content: flex-end; }
  .float-whatsapp .label { display: none; }
  .float-whatsapp { padding: 14px; right: 16px; bottom: 16px; }
  .footer-inner { flex-direction: column; gap: 20px; }
  .hero-actions, .cta-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .ic-header { flex-direction: column; align-items: flex-start; }
  .ic-card { padding: 24px; }
  .ic-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .ic-hero-visual { grid-template-columns: 1fr 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .example-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .hero-orb { display: none; }
  .back-to-top { right: 16px; bottom: 72px; width: 36px; height: 36px; }
  .founder-card { padding: 24px; }
  .filter-chips { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 8px; }
  .filter-chip { white-space: nowrap; flex-shrink: 0; }
}
