/* GulshanSync Marketing Site — Modern SaaS Design */
/* Inspired by Linear, Stripe, Vercel, Notion */

:root {
  /* Dark theme (default) */
  --bg: #08090D;
  --bg-soft: #0E1117;
  --bg-elevated: #161B27;
  --bg-card: rgba(255,255,255,0.025);
  --bg-card-hover: rgba(255,255,255,0.045);
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);
  --text: #F5F7FA;
  --text-soft: #C5CCD6;
  --text-muted: #8B95A5;
  --text-dim: #5F6B7E;
  --primary: #5B7CFA;
  --primary-bright: #7B97FF;
  --primary-dim: rgba(91,124,250,0.16);
  --accent: #18D6C4;
  --accent-bright: #4EE9D9;
  --accent-dim: rgba(24,214,196,0.14);
  --gradient-1: linear-gradient(135deg, #5B7CFA 0%, #18D6C4 100%);
  --gradient-2: linear-gradient(135deg, #7B4FFA 0%, #5B7CFA 50%, #18D6C4 100%);
  --gradient-hero: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(91,124,250,0.25), transparent 70%),
                   radial-gradient(ellipse 60% 50% at 80% 20%, rgba(24,214,196,0.15), transparent 60%),
                   radial-gradient(ellipse 60% 50% at 20% 80%, rgba(123,79,250,0.12), transparent 60%);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.3);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 40px rgba(91,124,250,0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --max-width: 1200px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --header-h: 64px;
}

[data-theme="light"] {
  --bg: #FFFFFF;
  --bg-soft: #F8FAFC;
  --bg-elevated: #FFFFFF;
  --bg-card: #F8FAFC;
  --bg-card-hover: #F0F4FA;
  --border: #E2E8F0;
  --border-strong: #CBD5E1;
  --text: #0F172A;
  --text-soft: #1E293B;
  --text-muted: #64748B;
  --text-dim: #94A3B8;
  --primary: #3B5BDB;
  --primary-bright: #5B7CFA;
  --primary-dim: rgba(59,91,219,0.08);
  --accent: #0F9D8E;
  --accent-bright: #18D6C4;
  --accent-dim: rgba(15,157,142,0.08);
  --gradient-hero: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(91,124,250,0.12), transparent 70%),
                   radial-gradient(ellipse 60% 50% at 80% 20%, rgba(24,214,196,0.08), transparent 60%),
                   radial-gradient(ellipse 60% 50% at 20% 80%, rgba(123,79,250,0.06), transparent 60%);
  --shadow-sm: 0 1px 2px rgba(15,23,42,0.06);
  --shadow-md: 0 4px 16px rgba(15,23,42,0.08);
  --shadow-lg: 0 20px 50px rgba(15,23,42,0.10);
  --shadow-glow: 0 0 40px rgba(91,124,250,0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*::selection { background: var(--primary-dim); }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.25s ease, color 0.25s ease;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--text);
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; letter-spacing: -0.04em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1rem; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.75rem); margin-bottom: 0.75rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
p { color: var(--text-soft); margin-bottom: 1rem; }
a { color: var(--primary-bright); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--accent-bright); }
img { max-width: 100%; height: auto; }
ul, ol { color: var(--text-soft); padding-left: 1.25rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; width: 100%; }

.skip-link { position: absolute; top: -40px; left: 0; background: var(--primary); color: #fff; padding: 8px 16px; z-index: 9999; }
.skip-link:focus { top: 0; }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(8,9,13,0.7);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s, border-color 0.25s;
}
[data-theme="light"] .site-header { background: rgba(255,255,255,0.75); }
.nav-container {
  display: flex; align-items: center; gap: 24px;
  height: var(--header-h);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.1rem; color: var(--text);
  text-decoration: none !important;
}
.brand:hover { color: var(--text); }
.brand-mark { display: grid; place-items: center; }
.brand-name { letter-spacing: -0.02em; }

