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

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f4f4f5;
  --gray-200: #e4e4e7;
  --gray-400: #a1a1aa;
  --gray-600: #52525b;
  --blue: #2563eb;
  --blue-light: #eff6ff;
}

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

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 2px; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 60px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--black);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.logo-box {
  width: 28px; height: 28px;
  background: var(--black);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.logo em {
  font-style: normal;
  color: var(--blue);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-600);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.15s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--black); }

.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--black) !important;
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}

.nav-btn:hover { background: var(--blue) !important; }

.burger { display: none; flex-direction: column; gap: 4px; cursor: pointer; }
.burger span { width: 20px; height: 1.5px; background: var(--black); border-radius: 1px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: -0.1px;
}

.btn-black { background: var(--black); color: var(--white); }
.btn-black:hover { background: var(--blue); }

.btn-outline { background: var(--white); color: var(--black); border: 1px solid var(--gray-200); }
.btn-outline:hover { border-color: var(--black); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 100px 6% 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--gray-200);
  max-width: 1200px;
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  padding: 5px 13px 5px 8px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.hero-pill span {
  background: var(--blue);
  color: white;
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2.5px;
  margin-bottom: 1.5rem;
  color: var(--black);
}

.hero h1 b {
  font-weight: 800;
  color: var(--blue);
}

.hero p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 400px;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-note span::before { content: '✓ '; color: var(--blue); font-weight: 700; }

/* HERO MOCKUP */
.mockup-wrap {
  position: relative;
}

.mockup {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07), 0 4px 16px rgba(0,0,0,0.05);
  animation: float 7s ease-in-out infinite;
}

@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.mockup-bar {
  background: var(--white);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--gray-200);
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.r { background: #ff5f57; }
.dot.y { background: #febc2e; }
.dot.g { background: #28c840; }

.mockup-url {
  flex: 1;
  margin-left: 8px;
  background: var(--gray-100);
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 0.7rem;
  color: var(--gray-400);
}

.mockup-body {
  padding: 18px;
}

.rec-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff0f0;
  border: 1px solid #fecdca;
  padding: 4px 11px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #b91c1c;
  margin-bottom: 14px;
}

.rec-dot { width: 6px; height: 6px; border-radius: 50%; background: #dc2626; animation: blink 1s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.mockup-screen {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 12px;
  color: var(--gray-400);
}

.timeline {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 12px;
}

.tl-bar {
  height: 3px;
  background: var(--gray-100);
  border-radius: 2px;
  margin-bottom: 10px;
  overflow: hidden;
  position: relative;
}

.tl-bar::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 0%;
  background: var(--blue);
  border-radius: 2px;
  animation: prog 4s linear infinite;
}

@keyframes prog { 0%{width:0%} 100%{width:100%} }

.waves {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 28px;
}

.wv {
  flex: 1;
  background: var(--blue);
  opacity: 0.25;
  border-radius: 1px;
  animation: wv 1.1s ease-in-out infinite;
}

.wv:nth-child(1){height:55%;animation-delay:0s}
.wv:nth-child(2){height:80%;animation-delay:.1s;opacity:.35}
.wv:nth-child(3){height:40%;animation-delay:.2s}
.wv:nth-child(4){height:95%;animation-delay:.3s;opacity:.4}
.wv:nth-child(5){height:60%;animation-delay:.4s;opacity:.3}
.wv:nth-child(6){height:100%;animation-delay:.5s;opacity:.45}
.wv:nth-child(7){height:35%;animation-delay:.6s}
.wv:nth-child(8){height:75%;animation-delay:.7s;opacity:.35}
.wv:nth-child(9){height:50%;animation-delay:.8s}
.wv:nth-child(10){height:65%;animation-delay:.9s;opacity:.3}
.wv:nth-child(11){height:45%;animation-delay:.7s}
.wv:nth-child(12){height:85%;animation-delay:.5s;opacity:.4}

@keyframes wv { 0%,100%{transform:scaleY(1)} 50%{transform:scaleY(.35)} }

.mockup-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.mc { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--gray-200); background: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.65rem; color: var(--gray-400); }
.mc.big { width: 36px; height: 36px; background: var(--black); border: none; color: var(--white); font-size: 0.8rem; }

