:root {
  --bg: #ffffff;
  --bg-soft: #fafafa;
  --bg-dark: #0a0a0a;
  --surface: #ffffff;
  --border: #e5e7eb;
  --border-strong: #d1d5db;
  --ink: #0a0a0a;
  --ink-2: #1f2937;
  --ink-3: #4b5563;
  --ink-4: #6b7280;
  --ink-5: #9ca3af;
  --accent: #95bf47;
  --accent-dark: #5e8e2e;
  --success: #10b981;
  --warning: #f59e0b;
  --info: #3b82f6;
  --purple: #8b5cf6;
  --gradient-1: linear-gradient(135deg, #95bf47 0%, #5e8e2e 100%);
  --gradient-2: linear-gradient(135deg, #0a0a0a 0%, #1f2937 100%);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* === NAVIGATION === */
.nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  transition: all 0.2s;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.3px;
}
.nav-logo img.header__heading-logo.motion-reduce {
    width: 100%;
    height: auto;
    max-width: 220px;
}
.nav-logo-mark {
  width: 32px;
  height: 32px;
  background: var(--gradient-1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-3);
  transition: color 0.15s;
}

.nav-link:hover { color: var(--ink); }

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

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: white;
}

.btn-primary:hover {
  background: var(--ink-2);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: white;
  color: var(--ink);
  border-color: var(--border-strong);
}

.btn-secondary:hover {
  border-color: var(--ink);
  background: var(--bg-soft);
}

.btn-ghost {
  color: var(--ink-2);
  padding: 8px 14px;
}

.btn-ghost:hover { color: var(--ink); }

.btn-large {
  padding: 14px 24px;
  font-size: 15px;
  border-radius: 12px;
}

.btn-accent {
  background: var(--gradient-1);
  color: white;
  box-shadow: 0 4px 14px rgba(149, 191, 71, 0.4);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(149, 191, 71, 0.5);
}

/* === HERO === */
.hero {
  padding: 80px 24px 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(149, 191, 71, 0.08) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.hero h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--ink);
}

.hero h1 .accent {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--ink-3);
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.5px;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--ink-4);
  margin-top: 4px;
}
/* ============ VIDEO PREVIEW SECTION ============ */

.preview {
  position: relative;
  width: 100%;
  padding-top: 40px;
}

.preview-frame {
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;

  background: rgba(10, 10, 20, 0.75);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    0 25px 60px rgba(0,0,0,0.45),
    0 0 40px rgba(207,139,255,0.08);

  position: relative;
}

.preview-frame:before {
  content: '';
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.04),
      transparent 30%
    );

  pointer-events: none;
  z-index: 2;
}

/* TOP BAR */

.preview-tab {
  display: flex;
  align-items: center;
  gap: 16px;

  padding: 14px 18px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.04),
      rgba(255,255,255,0.02)
    );

  border-bottom: 1px solid var(--border);

  position: relative;
  z-index: 3;
}

.preview-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.dot-r {
  background: #ff5f57;
  box-shadow: 0 0 10px rgba(255,95,87,0.7);
}

.dot-y {
  background: #febc2e;
  box-shadow: 0 0 10px rgba(254,188,46,0.7);
}

.dot-g {
  background: #28c840;
  box-shadow: 0 0 10px rgba(40,200,64,0.7);
}

.preview-url {
  flex: 1;

  color: #FFFFFF;

  font-size: 12px;

  font-family: var(--font-mono);

  letter-spacing: 0.03em;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-status {
  color: rgba(93, 255, 175, 1);

  font-size: 11px;

  font-family: var(--font-mono);

  letter-spacing: 0.15em;

  text-transform: uppercase;

  text-shadow: 0 0 10px rgba(93,255,175,0.6);
}
/* VIDEO AREA */

.preview-video-container {
  position: relative;

  width: 100%;

  padding-top: 56.25%; /* 16:9 */

  overflow: hidden;

  background: #000;
}

.preview-video {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  border: none;

  transition: transform 0.5s ease;
}

.preview-frame:hover .preview-video {
  transform: scale(1.02);
}

/* Responsive */

@media (max-width: 768px) {

  .preview-tab {
    gap: 10px;
    padding: 12px;
  }

  .preview-url {
    font-size: 10px;
  }

  .preview-status {
    display: none;
  }

}
/* === HERO IMAGE MOCKUP === */
.hero-mockup {
  margin-top: 80px;
  position: relative;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.hero-mockup-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.15), 0 0 0 1px var(--border);
  background: white;
}

