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

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

:root {
  --bg:        #0a1128;
  --bg-card:   #111d38;
  --border:    #1e3056;
  --text:      #fdfcf8;
  --muted:     #7a8bb0;
  --primary:   #00d4aa;
  --primary-dk:#0a1128;
  --radius:    0.5rem;
  --font:      'Plus Jakarta Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── CONTAINER ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { line-height: 1.2; font-weight: 800; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 700; }
p  { color: var(--muted); font-size: 1.05rem; }

.text-primary { color: var(--primary); }
.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, #00f0c0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
strong { color: var(--text); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 0.85rem 2rem; border-radius: var(--radius);
  font-family: var(--font); font-weight: 700; font-size: 1rem;
  cursor: pointer; transition: all 0.2s; border: 2px solid transparent;
  white-space: nowrap; text-decoration: none;
}
.btn-primary {
  background: var(--primary); color: var(--primary-dk);
  box-shadow: 0 4px 20px rgba(0,212,170,0.25);
}
.btn-primary:hover { background: #00f0c0; transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--text); border-color: rgba(0,212,170,0.4);
}
.btn-outline:hover { background: rgba(0,212,170,0.1); }
.btn-white {
  background: var(--text); color: var(--bg);
}
.btn-white:hover { background: #e8e8e4; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn svg { width: 1.1em; height: 1.1em; flex-shrink: 0; }

/* ── HEADER ── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}
#site-header.scrolled {
  background: rgba(10,17,40,0.96);
  backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 1.35rem; font-weight: 800; flex-shrink: 0;
}
.logo svg { color: var(--primary); width: 2rem; height: 2rem; flex-shrink: 0; }
.logo span { color: var(--primary); }

.nav-desktop { display: flex; align-items: center; gap: 2rem; }
.nav-desktop a {
  font-size: 0.9rem; font-weight: 600; color: var(--muted);
  transition: color 0.2s;
}
.nav-desktop a:hover { color: var(--primary); }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-phone { display: flex; align-items: center; gap: 0.4rem; color: var(--primary); font-weight: 700; font-size: 0.95rem; }
.header-phone svg { width: 1em; height: 1em; }
.header-phone a:hover { text-decoration: underline; }

.hamburger { display: none; background: none; border: none; cursor: pointer; color: var(--text); padding: 0.25rem; }
.hamburger svg { width: 1.75rem; height: 1.75rem; }

/* mobile nav */
#mobile-nav {
  display: none; flex-direction: column; gap: 0;
  background: var(--bg-card); border-top: 1px solid var(--border);
  padding: 0.5rem 0 1.5rem; position: absolute; top: 100%; left: 0; right: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
#mobile-nav.open { display: flex; }
#mobile-nav a {
  display: block; padding: 0.85rem 1.5rem; font-weight: 600;
  border-bottom: 1px solid rgba(30,48,86,0.5);
  color: var(--text); transition: color 0.2s;
}
#mobile-nav a:hover { color: var(--primary); }
.mobile-cta { padding: 1rem 1.5rem 0; display: flex; flex-direction: column; gap: 0.75rem; }
.mobile-phone {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--bg); border-radius: var(--radius);
  padding: 0.7rem; color: var(--primary); font-weight: 700;
}