.main-nav {
  display: flex; align-items: center; gap: 4px;
  flex: 1;
  margin-left: 8px;
}
.nav-link {
  padding: 7px 12px; border-radius: 8px;
  color: var(--text-muted); font-size: 0.92rem; font-weight: 500;
  text-decoration: none !important;
  transition: all 0.15s;
}
.nav-link:hover { color: var(--text); background: var(--bg-card); }
.nav-link.active { color: var(--text); background: var(--bg-card); }

.nav-actions {
  display: flex; align-items: center; gap: 10px;
}
.theme-toggle {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid var(--border); background: var(--bg-card);
  color: var(--text-muted); cursor: pointer;
  display: grid; place-items: center;
  transition: all 0.15s;
}
.theme-toggle:hover { color: var(--text); border-color: var(--border-strong); background: var(--bg-card-hover); }
.theme-icon-light { display: none; }
[data-theme="light"] .theme-icon-dark { display: none; }
[data-theme="light"] .theme-icon-light { display: inline-block; }

.nav-toggle {
  display: none;
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid var(--border); background: var(--bg-card);
  color: var(--text); cursor: pointer; font-size: 1.1rem;
  align-items: center; justify-content: center;
}
.nav-close {
  display: none;
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 8px;
  border: none; background: var(--bg-card);
  color: var(--text); cursor: pointer; font-size: 1.1rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 10px;
  font-weight: 600; font-size: 0.95rem; font-family: inherit;
  border: 1px solid transparent; cursor: pointer;
  text-decoration: none !important;
  transition: all 0.18s;
  white-space: nowrap;
}
.btn-sm { padding: 9px 16px; font-size: 0.88rem; }
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn-primary {
  background: var(--gradient-1); color: #fff;
  box-shadow: 0 4px 14px rgba(91,124,250,0.4);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(91,124,250,0.5);
}
.btn-secondary {
  background: var(--bg-card); color: var(--text);
  border-color: var(--border-strong);
}
.btn-secondary:hover {
  color: var(--text); background: var(--bg-card-hover);
  border-color: var(--primary);
}
.btn-ghost {
  background: transparent; color: var(--text-soft);
}
.btn-ghost:hover { color: var(--text); background: var(--bg-card); }

/* ===== HERO ===== */
.hero {
  position: relative; overflow: hidden;
  padding: 120px 0 80px;
  background: var(--bg);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gradient-hero);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 880px; margin: 0 auto; text-align: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: var(--bg-card); border: 1px solid var(--border-strong);
  font-size: 0.82rem; font-weight: 600; color: var(--text-soft);
  margin-bottom: 28px;
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.hero h1 { margin-bottom: 24px; }
.hero h1 .gradient-text {
  background: var(--gradient-2);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--text-soft); max-width: 680px; margin: 0 auto 36px;
  line-height: 1.6;
}
.hero-cta {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 64px;
}

