/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: #F0F0F0;
  color: #0A0A0A;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* === TOKENS === */
:root {
  --lime: #CCFF00;
  --pink: #FF2D78;
  --blue: #0052FF;
  --black: #0A0A0A;
  --white: #FFFFFF;
  --gray: #F0F0F0;
  --gray2: #E0E0E0;
  --gray3: #888;
  --max-w: 1200px;
}

/* === TYPE === */
.font-display {
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  font-weight: 800;
}
h1, h2, h3 {
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  font-weight: 800;
  line-height: 1.05;
  color: var(--black);
}
h1 { font-size: clamp(3.5rem, 8vw, 7rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2.4rem, 5vw, 4.5rem); letter-spacing: -0.025em; }
h3 { font-size: 1.4rem; }
p { color: #444; line-height: 1.65; }

/* === LAYOUT === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
section { padding: 100px 0; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn-black {
  background: var(--black);
  color: var(--white);
  padding: 18px 36px;
  border: 3px solid var(--black);
}
.btn-black:hover {
  background: var(--lime);
  color: var(--black);
  border-color: var(--black);
}
.btn-lime {
  background: var(--lime);
  color: var(--black);
  padding: 18px 36px;
  border: 3px solid var(--black);
}
.btn-lime:hover { background: var(--black); color: var(--lime); }
.btn-outline {
  background: transparent;
  color: var(--black);
  padding: 15px 33px;
  border: 3px solid var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-lg { padding: 22px 48px; font-size: 1.15rem; }

/* === TAG === */
.tag {
  display: inline-block;
  background: var(--black);
  color: var(--lime);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 0;
}
.tag-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.tag-pink { background: var(--pink); color: var(--white); }
.tag-lime { background: var(--lime); color: var(--black); }

/* === NAVBAR === */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  background: var(--white);
  border-bottom: 3px solid var(--black);
  transition: none;
}
.nav-inner {
  display: flex;
  align-items: stretch;
  height: 64px;
  border: none;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--black);
  padding: 0 28px;
  border-right: 3px solid var(--black);
  letter-spacing: -0.03em;
}
.logo-icon {
  width: 32px; height: 32px;
  background: var(--lime);
  border: 2px solid var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.nav-links {
  display: flex;
  align-items: stretch;
  flex: 1;
}
.nav-links a {
  display: flex;
  align-items: center;
  padding: 0 22px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--black);
  border-right: 2px solid transparent;
  transition: background 0.15s;
  letter-spacing: -0.01em;
}
.nav-links a:hover { background: var(--lime); }
.nav-actions {
  display: flex;
  align-items: stretch;
  margin-left: auto;
}
.nav-actions .btn {
  border-radius: 0;
  border: none;
  border-left: 3px solid var(--black);
  height: 100%;
  padding: 0 28px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0 20px;
  margin-left: auto;
}
.hamburger span { display: block; width: 26px; height: 3px; background: var(--black); }
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-bottom: 3px solid var(--black);
}
.mobile-nav a {
  padding: 16px 24px;
  font-weight: 600;
  border-bottom: 2px solid var(--gray2);
  font-size: 1rem;
}
.mobile-nav a:hover { background: var(--lime); }
.mobile-nav.open { display: flex; }

/* === HERO === */
#hero {
  padding-top: 64px;
  background: var(--white);
  border-bottom: 3px solid var(--black);
  overflow: hidden;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - 64px);
}
.hero-top {
  padding: 80px 32px 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  position: relative;
}
.hero-tag-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(4rem, 10vw, 8.5rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 40px;
  position: relative;
}
.hero-title .line-highlight {
  position: relative;
  display: inline-block;
}
.hero-title .line-highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 18px;
  background: var(--lime);
  z-index: -1;
}
.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 3px solid var(--black);
}
.hero-desc-col {
  padding: 40px 32px;
  border-right: 3px solid var(--black);
  max-width: var(--max-w);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero-desc { font-size: 1.1rem; max-width: 420px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
}
.trust-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
  border: 2px solid var(--black);
  flex-shrink: 0;
}
.hero-stat-col {
  background: var(--black);
  color: var(--white);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}
