@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #07131d;
  --bg-soft: #0d2231;
  --surface: #112a3c;
  --line: #2c4a60;
  --text: #eef7ff;
  --muted: #b9cad7;
  --accent: #1ecad3;
  --accent-2: #f7b53d;
  --ok: #31cf7b;
  --radius: 20px;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(1200px 700px at 100% -10%, rgba(30, 202, 211, 0.14), transparent 60%),
    radial-gradient(900px 500px at -10% 40%, rgba(247, 181, 61, 0.10), transparent 65%),
    var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── NAVBAR ── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(14px);
  background: rgba(6, 17, 26, 0.88);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: contain;
  background: linear-gradient(145deg, rgba(30,202,211,0.22), rgba(247,181,61,0.2));
  border: 1px solid rgba(255,255,255,0.18);
  padding: 3px;
}

.menu {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.menu a:hover { color: var(--text); }

.topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  cursor: pointer;
  padding: 8px 10px;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.lang-switch select {
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  background: #102636;
  color: var(--text);
  padding: 6px 8px;
  font-size: 12px;
  font-family: inherit;
  color-scheme: dark;
}

/* ── LAYOUT ── */
main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 72px;
  display: grid;
  gap: 20px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease, opacity 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-main {
  background: linear-gradient(120deg, var(--accent), #15a7d3);
  color: #042230;
  box-shadow: 0 4px 20px rgba(30,202,211,0.25);
  font-size: 16px;
  padding: 15px 28px;
}

.btn-main:hover { box-shadow: 0 6px 28px rgba(30,202,211,0.38); }

.btn-soft {
  border: 1px solid rgba(247,181,61,0.35);
  background: rgba(247,181,61,0.10);
  color: #ffd89f;
  font-size: 15px;
  padding: 14px 22px;
}

.btn-line {
  border: 1px solid rgba(30,202,211,0.4);
  background: rgba(30,202,211,0.08);
  color: #a9f4f8;
  padding: 10px 14px;
  font-size: 14px;
}

.actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── CARD BASE ── */
.card-base {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(19,44,61,0.92), rgba(10,29,42,0.94));
  box-shadow: var(--shadow);
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  min-height: 440px;
}

.hero-copy {
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(19,44,61,0.95), rgba(10,29,42,0.96));
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.lead {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 400;
}

/* Hero image — sem card, imagem livre */
.hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,19,29,0.18), transparent 60%);
  pointer-events: none;
}

/* ── STATS ── */
.stats {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.stats article {
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(19,44,61,0.92), rgba(10,29,42,0.94));
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.stat-icon.cyan { background: rgba(30,202,211,0.12); color: var(--accent); }
.stat-icon.amber { background: rgba(247,181,61,0.12); color: var(--accent-2); }
.stat-icon.green { background: rgba(49,207,123,0.12); color: var(--ok); }

.stat-number {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.stat-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── SERVICES ── */
.services {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(19,44,61,0.92), rgba(10,29,42,0.94));
  box-shadow: var(--shadow);
  padding: 28px;
}

.services h2 { margin: 0 0 18px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  background: rgba(7,28,42,0.65);
  padding: 20px;
  transition: border-color 0.2s;
}

.service-card:hover { border-color: rgba(30,202,211,0.3); }

.service-card.woman {
  background: rgba(190,120,255,0.08);
  border-color: rgba(190,120,255,0.28);
}

.service-card.woman:hover { border-color: rgba(190,120,255,0.5); }

.service-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  opacity: 0.85;
}

.service-card h3 { margin: 0 0 8px; font-size: 20px; font-weight: 700; }
.service-card p { margin: 0 0 14px; color: var(--muted); line-height: 1.55; font-size: 14px; }

/* ── TRZ MULHER ── */
.woman-section {
  border: 1px solid rgba(190,120,255,0.35);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(165deg, rgba(18,10,36,0.98), rgba(10,6,24,1));
}

.woman-image {
  background-image: url('./assets/trz-mulher.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: rgba(18,10,36,0.98);
  min-height: 400px;
}

.woman-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(10,6,24,0.85) 100%);
  pointer-events: none;
}

.woman-inner {
  padding: 40px;
  background:
    radial-gradient(600px 400px at 100% 0%, rgba(190,120,255,0.10), transparent 60%),
    radial-gradient(400px 300px at 0% 100%, rgba(255,100,180,0.06), transparent 60%);
}

@media (max-width: 980px) {
  .woman-section {
    grid-template-columns: 1fr;
  }
  .woman-image {
    min-height: 280px;
  }
  .woman-image::after {
    background: linear-gradient(180deg, transparent 50%, rgba(10,6,24,0.9) 100%);
  }
}

