/* ===== MARGINCORE — PROFESSIONAL SaaS STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --navy:      #0a0f1e;
  --navy2:     #0d1526;
  --blue-deep: #1a2d5a;
  --blue:      #2563eb;
  --blue-lt:   #3b82f6;
  --indigo:    #4f46e5;
  --orange:    #f97316;
  --orange-lt: #fb923c;
  --green:     #10b981;
  --white:     #ffffff;
  --off-white: #f8faff;
  --text:      #0f172a;
  --muted:     #64748b;
  --border:    #e2e8f0;
  --card-bg:   #ffffff;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow:    0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --max-w:     1200px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; }

/* ===== SCROLL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ===== NAV ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 32px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,15,30,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled { background: rgba(10,15,30,0.97); box-shadow: 0 4px 24px rgba(0,0,0,0.3); }
.nav-logo { font-size: 1.5rem; font-weight: 800; color: var(--white); letter-spacing: -0.5px; }
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.75); transition: color var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-login { font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.75); padding: 8px 16px; transition: color var(--transition); }
.nav-login:hover { color: var(--white); }
.nav-cta { background: var(--orange); color: var(--white); font-size: 0.9rem; font-weight: 600; padding: 10px 22px; border-radius: 8px; transition: background var(--transition), transform var(--transition); }
.nav-cta:hover { background: var(--orange-lt); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 80px;
  position: relative; overflow: hidden;
}
.hero-bg-gradient {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 20%, rgba(37,99,235,0.25) 0%, transparent 65%),
              radial-gradient(ellipse 40% 40% at 80% 60%, rgba(249,115,22,0.12) 0%, transparent 55%),
              radial-gradient(ellipse 40% 40% at 20% 70%, rgba(79,70,229,0.12) 0%, transparent 55%);
}
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 0; opacity: 0.04;
  background-image: linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 1; max-width: 860px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,0.12); border: 1px solid rgba(249,115,22,0.3);
  color: var(--orange-lt); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.5px;
  padding: 6px 16px; border-radius: 999px; margin-bottom: 28px;
}
.hero-badge span { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 900;
  line-height: 1.1; letter-spacing: -1.5px; color: var(--white); margin-bottom: 24px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--orange) 0%, #fbbf24 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero h1 .blue-hl {
  background: linear-gradient(135deg, var(--blue-lt) 0%, #818cf8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.6); max-width: 600px; margin: 0 auto 40px; font-weight: 400; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats { display: flex; gap: 48px; justify-content: center; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 1.7rem; font-weight: 800; color: var(--white); letter-spacing: -0.5px; }
.hero-stat-num span { color: var(--orange); }
.hero-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.45); font-weight: 500; margin-top: 2px; }
.hero-stat-divider { width: 1px; background: rgba(255,255,255,0.12); align-self: stretch; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 10px; font-weight: 600; font-size: 0.95rem; transition: all var(--transition); cursor: pointer; border: none; }
.btn-primary { background: var(--orange); color: var(--white); box-shadow: 0 4px 20px rgba(249,115,22,0.35); }
.btn-primary:hover { background: var(--orange-lt); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(249,115,22,0.45); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.25); }
.btn-outline-white:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }
.btn-blue { background: var(--blue); color: var(--white); box-shadow: 0 4px 20px rgba(37,99,235,0.3); }
.btn-blue:hover { background: var(--blue-lt); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,99,235,0.4); }
.btn-ghost { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
.btn-ghost:hover { background: rgba(37,99,235,0.06); }
.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: 12px; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; border-radius: 8px; }
.btn svg { width: 18px; height: 18px; }

/* ===== LOGO CAROUSEL ===== */
.logo-strip { background: var(--navy2); padding: 28px 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.logo-strip-label { text-align: center; font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.3); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.carousel-track-wrapper { overflow: hidden; position: relative; }
.carousel-track-wrapper::before, .carousel-track-wrapper::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
  pointer-events: none;
}
.carousel-track-wrapper::before { left: 0; background: linear-gradient(to right, var(--navy2), transparent); }
.carousel-track-wrapper::after { right: 0; background: linear-gradient(to left, var(--navy2), transparent); }
.carousel-track { display: flex; gap: 48px; align-items: center; animation: carousel 28s linear infinite; width: max-content; }
.carousel-track:hover { animation-play-state: paused; }
@keyframes carousel { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logo-item { display: flex; align-items: center; gap: 10px; white-space: nowrap; color: rgba(255,255,255,0.4); font-size: 1rem; font-weight: 700; letter-spacing: 0.5px; transition: color 0.3s; }
.logo-item:hover { color: rgba(255,255,255,0.8); }
.logo-item .logo-icon { font-size: 1.4rem; }

/* ===== SECTION BASE ===== */
section { padding: 96px 24px; }
.container { max-width: var(--max-w); margin: 0 auto; }
.section-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); background: rgba(37,99,235,0.08); border: 1px solid rgba(37,99,235,0.15); padding: 4px 14px; border-radius: 999px; margin-bottom: 16px; }
.section-tag.orange { color: var(--orange); background: rgba(249,115,22,0.08); border-color: rgba(249,115,22,0.2); }
.section-tag.green { color: var(--green); background: rgba(16,185,129,0.08); border-color: rgba(16,185,129,0.2); }
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: var(--text); letter-spacing: -0.5px; line-height: 1.2; margin-bottom: 16px; }
.section-title .hl { color: var(--blue); }
.section-title .hl-orange { color: var(--orange); }
.section-sub { font-size: 1.05rem; color: var(--muted); max-width: 580px; line-height: 1.7; }
.section-head { margin-bottom: 64px; }
.section-head.centered { text-align: center; }
.section-head.centered .section-sub { margin: 0 auto; }