/* Hero product mockup */
.hero-mockup {
  position: relative; max-width: 1080px; margin: 0 auto;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(91,124,250,0.4), rgba(24,214,196,0.2));
  padding: 2px;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(91,124,250,0.2);
}
.hero-mockup-inner {
  border-radius: calc(var(--radius-xl) - 2px);
  background: var(--bg-elevated);
  overflow: hidden;
  position: relative;
}
.mockup-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}
.mockup-bar .dot { width: 12px; height: 12px; border-radius: 50%; }
.mockup-bar .dot.red { background: #FF6058; }
.mockup-bar .dot.yellow { background: #FFBE2E; }
.mockup-bar .dot.green { background: #28C840; }
.mockup-bar .url {
  margin-left: 12px; padding: 4px 12px; border-radius: 6px;
  background: var(--bg-elevated); color: var(--text-muted);
  font-size: 0.78rem; font-family: var(--font-mono);
}
.mockup-body { padding: 24px; display: grid; grid-template-columns: 220px 1fr; gap: 24px; min-height: 360px; }
.mockup-sidebar { display: flex; flex-direction: column; gap: 6px; }
.mockup-sidebar-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px; border-radius: 8px;
  color: var(--text-muted); font-size: 0.84rem; font-weight: 500;
}
.mockup-sidebar-item.active { background: var(--primary-dim); color: var(--primary-bright); }
.mockup-sidebar-item i { font-size: 0.95rem; }
.mockup-content { display: grid; grid-template-rows: auto 1fr; gap: 16px; }
.mockup-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mockup-stat {
  padding: 14px; border-radius: 10px;
  background: var(--bg-card); border: 1px solid var(--border);
}
.mockup-stat-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.mockup-stat-value { font-size: 1.5rem; font-weight: 800; color: var(--text); margin-top: 4px; }
.mockup-stat-delta { font-size: 0.78rem; color: var(--accent); margin-top: 2px; }
.mockup-chart {
  padding: 16px; border-radius: 10px;
  background: var(--bg-card); border: 1px solid var(--border);
  position: relative; min-height: 180px;
}
.mockup-chart-title { font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 12px; }
.mockup-chart-bars {
  display: flex; align-items: flex-end; gap: 6px; height: 100px;
}
.mockup-chart-bar {
  flex: 1; background: var(--gradient-1); border-radius: 4px 4px 0 0;
  opacity: 0.8;
  animation: barGrow 1.4s ease-out backwards;
}
@keyframes barGrow { from { height: 0; opacity: 0; } }

/* ===== SECTIONS ===== */
section { padding: 96px 0; position: relative; }
.section-soft { background: var(--bg-soft); }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--primary-bright);
  margin-bottom: 14px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; color: var(--text-muted); }

/* ===== TRUST BADGES ===== */
.trust-section { padding: 64px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px;
}
.trust-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px;
}
.trust-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--primary-dim); color: var(--primary-bright);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.trust-item h4 { font-size: 0.95rem; margin-bottom: 4px; color: var(--text); }
.trust-item p { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ===== PRODUCT CARDS ===== */
.product-card {
  position: relative; padding: 36px 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-card); border: 1px solid var(--border);
  transition: all 0.25s; overflow: hidden;
  height: 100%;
}
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-1); opacity: 0; transition: opacity 0.25s;
}
.product-card:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-card:hover::before { opacity: 1; }
.product-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--primary-dim); color: var(--primary-bright);
  font-size: 1.6rem; margin-bottom: 24px;
}
.product-card.surewin .product-icon { background: var(--accent-dim); color: var(--accent-bright); }
.product-card.connect .product-icon { background: rgba(123,79,250,0.14); color: #B89AFF; }
.product-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.product-tag {
  display: inline-block; padding: 3px 10px; border-radius: 999px;
  background: var(--accent-dim); color: var(--accent-bright);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 14px;
}
.product-card ul { list-style: none; padding: 0; margin: 18px 0 24px; }
.product-card ul li {
  position: relative; padding-left: 26px; margin-bottom: 8px;
  color: var(--text-soft); font-size: 0.92rem;
}
.product-card ul li::before {
  content: '\F26E'; font-family: 'bootstrap-icons';
  position: absolute; left: 0; top: 1px;
  color: var(--accent); font-size: 0.95rem;
}

/* ===== FEATURE GRID (Bento) ===== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.bento-card {
  padding: 28px; border-radius: var(--radius-md);
  background: var(--bg-card); border: 1px solid var(--border);
  transition: all 0.2s; position: relative;
}
.bento-card:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}
.bento-card.span-2 { grid-column: span 2; }
.bento-card.span-3 { grid-column: span 2; }
.bento-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--primary-dim); color: var(--primary-bright);
  font-size: 1.1rem; margin-bottom: 16px;
}
.bento-card h4 { font-size: 1.05rem; margin-bottom: 6px; color: var(--text); }
.bento-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; line-height: 1.55; }

/* ===== STEP TIMELINE (How It Works) ===== */
.ecosystem-flow {
  display: grid; gap: 16px;
  margin: 56px 0;
}
.flow-step {
  display: flex; align-items: center; gap: 20px;
  padding: 24px 28px; border-radius: var(--radius-md);
  background: var(--bg-card); border: 1px solid var(--border);
  position: relative;
  transition: all 0.2s;
}
.flow-step:hover { border-color: var(--primary); background: var(--bg-card-hover); }
.flow-number {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--gradient-1); color: #fff;
  display: grid; place-items: center;
  font-weight: 800; font-size: 1.1rem; font-family: var(--font-mono);
  flex-shrink: 0;
}
.flow-content { flex: 1; }
.flow-content h4 { font-size: 1.1rem; margin-bottom: 4px; color: var(--text); }
.flow-content p { font-size: 0.92rem; color: var(--text-muted); margin: 0; }
.flow-arrow {
  color: var(--text-dim); font-size: 1.4rem;
  text-align: center;
  display: none;
}

