/* SUPERHOCA — Marketing CSS
   Raleway (headings) + DM Sans (body)
   #1a3db5 blue · #FE4D45 red · #0A1845 dark
*/

:root {
  --blue: #1a3db5;
  --blue-dark: #0e2880;
  --red: #FE4D45;
  --dark: #0A1845;
  --dark2: #0d1f5c;
  --white: #ffffff;
  --grey: #8892a4;
  --grey-light: #f0f3fb;
  --border: rgba(255,255,255,0.12);
  --card-bg: rgba(255,255,255,0.05);
  --card-border: rgba(255,255,255,0.10);
  --heading: 'Raleway', sans-serif;
  --body: 'DM Sans', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--dark);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Decorative triangles (parallax) ─────────────────── */
section { position: relative; }

.deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transition: transform 0.05s linear;
  overflow: hidden;
}
.deco svg { width: 100%; height: 100%; }

/* ── Fade-up animation ───────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════ NAVIGATION ══════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(10, 24, 69, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-text {
  font-family: var(--heading);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--white);
}
.nav-logo-text span { color: var(--red); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta { display: flex; gap: 12px; align-items: center; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover { background: #e03c34; transform: translateY(-1px); }
.btn-primary-lg {
  background: var(--red);
  color: var(--white);
  padding: 15px 32px;
  font-size: 15px;
  border-radius: 10px;
}
.btn-primary-lg:hover { background: #e03c34; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(254,77,69,0.35); }
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.btn-ghost-lg {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 15px 32px;
  font-size: 15px;
  border-radius: 10px;
}
.btn-ghost-lg:hover { background: rgba(255,255,255,0.08); color: var(--white); }

/* ══════════ HERO ══════════ */
.hero {
  min-height: 100vh;
  padding: 140px 48px 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 50%, #1a2f7a 100%);
  z-index: 0;
}
.hero-glow-1 {
  position: absolute;
  top: -200px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(26,61,181,0.25) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(254,77,69,0.12);
  border: 1px solid rgba(254,77,69,0.3);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  color: #fe9793;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--heading);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-title .semibold { font-weight: 800; }
.hero-title .accent { color: var(--red); }

.hero-desc {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-note {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* Hero visual */
.hero-visual { position: relative; }

.hero-img-placeholder {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: rgba(255,255,255,0.05);
  aspect-ratio: 4/3;
}

.stat-card {
  position: absolute;
  background: rgba(10,24,69,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}
.stat-card:first-of-type { bottom: 32px; left: -28px; }
.stat-card:last-of-type { top: 32px; right: -28px; }
.stat-icon {
  width: 36px; height: 36px;
  background: rgba(254,77,69,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.stat-val { font-weight: 700; color: var(--white); }
.stat-lbl { color: var(--grey); font-size: 11px; margin-top: 2px; }

/* ══════════ STRIP ══════════ */
.strip {
  display: flex;
  justify-content: center;
  gap: 0;
  background: rgba(26,61,181,0.15);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
}
.strip-item {
  flex: 1;
  padding: 24px 32px;
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  border-right: 1px solid var(--border);
}
.strip-item:last-child { border-right: none; }
.strip-item .num {
  display: block;
  font-family: var(--heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

/* ══════════ SECTION COMMONS ══════════ */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 2;
}
section { padding: 100px 0; }

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--heading);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title strong { font-weight: 800; }
.section-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 600px;
}

/* ══════════ HOW IT WORKS ══════════ */
.how {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%);
  overflow: hidden;
}
.how-header { margin-bottom: 64px; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
}
.step-num {
  position: absolute;
  top: -18px; right: 24px;
  font-family: var(--heading);
  font-size: 64px;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}
.step-icon {
  width: 56px; height: 56px;
  background: rgba(254,77,69,0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.step-title {
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ══════════ FEATURES ══════════ */
.features {
  background: var(--dark);
  overflow: hidden;
}
.features .fade-up { margin-bottom: 64px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, background 0.2s;
}
.feature-card:hover {
  border-color: rgba(26,61,181,0.4);
  background: rgba(26,61,181,0.08);
}
.feature-card.wide { grid-column: span 2; }
.feature-icon {
  width: 44px; height: 44px;
  background: rgba(254,77,69,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature-title {
  font-family: var(--heading);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ══════════ PRICING ══════════ */
.pricing {
  background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
  overflow: hidden;
}
.pricing-header { margin-bottom: 52px; }

.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.toggle-label { font-size: 14px; color: rgba(255,255,255,0.6); }
.toggle-track {
  width: 48px; height: 26px;
  background: var(--red);
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
}
.toggle-thumb {
  position: absolute;
  right: 3px; top: 3px;
  width: 20px; height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s;
}
.toggle-badge {
  background: rgba(254,77,69,0.15);
  border: 1px solid rgba(254,77,69,0.3);
  color: #fe9793;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.plan-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
}
.plan-card.popular {
  background: rgba(26,61,181,0.15);
  border-color: rgba(26,61,181,0.5);
  transform: scale(1.02);
}
.popular-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--blue);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.plan-name {
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}
.plan-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 24px;
}
.currency { font-size: 20px; font-weight: 700; line-height: 1.4; }
.amount { font-family: var(--heading); font-size: 42px; font-weight: 800; line-height: 1; }
.period { font-size: 14px; color: rgba(255,255,255,0.5); padding-bottom: 6px; }
.plan-free-label {
  font-family: var(--heading);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 4px;
}
.plan-free-note { font-size: 13px; color: rgba(255,255,255,0.45); }
.plan-btn { margin-bottom: 24px; }

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.plan-features li.dim { color: rgba(255,255,255,0.3); }
.check {
  font-size: 13px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 1px;
}
.plan-features li.dim .check { color: rgba(255,255,255,0.2); }

/* ══════════ TESTIMONIALS ══════════ */
.testimonials {
  background: var(--dark);
  overflow: hidden;
}
.testimonials-header { margin-bottom: 52px; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
}
.testi-quote {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 40px; height: 40px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 14px; }
.testi-role { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* ══════════ CTA ══════════ */
.cta-section {
  background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
  overflow: hidden;
  text-align: center;
}
.cta-inner { max-width: 680px; margin: 0 auto; }
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0 20px;
}
.cta-note { font-size: 13px; color: rgba(255,255,255,0.4); }

/* ══════════ FAQ ══════════ */
.faq { background: var(--dark); }
.faq-header { margin-bottom: 48px; }
.faq-list {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: rgba(255,255,255,0.85); }
.faq-question .icon {
  font-size: 20px;
  color: var(--red);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

/* ══════════ FOOTER ══════════ */
footer {
  background: rgba(6,13,47,0.95);
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 48px 48px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 320px;
}
.footer-payments { display: flex; gap: 8px; flex-wrap: wrap; }
.payment-chip {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  color: rgba(255,255,255,0.55);
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer-socials { display: flex; gap: 8px; }
.social-btn {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.social-btn:hover { background: rgba(26,61,181,0.2); color: var(--white); }

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 1024px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero { padding: 120px 24px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .section-inner { padding: 0 24px; }
  .steps { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card.wide { grid-column: span 1; }
  .plans { grid-template-columns: 1fr; }
  .plan-card.popular { transform: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px; }
  .footer-bottom { padding: 16px 24px; flex-direction: column; gap: 12px; text-align: center; }
  .strip { flex-direction: column; }
  .strip-item { border-right: none; border-bottom: 1px solid var(--border); }
  .strip-item:last-child { border-bottom: none; }
}

@media (max-width: 640px) {
  .hero-title { font-size: 34px; }
  .hero-actions { flex-direction: column; }
  .btn-primary-lg, .btn-ghost-lg { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}