.big-stat { }
.big-stat-num {
  font-family: 'Manrope', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--lime);
  letter-spacing: -0.03em;
  line-height: 1;
}
.big-stat-label { font-size: 0.88rem; color: #999; margin-top: 4px; }

/* === MARQUEE === */
.marquee-section {
  background: var(--lime);
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 18s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 32px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
}
.marquee-sep { color: var(--black); opacity: 0.3; font-size: 1.2rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* === FEATURES === */
#features {
  background: var(--gray);
  padding: 0;
}
.features-header {
  padding: 80px 32px 0;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 60px;
}
.features-header h2 { flex: 1; }
.features-header-right { max-width: 340px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 3px solid var(--black);
}
.feature-card {
  padding: 40px 32px;
  border-right: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
  background: var(--white);
  transition: background 0.15s;
  cursor: default;
}
.feature-card:nth-child(3n) { border-right: none; }
.feature-card:hover { background: var(--lime); }
.feature-num {
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gray3);
  margin-bottom: 20px;
}
.feature-icon { font-size: 2.2rem; margin-bottom: 18px; }
.feature-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.feature-card p { font-size: 0.92rem; }

/* === HOW IT WORKS === */
#how-it-works {
  background: var(--black);
  color: var(--white);
  border-top: 3px solid var(--black);
}
#how-it-works h2 { color: var(--white); }
#how-it-works p { color: #999; }
.how-header {
  margin-bottom: 72px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.how-header h2 { flex: 1; }
.how-header p { max-width: 320px; }
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 3px solid #333;
}
.step {
  padding: 48px 36px;
  border-right: 3px solid #333;
}
.step:last-child { border-right: none; }
.step-num {
  font-family: 'Manrope', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: #222;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}
.step h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 12px; }

/* === SCREENSHOTS === */
#screenshots {
  background: var(--white);
  border-top: 3px solid var(--black);
  padding: 0;
}
.screenshots-header {
  padding: 80px 32px 60px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.tab-bar {
  display: flex;
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
}
.tab-btn {
  flex: 1;
  padding: 20px;
  background: var(--gray);
  border: none;
  border-right: 3px solid var(--black);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gray3);
  transition: all 0.15s;
  letter-spacing: -0.01em;
}
.tab-btn:last-child { border-right: none; }
.tab-btn.active { background: var(--black); color: var(--lime); }
.tab-btn:hover:not(.active) { background: var(--lime); color: var(--black); }
.tab-panels { }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn 0.2s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.screen-wrap {
  background: var(--black);
  padding: 48px;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}