/* ===== STATS ===== */
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
.stat-block { text-align: center; padding: 24px; }
.stat-value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  background: var(--gradient-2);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
  letter-spacing: -0.04em;
}
.stat-label { font-size: 0.88rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }

/* ===== USE CASE CARDS ===== */
.usecase-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px;
}
.usecase-card {
  padding: 24px; border-radius: var(--radius-md);
  background: var(--bg-card); border: 1px solid var(--border);
  transition: all 0.2s;
}
.usecase-card:hover { border-color: var(--primary); background: var(--bg-card-hover); transform: translateY(-2px); }
.usecase-card .icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: var(--primary-dim); color: var(--primary-bright);
  display: grid; place-items: center; font-size: 1.2rem;
  margin-bottom: 16px;
}
.usecase-card h4 { font-size: 1.05rem; margin-bottom: 6px; }
.usecase-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; line-height: 1.55; }

/* ===== SECURITY GRID ===== */
.security-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px;
}
.security-card {
  padding: 28px; border-radius: var(--radius-md);
  background: var(--bg-card); border: 1px solid var(--border);
  text-align: left;
}
.security-card .icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: var(--accent-dim); color: var(--accent-bright);
  display: grid; place-items: center; font-size: 1.2rem;
  margin-bottom: 16px;
}
.security-card h4 { font-size: 1.05rem; margin-bottom: 6px; }
.security-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; line-height: 1.55; }

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative; overflow: hidden;
  padding: 96px 0;
  background: var(--bg-elevated);
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gradient-hero);
  pointer-events: none;
}
.cta-content {
  position: relative; z-index: 1;
  text-align: center; max-width: 720px; margin: 0 auto;
}
.cta-content h2 { margin-bottom: 18px; }
.cta-content p { font-size: 1.1rem; color: var(--text-soft); margin-bottom: 32px; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 100px 0 60px; text-align: center;
  background: var(--bg);
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gradient-hero);
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { margin-bottom: 18px; }
.page-header .lead { font-size: 1.15rem; color: var(--text-soft); max-width: 680px; margin: 0 auto; }

/* ===== ARTICLES (long-form content) ===== */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { margin-top: 2.5em; margin-bottom: 0.8em; padding-bottom: 0.4em; border-bottom: 1px solid var(--border); }
.prose h3 { margin-top: 2em; margin-bottom: 0.6em; }
.prose p { font-size: 1.05rem; line-height: 1.75; margin-bottom: 1.2rem; }
.prose ul, .prose ol { font-size: 1.02rem; line-height: 1.75; margin-bottom: 1.2rem; }
.prose li { margin-bottom: 0.5rem; }

