/* ── Reset & Variables ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:       #0b0b0b;
  --bg2:      #141414;
  --bg3:      #1c1c1c;
  --red:      #902838;
  --red-h:    #a83044;
  --gold:     #c9a84c;
  --text:     #f0f0f0;
  --muted:    #777;
  --muted2:   #444;
  --border:   #242424;
  --radius:   14px;
  --radius-sm:8px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--font); }

/* ── Utility ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--red);
  background: rgba(144,40,56,0.1); border: 1px solid rgba(144,40,56,0.25);
  border-radius: 99px; padding: 4px 12px; margin-bottom: 16px;
}
.tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff;
  border: none; border-radius: var(--radius-sm);
  padding: 13px 26px; font-size: 15px; font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--red-h); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 13px 26px; font-size: 15px; font-weight: 500;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--muted); background: rgba(255,255,255,0.04); }

.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px); font-weight: 700;
  letter-spacing: -0.5px; line-height: 1.2; margin-bottom: 16px;
}
.section-sub {
  font-size: 17px; color: var(--muted); max-width: 520px; line-height: 1.7;
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px;
  display: flex; align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(11,11,11,0.88);
  border-color: var(--border);
  backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex; align-items: center; gap: 0; width: 100%;
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
}
.nav-logo img { height: 96px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin-left: 40px;
}
.nav-links a {
  font-size: 14px; color: var(--muted); padding: 6px 12px;
  border-radius: 6px; transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.nav-cta { margin-left: auto; }
.nav-cta .btn-primary { padding: 9px 20px; font-size: 14px; }

/* ── NAV DROPDOWN ── */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a::after { content: ''; display: inline-block; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 4px solid currentColor; margin-top: 1px; }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: #141414; border: 1px solid var(--border); border-radius: 10px;
  padding: 6px; min-width: 200px; z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 7px; font-size: 13px;
  color: var(--muted); transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu a:hover { background: rgba(255,255,255,0.06); color: var(--text); }
.nav-dropdown-menu a svg { flex-shrink: 0; opacity: 0.6; }

/* ── HERO ── */
.hero {
  padding: 144px 0 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(144,40,56,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--muted); margin-bottom: 20px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 99px; padding: 5px 14px;
}
.hero-eyebrow span { color: var(--gold); font-weight: 600; }
.hero h1 {
  font-size: clamp(36px, 5vw, 56px); font-weight: 800;
  letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--red); }