/* ── FOOTER ── */
footer {
  background: var(--bg-card); border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem; margin-bottom: 3rem;
}
.footer-brand p { color: var(--muted); font-size: 0.9rem; margin-top: 0.75rem; line-height: 1.7; }
.footer-badge { display: flex; align-items: center; gap: 0.4rem; color: var(--primary); font-size: 0.85rem; font-weight: 600; margin-top: 1rem; }
.footer-badge svg { width: 1em; height: 1em; }
.footer-col h4 { font-size: 1rem; font-weight: 700; margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a { color: var(--muted); font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--primary); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.footer-contact-item svg { color: var(--primary); width: 1.1rem; height: 1.1rem; margin-top: 0.15rem; flex-shrink: 0; }
.footer-contact-item span { display: block; font-size: 0.78rem; color: var(--muted); }
.footer-contact-item strong { display: block; font-size: 0.9rem; }
.footer-contact-item a { font-size: 0.9rem; color: var(--text); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: var(--muted); font-size: 0.85rem; }

/* ── HERO ── */
.hero {
  padding: 9rem 0 5rem; min-height: 90vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -20%; right: -10%;
  width: 60%; height: 120%;
  background: radial-gradient(ellipse, rgba(0,212,170,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(0,212,170,0.1); border: 1px solid rgba(0,212,170,0.3);
  color: var(--primary); padding: 0.4rem 1rem; border-radius: 100px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 1.5rem; width: fit-content;
}
.hero-badge svg { width: 0.9em; height: 0.9em; }
.hero h1 { margin-bottom: 1.25rem; }
.hero p { font-size: 1.15rem; margin-bottom: 2rem; max-width: 520px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 1.5rem; margin-top: 1.5rem; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.9rem; color: var(--muted); }
.hero-trust-item svg { color: var(--primary); width: 1em; height: 1em; }

.hero-img { position: relative; }
.hero-img img {
  border-radius: 1rem; border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.hero-img-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: rgba(17,29,56,0.9); backdrop-filter: blur(8px);
  border: 1px solid var(--border); border-radius: 0.75rem;
  padding: 0.75rem 1rem; display: flex; align-items: center; gap: 0.75rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.hero-img-badge-icon { background: rgba(0,212,170,0.15); padding: 0.5rem; border-radius: 50%; color: var(--primary); display: flex; }
.hero-img-badge-icon svg { width: 1.25rem; height: 1.25rem; }
.hero-img-badge p { font-weight: 700; font-size: 0.9rem; color: var(--text); }
.hero-img-badge span { font-size: 0.75rem; color: var(--muted); }

/* ── TRUST BAND ── */
.trust-band { padding: 2rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(17,29,56,0.5); }
.trust-band p { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); text-align: center; margin-bottom: 1.5rem; }
.trust-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2.5rem; opacity: 0.6; }
.trust-logo { display: flex; align-items: center; gap: 0.5rem; font-size: 1.1rem; font-weight: 800; color: var(--muted); }
.trust-logo svg { width: 1.3em; height: 1.3em; color: var(--primary); }

/* ── SECTION BASE ── */
section { padding: 5rem 0; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.section-header p { margin-top: 1rem; font-size: 1.1rem; }

/* ── GRID ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
.grid-cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

/* ── CARD ── */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 1rem; padding: 2rem; transition: border-color 0.2s;
}
.card:hover { border-color: rgba(0,212,170,0.4); }
.card-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 0.75rem;
  background: rgba(0,212,170,0.1); display: flex; align-items: center; justify-content: center;
  color: var(--primary); margin-bottom: 1.25rem;
}
.card-icon svg { width: 1.6rem; height: 1.6rem; }
.card h3 { margin-bottom: 0.75rem; }
.card p { color: var(--muted); line-height: 1.7; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--primary); padding: 4rem 0; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 40%; height: 200%;
  background: rgba(255,255,255,0.05);
  border-radius: 50%; pointer-events: none;
}
.cta-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-banner h2 { color: var(--primary-dk); font-size: clamp(1.4rem,3vw,2rem); }
.cta-banner p { color: rgba(10,17,40,0.75); margin-top: 0.5rem; }

/* ── FEATURES LIST ── */
.feature-list { display: flex; flex-direction: column; gap: 1.25rem; margin: 1.5rem 0; }
.feature-item { display: flex; align-items: center; gap: 0.75rem; font-weight: 600; font-size: 1.05rem; }
.feature-item svg { color: var(--primary); width: 1.25em; height: 1.25em; flex-shrink: 0; }

/* ── HOW IT WORKS ── */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 3rem; position: relative; text-align: center; }
.steps::before {
  content: ''; position: absolute;
  top: 2.5rem; left: calc(16% + 1.5rem); right: calc(16% + 1.5rem);
  height: 2px; background: var(--border);
}
.step-num {
  width: 5rem; height: 5rem; border-radius: 50%;
  background: var(--bg-card); border: 3px solid var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800; color: var(--primary);
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 0 3px var(--primary);
}
.step h3 { margin-bottom: 0.5rem; }
.step p { color: var(--muted); }

/* ── TESTIMONIALS ── */
.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.testimonial { background: var(--bg); border: 1px solid var(--border); border-radius: 1rem; padding: 2rem; }
.stars { display: flex; gap: 0.2rem; color: var(--primary); margin-bottom: 1rem; }
.stars svg { width: 1.1rem; height: 1.1rem; fill: currentColor; }
.testimonial blockquote { font-style: italic; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.7; font-size: 1rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: rgba(0,212,170,0.15); display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-weight: 800; flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.95rem; }
.author-state { font-size: 0.8rem; color: var(--muted); }