.hero-mockup-bar {
  background: #f6f6f7;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #febc2e; }
.mockup-dot:nth-child(3) { background: #28c840; }

.mockup-url {
  margin-left: 12px;
  background: white;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  color: var(--ink-4);
  border: 1px solid var(--border);
  flex: 1;
  max-width: 400px;
}

.hero-mockup-content {
  padding: 32px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  min-height: 480px;
}

.mockup-sidebar {
  background: #0a0a0a;
  border-radius: 8px 0 0 8px;
  padding: 20px 16px;
  color: #d4d4d4;
}

.mockup-sidebar-title {
  font-size: 13px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  padding: 0 8px;
}

.mockup-nav-item {
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  margin-bottom: 2px;
  color: #a3a3a3;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mockup-nav-item.active {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-weight: 500;
}

.mockup-nav-icon {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

.mockup-main {
  padding: 24px 28px;
  background: #fafafa;
  border-radius: 0 8px 8px 0;
}

.mockup-h1 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.mockup-subtitle {
  font-size: 13px;
  color: var(--ink-4);
  margin-bottom: 24px;
}

.mockup-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.mockup-stat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
}

.mockup-stat-label {
  font-size: 11px;
  color: var(--ink-4);
  margin-bottom: 6px;
}

.mockup-stat-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
}

.mockup-stat-trend {
  font-size: 11px;
  color: var(--success);
  margin-top: 2px;
  font-weight: 600;
}

.mockup-chart {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  height: 200px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  padding-top: 30px;
}

.mockup-chart-bar {
  flex: 1;
  background: var(--ink);
  border-radius: 2px;
  min-height: 4px;
  position: relative;
}

.mockup-chart-bar.highlighted {
  background: var(--accent);
}

/* === SECTIONS === */
.section {
  padding: 100px 24px;
  position: relative;
}

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

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--ink-3);
  line-height: 1.6;
}

