/* ═══════════════════════════════════════════
   ZAP — Global Stylesheet
   ═══════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold:        #4ADE80;
  --gold2:       #16a34a;
  --gold-glow:   rgba(74, 222, 128, .35);
  --bg:          #ffffff;
  --bg2:         #f7f7f5;
  --bg3:         #f0f0ec;
  --border:      rgba(0, 0, 0, .08);
  --text:        #1a1a1a;
  --muted:       #555555;
  --subtle:      #888888;
  --cream:       #F2F1EC;
  --txt:         #1A1A1A;
  --orange:      #F5A623;
  --purple:      #9B59B6;
  --red:         #FF453A;
  --green:       #30D158;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --nav-h:       70px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar              { width: 6px; }
::-webkit-scrollbar-track        { background: #f0f0ec; }
::-webkit-scrollbar-thumb        { background: #bbb; border-radius: 3px; }


/* ═══════════════════════════════════════════
   LANGUAGE SWITCHER
   ═══════════════════════════════════════════ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.lang-switcher button {
  background: none;
  border: none;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  padding: 3px 6px;
  border-radius: 6px;
  transition: all .2s;
  font-family: 'Inter', sans-serif;
  color: var(--muted);
}
.lang-switcher button.active {
  background: rgba(74, 222, 128, .12);
  color: var(--gold2);
}
.lang-switcher span { color: var(--border); }


/* ═══════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: padding .3s;
}
nav.scrolled { padding: 12px 32px; }

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 20px; font-weight: 900; color: #1a1a1a; text-decoration: none;
  position: relative; z-index: 110;
}
.nav-logo img { width: 32px; height: 32px; border-radius: 8px; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--muted);
  text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: #1a1a1a; }

.nav-right { display: flex; align-items: center; gap: 16px; }

.nav-cta {
  padding: 9px 20px; border-radius: 22px;
  font-size: 13px; font-weight: 700;
  background: var(--gold); color: #1a1a1a;
  transition: all .2s; border: none; cursor: pointer;
  text-decoration: none; display: inline-block;
}
.nav-cta:hover { background: var(--gold2); color: #fff; }

/* ── Hamburger button ── */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  position: relative; z-index: 110;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #1a1a1a; border-radius: 2px;
  transition: all .3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile drawer ── */
.nav-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 90px 28px 36px;
  flex-direction: column;
  gap: 0;
  z-index: 105;
  border-bottom: 1px solid var(--border);
  transform: translateY(-110%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.nav-drawer.open {
  transform: translateY(0);
}
.nav-drawer a {
  font-size: 18px; font-weight: 600; color: var(--text);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
  display: block;
}
.nav-drawer a:last-of-type { border-bottom: none; }
.nav-drawer a:hover { color: var(--gold2); }

.nav-drawer-bottom {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nav-drawer-cta {
  display: block;
  padding: 15px 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gold), #16a34a);
  color: #1a1a1a; font-size: 16px; font-weight: 800;
  text-align: center; text-decoration: none;
  box-shadow: 0 4px 20px var(--gold-glow);
}
.nav-drawer-lang {
  display: flex; justify-content: center; gap: 8px;
}

/* hamburger button — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 4px;
  border-radius: 8px; transition: background .2s;
}
.nav-hamburger:hover { background: var(--bg3); }
.nav-hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s;
  transform-origin: center;
}

/* animated X state */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile dropdown */
.nav-mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; z-index: 99;
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px 28px;
  flex-direction: column; gap: 4px;
  transform: translateY(-100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.nav-mobile-menu.open {
  display: flex;
  transform: translateY(0);
}
.nav-mobile-menu a {
  font-size: 17px; font-weight: 600; color: var(--text);
  text-decoration: none; padding: 13px 8px;
  border-bottom: 1px solid var(--border); transition: color .2s;
}
.nav-mobile-menu a:last-of-type { border-bottom: none; }
.nav-mobile-menu a:hover { color: var(--gold2); }
.nav-mobile-menu .mobile-cta {
  margin-top: 16px;
  padding: 14px 24px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gold), #16a34a);
  color: #1a1a1a; font-size: 16px; font-weight: 800;
  text-align: center; border: none; cursor: pointer;
  box-shadow: 0 4px 24px var(--gold-glow);
  text-decoration: none; display: block;
}
.nav-mobile-menu .mobile-lang {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 8px; font-size: 13px; font-weight: 600; color: var(--muted);
}


/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding: 120px 32px 60px;
  max-width: 1160px; margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 14px; border-radius: 20px;
  background: rgba(74, 222, 128, .08); border: 1px solid rgba(74, 222, 128, .2);
  font-size: 12px; font-weight: 700; color: var(--gold);
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  animation: pulse 2s infinite;
}