/* ── PRICING ── */
.pricing-preview {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 1.25rem; padding: 2.5rem; display: flex;
  align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.price-big { display: flex; align-items: flex-end; gap: 0.25rem; margin-top: 1rem; }
.price-big strong { font-size: 3rem; font-weight: 800; }
.price-big span { color: var(--muted); padding-bottom: 0.5rem; }

.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; max-width: 1000px; margin: 0 auto; align-items: stretch; }
.plan-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 1.25rem; padding: 2rem; display: flex; flex-direction: column;
  position: relative; transition: transform 0.2s, border-color 0.2s;
}
.plan-card.featured {
  border-color: var(--primary); transform: scale(1.05);
  box-shadow: 0 0 40px rgba(0,212,170,0.15), 0 8px 32px rgba(0,0,0,0.3);
}
.plan-badge {
  position: absolute; top: -1rem; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: var(--primary-dk);
  font-size: 0.75rem; font-weight: 800; padding: 0.3rem 1rem;
  border-radius: 100px; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap;
}
.plan-card h3 { text-align: center; font-size: 1.4rem; }
.plan-desc { color: var(--muted); text-align: center; font-size: 0.9rem; margin: 0.5rem 0 1.5rem; min-height: 2.5rem; }
.plan-price { text-align: center; margin-bottom: 2rem; }
.plan-price strong { font-size: 2.8rem; font-weight: 800; display: block; }
.plan-price span { color: var(--muted); font-size: 0.9rem; }
.plan-features { display: flex; flex-direction: column; gap: 0.85rem; flex: 1; margin-bottom: 2rem; }
.plan-features li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.95rem; }
.plan-features li svg { color: var(--primary); width: 1.1em; height: 1.1em; flex-shrink: 0; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 0.75rem; overflow: hidden;
}
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; background: none; border: none; cursor: pointer;
  color: var(--text); font-family: var(--font); font-size: 1rem; font-weight: 700;
  text-align: left; gap: 1rem;
}
.faq-question:hover { color: var(--primary); }
.faq-arrow { flex-shrink: 0; transition: transform 0.3s; color: var(--primary); width: 1.2em; height: 1.2em; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 1.5rem 1.25rem; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  width: 3rem; height: 3rem; border-radius: 50%;
  background: rgba(0,212,170,0.1); display: flex; align-items: center; justify-content: center;
  color: var(--primary); flex-shrink: 0;
}
.contact-icon svg { width: 1.25rem; height: 1.25rem; }
.contact-item h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.contact-item a { color: var(--primary); font-size: 1.3rem; font-weight: 800; }
.contact-item a:hover { text-decoration: underline; }
.contact-item p, .contact-item address { color: var(--muted); font-style: normal; font-size: 0.95rem; }

.form-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: 1.25rem; padding: 2.5rem; }
.form-box h2 { margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--text); }
input, textarea, select {
  width: 100%; padding: 0.75rem 1rem;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  color: var(--text); font-family: var(--font); font-size: 0.95rem;
  transition: border-color 0.2s;
}
input:focus, textarea:focus { outline: none; border-color: var(--primary); }
input::placeholder, textarea::placeholder { color: var(--muted); }
textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.8rem; color: var(--muted); text-align: center; margin-top: 0.75rem; }

/* ── PAGE HEADER ── */
.page-hero {
  padding: 9rem 0 4rem; background: linear-gradient(180deg, rgba(0,212,170,0.06) 0%, transparent 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -30%; left: -10%;
  width: 50%; height: 120%;
  background: radial-gradient(ellipse, rgba(0,212,170,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; text-align: center; max-width: 800px; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { font-size: 1.15rem; }

/* ── LEGAL PAGES ── */
.legal-content { max-width: 800px; margin: 0 auto; padding: 4rem 0 6rem; }
.legal-content h1 { margin-bottom: 2rem; }
.legal-content h2 { font-size: 1.4rem; font-weight: 700; margin: 2.5rem 0 0.75rem; color: var(--text); }
.legal-content p { margin-bottom: 1rem; line-height: 1.8; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.legal-content ul li { color: var(--muted); }

/* ── ABOUT ── */
.about-mission { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-badge {
  position: absolute; bottom: -2rem; left: -1.5rem;
  background: var(--primary); color: var(--primary-dk);
  padding: 1.25rem 1.5rem; border-radius: 0.75rem; display: flex; align-items: center; gap: 0.75rem;
}
.stat-badge svg { width: 2rem; height: 2rem; }
.stat-badge strong { display: block; font-size: 1.5rem; line-height: 1; }
.stat-badge span { font-size: 0.85rem; font-weight: 600; }
.img-wrap { position: relative; border-radius: 1rem; overflow: hidden; }
.img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.img-outer { position: relative; padding-bottom: 2rem; padding-right: 1.5rem; }

/* ── FEATURES PAGE ── */
.feature-row {
  display: flex; gap: 2rem; align-items: flex-start;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 1.25rem; padding: 2rem; transition: border-color 0.2s;
}
.feature-row:hover { border-color: rgba(0,212,170,0.4); }
.feature-row-icon {
  width: 4rem; height: 4rem; border-radius: 50%; flex-shrink: 0;
  background: rgba(0,212,170,0.1); display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.feature-row-icon svg { width: 1.75rem; height: 1.75rem; }
.feature-row h3 { margin-bottom: 0.6rem; }

/* ── BG CARD SECTION ── */
.bg-card-section { background: var(--bg-card); }
.bg-dark-section { background: var(--bg); }
.border-section { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ── UTILITY ── */
.center-cta { text-align: center; }
.center-cta p { max-width: 600px; margin: 0 auto 2rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-1 { gap: 0.5rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; max-width: 420px; }
  .plan-card.featured { transform: none; }
}
@media (max-width: 768px) {
  .nav-desktop, .header-actions { display: none; }
  .hamburger { display: block; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 7rem 0 3.5rem; }
  .hero p { max-width: 100%; }
  .hero-img { order: -1; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-cols-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-preview { flex-direction: column; text-align: center; }
  .feature-row { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .img-outer { padding-bottom: 0; padding-right: 0; }
  .stat-badge { position: static; margin-top: 1rem; }
}
