@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
  --navy: #0A1628;
  --blue-deep: #0F2A52;
  --blue-mid: #1A4A8A;
  --blue-bright: #2563EB;
  --blue-light: #3B82F6;
  --blue-pale: #DBEAFE;
  --blue-ghost: #EFF6FF;
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-800: #1E293B;
  --accent: #06B6D4;
  --accent-light: #CFFAFE;
  --success: #10B981;
  --gold: #F59E0B;
  
  --font-display: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 16px rgba(10,22,40,0.10), 0 1px 4px rgba(10,22,40,0.06);
  --shadow-lg: 0 16px 48px rgba(10,22,40,0.14), 0 4px 12px rgba(10,22,40,0.08);
  --shadow-blue: 0 8px 32px rgba(37,99,235,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
ul { list-style: none; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 68px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.35rem; color: var(--navy);
  letter-spacing: -0.03em;
}
.nav-logo .logo-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: linear-gradient(135deg, var(--blue-bright), var(--accent));
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-blue);
}
.nav-logo .logo-icon svg { width: 20px; height: 20px; fill: white; }
.nav-links {
  display: flex; align-items: center; gap: 8px;
}
.nav-links a {
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 500;
  color: var(--gray-600); padding: 8px 16px; border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue-bright); background: var(--blue-ghost); }
.nav-cta {
  display: flex; align-items: center; gap: 12px;
}
.btn-nav-login {
  font-family: var(--font-display); font-size: 0.875rem; font-weight: 600;
  color: var(--gray-600); padding: 8px 16px;
  transition: color 0.2s;
}
.btn-nav-login:hover { color: var(--blue-bright); }
.btn-nav-primary {
  font-family: var(--font-display); font-size: 0.875rem; font-weight: 600;
  color: white; background: var(--blue-bright);
  padding: 9px 20px; border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(37,99,235,0.3);
  transition: all 0.2s;
}
.btn-nav-primary:hover { background: var(--blue-mid); transform: translateY(-1px); box-shadow: var(--shadow-blue); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--gray-800); border-radius: 2px; transition: all 0.3s; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600;
  border-radius: var(--radius-sm); cursor: pointer;
  transition: all 0.2s; border: none; text-decoration: none;
}
.btn-primary {
  background: var(--blue-bright); color: white;
  padding: 14px 28px; font-size: 0.95rem;
  box-shadow: 0 4px 16px rgba(37,99,235,0.35);
}
.btn-primary:hover { background: var(--blue-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,0.4); }
.btn-secondary {
  background: white; color: var(--blue-bright);
  border: 2px solid var(--blue-bright);
  padding: 12px 26px; font-size: 0.95rem;
}
.btn-secondary:hover { background: var(--blue-ghost); transform: translateY(-2px); }
.btn-white {
  background: white; color: var(--blue-bright);
  padding: 14px 28px; font-size: 0.95rem;
  box-shadow: var(--shadow);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-lg { padding: 17px 36px; font-size: 1.05rem; border-radius: var(--radius); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy) 0%, var(--blue-deep) 50%, #0D3468 100%);
  display: flex; align-items: center;
  padding: 120px 32px 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse 600px 400px at 80% 30%, rgba(37,99,235,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 400px 300px at 10% 80%, rgba(6,182,212,0.1) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: 
    linear-gradient(rgba(255,255,255,0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.8) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,99,235,0.2); border: 1px solid rgba(37,99,235,0.4);
  border-radius: 100px; padding: 6px 16px; margin-bottom: 24px;
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 600;
  color: var(--accent-light); letter-spacing: 0.05em; text-transform: uppercase;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }

.hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.4rem, 4vw, 3.5rem); line-height: 1.1;
  color: white; letter-spacing: -0.04em; margin-bottom: 24px;
}
.hero h1 span { 
  background: linear-gradient(90deg, var(--blue-light), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-desc {
  font-size: 1.1rem; color: rgba(255,255,255,0.7);
  line-height: 1.7; margin-bottom: 36px; max-width: 480px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex; gap: 32px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat .num {
  font-family: var(--font-display); font-size: 1.75rem; font-weight: 800;
  color: white; letter-spacing: -0.03em;
}
.hero-stat .label { font-size: 0.8rem; color: rgba(255,255,255,0.5); font-weight: 400; margin-top: 2px; }

/* Hero right — document mockup */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px; width: 100%; max-width: 380px;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.hero-card-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
  padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hero-card-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-bright), var(--accent));
  display: flex; align-items: center; justify-content: center;
}
.hero-card-icon svg { width: 20px; height: 20px; fill: white; }
.hero-card-title { font-family: var(--font-display); font-weight: 700; color: white; font-size: 0.95rem; }
.hero-card-sub { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

.doc-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04); margin-bottom: 8px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}
.doc-item:last-child { margin-bottom: 0; }
.doc-icon { width: 32px; height: 32px; border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.doc-icon.will { background: rgba(37,99,235,0.25); }
.doc-icon.trust { background: rgba(6,182,212,0.25); }
.doc-icon.insurance { background: rgba(16,185,129,0.25); }
.doc-icon.property { background: rgba(245,158,11,0.25); }
.doc-icon svg { width: 15px; height: 15px; }
.doc-name { font-family: var(--font-display); font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.85); }
.doc-status { margin-left: auto; font-size: 0.7rem; font-weight: 600; padding: 3px 8px; border-radius: 100px; }
.doc-status.secure { background: rgba(16,185,129,0.2); color: #6EE7B7; }
.doc-status.pending { background: rgba(245,158,11,0.2); color: #FCD34D; }

.shield-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--success); color: white;
  border-radius: var(--radius); padding: 12px 16px;
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
  box-shadow: 0 8px 24px rgba(16,185,129,0.4);
  display: flex; align-items: center; gap: 8px;
}