.mockup-tags {
  display: flex;
  gap: 6px;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  padding: 5px 11px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: all 0.15s;
}

.tag:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.tag.blue { background: var(--blue-light); color: var(--blue); border-color: #bfdbfe; }

/* ── SECTION ── */
section { padding: 96px 6%; }

.wrap { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.75;
  max-width: 480px;
}

/* ── GRID CARDS ── */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
}

.grid-6 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.g-card {
  padding: 2rem;
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  transition: background 0.15s;
}

.g-card:hover { background: var(--gray-50); }

.g-card:nth-child(3n) { border-right: none; }
.grid-4 .g-card:nth-child(4n) { border-right: none; }
.grid-4 .g-card:nth-child(3n) { border-right: 1px solid var(--gray-200); }

.g-icon { font-size: 1.5rem; margin-bottom: 1rem; display: block; }
.g-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; letter-spacing: -0.2px; }
.g-card p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; }

/* ── STEPS ── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
}

.step-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--gray-200);
  transition: background 0.15s;
}

.step-item:last-child { border-right: none; }
.step-item:hover { background: var(--gray-50); }

.step-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gray-200);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.15s;
}

.step-item:hover .step-num { color: var(--blue); }
.step-item h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; }
.step-item p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.5; }

/* ── FEATURE ROW ── */
.feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  padding: 5rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.feat-row:last-child { border-bottom: none; padding-bottom: 0; }
.feat-row.rev { direction: rtl; }
.feat-row.rev > * { direction: ltr; }

.feat-img {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  font-size: 3.5rem;
  padding: 2.5rem;
}

.feat-text .section-label { margin-bottom: 0.75rem; }

.feat-text h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.feat-text p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 1.5rem; }

.check-list { list-style: none; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  font-size: 0.875rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-200);
}

.check-list li:last-child { border-bottom: none; }

.check-list li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  font-size: 0.78rem;
  background: var(--blue-light);
  width: 20px; height: 20px;
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
}

.price-card {
  padding: 2.5rem;
  border-right: 1px solid var(--gray-200);
  transition: background 0.15s;
}

.price-card:last-child { border-right: none; }
.price-card:hover { background: var(--gray-50); }

.price-card.pop {
  background: var(--black);
  color: var(--white);
  position: relative;
}

.price-card.pop:hover { background: #111; }

.pop-label {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.price-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.price-card .sub { font-size: 0.8rem; color: var(--gray-600); margin-bottom: 1.5rem; }
.price-card.pop .sub { color: rgba(255,255,255,0.5); }

.price-amount {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.price-amount sup { font-size: 1.1rem; vertical-align: super; letter-spacing: 0; }
.price-amount small { font-size: 0.85rem; font-weight: 400; letter-spacing: 0; color: var(--gray-400); }
.price-card.pop .price-amount small { color: rgba(255,255,255,0.4); }
.price-period { font-size: 0.75rem; color: var(--gray-400); margin-bottom: 2rem; }
.price-card.pop .price-period { color: rgba(255,255,255,0.4); }

.price-list { list-style: none; margin-bottom: 2rem; }

.price-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--gray-200);
}

.price-card.pop .price-list li { border-color: rgba(255,255,255,0.08); }
.price-list li:last-child { border-bottom: none; }

.price-list li .ck { color: var(--blue); font-weight: 700; flex-shrink: 0; }
.price-card.pop .price-list li .ck { color: #86efac; }
.price-list li .no { color: var(--gray-400); }

.p-btn {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  text-align: center;
  display: block;
  border: none;
  letter-spacing: -0.1px;
}

.p-btn.solid { background: var(--white); color: var(--black); }
.p-btn.solid:hover { background: var(--blue); color: var(--white); }
.p-btn.border { background: var(--white); color: var(--black); border: 1px solid var(--gray-200); }
.p-btn.border:hover { background: var(--black); color: var(--white); border-color: var(--black); }

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
}

.r-card {
  padding: 2rem;
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  transition: background 0.15s;
}

.r-card:hover { background: var(--gray-50); }
.r-card:nth-child(3n) { border-right: none; }

.r-stars { font-size: 0.85rem; color: #f59e0b; margin-bottom: 0.9rem; letter-spacing: 1px; }
.r-text { font-size: 0.875rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.r-user { display: flex; align-items: center; gap: 10px; }

.r-ava {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.r-name { font-size: 0.83rem; font-weight: 700; }
.r-role { font-size: 0.75rem; color: var(--gray-400); }

/* ── STATS ROW ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
}

.stat-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--gray-200);
  text-align: center;
  transition: background 0.15s;
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--gray-50); }

.stat-num {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  color: var(--black);
  margin-bottom: 0.4rem;
}

.stat-label { font-size: 0.8rem; color: var(--gray-400); }

/* ── CTA ── */
.cta-block {
  background: var(--black);
  border-radius: 16px;
  padding: 5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.25) 0%, transparent 65%);
  pointer-events: none;
}

.cta-block .section-label { color: rgba(255,255,255,0.4); }
.cta-block .section-title { color: var(--white); }
.cta-block .section-desc { color: rgba(255,255,255,0.5); margin: 0 auto 2.5rem; }

.cta-block .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--black);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s;
  border: none;
  cursor: pointer;
}

