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

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

:root {
  --dark:         #0b1d35;
  --dark2:        #0f2647;
  --dark3:        #102040;
  --accent:       #22c55e;
  --accent-dark:  #16a34a;
  --accent-light: #dcfce7;
  --accent-glow:  rgba(34,197,94,0.15);
  --light:        #f8fafc;
  --light2:       #f1f5f9;
  --border:       #e2e8f0;
  --text:         #1e293b;
  --muted:        #4a5568;
  --white:        #ffffff;
  --radius:       20px;
  --radius-sm:    12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', system-ui, sans-serif;
  line-height: 1.1;
  color: var(--dark);
}

img { max-width: 100%; display: block; }
a { color: var(--accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── SCROLL ANIMATIONS ─────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ── NAVIGATION ────────────────────────────────────────────── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}

header.scrolled {
  background: rgba(11, 29, 53, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

nav {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 24px;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--accent);
  color: var(--dark) !important;
  padding: 11px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(34,197,94,0.3);
  margin-right: 12px;
}
.nav-cta:hover {
  background: #4ade80;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(34,197,94,0.4);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
  padding: 120px 0 80px;
}

/* Gradient background */
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0b1d35 0%, #0d2647 50%, #091e35 100%);
  z-index: 0;
}

/* Parallax background image */
.hero-parallax-bg {
  position: absolute;
  inset: -20%;
  background: url('images/office-wide.jpg') center/cover no-repeat;
  opacity: 0.07;
  z-index: 1;
  will-change: transform;
}

/* Floating gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  filter: blur(80px);
}
.hero-orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(34,197,94,0.18), transparent 70%);
  top: -200px;
  right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(56,189,248,0.1), transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

/* Grid overlay */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.25);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: block;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  line-height: 1.08;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, #4ade80 50%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.2px;
}

.hero-desc {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--dark);
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(34,197,94,0.3);
}
.btn-primary:hover {
  background: #4ade80;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(34,197,94,0.4);
  text-decoration: none;
  color: var(--dark);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.04);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  background: rgba(255,255,255,0.08);
  text-decoration: none;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--dark);
  color: var(--dark);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.btn-outline-dark:hover { background: var(--dark); color: var(--white); text-decoration: none; }

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stat-value {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--white);
  line-height: 1;
  display: block;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 5px;
  display: block;
}

/* Hero card */
.hero-card {
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #4ade80);
}

.hero-card-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.hero-card-price {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 4rem;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 4px;
}
.hero-card-price span { font-size: 1.2rem; letter-spacing: 0; font-weight: 500; color: var(--muted); }

.hero-card-sub { font-size: 0.875rem; color: var(--muted); margin-bottom: 28px; }

.hero-card-includes {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}

.hero-card-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

.hero-card-item::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--accent-light);
  color: var(--accent-dark);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 800;
}

.hero-card .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 17px;
  font-size: 1rem;
  margin-bottom: 14px;
  border-radius: var(--radius-sm);
}

.hero-card-guarantee {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}
.hero-card-guarantee strong { color: var(--accent-dark); }

/* ── TRUST BAR ─────────────────────────────────────────────── */
.trust-bar {
  background: var(--light);
  border-bottom: 1px solid var(--border);
  padding: 28px 0 36px;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
}

/* ── SECTION HELPERS ───────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 14px;
}

.section-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 580px;
  line-height: 1.8;
}

.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-sub { margin: 0 auto; }

/* ── WHAT YOU GET ──────────────────────────────────────────── */
.what-section {
  padding: 80px 0 112px;
  background: var(--white);
}

.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
}

.what-card {
  padding: 24px 20px 28px;
  border-radius: var(--radius);
  transition: background 0.25s;
  cursor: default;
}

.what-card:hover {
  background: #f0fdf4;
}

.what-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  opacity: 0.85;
  margin-bottom: 14px;
  letter-spacing: -2px;
}

.what-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.what-card p { font-size: 1rem; color: var(--muted); line-height: 1.78; }

/* ── PARALLAX IMAGE BANNER ─────────────────────────────────── */
.parallax-banner {
  height: 420px;
  position: relative;
  overflow: hidden;
}

.parallax-banner-bg {
  position: absolute;
  inset: -30%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.parallax-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,29,53,0.92) 0%, rgba(11,29,53,0.88) 50%, rgba(11,29,53,0.45) 100%);
  display: flex;
  align-items: center;
}

.parallax-banner-content {
  max-width: 620px;
}

.parallax-banner-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 16px;
  text-align: left;
}

.parallax-banner-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  text-align: left;
}