/* ── SECTIONS ── */
section { padding: 96px 32px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--blue-bright); margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.15;
  letter-spacing: -0.03em; color: var(--navy); margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem; color: var(--gray-600);
  max-width: 520px; line-height: 1.7; font-weight: 300;
}
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-desc { margin: 0 auto; }

/* ── HOW IT WORKS ── */
.how-bg { background: var(--gray-50); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; }
.step-card {
  background: white; border-radius: var(--radius-lg);
  padding: 36px 28px; position: relative;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
  transition: all 0.3s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-number {
  font-family: var(--font-display); font-weight: 800; font-size: 3rem;
  color: var(--blue-pale); letter-spacing: -0.04em;
  line-height: 1; margin-bottom: 20px;
}
.step-icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue-ghost), var(--blue-pale));
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.step-icon svg { width: 26px; height: 26px; fill: var(--blue-bright); }
.step-title { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--navy); margin-bottom: 12px; }
.step-desc { font-size: 0.9rem; color: var(--gray-600); line-height: 1.65; }

/* ── SERVICES CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: white; border-radius: var(--radius-lg); padding: 36px 28px;
  border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm);
  transition: all 0.3s; display: flex; flex-direction: column;
}
.service-card:hover { border-color: var(--blue-light); box-shadow: var(--shadow-blue); transform: translateY(-4px); }
.service-card.featured {
  background: linear-gradient(160deg, var(--blue-deep), var(--navy));
  border-color: transparent; color: white;
}
.service-icon {
  width: 56px; height: 56px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
}
.service-icon.blue { background: var(--blue-ghost); }
.service-icon.cyan { background: var(--accent-light); }
.service-icon.green { background: rgba(16,185,129,0.1); }
.service-card.featured .service-icon { background: rgba(255,255,255,0.12); }
.service-icon svg { width: 28px; height: 28px; }
.service-icon.blue svg { fill: var(--blue-bright); }
.service-icon.cyan svg { fill: var(--accent); }
.service-icon.green svg { fill: var(--success); }
.service-card.featured .service-icon svg { fill: white; }
.service-name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--navy); margin-bottom: 12px; }
.service-card.featured .service-name { color: white; }
.service-desc { font-size: 0.9rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 24px; flex: 1; }
.service-card.featured .service-desc { color: rgba(255,255,255,0.65); }
.service-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.service-feature {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--gray-600);
}
.service-card.featured .service-feature { color: rgba(255,255,255,0.75); }
.service-feature svg { width: 16px; height: 16px; fill: var(--success); flex-shrink: 0; }
.service-card.featured .service-feature svg { fill: var(--accent-light); }
.service-link {
  font-family: var(--font-display); font-size: 0.875rem; font-weight: 600;
  color: var(--blue-bright); display: flex; align-items: center; gap: 4px;
  margin-top: auto; transition: gap 0.2s;
}
.service-card:hover .service-link { gap: 8px; }
.service-card.featured .service-link { color: var(--accent-light); }

/* ── TRUST SECTION ── */
.trust-bg { background: linear-gradient(160deg, var(--navy) 0%, var(--blue-deep) 100%); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 56px; }
.trust-item {
  background: rgba(255,255,255,0.05);
  padding: 36px 28px; text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
}
.trust-item:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.trust-item:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
.trust-item:hover { background: rgba(255,255,255,0.08); }
.trust-icon { font-size: 2rem; margin-bottom: 16px; }
.trust-title { font-family: var(--font-display); font-weight: 700; color: white; margin-bottom: 8px; }
.trust-desc { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.price-card {
  background: white; border-radius: var(--radius-lg); padding: 40px 32px;
  border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm);
  position: relative; transition: all 0.3s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price-card.popular {
  border-color: var(--blue-bright); border-width: 2px;
  box-shadow: var(--shadow-blue);
}
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--blue-bright); color: white;
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
  padding: 5px 16px; border-radius: 100px; letter-spacing: 0.05em;
  text-transform: uppercase; white-space: nowrap;
}
.price-tier { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--gray-600); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.08em; }
.price-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.price-dollar { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--navy); }
.price-num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 800; color: var(--navy); letter-spacing: -0.04em; line-height: 1; }
.price-period { font-size: 0.9rem; color: var(--gray-400); }
.price-storage { font-size: 0.85rem; color: var(--blue-bright); font-weight: 500; margin-bottom: 28px; font-family: var(--font-display); }
.price-divider { height: 1px; background: var(--gray-100); margin-bottom: 24px; }
.price-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.price-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--gray-600); }
.price-feature svg { width: 17px; height: 17px; fill: var(--success); flex-shrink: 0; margin-top: 1px; }