.cta-block .btn-white:hover { background: var(--blue); color: var(--white); }

/* ── FAQ ── */
.faq-wrap { max-width: 680px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item:first-child { border-top: 1px solid var(--gray-200); }

.faq-q {
  padding: 1.1rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.15s;
}

.faq-q:hover { color: var(--blue); }
.faq-q .arr { color: var(--gray-400); font-size: 0.8rem; }

.faq-a {
  padding: 0 0 1.1rem;
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ── TABLE ── */
.table-wrap {
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.cmp-table {
  width: 100%;
  border-collapse: collapse;
}

.cmp-table th,
.cmp-table td {
  padding: 12px 20px;
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.85rem;
}

.cmp-table th {
  background: var(--gray-50);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-600);
}

.cmp-table th:first-child,
.cmp-table td:first-child { text-align: left; }
.cmp-table tr:last-child td { border-bottom: none; }
.cmp-table tr:hover td { background: var(--gray-50); }
.cmp-table .hl { color: var(--blue); font-weight: 600; }
.cmp-table .yes { color: var(--blue); font-weight: 700; }
.cmp-table .no { color: var(--gray-200); }

/* ── TOGGLE ── */
.toggle-row {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 3rem;
  font-size: 0.85rem;
  color: var(--gray-600);
}

.tgl {
  width: 40px; height: 22px;
  background: var(--gray-200);
  border-radius: 100px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
}

.tgl.on { background: var(--blue); }

.tgl::after {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  background: var(--white);
  border-radius: 50%;
  top: 3px; left: 3px;
  transition: left 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.tgl.on::after { left: 21px; }

.save-pill {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
  padding: 2px 9px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
}

/* ── PAGE HERO ── */
.page-hero {
  padding: 110px 6% 70px;
  border-bottom: 1px solid var(--gray-200);
  background: var(--gray-50);
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── DIVIDER SECTION ── */
.section-alt { background: var(--gray-50); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }

/* ── TRUST BAR ── */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid var(--gray-200);
  background: var(--gray-50);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--gray-600);
  font-weight: 500;
  padding: 0.9rem 1.75rem;
  border-right: 1px solid var(--gray-200);
}

.trust-item:last-child { border-right: none; }

/* ── FOOTER ── */
footer {
  padding: 60px 6% 28px;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--gray-200);
}

.footer-brand p { font-size: 0.82rem; color: var(--gray-600); margin-top: 0.75rem; max-width: 240px; line-height: 1.6; }

.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 0.9rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a { text-decoration: none; font-size: 0.85rem; color: var(--gray-600); transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--black); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--gray-400);
  max-width: 1200px;
  margin: 0 auto;
}