.woman-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(190,120,255,0.15);
  border: 1px solid rgba(190,120,255,0.35);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d8a8ff;
  margin-bottom: 18px;
}

.woman-section h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  background: linear-gradient(120deg, #e8c8ff, #c878ff, #ff80c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.woman-lead {
  color: #c8a8df;
  font-size: 16px;
  line-height: 1.65;
  max-width: 600px;
  margin: 0 0 36px;
}

.woman-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.woman-card {
  border: 1px solid rgba(190,120,255,0.20);
  border-radius: 16px;
  background: rgba(30,10,55,0.55);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s, background 0.2s;
}

.woman-card:hover {
  border-color: rgba(190,120,255,0.45);
  background: rgba(40,14,72,0.65);
}

.woman-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(190,120,255,0.15);
  color: #d8a8ff;
  flex-shrink: 0;
}

.woman-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #ecdeff;
}

.woman-card p {
  margin: 0;
  color: #b090c8;
  font-size: 14px;
  line-height: 1.65;
}

.woman-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: #b090c8;
  font-size: 14px;
  line-height: 1.55;
}

.woman-card ul li::marker { color: #be78ff; }

.btn-woman {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid rgba(190,120,255,0.45);
  background: rgba(190,120,255,0.12);
  color: #d8a8ff;
  text-decoration: none;
  margin-top: auto;
  transition: background 0.2s, border-color 0.2s, transform 0.18s;
}

.btn-woman:hover {
  background: rgba(190,120,255,0.22);
  border-color: rgba(190,120,255,0.65);
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .woman-cards { grid-template-columns: 1fr; }
  .woman-inner { padding: 28px 20px; }
}

/* ── HOW IT WORKS ── */
.grid-two {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

.grid-two.reverse { grid-template-columns: 0.9fr 1.1fr; }

.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(19,44,61,0.92), rgba(10,29,42,0.94));
  box-shadow: var(--shadow);
}

.card.media {
  padding: 0;
  overflow: hidden;
}

.card.media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.025em;
}

ol, ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}

.note { margin: 0 0 16px; color: var(--muted); line-height: 1.6; font-size: 15px; }

.fee-box {
  margin-top: 16px;
  border: 1px solid rgba(49,207,123,0.38);
  border-radius: 14px;
  background: rgba(49,207,123,0.08);
  padding: 14px 16px;
}