h1 {
  font-size: clamp(36px, 5vw, 58px); font-weight: 900;
  line-height: 1.08; letter-spacing: -.03em; margin-bottom: 20px;
}
h1 .accent {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px); color: var(--muted);
  font-weight: 400; line-height: 1.6; margin-bottom: 36px;
  max-width: 560px; margin-left: auto; margin-right: auto;
}
.hero-sub strong { color: #333; font-weight: 600; }

/* countdown strip */
.launch-strip {
  display: inline-flex; align-items: center; gap: 24px;
  background: #1a1a1a; color: #fff;
  padding: 14px 28px; border-radius: 18px;
  margin-bottom: 36px; flex-wrap: wrap; justify-content: center;
}
.launch-strip .ls-label {
  font-size: 12px; font-weight: 600; color: var(--gold);
  text-transform: uppercase; letter-spacing: .08em;
}
.countdown { display: flex; gap: 12px; }
.cd-unit { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.cd-num {
  font-size: 28px; font-weight: 900; line-height: 1;
  color: #fff; min-width: 44px; text-align: center;
  font-variant-numeric: tabular-nums;
}
.cd-label { font-size: 9px; font-weight: 600; color: #888; text-transform: uppercase; letter-spacing: .06em; }
.cd-sep { font-size: 24px; font-weight: 900; color: var(--gold); align-self: flex-start; padding-top: 2px; }


/* waitlist form */
.waitlist-form {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 16px; max-width: 480px; margin-left: auto; margin-right: auto;
  position: relative;
}
.waitlist-input {
  flex: 1; min-width: 220px; padding: 14px 18px;
  border-radius: var(--radius-md); border: 1.5px solid var(--border);
  background: rgba(0, 0, 0, .03);
  color: var(--text); font-size: 15px; font-family: 'Inter', sans-serif;
  outline: none; transition: border-color .2s;
}
.waitlist-input::placeholder { color: #aaa; }
.waitlist-input:focus { border-color: rgba(74, 222, 128, .6); }

.waitlist-btn {
  padding: 14px 26px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gold), #16a34a);
  color: #1a1a1a; font-size: 15px; font-weight: 800;
  border: none; cursor: pointer; white-space: nowrap;
  box-shadow: 0 4px 24px var(--gold-glow);
  transition: all .2s; font-family: 'Inter', sans-serif;
}
.waitlist-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 30px var(--gold-glow); }

.success-msg {
  display: none; flex-direction: column; align-items: center; gap: 6px;
  padding: 14px 20px; border-radius: var(--radius-md);
  background: rgba(74, 222, 128, .08); border: 1px solid rgba(74, 222, 128, .2);
  font-size: 14px; font-weight: 600; color: var(--gold);
  max-width: 480px; margin: 0 auto 16px;
}
.success-msg.show { display: flex; }

.hero-social-proof {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 13px; color: var(--subtle); margin-bottom: 60px;
}
.hero-avatars { display: flex; }
.hero-av {
  width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff; margin-left: -8px;
}
.hero-av:first-child { margin-left: 0; }
.hero-sp-text { font-size: 12px; color: #555; }
.hero-sp-text strong { color: #333; }


/* ═══════════════════════════════════════════
   PHONE MOCKUPS ROW
   ═══════════════════════════════════════════ */
.phones-row {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; padding: 0 20px;
}

.phone {
  width: 240px; flex-shrink: 0;
  background: #000; border-radius: 40px; padding: 8px;
  box-shadow: 0 40px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.05);
  position: relative;
}
.phone.big {
  width: 260px; z-index: 2;
  box-shadow: 0 50px 100px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.08);
}
.phone-di {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 26px; background: #000; border-radius: 20px; z-index: 10;
}
.scr {
  width: 100%; aspect-ratio: 9/19.5;
  background: var(--cream); border-radius: 34px;
  overflow: hidden; display: flex; flex-direction: column;
  font-size: 10px; color: var(--txt); position: relative;
}

/* phone status bar */
.sb {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 14px 4px; font-size: 9px; font-weight: 600; flex-shrink: 0;
}
.sb-r { display: flex; align-items: center; gap: 3px; font-size: 8px; }
.sb-r svg { width: 13px; height: 13px; }
.bars { display: flex; gap: 1px; align-items: flex-end; }
.bars i { display: block; width: 3px; background: #1a1a1a; border-radius: 1px; }
.bars i:nth-child(1) { height: 4px; }
.bars i:nth-child(2) { height: 6px; }
.bars i:nth-child(3) { height: 8px; }
.bars i:nth-child(4) { height: 10px; }

/* phone tab bar */
.tb {
  display: flex; align-items: center; justify-content: space-around;
  padding: 5px 0 12px; background: var(--cream);
  border-top: 1px solid #E5E4DF; flex-shrink: 0; font-size: 7px; color: #999;
}
.tb-i { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.tb-i.on { color: var(--txt); }
.tb-i svg { width: 14px; height: 14px; }
.tb-f {
  width: 36px; height: 36px; background: #1a1a1a; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: -14px; box-shadow: 0 2px 10px rgba(0,0,0,.2);
}
.tb-f svg { width: 16px; height: 16px; fill: #fff; }

/* phone screen content */
.sc { flex: 1; overflow: hidden; padding: 0 8px; }
.st { font-size: 20px; font-weight: 800; padding: 6px 4px 8px; }

/* receipt item row */
.ri {
  display: flex; align-items: center; gap: 7px;
  background: #fff; border-radius: 12px; padding: 8px; margin-bottom: 5px;
}
.ri-ic {
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ri-ic svg { width: 12px; height: 12px; fill: #fff; }
.ri-ic.o { background: var(--orange); }
.ri-ic.s { background: var(--purple); }
.ri-m { flex: 1; min-width: 0; }
.ri-n { font-weight: 600; font-size: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ri-c { font-size: 8px; color: #999; }
.ri-r { text-align: right; flex-shrink: 0; }
.ri-a { font-weight: 600; font-size: 10px; }
.ri-d { font-size: 7px; color: #999; }
.ri-v { color: #ccc; font-size: 11px; margin-left: 2px; }


/* ═══════════════════════════════════════════
   SECTION COMMONS
   ═══════════════════════════════════════════ */
.section-divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.section { padding: 96px 32px; max-width: 1160px; margin: 0 auto; }

.section-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 13px; border-radius: 20px;
  background: rgba(74, 222, 128, .07); border: 1px solid rgba(74, 222, 128, .16);
  font-size: 11px; font-weight: 700; color: var(--gold);
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: .07em;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px); font-weight: 900;
  letter-spacing: -.025em; line-height: 1.1; margin-bottom: 14px;
}

.section-sub {
  font-size: 17px; color: var(--muted); max-width: 520px; line-height: 1.6;
}

.center { text-align: center; margin: 0 auto; }
.center .section-sub { margin: 0 auto; }


/* ═══════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════ */
.how-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-top: 56px;
}
.how-card {
  padding: 28px 22px; border-radius: var(--radius-lg);
  background: var(--bg3); border: 1px solid var(--border);
  position: relative; overflow: hidden; transition: border-color .3s;
}
.how-card:hover { border-color: rgba(74, 222, 128, .35); }
.how-card::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 150px; height: 150px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,222,128,.06), transparent 70%);
}
.how-num {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(74, 222, 128, .1); border: 1px solid rgba(74, 222, 128, .2);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: var(--gold); margin-bottom: 18px;
}
.how-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.how-title { font-size: 16px; font-weight: 800; color: #1a1a1a; margin-bottom: 8px; }
.how-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }


/* ═══════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════ */
.features-bg { background: var(--bg2); }
.features-inner { padding: 96px 32px; max-width: 1160px; margin: 0 auto; }

.feat-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px; margin-top: 56px;
}
.feat-card {
  padding: 22px; border-radius: 18px;
  background: var(--bg3); border: 1px solid var(--border);
  display: flex; gap: 16px; align-items: flex-start;
  transition: all .25s;
}
.feat-card:hover { border-color: rgba(74, 222, 128, .2); transform: translateY(-2px); }
.feat-ico {
  width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.feat-name { font-size: 15px; font-weight: 700; color: #1a1a1a; margin-bottom: 4px; }
.feat-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }


/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.fq { border-bottom: 1px solid var(--border); padding: 24px 0; }
.fq-q {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-size: 16px; font-weight: 600;
}
.fq-q svg { width: 20px; height: 20px; transition: transform .3s; flex-shrink: 0; margin-left: 16px; }
.fq-a {
  max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease;
  color: var(--muted); font-size: 14px; line-height: 1.6;
}
.fq.open .fq-a { max-height: 200px; padding-top: 16px; }
.fq.open .fq-q svg { transform: rotate(45deg); }


/* ═══════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════ */
.cta-section {
  padding: 96px 32px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 300px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(74,222,128,.07), transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(30px, 5vw, 52px); font-weight: 900;
  letter-spacing: -.03em; margin-bottom: 14px;
}
.cta-section p { font-size: 18px; color: var(--muted); margin-bottom: 36px; }


/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
footer {
  padding: 40px 32px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  max-width: 1160px; margin: 0 auto;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 18px; font-weight: 900; color: #1a1a1a; text-decoration: none;
}
.footer-logo img { width: 24px; height: 24px; border-radius: 6px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
  font-size: 13px; color: var(--subtle); text-decoration: none; transition: color .2s;
}
.footer-links a:hover { color: #1a1a1a; }
.footer-copy { font-size: 12px; color: var(--subtle); }


/* ═══════════════════════════════════════════
   INNER PAGE SHARED (privacy, contact)
   ═══════════════════════════════════════════ */
.page-hero {
  padding: 140px 32px 60px;
  max-width: 800px; margin: 0 auto; text-align: center;
}
.page-hero h1 { font-size: clamp(32px, 4vw, 52px); margin-bottom: 14px; }
.page-hero p  { font-size: 18px; color: var(--muted); }

.page-body {
  max-width: 800px; margin: 0 auto;
  padding: 0 32px 96px;
}

/* prose block used in privacy & contact info */
.prose h2 {
  font-size: 22px; font-weight: 800;
  margin: 48px 0 12px; color: var(--text);
}
.prose h3 {
  font-size: 17px; font-weight: 700;
  margin: 28px 0 8px; color: var(--text);
}
.prose p  { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 14px; }
.prose ul { padding-left: 20px; margin-bottom: 14px; }
.prose li { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 6px; }
.prose a  { color: var(--gold2); text-decoration: underline; }

/* contact form */
.contact-form { display: flex; flex-direction: column; gap: 18px; margin-top: 40px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px; border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  background: rgba(0,0,0,.02);
  font-size: 15px; font-family: 'Inter', sans-serif; color: var(--text);
  outline: none; transition: border-color .2s; resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(74,222,128,.6); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.submit-btn {
  padding: 15px 28px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gold), #16a34a);
  color: #1a1a1a; font-size: 16px; font-weight: 800;
  border: none; cursor: pointer;
  box-shadow: 0 4px 24px var(--gold-glow);
  transition: all .2s; font-family: 'Inter', sans-serif; align-self: flex-start;
}
.submit-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 30px var(--gold-glow); }

.contact-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 56px;
}
.contact-card {
  padding: 24px 20px; border-radius: var(--radius-lg);
  background: var(--bg3); border: 1px solid var(--border);
  text-align: center; transition: border-color .3s;
}
.contact-card:hover { border-color: rgba(74,222,128,.35); }
.contact-card .cc-icon { font-size: 28px; margin-bottom: 12px; }
.contact-card .cc-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.contact-card .cc-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }
.contact-card a { color: var(--gold2); text-decoration: none; font-weight: 600; }
.contact-card a:hover { text-decoration: underline; }

.form-success {
  display: none; padding: 20px; border-radius: var(--radius-md);
  background: rgba(74,222,128,.08); border: 1px solid rgba(74,222,128,.2);
  text-align: center; font-size: 15px; font-weight: 600; color: var(--gold2);
}
.form-success.show { display: block; }


/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.7); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }


/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {
  nav { padding: 14px 20px; }
  nav.scrolled { padding: 10px 20px; }
  .nav-links { display: none; }
  .nav-right .lang-switcher { display: none; }
  .nav-right .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer { display: flex; }
  .hero { padding: 100px 20px 40px; }
  .phones-row { gap: 12px; }
  .phone { width: 200px; border-radius: 34px; padding: 6px; }
  .phone.big { width: 220px; }
  .phone-di { width: 76px; height: 22px; top: 12px; }
  .scr { border-radius: 30px; }
  .how-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .feat-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 20px; }
  .features-inner { padding: 64px 20px; }
  .contact-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 120px 20px 40px; }
  .page-body { padding: 0 20px 64px; }
  footer { flex-direction: column; align-items: flex-start; padding: 30px 20px; }
}

@media (max-width: 600px) {
  .phones-row .phone:not(.big) { display: none; }
  .phones-row { justify-content: center; }
  .how-grid { grid-template-columns: 1fr; }
  .waitlist-form { flex-direction: column; }
  .waitlist-btn { width: 100%; }
  .launch-strip { gap: 12px; }
  .cd-num { font-size: 22px; min-width: 36px; }
  .contact-cards { grid-template-columns: 1fr; }
}