/* ================================================================
   Creative Loop — Landing Page CSS (Light Theme v3)
   Inspired by Buffer, Hootsuite, Later.com
   ================================================================ */

/* ── Reset & Tokens ───────────────────────────────────────────── */
:root {
  --bg: #ffffff;
  --bg-alt: #f8f9fb;
  --bg-dark: #0f172a;
  --card: #ffffff;
  --elevated: #f1f3f9;
  --border: #e2e8f0;
  --border-light: #f1f5f9;

  --accent: #7c3aed;
  --accent2: #6366f1;
  --accent-light: #ede9fe;
  --accent-hover: #6d28d9;
  --accent-glow: rgba(124,58,237,0.15);

  --text: #1e293b;
  --text2: #64748b;
  --text3: #94a3b8;
  --text-white: #ffffff;

  --success: #10b981;
  --warn: #f59e0b;
  --err: #ef4444;

  --r: 10px;
  --r-lg: 14px;
  --r-xl: 20px;

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--text);
}
a { color: var(--accent); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; display: block; }

/* ── Utility ──────────────────────────────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-gradient {
  background: linear-gradient(135deg, #7c3aed, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Animations ───────────────────────────────────────────────── */
.anim { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.anim.visible { opacity: 1; transform: translateY(0); }
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.15s; }
.anim-delay-3 { transition-delay: 0.2s; }
.anim-delay-4 { transition-delay: 0.25s; }

/* ── Nav ──────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 12px 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: padding 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo img { width: 32px; height: 32px; object-fit: contain; }
.logo-text { font-size: 18px; font-weight: 700; color: var(--text); letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: var(--text2);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
  text-decoration: none;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  padding: 9px 22px;
  background: var(--accent);
  color: var(--text-white) !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.15s;
}
.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--accent-glow);
}
.nav-links-mobile { display: none; }
.mobile-menu {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 4px;
}

/* ── Nav Dropdown ─────────────────────────────────────────────── */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-dropdown-toggle svg {
  transition: transform 0.2s;
}
.nav-dropdown:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 12px;
  min-width: 320px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: var(--r);
  text-decoration: none;
  transition: background 0.15s;
}
.nav-dropdown-item:hover {
  background: var(--bg-alt);
}
.nav-dropdown-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.nav-dropdown-item div {
  display: flex;
  flex-direction: column;
}
.nav-dropdown-item strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.nav-dropdown-item span {
  font-size: 12px;
  color: var(--text2);
  margin-top: 2px;
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--text-white);
  box-shadow: 0 2px 8px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-glow);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}
.btn svg { width: 18px; height: 18px; }

/* ── Badge ────────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.badge-purple {
  background: var(--accent-light);
  color: var(--accent);
}

/* ── Larger buttons ──────────────────────────────────────────── */
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  padding: 140px 0 60px;
  background: linear-gradient(180deg, var(--bg) 0%, #f5f3ff 40%, var(--bg-alt) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(99,102,241,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-logo {
  display: block;
  width: 140px;
  height: auto;
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 12px rgba(124,58,237,0.15));
}
.hero h1 {
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 700;
  margin: 20px 0 18px;
  color: var(--text);
  letter-spacing: -0.03em;
}
.hero p {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text2);
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}

/* ── Hero Visual ─────────────────────────────────────────────── */
.hero-visual {
  max-width: 1000px;
  margin: 56px auto 0;
  position: relative;
  z-index: 1;
}
.hero-image {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--border);
  border: 4px solid rgba(255,255,255,0.8);
}
.hero-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: var(--shadow-lg);
  animation: heroFloat 3s ease-in-out infinite;
}
.hero-float span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.hero-float-1 { top: 10%; left: -30px; animation-delay: 0s; }
.hero-float-2 { top: 50%; right: -40px; animation-delay: 1s; }
.hero-float-3 { bottom: 8%; left: 5%; animation-delay: 2s; }
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── Social Proof ─────────────────────────────────────────────── */
.social-proof {
  padding: 48px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border-light);
}
.social-proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.proof-stat { text-align: center; }
.proof-stat .number {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.proof-stat .label {
  font-size: 13px;
  color: var(--text3);
  margin-top: 2px;
}

/* ── Section ──────────────────────────────────────────────────── */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }
.section-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 600;
  margin-bottom: 14px;
}
.section-desc {
  font-size: 17px;
  color: var(--text2);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ── Modules Showcase ─────────────────────────────────────────── */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.module-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.module-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  color: var(--text);
}
.module-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
}
.module-logo-white {
  height: 32px;
  width: auto;
}
.module-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(255,255,255,0.25);
  color: #fff;
}
.module-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin: 0 24px;
  width: calc(100% - 48px);
  border-radius: var(--r);
}
.module-card h3 {
  font-size: 20px;
  font-weight: 700;
  padding: 16px 24px 4px;
  color: #fff;
}
.module-card p {
  font-size: 14px;
  padding: 0 24px 24px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}