.hero-sub {
  font-size: 18px; color: var(--muted); line-height: 1.7;
  margin-bottom: 36px; max-width: 460px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--muted);
}
.hero-trust-dots { display: flex; gap: -4px; }
.hero-trust-dot {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--bg3); border: 2px solid var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; margin-right: -6px;
}
.hero-visual { position: relative; }
.hero-phone-wrap {
  position: relative; display: flex; justify-content: center;
}
.hero-browser {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
}
.hero-browser-bar {
  height: 36px; background: var(--bg3);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 6px; padding: 0 12px;
}
.hero-browser-dot { width: 10px; height: 10px; border-radius: 50%; }
.hero-browser-dot:nth-child(1) { background: #ff5f57; }
.hero-browser-dot:nth-child(2) { background: #febc2e; }
.hero-browser-dot:nth-child(3) { background: #28c840; }
.hero-browser-url {
  margin-left: 10px; flex: 1; background: var(--bg);
  border-radius: 4px; height: 22px;
  display: flex; align-items: center; padding: 0 10px;
  font-size: 11px; color: var(--muted);
}
.hero-browser img { width: 320px; }
.hero-floating-card {
  position: absolute; bottom: 30px; left: -40px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 12px; padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.hero-floating-card .fc-icon {
  width: 36px; height: 36px; background: rgba(34,197,94,0.12);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.hero-floating-card .fc-text { font-size: 13px; }
.hero-floating-card .fc-text strong { display: block; font-size: 14px; }
.hero-floating-card .fc-text span { color: var(--muted); font-size: 12px; }

/* ── LOGOS BAR ── */
.logos-bar {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logos-bar-inner {
  display: flex; align-items: center; gap: 0;
  justify-content: space-between;
}
.logos-bar-label { font-size: 13px; color: var(--muted2); white-space: nowrap; margin-right: 40px; }
.logos-bar-items { display: flex; align-items: center; gap: 48px; flex: 1; }
.logos-bar-item { font-size: 15px; font-weight: 700; color: var(--muted2); letter-spacing: -0.3px; }

/* ── FEATURES ── */
.features { padding: 100px 0; }
.features-header { text-align: center; margin-bottom: 64px; }
.features-header .section-sub { margin: 0 auto; }
.features-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
}
.feature-card {
  background: var(--bg2); padding: 40px;
  border: none;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--bg3); }
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(144,40,56,0.12); border: 1px solid rgba(144,40,56,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.feature-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 15px; color: var(--muted); line-height: 1.7; }
.feature-card .feature-img {
  margin-top: 24px; border-radius: 10px; overflow: hidden;
  border: 1px solid var(--border);
}
.feature-card .feature-img img { width: 100%; }

/* ── HOW IT WORKS ── */
.how { padding: 100px 0; background: var(--bg2); }
.how-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.how-steps { display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: flex; gap: 20px; padding: 28px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer; transition: opacity 0.2s;
}
.how-step:last-child { border-bottom: none; }
.how-step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--muted);
  flex-shrink: 0; transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.how-step.active .how-step-num {
  background: var(--red); color: #fff; border-color: var(--red);
}
.how-step-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.how-step-body p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.how-visual {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.how-visual-frame {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.how-visual-frame img { width: 280px; display: block; }

/* ── SCREENSHOTS ── */
.screenshots { padding: 100px 0; }
.screenshots-header { text-align: center; margin-bottom: 60px; }
.screenshots-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.screenshot-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.screenshot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.screenshot-card img { width: 100%; display: block; }
.screenshot-card-label {
  padding: 14px 16px; font-size: 13px; font-weight: 600; color: var(--muted);
}

/* ── PRICING ── */
.pricing { padding: 100px 0; }
.pricing-header { text-align: center; margin-bottom: 64px; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-width: 900px; margin: 0 auto;
}
.plan-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  position: relative; transition: border-color 0.2s;
}
.plan-card:hover { border-color: var(--muted2); }
.plan-card.popular {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201,168,76,0.06) 0%, var(--bg2) 100%);
}
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #000; font-size: 10px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 99px;
}
.plan-name { font-size: 14px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.plan-price { font-size: 40px; font-weight: 800; letter-spacing: -1px; margin-bottom: 4px; }
.plan-price span { font-size: 16px; font-weight: 400; color: var(--muted); }
.plan-period { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--muted);
}
.plan-features li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.plan-cta {
  display: block; width: 100%; text-align: center;
  padding: 12px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; border: none;
  background: var(--bg3); color: var(--text);
  transition: background 0.2s;
}
.plan-card.popular .plan-cta { background: var(--gold); color: #000; }
.plan-cta:hover { opacity: 0.85; }

/* ── FAQ ── */
.faq { padding: 100px 0; background: var(--bg2); }
.faq-header { text-align: center; margin-bottom: 60px; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; font-size: 16px; font-weight: 600;
  cursor: pointer; gap: 16px; background: none; border: none;
  color: var(--text); width: 100%; text-align: left;
  transition: color 0.15s;
}
.faq-question:hover { color: var(--muted); }
.faq-chevron {
  width: 20px; height: 20px; flex-shrink: 0;
  color: var(--muted); transition: transform 0.25s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  font-size: 15px; color: var(--muted); line-height: 1.7;
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 22px; }
.faq-more { text-align: center; margin-top: 40px; }
.faq-more a { color: var(--red); font-weight: 600; font-size: 15px; }
.faq-more a:hover { text-decoration: underline; }

/* ── BLOG ── */
.blog { padding: 100px 0; }
.blog-header { text-align: center; margin-bottom: 60px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.2s;
}
.blog-card:hover { border-color: var(--muted2); }
.blog-card-img {
  height: 180px; background: var(--bg3);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
}
.blog-card-body { padding: 24px; }
.blog-card-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--red); margin-bottom: 10px;
}
.blog-card-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-card-excerpt { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.blog-card-meta { font-size: 12px; color: var(--muted2); }
.blog-coming-banner {
  text-align: center; padding: 60px 24px;
  background: var(--bg2); border: 1px dashed var(--border);
  border-radius: var(--radius);
}
.blog-coming-banner h3 { font-size: 22px; margin-bottom: 10px; }
.blog-coming-banner p { color: var(--muted); font-size: 15px; }

/* ── CTA SECTION ── */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(144,40,56,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; }
.cta-section p { font-size: 18px; color: var(--muted); margin-bottom: 36px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-note { font-size: 13px; color: var(--muted2); margin-top: 20px; }

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px;
}
.footer-brand img { height: 28px; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 240px; }
.footer-col h4 { font-size: 13px; font-weight: 700; margin-bottom: 16px; color: var(--text); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--muted); transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--muted);
}