/* ── PROBLEM / CHECKATRADE ─────────────────────────────────── */
.problem-section {
  padding: 112px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.problem-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0b1d35 0%, #0d2647 100%);
}

.problem-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.problem-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34,197,94,0.12), transparent 70%);
  top: -100px;
  right: 0;
}
.problem-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(56,189,248,0.08), transparent 70%);
  bottom: 0;
  left: 100px;
}

.problem-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.problem-section .section-label { color: var(--accent); }
.problem-section .section-heading { color: var(--white); margin-bottom: 24px; }
.problem-section p { color: rgba(255,255,255,0.7); line-height: 1.85; margin-bottom: 20px; font-size: 1rem; }
.problem-section p strong { color: rgba(255,255,255,0.9); font-weight: 600; }

.vs-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.vs-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.vs-col-head {
  padding: 18px 24px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
}
.vs-col-head.bad { color: #f87171; border-right: 1px solid rgba(255,255,255,0.08); }
.vs-col-head.good { color: var(--accent); }

.vs-row { display: grid; grid-template-columns: 1fr 1fr; }

.vs-item {
  padding: 15px 24px;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  line-height: 1.45;
}
.vs-item.bad { color: rgba(255,255,255,0.58); border-right: 1px solid rgba(255,255,255,0.05); }
.vs-item.good { color: #bbf7d0; font-weight: 500; }

/* ── NOT A FREE BUILDER ────────────────────────────────────── */
.notfree-section {
  padding: 112px 0;
  background: var(--light);
}

.notfree-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.notfree-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 480px;
}

.notfree-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.notfree-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(11,29,53,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
}

.notfree-image-badge span {
  display: block;
  font-size: 1.4rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 2px;
}

.notfree-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 32px 0 36px;
}

.notfree-item { display: flex; gap: 16px; align-items: flex-start; }

.notfree-x {
  width: 26px;
  height: 26px;
  min-width: 26px;
  background: #fee2e2;
  color: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  margin-top: 2px;
}

.notfree-item-text h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.975rem;
  margin-bottom: 5px;
  color: var(--dark);
}
.notfree-item-text p { font-size: 1rem; color: var(--muted); line-height: 1.7; }

.notfree-callout {
  background: var(--accent-light);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  font-size: 0.9rem;
  color: var(--accent-dark);
  font-weight: 500;
  line-height: 1.6;
}

/* ── HOW IT WORKS ──────────────────────────────────────────── */
.how-section {
  padding: 112px 0;
  background: var(--white);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(10% + 27px);
  right: calc(10% + 27px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #4ade80);
  z-index: 0;
  opacity: 0.3;
}

.how-step { text-align: center; position: relative; z-index: 1; }

.how-number {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--accent), #4ade80);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(34,197,94,0.3);
}

.how-step h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.975rem;
  margin-bottom: 10px;
  color: var(--dark);
}
.how-step p { font-size: 1rem; color: var(--muted); line-height: 1.7; }

/* ── INDUSTRIES ────────────────────────────────────────────── */
.industries-section {
  padding: 112px 0;
  background: var(--light);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.industry-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  display: block;
  position: relative;
  overflow: hidden;
}
.industry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34,197,94,0.05), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}
.industry-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(34,197,94,0.12);
  transform: translateY(-4px);
  text-decoration: none;
  color: var(--text);
}
.industry-card:hover::before { opacity: 1; }
.industry-card.active { border-color: var(--accent); border-width: 2px; }
.industry-card.coming-soon { opacity: 0.6; }
.industry-card.coming-soon:hover { border-color: var(--border); box-shadow: none; transform: none; }
.industry-card.coming-soon:hover::before { opacity: 0; }

.industry-emoji { font-size: 2.2rem; margin-bottom: 14px; line-height: 1; }
.industry-card h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.925rem; margin-bottom: 6px; }
.industry-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.5; }

.industry-badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-top: 10px;
  letter-spacing: 0.3px;
}

.coming-badge {
  display: inline-block;
  background: var(--light2);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  margin-top: 10px;
}

/* ── WHATSAPP FLOAT ────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
  text-decoration: none;
}
.whatsapp-float svg { width: 32px; height: 32px; fill: #ffffff; }

/* ── DEMOS ─────────────────────────────────────────────────── */
.demos-section {
  padding: 112px 0;
  background: var(--white);
}

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

.demo-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  display: block;
  text-decoration: none;
  color: inherit;
}
.demo-card:hover {
  box-shadow: 0 20px 56px rgba(0,0,0,0.1);
  transform: translateY(-6px);
  border-color: rgba(34,197,94,0.3);
  text-decoration: none;
  color: inherit;
}