/* ===== TWO COLUMN ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.two-col-image {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--bg-elevated); border: 1px solid var(--border);
  padding: 20px;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  max-width: 580px; margin: 0 auto;
  padding: 36px; border-radius: var(--radius-lg);
  background: var(--bg-card); border: 1px solid var(--border);
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 11px 14px;
  border-radius: 8px; border: 1px solid var(--border-strong);
  background: var(--bg); color: var(--text);
  font-family: inherit; font-size: 0.95rem;
  transition: all 0.15s;
}
.form-control:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-dim);
}
textarea.form-control { resize: vertical; min-height: 120px; }
.form-text { font-size: 0.82rem; color: var(--text-muted); margin-top: 6px; }

/* ===== FAQ ===== */
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-md);
  margin-bottom: 12px; overflow: hidden; background: var(--bg-card);
}
.faq-item summary {
  padding: 18px 22px; cursor: pointer;
  font-weight: 600; color: var(--text);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '\F282'; font-family: 'bootstrap-icons';
  transition: transform 0.2s; color: var(--primary);
  flex-shrink: 0;
}
.faq-item details[open] summary::after { transform: rotate(180deg); }
.faq-item .faq-answer {
  padding: 0 22px 18px; color: var(--text-soft); font-size: 0.95rem;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .brand { margin-bottom: 14px; }
.footer-tagline { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 18px; max-width: 280px; }
.footer-apps { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-app-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-soft) !important;
  font-size: 0.82rem; font-weight: 500;
  text-decoration: none !important;
  transition: all 0.15s;
}
.footer-app-link:hover { color: var(--text) !important; border-color: var(--primary); }
.footer-col h4 {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 14px;
}
.footer-col a {
  display: block; padding: 5px 0;
  color: var(--text-soft) !important;
  font-size: 0.92rem;
  text-decoration: none !important;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--text) !important; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  padding-top: 24px; border-top: 1px solid var(--border);
  font-size: 0.85rem; color: var(--text-muted);
}
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted) !important; text-decoration: none !important; }
.footer-links a:hover { color: var(--text) !important; }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.in-view { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card.span-2 { grid-column: span 2; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed; top: 0; right: -100%;
    width: 80%; max-width: 320px; height: 100vh;
    background: var(--bg-elevated);
    flex-direction: column; align-items: flex-start;
    padding: 80px 24px 24px;
    gap: 4px; z-index: 2000;
    transition: right 0.3s ease;
    border-left: 1px solid var(--border);
    overflow-y: auto;
  }
  .main-nav.open { right: 0; }
  .nav-link { width: 100%; padding: 12px 16px; font-size: 1rem; }
  .nav-toggle { display: inline-flex; }
  .nav-close { display: grid; }
  .nav-actions .btn-sm { display: none; }

  section { padding: 64px 0; }
  .hero { padding: 80px 0 60px; }
  .mockup-body { grid-template-columns: 1fr; }
  .mockup-sidebar { display: none; }
  .mockup-stat-row { grid-template-columns: 1fr 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.span-2 { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }
  .cta-buttons { flex-direction: column; width: 100%; }
  .cta-buttons .btn { width: 100%; }
  .mockup-stat-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-gradient {
  background: var(--gradient-2);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.divider { height: 1px; background: var(--border); margin: 48px 0; border: none; }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 999px;
  background: var(--accent-dim); color: var(--accent-bright);
  font-size: 0.78rem; font-weight: 600;
  border: 1px solid rgba(24,214,196,0.2);
}
.pill.primary { background: var(--primary-dim); color: var(--primary-bright); border-color: rgba(91,124,250,0.2); }

/* ===== PRICING (Coming Soon) ===== */
.pricing-tease {
  max-width: 640px; margin: 0 auto;
  padding: 64px 32px; text-align: center;
  border-radius: var(--radius-xl);
  background: var(--bg-card); border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.pricing-tease::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gradient-hero);
  pointer-events: none;
}
.pricing-tease > * { position: relative; z-index: 1; }
.coming-soon-badge {
  display: inline-block; padding: 6px 16px; border-radius: 999px;
  background: var(--accent-dim); color: var(--accent-bright);
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 20px;
  border: 1px solid rgba(24,214,196,0.3);
}