/* ===== FEATURE CARDS ===== */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 32px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative; overflow: hidden;
}
.feat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--indigo));
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.feat-card:hover::before { transform: scaleX(1); }
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(37,99,235,0.2); }
.feat-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; }
.feat-icon.blue { background: rgba(37,99,235,0.1); }
.feat-icon.orange { background: rgba(249,115,22,0.1); }
.feat-icon.green { background: rgba(16,185,129,0.1); }
.feat-icon.purple { background: rgba(79,70,229,0.1); }
.feat-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.feat-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.65; }
.feat-card .feat-link { display: inline-flex; align-items: center; gap: 4px; font-size: 0.85rem; font-weight: 600; color: var(--blue); margin-top: 16px; transition: gap var(--transition); }
.feat-card:hover .feat-link { gap: 8px; }

/* ===== HOW IT WORKS ===== */
.hiw-bg { background: var(--navy); }
.hiw-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.hiw-steps::before {
  content: ''; position: absolute; top: 36px; left: calc(16.66% + 16px); right: calc(16.66% + 16px);
  height: 2px; background: linear-gradient(90deg, var(--blue), var(--indigo));
}
.hiw-step { text-align: center; padding: 0 32px; }
.hiw-num {
  width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 900; color: var(--white); margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  box-shadow: 0 0 0 8px rgba(37,99,235,0.15); position: relative; z-index: 1;
}
.hiw-step h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.hiw-step p { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ===== STATS BAND ===== */
.stats-band { background: linear-gradient(135deg, var(--blue-deep), var(--navy)); padding: 72px 24px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; max-width: var(--max-w); margin: 0 auto; }
.stat-item { text-align: center; }
.stat-num { font-size: 2.6rem; font-weight: 900; color: var(--white); letter-spacing: -1px; line-height: 1; }
.stat-num .unit { font-size: 1.4rem; color: var(--orange); }
.stat-desc { font-size: 0.88rem; color: rgba(255,255,255,0.45); margin-top: 8px; font-weight: 500; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.1); }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.price-card {
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 40px 36px; position: relative; transition: all var(--transition);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card.featured {
  background: linear-gradient(160deg, var(--navy) 0%, var(--blue-deep) 100%);
  border-color: var(--blue); box-shadow: 0 0 0 4px rgba(37,99,235,0.15), var(--shadow-lg);
  transform: scale(1.04);
}
.price-card.featured:hover { transform: scale(1.04) translateY(-4px); }
.price-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--orange); color: var(--white); font-size: 0.76rem; font-weight: 700; padding: 4px 18px; border-radius: 999px; white-space: nowrap; letter-spacing: 0.5px; }
.price-plan { font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.price-card.featured .price-plan { color: rgba(255,255,255,0.5); }
.price-amount { font-size: 3rem; font-weight: 900; color: var(--text); letter-spacing: -1px; line-height: 1; }
.price-card.featured .price-amount { color: var(--white); }
.price-amount sup { font-size: 1.3rem; vertical-align: top; margin-top: 12px; font-weight: 600; }
.price-period { font-size: 0.88rem; color: var(--muted); margin-top: 6px; margin-bottom: 28px; }
.price-card.featured .price-period { color: rgba(255,255,255,0.45); }
.price-divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }
.price-card.featured .price-divider { border-color: rgba(255,255,255,0.1); }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.price-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--muted); }
.price-card.featured .price-features li { color: rgba(255,255,255,0.7); }
.price-features li .check { color: var(--green); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.price-features li .cross { color: var(--muted); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* ===== TESTIMONIALS ===== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; position: relative; transition: all var(--transition);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testi-stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 16px; }
.testi-text { font-size: 0.95rem; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--indigo)); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--white); font-weight: 700; flex-shrink: 0; }
.testi-name { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.testi-role { font-size: 0.82rem; color: var(--muted); }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; cursor: pointer; font-weight: 600; font-size: 0.97rem; color: var(--text); user-select: none; transition: background var(--transition); }
.faq-q:hover { background: var(--off-white); }
.faq-q .icon { font-size: 1.2rem; color: var(--blue); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; font-size: 0.93rem; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-deep) 100%);
  padding: 96px 24px; text-align: center; position: relative; overflow: hidden;
}
.cta-band-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: var(--white); letter-spacing: -0.5px; margin-bottom: 16px; position: relative; }
.cta-band p { font-size: 1.05rem; color: rgba(255,255,255,0.55); max-width: 520px; margin: 0 auto 40px; position: relative; }
.cta-band .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ===== FOOTER ===== */
footer { background: var(--navy); color: rgba(255,255,255,0.55); padding: 72px 24px 32px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand-logo { font-size: 1.5rem; font-weight: 800; color: var(--white); letter-spacing: -0.5px; margin-bottom: 14px; }
.footer-brand-logo span { color: var(--orange); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-col h5 { font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 18px; }
.footer-col a { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.55); margin-bottom: 12px; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 0.84rem; }
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--navy); padding: 140px 24px 80px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(37,99,235,0.2) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; color: var(--white); letter-spacing: -1px; margin-bottom: 16px; position: relative; z-index: 1; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.5); max-width: 520px; margin: 0 auto; position: relative; z-index: 1; }