.screen-ui {
  background: #1A1A1A;
  border: 3px solid #333;
  border-radius: 0;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
.screen-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #111;
  border-bottom: 2px solid #333;
}
.sdot { width: 10px; height: 10px; border-radius: 50%; }
.sdot.r { background: #FF5F57; }
.sdot.y { background: #FFBD2E; }
.sdot.g { background: #28C840; }
.stitle { font-size: 0.75rem; color: #555; margin-left: 8px; font-weight: 500; }
.screen-body { padding: 24px; display: grid; grid-template-columns: 160px 1fr; gap: 16px; }
.screen-sidebar { display: flex; flex-direction: column; gap: 6px; }
.smenu { height: 10px; border-radius: 2px; background: #2A2A2A; }
.smenu.on { background: rgba(204,255,0,0.4); width: 85%; }
.screen-main { display: flex; flex-direction: column; gap: 14px; }
.scards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.scard { background: #1E1E1E; border: 1px solid #2A2A2A; padding: 14px; }
.scard-val { font-family: 'Manrope', sans-serif; font-size: 1.4rem; font-weight: 800; }
.scard-val.lime { color: var(--lime); }
.scard-val.pink { color: #FF6B9D; }
.scard-val.blue { color: #60A5FA; }
.scard-label { font-size: 0.7rem; color: #555; margin-top: 3px; }
.sbars { background: #1E1E1E; border: 1px solid #2A2A2A; padding: 14px; flex: 1; }
.sbar-title { font-size: 0.72rem; color: #555; margin-bottom: 12px; }
.sbar-row { margin-bottom: 10px; }
.sbar-meta { display: flex; justify-content: space-between; font-size: 0.7rem; color: #555; margin-bottom: 4px; }
.sbar-track { height: 6px; background: #2A2A2A; border-radius: 1px; }
.sbar-fill { height: 100%; border-radius: 1px; }
.screen-caption {
  padding: 20px 32px;
  border-top: 2px solid var(--gray2);
  font-size: 0.88rem;
  color: var(--gray3);
  background: var(--gray);
}

/* === REVIEWS === */
#reviews {
  background: var(--gray);
  border-top: 3px solid var(--black);
  padding: 0;
}
.reviews-header {
  padding: 80px 32px 0;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 60px;
  gap: 40px;
}
.reviews-header h2 { flex: 1; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 3px solid var(--black);
}
.review-card {
  padding: 40px 32px;
  border-right: 3px solid var(--black);
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.15s;
}
.review-card:last-child { border-right: none; }
.review-card:hover { background: var(--gray); }
.stars { display: flex; gap: 3px; }
.star { color: var(--black); font-size: 1rem; }
.star.empty { color: var(--gray2); }
.review-text { font-size: 0.95rem; line-height: 1.7; flex: 1; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 46px; height: 46px;
  border: 3px solid var(--black);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800; font-size: 0.9rem;
  flex-shrink: 0;
}
.av1 { background: var(--lime); }
.av2 { background: var(--pink); color: var(--white); }
.av3 { background: var(--blue); color: var(--white); }
.reviewer-name { font-weight: 700; font-size: 0.95rem; }
.reviewer-city { font-size: 0.8rem; color: var(--gray3); }
.verified-badge { font-size: 0.75rem; color: var(--gray3); margin-top: 2px; }

/* === TRUST === */
#trust {
  background: var(--lime);
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
  padding: 0;
}
.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.trust-left {
  padding: 80px 60px;
  border-right: 3px solid var(--black);
}
.trust-left h2 { margin-bottom: 20px; }
.trust-left p { font-size: 1.05rem; max-width: 420px; }
.trust-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.tbadge {
  padding: 40px 32px;
  border-right: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
}
.tbadge:nth-child(2n) { border-right: none; }
.tbadge:nth-child(3), .tbadge:nth-child(4) { border-bottom: none; }
.tbadge-icon { font-size: 2rem; margin-bottom: 12px; }
.tbadge-title { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.tbadge-desc { font-size: 0.85rem; color: #555; }

/* === PRICING === */
#pricing {
  background: var(--white);
  border-bottom: 3px solid var(--black);
  padding: 0;
}
.pricing-header {
  padding: 80px 32px 60px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 3px solid var(--black);
}
.pricing-card {
  padding: 48px 36px;
  border-right: 3px solid var(--black);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: background 0.15s;
}
.pricing-card:last-child { border-right: none; }
.pricing-card.popular { background: var(--black); }
.pricing-card.popular * { color: var(--white) !important; }
.pricing-card.popular .btn-lime { color: var(--black) !important; }
.popular-tag {
  display: inline-block;
  background: var(--lime);
  color: var(--black) !important;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  margin-bottom: -10px;
}
.plan-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray3);
}
.pricing-card.popular .plan-name { color: #555 !important; }
.plan-price { display: flex; align-items: baseline; gap: 6px; }
.price-amount {
  font-family: 'Manrope', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--black);
  line-height: 1;
}
.price-period { font-size: 1rem; color: var(--gray3); }
.price-note { font-size: 0.83rem; color: var(--gray3); margin-top: -16px; }
.plan-divider { height: 2px; background: var(--gray2); }
.pricing-card.popular .plan-divider { background: #222; }
.plan-features { display: flex; flex-direction: column; gap: 11px; flex: 1; }
.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
}
.plan-feature.excluded { color: var(--gray3); }
.feat-check { font-size: 0.85rem; flex-shrink: 0; margin-top: 1px; }
.pricing-note-bottom {
  text-align: center;
  padding: 24px;
  border-top: 3px solid var(--black);
  font-size: 0.85rem;
  color: var(--gray3);
  background: var(--gray);
}

/* === FAQ === */
#faq {
  background: var(--gray);
  border-top: 3px solid var(--black);
}
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}
.faq-left h2 { margin-bottom: 20px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 2px solid var(--black);
  overflow: hidden;
}
.faq-item:first-child { border-top: 2px solid var(--black); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
  text-align: left;
  gap: 20px;
  cursor: pointer;
  transition: color 0.15s;
  letter-spacing: -0.01em;
}
.faq-question:hover { color: var(--pink); }
.faq-icon {
  width: 28px; height: 28px;
  background: var(--black);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.25s, background 0.15s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--pink); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 0.93rem;
  line-height: 1.7;
  color: #444;
}
.faq-answer-inner a { color: var(--blue); text-decoration: underline; }

/* === FINAL CTA === */
#cta-final {
  background: var(--black);
  border-top: 3px solid var(--black);
  padding: 0;
  overflow: hidden;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
}
.cta-left {
  padding: 80px 60px;
}
.cta-left h2 { color: var(--white); margin-bottom: 20px; }
.cta-left p { color: #888; margin-bottom: 40px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-meta { margin-top: 20px; font-size: 0.82rem; color: #555; }
.cta-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 60px;
  border-left: 3px solid #222;
  min-width: 320px;
  gap: 6px;
}
.cta-big-num {
  font-family: 'Manrope', sans-serif;
  font-size: 6rem;
  font-weight: 800;
  color: var(--lime);
  letter-spacing: -0.04em;
  line-height: 1;
}
.cta-big-label { color: #555; font-size: 0.9rem; text-align: center; }

/* === FOOTER === */
footer {
  background: var(--black);
  border-top: 3px solid #222;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 2px solid #1A1A1A;
}
.footer-col {
  padding: 48px 40px;
  border-right: 2px solid #1A1A1A;
}
.footer-col:last-child { border-right: none; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.footer-tagline { font-size: 0.88rem; color: #555; max-width: 280px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 8px; }
.social-btn {
  width: 38px; height: 38px;
  border: 2px solid #333;
  display: flex; align-items: center; justify-content: center;
  color: #555;
  font-size: 0.78rem;
  font-weight: 700;
  transition: all 0.15s;
}
.social-btn:hover { background: var(--lime); border-color: var(--lime); color: var(--black); }
.footer-col-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.88rem;
  color: #666;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--lime); }
.footer-links span { font-size: 0.82rem; color: #444; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 0.82rem; color: #444; }
.footer-legal { font-size: 0.78rem; color: #333; max-width: 480px; line-height: 1.5; text-align: right; }

/* === LEGAL PAGES === */
.legal-page { padding-top: 64px; }
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 32px;
}
.legal-content h1 { font-size: 3rem; margin-bottom: 8px; }
.legal-date { color: var(--gray3); font-size: 0.88rem; margin-bottom: 48px; }
.legal-content h2 { font-size: 1.4rem; margin-top: 40px; margin-bottom: 14px; }
.legal-content p { margin-bottom: 14px; font-size: 0.97rem; }
.legal-content ul { padding-left: 20px; margin-bottom: 14px; }
.legal-content ul li { margin-bottom: 9px; font-size: 0.95rem; color: #444; list-style: disc; }
.legal-content a { color: var(--blue); text-decoration: underline; }

/* === ANIMATIONS === */
[data-animate] { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
[data-animate].is-visible { opacity: 1; transform: translateY(0); }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-bottom { grid-template-columns: 1fr; }
  .hero-stat-col { border-top: 3px solid var(--black); display: grid; grid-template-columns: 1fr 1fr; }
  .hero-desc-col { border-right: none; }
  .features-header { flex-direction: column; align-items: flex-start; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card:nth-child(3n) { border-right: 3px solid var(--black); }
  .feature-card:nth-child(2n) { border-right: none; }
  .trust-inner { grid-template-columns: 1fr; }
  .trust-left { border-right: none; border-bottom: 3px solid var(--black); }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-right { border-left: none; border-top: 3px solid #222; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col:nth-child(1) { grid-column: 1 / -1; border-right: none; border-bottom: 2px solid #1A1A1A; }
}
@media (max-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .hamburger { display: flex; align-items: center; }
  .hero-title { font-size: 3.2rem; }
  .reviews-header { flex-direction: column; align-items: flex-start; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { border-right: none; border-bottom: 3px solid var(--black); }
  .review-card:last-child { border-bottom: none; }
  .steps-row { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 3px solid #333; }
  .step:last-child { border-bottom: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { border-right: none; border-bottom: 3px solid var(--black); }
  .pricing-card:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col { border-right: none !important; border-bottom: 2px solid #1A1A1A; }
  .hero-bottom { grid-template-columns: 1fr; }
  .how-header { flex-direction: column; align-items: flex-start; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { border-right: none !important; }
  .trust-right { grid-template-columns: 1fr; }
  .tbadge { border-right: none !important; }
  .scards { grid-template-columns: repeat(2, 1fr); }
  .screen-body { grid-template-columns: 1fr; }
  .screen-sidebar { display: none; }
  .hero-stat-col { grid-template-columns: 1fr 1fr; }
  .cta-left { padding: 48px 24px; }
  .cta-right { padding: 40px 24px; }
  .cta-big-num { font-size: 4rem; }
}