.module-card--purple { background: linear-gradient(135deg, #7c3aed, #6366f1); }
.module-card--indigo { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.module-card--amber  { background: linear-gradient(135deg, #f59e0b, #d97706); }
.module-card--emerald { background: linear-gradient(135deg, #10b981, #059669); }

/* ── Problem (side-by-side layout) ───────────────────────────── */
.problem-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.problem-content { }
.problem-visual { position: relative; }
.problem-img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.pain-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pain-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pain-item .pain-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(239,68,68,0.08);
}
.pain-item .pain-icon svg {
  width: 22px; height: 22px;
  fill: none;
  stroke-width: 2;
}
.pain-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}
.pain-item p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
  margin: 0;
}

/* Legacy pain-grid (kept for compat) */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pain-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pain-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.pain-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.pain-icon svg {
  width: 22px; height: 22px;
  stroke-width: 2;
  fill: none;
}
.pain-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.pain-card p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
}

/* ── Features ─────────────────────────────────────────────────── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--border-light);
}
.feature-row:last-child { border: none; }
.feature-row.reverse .feature-text { order: 2; }
.feature-row.reverse .feature-visual { order: 1; }
.feature-text h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 12px;
}
.feature-text p {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 18px;
}
.feature-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}
.feature-tag-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.feature-module-logo {
  height: 36px;
  width: auto;
}
.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  margin-top: 12px;
  color: var(--accent);
  transition: gap 0.2s;
}
.feature-link:hover { gap: 10px; }
.feature-visual {
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-alt);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-visual:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}
.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-visual-inner {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  flex-direction: column;
  gap: 12px;
}
.feature-icon-large {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon-large svg {
  width: 32px; height: 32px;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-list {
  list-style: none;
  margin-top: 12px;
}
.feature-list li {
  padding: 5px 0;
  font-size: 15px;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.feature-list svg {
  width: 18px; height: 18px;
  stroke: var(--success);
  fill: none;
  flex-shrink: 0;
}

/* ── Workflow ──────────────────────────────────────────────────── */
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.workflow-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.workflow-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.workflow-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin: 0 auto 14px;
}
.workflow-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.workflow-icon-wrap img {
  /* white logos already white */
}
.workflow-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.workflow-card p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.55;
}
.workflow-arrow {
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: var(--text3);
  font-size: 18px;
}

/* ── Pricing ──────────────────────────────────────────────────── */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
.pricing-toggle span {
  font-size: 14px;
  color: var(--text2);
  font-weight: 500;
}
.pricing-toggle span.active { color: var(--text); font-weight: 600; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: all 0.25s;
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-lg);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pricing-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--text-white);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}
.pricing-card .price {
  font-size: 44px;
  font-weight: 700;
  margin: 14px 0 2px;
}
.pricing-card .price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text2);
}
.pricing-card .period {
  font-size: 13px;
  color: var(--text2);
  margin-bottom: 24px;
}
.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}
.pricing-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border-light);
}
.pricing-features li:last-child { border: none; }
.pricing-features svg {
  width: 16px; height: 16px;
  stroke: var(--success);
  fill: none;
  flex-shrink: 0;
}
.pricing-btn {
  width: 100%;
  padding: 12px;
  border-radius: var(--r);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  border: none;
}
.pricing-btn-primary {
  background: var(--accent);
  color: var(--text-white);
}
.pricing-btn-primary:hover {
  background: var(--accent-hover);
}
.pricing-btn-outline {
  background: var(--bg);
  color: var(--text);
  border: 1.5px solid var(--border);
}
.pricing-btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Gallery ──────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 48px;
}
.gallery-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s;
}
.gallery-item:hover { transform: scale(1.03); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 200px;
}
.gallery-item--tall {
  grid-row: span 2;
}
.gallery-item--wide {
  grid-column: span 2;
}

/* ── CTA ──────────────────────────────────────────────────────── */
.cta-section {
  padding: 100px 0;
  background: var(--bg-alt);
}
.cta-box {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
  border-radius: var(--r-xl);
  padding: 72px 48px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box::after {
  content: '';
  position: absolute;
  bottom: -40%; left: -20%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-logo {
  height: 56px;
  width: auto;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}
.cta-box h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-white);
  position: relative;
  z-index: 1;
}
.cta-box p {
  color: #94a3b8;
  margin-bottom: 32px;
  font-size: 17px;
  position: relative;
  z-index: 1;
}
.cta-btns {
  position: relative;
  z-index: 1;
}
.btn-cta-white {
  background: var(--text-white) !important;
  color: var(--bg-dark) !important;
  box-shadow: 0 4px 16px rgba(255,255,255,0.15);
}
.btn-cta-white:hover {
  background: #e2e8f0 !important;
  color: var(--bg-dark) !important;
  box-shadow: 0 8px 24px rgba(255,255,255,0.2);
}
.cta-modules {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
  opacity: 0.6;
}
.cta-modules img {
  transition: opacity 0.2s;
}
.cta-modules img:hover {
  opacity: 0.8;
}

/* ── Footer ───────────────────────────────────────────────────── */
.footer {
  padding: 48px 0 36px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand { max-width: 280px; }
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text2);
  padding: 4px 0;
  transition: color 0.15s;
  text-decoration: none;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text3);
}
.footer-bottom a { color: var(--text3); }
.footer-bottom a:hover { color: var(--accent); }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links .nav-link-text { display: none; }
  .nav-links .nav-dropdown { display: none; }
  .mobile-menu { display: block; }
  .nav-links-mobile.open {
    display: flex;
    position: fixed;
    top: 56px; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 99;
  }
  .nav-links-mobile a { font-size: 18px; color: var(--text); }
  .hero { padding-top: 100px; }
  .hero-logo { width: 100px; }
  .hero-float { display: none; }
  .modules-grid { grid-template-columns: 1fr; }
  .problem-layout { grid-template-columns: 1fr; gap: 32px; }
  .pain-grid { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 24px; }
  .feature-row.reverse .feature-text { order: 1; }
  .feature-row.reverse .feature-visual { order: 2; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--tall { grid-row: span 1; }
  .gallery-item--wide { grid-column: span 2; }
  .workflow-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow-arrow { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; }
  .cta-box { padding: 48px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .social-proof-inner { gap: 28px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .modules-grid { gap: 16px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .workflow-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