.fee-box strong { display: block; color: #a0f0c8; font-size: 13px; font-weight: 600; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.06em; }
.fee-box p { margin: 4px 0; color: #dcf8e9; font-size: 15px; font-weight: 500; }

/* ── COMPARAÇÃO ── */
.comparison {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(19,44,61,0.92), rgba(10,29,42,0.94));
  box-shadow: var(--shadow);
  padding: 28px;
}

.comparison-lead {
  margin: -6px 0 22px;
  color: var(--muted);
  font-size: 15px;
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.comp-table th {
  padding: 10px 14px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.comp-table th.col-trz { color: var(--accent); }
.comp-table th.col-other { color: #8ca0b0; }

.comp-table td {
  padding: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  vertical-align: middle;
}

.comp-table tr:last-child td { border-bottom: none; }

.comp-table .col-ride { color: var(--muted); font-size: 14px; }

.col-trz-val {
  font-weight: 700;
  font-size: 17px;
  color: var(--ok);
}

.col-trz-sub, .col-other-sub {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 2px;
}

.col-other-val {
  font-weight: 600;
  font-size: 15px;
  color: #7a95a8;
}

.comp-gain {
  display: inline-block;
  background: rgba(49,207,123,0.12);
  border: 1px solid rgba(49,207,123,0.28);
  color: var(--ok);
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 13px;
  font-weight: 700;
}

/* ── SECURITY ── */
.security {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  border: 1px solid rgba(30,202,211,0.2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background:
    radial-gradient(900px 500px at 100% 50%, rgba(30,202,211,0.10), transparent 65%),
    radial-gradient(600px 400px at 0% 80%, rgba(247,181,61,0.07), transparent 60%),
    linear-gradient(165deg, rgba(11,32,46,0.98), rgba(6,18,28,1));
}

.security img { display: none; }

.security .overlay { display: none; }

.security .content {
  position: relative;
  z-index: 1;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.security h2 { margin: 0 0 8px; }

.security .sec-lead {
  margin: 0 0 28px;
  color: #c8dde9;
  font-size: 15px;
  line-height: 1.6;
  max-width: 560px;
}

.sec-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 640px;
}

.sec-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(7,19,29,0.55);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 14px;
  backdrop-filter: blur(6px);
}

.sec-feature-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30,202,211,0.12);
  color: var(--accent);
}

.sec-feature-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.sec-feature-text span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

/* ── DOWNLOAD ── */
.download {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(19,44,61,0.92), rgba(10,29,42,0.94));
  box-shadow: var(--shadow);
  padding: 32px;
  text-align: center;
}

.download h2 { margin: 0 0 8px; }
.download > p { margin: 0 0 22px; color: var(--muted); font-size: 15px; }
.download .actions { justify-content: center; }

.ios-waitlist {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.ios-waitlist p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.waitlist-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.waitlist-form input {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(10,30,44,0.8);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  width: 260px;
  outline: none;
  transition: border-color 0.2s;
}

.waitlist-form input:focus { border-color: var(--accent); }
.waitlist-form input::placeholder { color: var(--muted); }

.waitlist-form button {
  padding: 12px 20px;
  border-radius: 12px;
  border: none;
  background: rgba(30,202,211,0.15);
  border: 1px solid rgba(30,202,211,0.35);
  color: var(--accent);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.waitlist-form button:hover { background: rgba(30,202,211,0.25); }

/* ── CONTACT ── */
.contact {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(19,44,61,0.92), rgba(10,29,42,0.94));
  box-shadow: var(--shadow);
  padding: 28px;
}

.contact-lead { margin: 0; color: var(--muted); font-size: 15px; }

.contact-grid {
  margin-top: 18px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-card {
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  background: rgba(8,26,38,0.55);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: border-color 0.2s, background 0.2s;
}

.contact-card:hover {
  border-color: rgba(30,202,211,0.4);
  background: rgba(30,202,211,0.05);
}

.contact-card strong { font-size: 15px; font-weight: 600; }
.contact-card span { color: var(--muted); font-size: 14px; }
.contact-note { margin: 14px 0 0; color: #8caabf; font-size: 13px; }

/* ── FAQ ── */
.faq {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(19,44,61,0.92), rgba(10,29,42,0.94));
  box-shadow: var(--shadow);
  padding: 28px;
}

.faq details {
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: 10px;
  background: rgba(8,26,38,0.50);
  transition: border-color 0.2s;
}

.faq details[open] { border-color: rgba(30,202,211,0.3); }
.faq summary { cursor: pointer; font-weight: 600; font-size: 15px; }
.faq p { margin: 10px 0 2px; color: var(--muted); line-height: 1.6; font-size: 14px; }

/* ── FOOTER ── */
.footer {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  padding: 24px 16px 40px;
}

/* ── MODALS ── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3,10,16,0.82);
  display: grid;
  place-items: center;
  padding: 18px;
  z-index: 90;
  backdrop-filter: blur(4px);
}

.modal-backdrop[hidden] { display: none !important; }

.site-modal {
  width: min(680px, 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(18,49,70,0.98), rgba(8,24,35,0.98));
  box-shadow: 0 24px 90px rgba(0,0,0,0.5);
  overflow: hidden;
}

.site-modal header {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.site-modal h3 { margin: 0; font-size: 22px; font-weight: 700; }

.modal-body { padding: 18px 20px 22px; }
.modal-body p { margin: 0 0 12px; color: var(--muted); line-height: 1.6; font-size: 15px; }
.modal-body ul { margin: 0; }

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07);
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  font-family: inherit;
}

body.modal-open { overflow: hidden; }

/* ── WHATSAPP FLUTUANTE ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: wa-pulse 2.8s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.6);
  animation: none;
}

.wa-tooltip {
  position: absolute;
  right: 68px;
  background: rgba(7, 19, 29, 0.92);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 10px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  border: 1px solid rgba(255,255,255,0.12);
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: rgba(7, 19, 29, 0.92);
}

.wa-float:hover .wa-tooltip { opacity: 1; }

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 6px 32px rgba(37,211,102,0.75), 0 0 0 10px rgba(37,211,102,0.08); }
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .hamburger { display: flex; }
  .menu { display: none; }

  .menu.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 77px;
    left: 0;
    right: 0;
    z-index: 39;
    background: rgba(6,17,26,0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 18px 22px;
    gap: 16px;
    font-size: 16px;
  }

  .topbar-actions { gap: 6px; }

  .hero,
  .grid-two,
  .grid-two.reverse,
  .stats,
  .service-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-media { min-height: 260px; }
  .card.media img { min-height: 260px; }
  .sec-features { grid-template-columns: 1fr; }

  .comp-table th:last-child,
  .comp-table td:last-child { display: none; }

  .waitlist-form input { width: 100%; }
  .waitlist-form { flex-direction: column; align-items: center; }
}