/* ── TESTIMONIALS ── */
.testimonials-bg { background: var(--gray-50); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.testimonial-card {
  background: white; border-radius: var(--radius-lg); padding: 32px;
  border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm);
}
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: white;
}
.author-name { font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.author-role { font-size: 0.78rem; color: var(--gray-400); margin-top: 1px; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-mid));
  padding: 80px 32px; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-banner h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.5rem); color: white;
  letter-spacing: -0.03em; margin-bottom: 16px;
}
.cta-banner p { color: rgba(255,255,255,0.75); margin-bottom: 36px; font-size: 1.05rem; font-weight: 300; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: var(--navy); color: rgba(255,255,255,0.65);
  padding: 64px 32px 32px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-col h4 { font-family: var(--font-display); font-weight: 700; color: white; font-size: 0.875rem; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul li a:hover { color: white; }
.footer-divider { height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 24px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; }
.footer-bottom p { color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--blue-deep) 100%);
  padding: 140px 32px 80px; text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem); color: white;
  letter-spacing: -0.04em; margin-bottom: 16px;
}
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto; font-weight: 300; }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.contact-info h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--navy); margin-bottom: 16px; }
.contact-info p { color: var(--gray-600); line-height: 1.7; margin-bottom: 32px; }
.contact-method { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-method-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--blue-ghost); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-method-icon svg { width: 20px; height: 20px; fill: var(--blue-bright); }
.contact-method h4 { font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: 0.9rem; }
.contact-method p { color: var(--gray-600); font-size: 0.85rem; margin: 0; }

.contact-form { background: white; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); border: 1px solid var(--gray-100); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.9rem; color: var(--gray-800);
  transition: border-color 0.2s; outline: none; background: var(--gray-50);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue-bright); background: white; box-shadow: 0 0 0 3px rgba(37,99,235,0.08); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── ABOUT / WHY DOKUDOCS ── */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.why-card {
  background: white; border-radius: var(--radius-lg); padding: 32px;
  border: 1px solid var(--gray-100); display: flex; gap: 20px;
  box-shadow: var(--shadow-sm); transition: all 0.3s;
}
.why-card:hover { border-color: var(--blue-pale); box-shadow: var(--shadow); transform: translateY(-2px); }
.why-card-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: var(--blue-ghost); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.why-card-icon svg { width: 24px; height: 24px; fill: var(--blue-bright); }
.why-card h4 { font-family: var(--font-display); font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.why-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.65; }

/* ── ACCORDION / FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 760px; margin: 0 auto; }
.faq-item { background: white; border-radius: var(--radius); border: 1px solid var(--gray-100); overflow: hidden; }
.faq-question {
  width: 100%; padding: 20px 24px; text-align: left;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  color: var(--navy); cursor: pointer; background: none; border: none;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--gray-50); }
.faq-arrow { width: 20px; height: 20px; fill: var(--gray-400); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); fill: var(--blue-bright); }
.faq-answer { display: none; padding: 0 24px 20px; font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .services-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:first-child { border-radius: var(--radius) var(--radius) 0 0; }
  .trust-item:last-child { border-radius: 0 0 var(--radius) var(--radius); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid, .pricing-grid, .testimonials-grid, .steps-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  section { padding: 64px 20px; }
  .hero { padding: 100px 20px 60px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .mobile-menu { display: flex; }
}

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: white; flex-direction: column; padding: 24px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobile-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--gray-800); }
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mobile-nav-links a { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--navy); padding: 14px 0; border-bottom: 1px solid var(--gray-100); }
.mobile-actions { display: flex; flex-direction: column; gap: 12px; padding-top: 24px; }

/* Animations */
.fade-up { opacity: 0; transform: translateY(24px); transition: all 0.6s cubic-bezier(0.16,1,0.3,1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