/* ===== INNER PAGE UTILITY ===== */
.bg-off { background: var(--off-white); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; color: var(--muted); }
.check-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.visual-box {
  background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 40px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 280px; text-align: center;
}
.visual-box .vis-icon { font-size: 4rem; margin-bottom: 16px; }
.visual-box p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* FORM */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 0.93rem; font-family: inherit; color: var(--text); background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* LEGAL */
.legal-wrap { max-width: 760px; margin: 0 auto; }
.legal-wrap h2 { font-size: 1.2rem; font-weight: 700; color: var(--text); margin: 40px 0 10px; }
.legal-wrap h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin: 24px 0 8px; }
.legal-wrap p, .legal-wrap li { font-size: 0.95rem; color: var(--muted); line-height: 1.75; margin-bottom: 12px; }
.legal-wrap ul { padding-left: 22px; margin-bottom: 12px; }
.legal-wrap a { color: var(--blue); }
.legal-date { display: inline-block; font-size: 0.85rem; background: var(--off-white); border: 1px solid var(--border); color: var(--muted); padding: 6px 14px; border-radius: 6px; margin-bottom: 40px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .price-card.featured { transform: scale(1); }
  .price-card.featured:hover { transform: translateY(-4px); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .nav-links, .nav-login { display: none; }
  .nav-links { flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: rgba(10,15,30,0.98); padding: 24px 24px 32px; gap: 20px; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .two-col, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse { direction: ltr; }
  .hiw-steps { grid-template-columns: 1fr; }
  .hiw-steps::before { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .feat-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 64px 20px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}