/* === FEATURES === */
.features {
  background: var(--bg-soft);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--ink);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.feature-icon-1 { background: #fef3c7; }
.feature-icon-2 { background: #dbeafe; }
.feature-icon-3 { background: #d1fae5; }
.feature-icon-4 { background: #fce7f3; }
.feature-icon-5 { background: #e0e7ff; }
.feature-icon-6 { background: #fed7aa; }

.feature-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
  letter-spacing: -0.3px;
}

.feature-desc {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.6;
}

/* === HOW IT WORKS === */
.how-it-works {
  background: white;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
  position: relative;
}

.step-card {
  position: relative;
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--gradient-1);
  color: white;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 8px 24px rgba(149, 191, 71, 0.3);
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.step-desc {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.6;
}

/* === COMPARISON === */
.comparison {
  background: var(--bg-soft);
}

.compare-table-wrapper {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 880px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

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

.compare-table th {
  background: #fafafa;
  padding: 18px 20px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}

.compare-table th:not(:first-child) {
  text-align: center;
}

.compare-table th.highlight {
  background: var(--gradient-1);
  color: white;
}

.compare-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--ink-2);
}

.compare-table td:not(:first-child) {
  text-align: center;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.check-yes { color: var(--success); font-size: 18px; font-weight: 700; }
.check-no { color: var(--ink-5); }

/* === PRICING === */
.pricing {
  background: white;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.2s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border: 2px solid var(--ink);
  transform: scale(1.04);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: white;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.pricing-name {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink-4);
  margin-bottom: 8px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.pricing-currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
}

.pricing-amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -2px;
  line-height: 1;
}

.pricing-period {
  font-size: 14px;
  color: var(--ink-4);
}

.pricing-tagline {
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 24px;
  min-height: 20px;
}

.pricing-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  padding: 24px 0 0;
  border-top: 1px solid var(--border);
}

.pricing-features li {
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2310b981'%3E%3Cpath d='M13.78 4.22a.75.75 0 010 1.06l-7.25 7.25a.75.75 0 01-1.06 0L2.22 9.28a.75.75 0 011.06-1.06L6 10.94l6.72-6.72a.75.75 0 011.06 0z'/%3E%3C/svg%3E") no-repeat center;
}

.pricing-features li.disabled {
  color: var(--ink-5);
  text-decoration: line-through;
  opacity: 0.6;
}

.pricing-features li.disabled::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d1d5db'%3E%3Cpath d='M2 8a.75.75 0 01.75-.75h10.5a.75.75 0 010 1.5H2.75A.75.75 0 012 8z'/%3E%3C/svg%3E") no-repeat center;
}

.pricing-features li strong {
  color: var(--ink);
  font-weight: 600;
}

/* === SOCIAL PROOF === */
.testimonials {
  background: var(--bg-soft);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

.testimonial-stars {
  color: #fbbf24;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.testimonial-role {
  font-size: 12px;
  color: var(--ink-4);
}

/* === FAQ === */
.faq {
  background: white;
  padding: 100px 24px;
}

.faq-container {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.faq-question:hover { color: var(--accent-dark); }

.faq-question::after {
  content: "+";
  font-size: 24px;
  font-weight: 300;
  color: var(--ink-4);
  transition: transform 0.2s;
}

.faq-item.open .faq-question::after {
  content: "−";
  transform: rotate(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  color: var(--ink-3);
  font-size: 15px;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 0 20px;
}

/* === CTA === */
.cta-section {
  background: var(--bg-dark);
  color: white;
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(149, 191, 71, 0.15) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-container {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: white;
  color: var(--ink);
}

.btn-white:hover {
  background: #f6f6f7;
}

/* === FOOTER === */
.footer {
  background: #0a0a0a;
  color: #a3a3a3;
  padding: 64px 24px 32px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: white;
  font-weight: 800;
  font-size: 18px;
}
.footer-logo img.header__heading-logo.motion-reduce {
    width: 100%;
    height: auto;
    max-width: 200px;
}
.footer-tagline {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a svg {
    width: 18px;
    height: 18px;
    fill: #FFFFFF;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  background: #1f2937;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.15s;
}

.footer-social-link:hover {
  background: var(--accent);
  color: white;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 14px;
  color: #a3a3a3;
  transition: color 0.15s;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid #1f2937;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #6b7280;
  flex-wrap: wrap;
  gap: 16px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero h1 { font-size: 48px; }
  .section-title { font-size: 36px; }
  .hero-mockup-content { grid-template-columns: 1fr; }
  .mockup-sidebar { display: none; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .hero { padding: 100px 16px 60px; }
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 16px; }
  .section { padding: 60px 16px; }
  .section-title { font-size: 28px; }
  .feature-grid, .pricing-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .compare-table th, .compare-table td { padding: 12px 8px; font-size: 13px; }
  .cta-title { font-size: 32px; }
  .hero-stats { gap: 24px; }
  .mockup-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
</style>
</head>
<body>
<style>
:root {
    --bg: #F6F3EC;
    --bg-alt: #EDE8DD;
    --ink: #14110E;
    --ink-soft: #4A463F;
    --muted: #8B8478;
    --line: #D9D2C3;
    --accent: #1F4D34;
    --accent-soft: #E8EDE5;
    --gold: #B8954A;
  }
/* ============ DEMO BANNER ============ */
  .demo-banner {
    position: relative;
    z-index: 3;
    background: var(--ink);
    color: var(--bg);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .demo-banner-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 12px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    text-align: center;
  }

  .demo-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: var(--gold);
    color: var(--ink);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    flex-shrink: 0;
  }

  .demo-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--ink);
    border-radius: 50%;
  }

  .demo-message {
    font-size: 13px;
    color: rgba(246, 243, 236, 0.85);
    line-height: 1.5;
  }

  .demo-message strong {
    color: var(--bg);
    font-weight: 500;
  }

  .demo-message em {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
  }

  @media (max-width: 640px) {
    .demo-banner-inner {
      padding: 10px 20px;
      gap: 10px;
    }
    .demo-message { font-size: 12px; }
  }


/* ============ DEMO BANNER ============ */
  .demo-banner {
    position: relative;
    z-index: 3;
    background: #14110E;
    color: #F6F3EC;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .demo-banner-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 12px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    text-align: center;
  }

  .demo-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: #B8954A;
    color: #14110E;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    flex-shrink: 0;
  }

  .demo-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #14110E;
    border-radius: 50%;
  }

  .demo-message {
    font-size: 13px;
    color: rgba(246, 243, 236, 0.85);
    line-height: 1.5;
  }

  .demo-message strong {
    color: #F6F3EC;
    font-weight: 500;
  }

  .demo-message em {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: #B8954A;
    font-weight: 400;
  }

  @media (max-width: 640px) {
    .demo-banner-inner {
      padding: 10px 20px;
      gap: 10px;
    }
    .demo-message { font-size: 12px; }
  }

/* Wrapper — gradient animated border */
.btn-combo-wrap {
  padding: 2.5px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f5a623, #ff6b35, #e8c878, #4fd1c5, #2295d7, #f5a623);
  background-size: 300% 300%;
  display: inline-block;
  animation: gradMove 3s ease infinite, gentleBounce 2.4s ease-in-out infinite;
}
.btn-combo-wrap:hover {
  animation: gradMove 3s ease infinite, shake .45s ease;
}

/* Inner button */
.btn-combo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 15px;
  background: #0a1628;
  color: #fff;
  border: none;
  padding: 0;
  border-radius: 11px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: block;
  transition: background .25s;
}

/* Shimmer sweep on hover */
.btn-combo::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transition: left .55s ease;
}
.btn-combo-wrap:hover .btn-combo { background: rgba(10, 22, 40, .82); }
.btn-combo-wrap:hover .btn-combo::after { left: 160%; }
.btn-combo-wrap:active .btn-combo { transform: scale(.95); }

/* Keyframes */
@keyframes gradMove {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}
@keyframes gentleBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  15%      { transform: translateX(-5px) rotate(-1deg); }
  30%      { transform: translateX(5px) rotate(1deg); }
  45%      { transform: translateX(-3px); }
  60%      { transform: translateX(3px); }
  75%      { transform: translateX(-2px); }
}