/* ── SUCCESS PAGE ── */
.success-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: radial-gradient(ellipse at center, rgba(34,197,94,0.06) 0%, var(--bg) 60%);
}
.success-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 20px; padding: 56px 48px; text-align: center;
  max-width: 480px; width: 100%; margin: 24px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; margin: 0 auto 24px;
}
.success-card h1 { font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.success-card p { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }
.success-steps {
  background: var(--bg3); border-radius: 12px; padding: 24px;
  text-align: left; margin-bottom: 32px; list-style: none;
  display: flex; flex-direction: column; gap: 14px;
}
.success-steps li { display: flex; gap: 12px; align-items: flex-start; }
.success-step-num {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--red); color: #fff;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.success-steps li span { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ── PRICING PAGE ── */
.pricing-page { padding: 120px 0 100px; }
.pricing-page-header { text-align: center; margin-bottom: 64px; }
.pricing-page-header h1 { font-size: clamp(36px, 5vw, 52px); font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; }
.pricing-page-header p { font-size: 18px; color: var(--muted); max-width: 500px; margin: 0 auto; }
.pricing-full-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 960px; margin: 0 auto 80px;
}
.pricing-faq { max-width: 720px; margin: 0 auto; }
.pricing-faq h2 { font-size: 28px; font-weight: 700; margin-bottom: 32px; }
.compare-table {
  width: 100%; border-collapse: collapse; margin: 60px 0;
  font-size: 14px;
}
.compare-table th, .compare-table td {
  padding: 14px 20px; text-align: center; border-bottom: 1px solid var(--border);
}
.compare-table th { font-size: 13px; font-weight: 700; color: var(--muted); background: var(--bg2); }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; color: var(--muted); }
.compare-table td { color: var(--text); }
.compare-table .check { color: #22c55e; font-size: 16px; }
.compare-table .cross { color: var(--muted2); }
.compare-table tr:hover td { background: rgba(255,255,255,0.02); }

/* ── FAQ PAGE ── */
.faq-page { padding: 120px 0 100px; }
.faq-page-header { text-align: center; margin-bottom: 64px; }
.faq-page-header h1 { font-size: clamp(36px, 5vw, 52px); font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; }
.faq-page-header p { font-size: 18px; color: var(--muted); }
.faq-categories { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.faq-cat-btn {
  padding: 8px 18px; border-radius: 99px; font-size: 13px; font-weight: 600;
  border: 1px solid var(--border); background: none; color: var(--muted);
  cursor: pointer; transition: all 0.15s;
}
.faq-cat-btn.active, .faq-cat-btn:hover { border-color: var(--red); color: var(--text); background: rgba(144,40,56,0.1); }
.faq-full { max-width: 720px; margin: 0 auto; }
.faq-section-title { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted2); margin: 40px 0 4px; }

/* ── BLOG PAGE ── */
.blog-page { padding: 120px 0 100px; }
.blog-page-header { text-align: center; margin-bottom: 64px; }
.blog-page-header h1 { font-size: clamp(36px, 5vw, 52px); font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; }
.blog-page-header p { font-size: 18px; color: var(--muted); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .how-inner { grid-template-columns: 1fr; }
  .how-visual { display: none; }
  .screenshots-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid, .pricing-full-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .screenshots-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