/* ── DOWNLOAD PAGE ── */
.dl-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
  max-width: 900px;
  margin: 3rem auto 0;
}

.dl-left { padding: 3rem; }
.dl-right { padding: 3rem; background: var(--black); color: var(--white); }

.dl-meta { display: flex; gap: 1.25rem; flex-wrap: wrap; margin: 1.25rem 0; }
.dl-meta span { font-size: 0.78rem; color: var(--gray-400); display: flex; align-items: center; gap: 4px; }
.dl-right .dl-meta span { color: rgba(255,255,255,0.35); }

.btn-dl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 16px;
  background: var(--white);
  color: var(--black);
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}

.btn-dl:hover { background: var(--blue); color: var(--white); }

.dl-trust {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
}

.dl-trust-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem;
}

.dl-trust-row:last-child { border-bottom: none; }
.dl-trust-row strong { color: var(--white); }
.dl-trust-row span { color: rgba(255,255,255,0.4); font-size: 0.75rem; }

.progress-wrap {
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  height: 4px;
  overflow: hidden;
  display: none;
  margin: 1rem 0;
}

.progress-bar {
  height: 100%;
  background: var(--white);
  border-radius: 100px;
  width: 0%;
  transition: width 0.05s linear;
}

.dl-status { display: none; font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-bottom: 0.5rem; }

/* ── CHANGELOG ── */
.cl-item { padding: 2rem 0; border-bottom: 1px solid var(--gray-200); }
.cl-item:last-child { border-bottom: none; }
.cl-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.9rem; }
.cl-ver { font-size: 1rem; font-weight: 800; letter-spacing: -0.5px; }
.cl-date { font-size: 0.78rem; color: var(--gray-400); }
.cl-new { margin-left: auto; background: var(--blue); color: var(--white); font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 2px 9px; border-radius: 100px; }
.cl-item ul { list-style: none; }
.cl-item ul li { font-size: 0.85rem; color: var(--gray-600); padding: 3px 0 3px 14px; position: relative; }
.cl-item ul li::before { content: '·'; position: absolute; left: 3px; color: var(--blue); font-weight: 700; }

/* ── PLAN CARD ALIASES (pricing page) ── */
.plan-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
}

.plan-price { margin-bottom: 1.25rem; }

.plan-amt {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1;
  display: block;
}

.plan-per {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 4px;
  display: block;
}

.price-card.featured {
  background: var(--black);
  color: var(--white);
}
.price-card.featured:hover { background: #111; }
.price-card.featured .plan-amt { color: var(--white); }

.plan-features { list-style: none; margin-top: 0.5rem; }
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 7px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--gray-200);
}
.plan-features li:last-child { border-bottom: none; }
.price-card.featured .plan-features li { border-color: rgba(255,255,255,0.08); }

.plan-features li.ok::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; }
.price-card.featured .plan-features li.ok::before { color: #86efac; }
.plan-features li.no::before { content: '—'; color: var(--gray-200); flex-shrink: 0; }
.plan-features li.no { color: var(--gray-400); }

/* ── REVIEW CARD ALIASES ── */
.r-author { display: flex; align-items: center; gap: 10px; }
.r-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── STANDALONE BTN-WHITE ── */
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--black);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  border: none;
  cursor: pointer;
}
.btn-white:hover { background: var(--blue); color: var(--white); }

/* ── FAQ DETAILS/SUMMARY ── */
.faq-item summary {
  padding: 1.1rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--gray-400); font-size: 1.1rem; flex-shrink: 0; }
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { color: var(--blue); }
.faq-item p {
  padding: 0 0 1.1rem;
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ── ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .mockup-wrap { display: none; }
  .feat-row { grid-template-columns: 1fr; gap: 3rem; }
  .feat-row.rev { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .steps-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  section { padding: 64px 5%; }
  .hero { padding: 88px 5% 60px; }
  .grid-6 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .dl-split { grid-template-columns: 1fr; }
  .trust-bar { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--gray-200); width: 100%; justify-content: center; }
  .cta-block { padding: 3rem 1.5rem; }
}