.demo-preview {
  height: 230px;
  overflow: hidden;
  background: var(--light2);
  position: relative;
}
.demo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}
.demo-card:hover .demo-preview img { transform: scale(1.04); }

.demo-label {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(11,29,53,0.88);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

.demo-body { padding: 28px; }
.demo-body h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 8px; }
.demo-body p { font-size: 1rem; color: var(--muted); margin-bottom: 18px; line-height: 1.7; }

.demo-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent-dark);
  text-decoration: none;
  transition: gap 0.2s;
}
.demo-link:hover { gap: 10px; text-decoration: none; }

/* ── PRICING + OBJECTIONS ──────────────────────────────────── */
.pricing-section {
  padding: 112px 0 56px;
  background: var(--light);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.objection-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 8px;
}

.objection { display: flex; gap: 18px; align-items: flex-start; }

.objection-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.objection-q {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.975rem;
  margin-bottom: 7px;
  color: var(--dark);
}
.objection-a { font-size: 1rem; color: var(--muted); line-height: 1.75; }

.pricing-card {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 48px 44px;
  position: sticky;
  top: 96px;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #4ade80);
}

.pricing-orb {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34,197,94,0.12), transparent 70%);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
  pointer-events: none;
}

.pricing-card-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.pricing-card-price {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 4.5rem;
  letter-spacing: -3px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}
.pricing-card-price span { font-size: 1.2rem; letter-spacing: 0; font-weight: 400; color: rgba(255,255,255,0.4); }

.pricing-card-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.pricing-includes {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.pricing-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}
.pricing-item::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: rgba(34,197,94,0.2);
  color: var(--accent);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 800;
}

.pricing-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 28px 0; position: relative; z-index: 1; }
.pricing-extra { font-size: 0.8rem; color: rgba(255,255,255,0.3); line-height: 1.7; margin-bottom: 32px; position: relative; z-index: 1; }

.pricing-card .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 17px;
  font-size: 1rem;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  position: relative;
  z-index: 1;
}

.pricing-guarantee {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.pricing-guarantee strong { color: var(--accent); }

/* ── AGENCY NOTE ───────────────────────────────────────────── */
.agency-section {
  padding: 40px 0 72px;
  background: var(--light);
}

.agency-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 40px 48px;
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
}

.agency-tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.agency-text h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.15rem; margin-bottom: 8px; }
.agency-text p { font-size: 0.9rem; color: var(--muted); max-width: 560px; line-height: 1.75; }

/* ── CTA ───────────────────────────────────────────────────── */
.cta-section {
  padding: 112px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: -20%;
  background: url('images/person-typing.jpg') center/cover no-repeat;
  z-index: 0;
  will-change: transform;
  transform: translateY(var(--cta-parallax, 0px));
}

.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 29, 53, 0.88);
  z-index: 1;
}

.cta-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(34,197,94,0.15), transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
  pointer-events: none;
}

.cta-section .container { position: relative; z-index: 2; }

.cta-section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.cta-section p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--dark);
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 24px rgba(255,255,255,0.15);
}
.btn-white:hover { background: #f0fdf4; transform: translateY(-2px); text-decoration: none; color: var(--dark); }

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  backdrop-filter: blur(8px);
}
.btn-ghost-white:hover { border-color: rgba(255,255,255,0.5); color: var(--white); text-decoration: none; }

/* ── FOOTER ────────────────────────────────────────────────── */
footer {
  background: #070f1c;
  padding: 72px 0 36px;
}

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

.footer-brand .logo { color: var(--white); font-size: 1.35rem; display: block; margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.52); line-height: 1.8; max-width: 280px; }

footer h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
  margin-bottom: 18px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.58); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.06); margin-bottom: 28px; }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.48); }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-card { max-width: 480px; }
  .problem-inner { grid-template-columns: 1fr; gap: 56px; }
  .notfree-grid { grid-template-columns: 1fr; gap: 48px; }
  .notfree-image-wrap { height: 320px; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .demos-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(11,29,53,0.98);
    backdrop-filter: blur(16px);
    padding: 24px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    gap: 20px;
    z-index: 199;
  }
  .nav-links.open a { font-size: 1rem; color: rgba(255,255,255,0.8); }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  nav { position: relative; }
  .hero { padding: 100px 0 72px; min-height: auto; }
  .what-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: repeat(3, 1fr); }
  .how-steps::before { display: none; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .demos-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .agency-inner { flex-direction: column; gap: 20px; padding: 28px 24px; }
  .parallax-banner { height: 300px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .hero-stats { gap: 24px; }
}
