/* MarIA — Landing Page Styles */
/* ============================== */


:root {
  --bg: #080c14;
  --bg2: #0d1320;
  --bg3: #111827;
  --card: #131c2e;
  --card2: #1a2540;
  --cyan: #00d4c8;
  --cyan2: #00a8a0;
  --cyan-dim: rgba(0,212,200,0.12);
  --cyan-glow: rgba(0,212,200,0.25);
  --purple: #7c3aed;
  --purple-dim: rgba(124,58,237,0.15);
  --green: #22d3a5;
  --green-dim: rgba(34,211,165,0.12);
  --text: #f0f4ff;
  --text2: #8892a4;
  --text3: #c4ccd8;
  --border: rgba(255,255,255,0.07);
  --border2: rgba(0,212,200,0.25);
  --gold: #f0b429;
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(0,212,200,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,200,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* NAV */
nav {
  position: fixed; top: 0; width: 100%; z-index: 200;
  background: rgba(8,12,20,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 6vw;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo { font-family: 'Syne', sans-serif; font-size: 1.6rem; font-weight: 800; letter-spacing: -1px; color: var(--text); }
.nav-logo span { color: var(--cyan); text-shadow: 0 0 20px var(--cyan-glow); }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--text2); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--cyan); }
.nav-cta {
  background: var(--cyan); color: var(--bg);
  border: none; padding: 10px 24px; border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif; font-size: 0.88rem; font-weight: 700;
  cursor: pointer; text-decoration: none; transition: all 0.2s;
  box-shadow: 0 0 20px var(--cyan-glow);
}
.nav-cta:hover { background: #00ede0; box-shadow: 0 0 36px var(--cyan-glow); transform: translateY(-1px); }

/* HERO */
.hero {
  min-height: 100vh; padding: 140px 6vw 100px;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-glow { position: absolute; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(0,212,200,0.07) 0%, transparent 70%); top: -100px; right: -200px; pointer-events: none; }
.hero-glow2 { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(124,58,237,0.06) 0%, transparent 70%); bottom: 0; left: -100px; pointer-events: none; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,212,200,0.08); border: 1px solid var(--border2);
  padding: 7px 18px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 700; color: var(--cyan);
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 28px;
  animation: fadeUp 0.7s ease both;
}
.badge-pulse { width: 7px; height: 7px; background: var(--cyan); border-radius: 50%; animation: blink 1.8s infinite; }
.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -2px; margin-bottom: 24px;
  animation: fadeUp 0.7s ease both 0.1s;
}
.hero h1 .hl { color: var(--cyan); text-shadow: 0 0 40px var(--cyan-glow); }
.hero h1 .hl2 { color: #a78bfa; }
.hero-sub { font-size: 1.05rem; color: var(--text2); line-height: 1.75; max-width: 500px; margin-bottom: 40px; animation: fadeUp 0.7s ease both 0.2s; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.7s ease both 0.3s; }
.btn-primary {
  background: var(--cyan); color: var(--bg);
  padding: 15px 32px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem; text-decoration: none;
  transition: all 0.2s; box-shadow: 0 0 28px var(--cyan-glow);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: #00ede0; transform: translateY(-2px); box-shadow: 0 0 50px var(--cyan-glow); }
.btn-ghost {
  color: var(--text3); border: 1px solid var(--border);
  padding: 15px 28px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }
.hero-stats { display: flex; gap: 32px; margin-top: 52px; animation: fadeUp 0.7s ease both 0.4s; }
.stat-val { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: var(--cyan); line-height: 1; }
.stat-label { font-size: 0.76rem; color: var(--text2); margin-top: 4px; font-weight: 500; }

/* HERO TERMINAL */
.hero-visual { position: relative; animation: fadeIn 1s ease both 0.5s; }
.terminal {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,212,200,0.08);
}
.t-bar {
  background: var(--card2); border-bottom: 1px solid var(--border);
  padding: 14px 20px; display: flex; align-items: center; gap: 8px;
}
.t-dot { width: 12px; height: 12px; border-radius: 50%; }
.t-dot.r { background: #ff5f57; } .t-dot.y { background: #febc2e; } .t-dot.g { background: #28c840; }
.t-title { margin-left: 12px; font-size: 0.78rem; color: var(--text2); font-weight: 600; letter-spacing: 0.5px; }
.t-live { margin-left: auto; display: flex; align-items: center; gap: 6px; font-size: 0.72rem; color: var(--green); font-weight: 700; }
.t-live-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: blink 1.5s infinite; }
.t-body { padding: 24px; }
.msg { margin-bottom: 14px; display: flex; gap: 12px; align-items: flex-start; }
.msg.r { flex-direction: row-reverse; }
.m-av {
  width: 34px; height: 34px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; flex-shrink: 0;
}
.m-av.ai { background: linear-gradient(135deg, var(--cyan), #00a8a0); color: var(--bg); font-family: 'Syne', sans-serif; }
.m-av.user { background: var(--purple-dim); border: 1px solid rgba(124,58,237,0.4); color: #a78bfa; font-size: 1rem; }
.m-bub {
  background: var(--card2); border: 1px solid var(--border);
  border-radius: 14px 14px 14px 4px;
  padding: 12px 16px; font-size: 0.87rem;
  color: var(--text3); line-height: 1.55; max-width: 78%;
  animation: slideMsg 0.4s ease both;
}
.msg.r .m-bub { border-radius: 14px 14px 4px 14px; background: rgba(124,58,237,0.15); border-color: rgba(124,58,237,0.3); }
.m-name { font-size: 0.71rem; font-weight: 700; color: var(--cyan); margin-bottom: 4px; }
.msg.r .m-name { color: #a78bfa; }
.sys-msg {
  text-align: center; padding: 9px 16px; margin: 12px 0;
  background: rgba(34,211,165,0.08); border: 1px solid rgba(34,211,165,0.2);
  border-radius: 50px; font-size: 0.77rem; color: var(--green); font-weight: 600;
}
.typing-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; }
.typing-dots span {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); opacity: 0.4; animation: typeDot 1.2s infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
.typing-lbl { font-size: 0.74rem; color: var(--text2); }
.fc {
  position: absolute; background: var(--card); border: 1px solid var(--border2);
  border-radius: var(--r-md); padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; font-weight: 600; color: var(--text3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4); z-index: 10;
}
.fc .fci { font-size: 1.3rem; }
.fc .fcl { font-size: 0.7rem; color: var(--text2); font-weight: 400; display: block; }
.fc1 { top: -20px; right: -28px; animation: floatAnim 4s ease-in-out infinite; }
.fc2 { bottom: 30px; left: -32px; animation: floatAnim 4s ease-in-out infinite 2s; }

/* TRUST BAR */
.trust-bar {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg2); padding: 22px 6vw;
  display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap;
}
.trust-lbl { font-size: 0.71rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text2); font-weight: 600; white-space: nowrap; }
.trust-sep { width: 1px; height: 24px; background: var(--border); }
.trust-items { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.ti { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; color: var(--text2); transition: color 0.2s; cursor: default; }
.ti:hover { color: var(--cyan); }
.ti-icon { font-size: 1.2rem; }

/* SECTION */
section { padding: 100px 6vw; position: relative; z-index: 1; }
.sl { font-size: 0.71rem; text-transform: uppercase; letter-spacing: 2.5px; color: var(--cyan); font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.sl::after { content: ''; flex: 1; max-width: 40px; height: 1px; background: var(--cyan); opacity: 0.5; }
.sl.c { justify-content: center; } .sl.c::after { display: none; }
.st { font-family: 'Syne', sans-serif; font-size: clamp(2rem, 3.5vw, 2.9rem); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 16px; }
.ss { font-size: 1.05rem; color: var(--text2); line-height: 1.75; max-width: 560px; }
.sh { margin-bottom: 56px; }
.sh.c { text-align: center; }
.sh.c .ss { margin: 0 auto; }

/* PROBLEMS */
.problems { background: var(--bg2); }
.pg { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.pc { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-md); padding: 32px; transition: all 0.3s; position: relative; overflow: hidden; }
.pc::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--purple), transparent); opacity: 0; transition: opacity 0.3s; }
.pc:hover { border-color: rgba(124,58,237,0.3); transform: translateY(-3px); }
.pc:hover::before { opacity: 1; }
.pc .pi { font-size: 2rem; margin-bottom: 16px; }
.pc h3 { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.pc p { font-size: 0.87rem; color: var(--text2); line-height: 1.65; }

/* VIDEO */
.video-section { background: var(--bg); }
.vw { max-width: 900px; margin: 0 auto; }
.vc {
  background: var(--card); border: 1px solid var(--border2);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 0 80px rgba(0,212,200,0.1), 0 40px 100px rgba(0,0,0,0.6);
  position: relative; aspect-ratio: 16/9; cursor: pointer;
}
.vbg {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0d1320 0%, #0a1a2e 50%, #0d1320 100%);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  position: relative; overflow: hidden;
}
.vbg::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,212,200,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0,212,200,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.play-btn {
  width: 90px; height: 90px; background: var(--cyan); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; color: var(--bg);
  box-shadow: 0 0 60px var(--cyan-glow); transition: all 0.3s;
  position: relative; z-index: 2; animation: playPulse 2.5s ease-in-out infinite;
}
.vc:hover .play-btn { transform: scale(1.1); box-shadow: 0 0 90px rgba(0,212,200,0.5); }
.v-lbl { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--text); margin-top: 20px; position: relative; z-index: 2; }
.v-sub { font-size: 0.85rem; color: var(--text2); margin-top: 6px; position: relative; z-index: 2; }
.v-accent { position: absolute; bottom: -1px; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--cyan), var(--purple), transparent); }
.v-chips { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.v-chip {
  background: var(--card2); border: 1px solid var(--border);
  border-radius: 50px; padding: 8px 18px;
  font-size: 0.79rem; color: var(--text2); font-weight: 500;
  display: flex; align-items: center; gap: 8px; cursor: pointer; transition: all 0.2s;
}
.v-chip:hover, .v-chip.active { border-color: var(--cyan); color: var(--cyan); background: var(--cyan-dim); }

/* MODAL */
.vmodal {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
}
.vmodal.open { display: flex; }
.vm-inner {
  width: min(90vw, 900px); background: var(--card);
  border: 1px solid var(--border2); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 0 100px rgba(0,212,200,0.2);
}
.vm-hd {
  padding: 16px 24px; background: var(--card2);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.vm-title { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; }
.vm-close {
  width: 36px; height: 36px; background: rgba(255,255,255,0.06);
  border: none; border-radius: 50%; cursor: pointer;
  font-size: 1rem; color: var(--text2);
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.vm-close:hover { background: rgba(255,255,255,0.12); color: var(--text); }
.vm-body { aspect-ratio: 16/9; background: #000; display: flex; align-items: center; justify-content: center; }
.vm-ph { text-align: center; padding: 60px 40px; }
.vm-ph .big-i { font-size: 4rem; margin-bottom: 16px; }
.vm-ph p { color: var(--text2); font-size: 0.92rem; line-height: 1.65; max-width: 400px; margin: 0 auto; }
.vm-ph .hint { color: var(--cyan); font-size: 0.8rem; margin-top: 12px; font-weight: 600; font-family: monospace; }

/* FEATURES */
.features { background: var(--bg2); }
.fg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fcard {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 40px 36px;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.fcard::after {
  content: ''; position: absolute; top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--cyan-dim) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.fcard:hover { border-color: var(--border2); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.fcard:hover::after { opacity: 1; }
.f-ico { width: 54px; height: 54px; background: var(--cyan-dim); border: 1px solid var(--border2); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 20px; }
.fcard h3 { font-family: 'Syne', sans-serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.fcard p { font-size: 0.87rem; color: var(--text2); line-height: 1.7; }
.f-tag { display: inline-block; margin-top: 16px; background: var(--cyan-dim); border: 1px solid var(--border2); color: var(--cyan); font-size: 0.72rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; }

/* HOW */
.how { background: var(--bg); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 60px; position: relative; }
.steps::before { content: ''; position: absolute; top: 32px; left: 12%; right: 12%; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan), var(--purple), transparent); opacity: 0.4; }
.step { text-align: center; padding: 0 20px; }
.step-n {
  width: 64px; height: 64px; background: var(--card);
  border: 2px solid var(--border2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--cyan);
  margin: 0 auto 20px; box-shadow: 0 0 24px var(--cyan-dim);
}
.step h3 { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 0.84rem; color: var(--text2); line-height: 1.65; }

/* COMPARE */
.compare { background: var(--bg2); }
.cw { overflow: hidden; border-radius: var(--r-lg); border: 1px solid var(--border); box-shadow: 0 24px 80px rgba(0,0,0,0.4); }
.ctbl { width: 100%; border-collapse: collapse; }
.ctbl th { padding: 20px 28px; text-align: left; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.5px; background: var(--card2); color: var(--text2); border-bottom: 1px solid var(--border); }
.ctbl th.hl { background: linear-gradient(135deg, rgba(0,212,200,0.15), rgba(0,212,200,0.05)); color: var(--cyan); border-bottom: 2px solid var(--cyan); }
.ctbl td { padding: 18px 28px; border-bottom: 1px solid var(--border); font-size: 0.88rem; color: var(--text2); background: var(--card); }
.ctbl td:first-child { font-weight: 600; color: var(--text3); background: var(--card2); }
.ctbl td.hl { color: var(--cyan); font-weight: 600; background: rgba(0,212,200,0.05); }
.ctbl tr:last-child td { border-bottom: none; }
.ctbl tr:hover td { filter: brightness(1.07); }
.ck { color: var(--green); font-weight: 700; }
.cx { color: #ef4444; font-weight: 700; }

/* TESTIMONIALS */
.testimonials { background: var(--bg); }
.tg { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.tc { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 36px; transition: border-color 0.3s; }
.tc:hover { border-color: var(--border2); }
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
.tt { font-size: 0.91rem; color: var(--text3); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.ta { display: flex; align-items: center; gap: 12px; }
.tav { width: 42px; height: 42px; border-radius: 12px; background: var(--cyan-dim); border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--cyan); }
.tn { font-weight: 700; font-size: 0.88rem; }
.tr { font-size: 0.78rem; color: var(--text2); margin-top: 2px; }

/* PRICING */
.pricing { background: var(--bg2); }
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; max-width: 820px; margin: 0 auto; }
.pcard { background: var(--card); border: 2px solid var(--border); border-radius: var(--r-lg); padding: 44px 40px; position: relative; transition: transform 0.25s; }
.pcard:hover { transform: translateY(-4px); }
.pcard.feat { border-color: var(--cyan); background: linear-gradient(135deg, rgba(0,212,200,0.07), var(--card)); box-shadow: 0 0 60px rgba(0,212,200,0.1); }
.feat-bdg { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--cyan); color: var(--bg); font-size: 0.72rem; font-weight: 800; padding: 5px 18px; border-radius: 50px; white-space: nowrap; letter-spacing: 0.5px; }
.p-lbl { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; color: var(--cyan); margin-bottom: 8px; }
.p-price { font-family: 'Syne', sans-serif; font-size: 3.2rem; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.p-price sup { font-size: 1.1rem; vertical-align: top; margin-top: 10px; font-family: 'Space Grotesk', sans-serif; font-weight: 400; }
.p-per { font-size: 0.82rem; color: var(--text2); margin-bottom: 6px; }
.p-note { font-size: 0.78rem; color: var(--cyan); font-weight: 600; margin-bottom: 32px; }
.p-feats { list-style: none; margin-bottom: 36px; }
.p-feats li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.87rem; color: var(--text2); padding: 9px 0; border-bottom: 1px solid var(--border); }
.p-feats li:last-child { border-bottom: none; }
.li-d { color: var(--cyan); font-weight: 700; margin-top: 1px; }
.btn-plan { width: 100%; padding: 15px; border-radius: 50px; font-weight: 700; font-size: 0.92rem; cursor: pointer; font-family: 'Space Grotesk', sans-serif; transition: all 0.2s; border: none; }
.btn-out { background: transparent; border: 1.5px solid var(--border2); color: var(--cyan); }
.btn-out:hover { background: var(--cyan-dim); }
.btn-solid { background: var(--cyan); color: var(--bg); box-shadow: 0 0 28px var(--cyan-glow); }
.btn-solid:hover { background: #00ede0; box-shadow: 0 0 50px var(--cyan-glow); }
.p-footnote { text-align: center; margin-top: 32px; font-size: 0.82rem; color: var(--text2); }
.p-footnote strong { color: var(--text3); }

/* FAQ */
.faq { background: var(--bg); }
.fq { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fi { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-md); padding: 28px 32px; transition: border-color 0.3s; }
.fi:hover { border-color: var(--border2); }
.fi h3 { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.fi p { font-size: 0.86rem; color: var(--text2); line-height: 1.7; }

/* CTA / FORM */
.cta-sec { background: var(--bg2); text-align: center; }
.cta-sec .st { max-width: 600px; margin: 0 auto 14px; }
.cta-sec .ss { max-width: 500px; margin: 0 auto; }
.cf {
  background: var(--card); border: 1px solid var(--border2);
  border-radius: var(--r-lg); padding: 52px;
  max-width: 680px; margin: 52px auto 0; text-align: left;
  box-shadow: 0 0 80px rgba(0,212,200,0.07), 0 40px 100px rgba(0,0,0,0.4);
}
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fg2 { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.fg2 label { font-size: 0.82rem; font-weight: 700; color: var(--text3); letter-spacing: 0.3px; }
.fg2 input, .fg2 select {
  background: var(--bg3); border: 1.5px solid var(--border);
  border-radius: var(--r-sm); padding: 14px 18px;
  font-family: 'Space Grotesk', sans-serif; font-size: 0.92rem;
  color: var(--text); outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.fg2 input::placeholder { color: var(--text2); }
.fg2 input:focus, .fg2 select:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px var(--cyan-dim); }
.fg2 select option { background: var(--bg3); }
.f-submit {
  width: 100%; padding: 17px; background: var(--cyan); color: var(--bg);
  border: none; border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif; font-size: 0.98rem; font-weight: 700;
  cursor: pointer; transition: all 0.2s; box-shadow: 0 0 28px var(--cyan-glow);
}
.f-submit:hover { background: #00ede0; box-shadow: 0 0 50px var(--cyan-glow); transform: translateY(-2px); }
.f-note { text-align: center; font-size: 0.77rem; color: var(--text2); margin-top: 14px; }

/* FOOTER */
footer {
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 48px 6vw 36px;
  display: flex; flex-direction: column; align-items: center;
  gap: 20px; position: relative; z-index: 1; text-align: center;
}
.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; flex-wrap: wrap; gap: 20px;
}
.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.f-logo { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--text); }
.f-logo span { color: var(--cyan); }
.footer-company {
  display: flex; flex-direction: column; gap: 4px; text-align: right;
}
.footer-company span { font-size: 0.78rem; color: var(--text2); line-height: 1.5; }
.footer-company strong { color: var(--text3); font-weight: 700; font-size: 0.82rem; }
.footer-bottom {
  width: 100%; border-top: 1px solid var(--border);
  padding-top: 20px; display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center; gap: 8px;
}
footer p { font-size: 0.78rem; color: var(--text2); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes floatAnim { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-10px); } }
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.2; } }
@keyframes typeDot { 0%,100% { opacity:0.3; transform:scale(0.8); } 50% { opacity:1; transform:scale(1.2); } }
@keyframes slideMsg { from { opacity:0; transform:translateX(-12px); } to { opacity:1; transform:translateX(0); } }
@keyframes playPulse { 0%,100% { box-shadow:0 0 40px var(--cyan-glow); } 50% { box-shadow:0 0 80px rgba(0,212,200,0.5); } }

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding-top: 110px; }
  .hero-visual { display: none; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .fq { grid-template-columns: 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .fg { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  section { padding: 70px 5vw; }
  .cf { padding: 32px 20px; }
  .hero-stats { gap: 20px; }
  .hero { gap: 24px; }
  .fg { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; align-items: center; }
  .footer-company { text-align: center; }
}


/* ─── Additional Styles ─── */

#wabtn {
  position: fixed; bottom: 32px; right: 32px; z-index: 1000;
  background: #25d366;
  color: #fff; text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 0.9rem;
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
  transition: all 0.25s;
  animation: waPop 0.5s ease both 1.5s;
}
#wabtn:hover { background: #1ebe5c; transform: translateY(-3px); box-shadow: 0 12px 40px rgba(37,211,102,0.55); }
@keyframes waPop { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@media (max-width: 600px) { #wabtn span { display: none; } #wabtn { padding: 16px; border-radius: 50%; bottom: 20px; right: 20px; } }
