/* ==========================================================================
   Friese Regulatory Partners — Global Stylesheet
   Design: Editorial, refined, trust-forward
   Fonts: Playfair Display (headlines) + DM Sans (body)
   Palette: Deep navy + warm sand + white
   ========================================================================== */

/* --- Variables --- */
:root {
  --navy: #0c1f3f;
  --navy-light: #1a3158;
  --navy-muted: #2d4a73;
  --sand: #c9a96e;
  --sand-light: #e8d5b0;
  --sand-bg: #faf6ef;
  --cream: #fdfbf7;
  --white: #ffffff;
  --text: #1a1a1a;
  --text-secondary: #5a5a5a;
  --text-muted: #8a8a8a;
  --border: #e5e0d8;
  --border-light: #f0ebe3;
  --success: #1d6e4a;
  --danger: #b33a3a;
  --radius: 6px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --shadow-sm: 0 1px 3px rgba(12,31,63,0.06);
  --shadow-md: 0 4px 16px rgba(12,31,63,0.08);
  --shadow-lg: 0 8px 32px rgba(12,31,63,0.1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 600; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; }
h4 { font-size: 0.95rem; font-weight: 600; color: var(--navy); font-family: 'DM Sans', sans-serif; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--navy);
  background: var(--sand-bg);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: var(--sand);
  transition: gap var(--transition);
}
.link-arrow:hover { gap: 10px; }
.link-arrow span { transition: transform var(--transition); }
.link-arrow:hover span { transform: translateX(3px); }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition);
}
.nav.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.nav-logo span { font-weight: 400; color: var(--text-secondary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--transition);
  font-weight: 400;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  transition: all var(--transition);
}

/* --- Hero --- */
.hero {
  position: relative;
  padding: 160px 0 100px;
  background: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,169,110,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(45,74,115,0.25) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  max-width: 780px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--sand-light);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 640px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-proof {
  display: flex;
  gap: 0;
  align-items: center;
  flex-wrap: wrap;
}
.hero-proof-item {
  text-align: center;
  padding: 0 28px;
}
.hero-proof-item:first-child { padding-left: 0; }
.hero-proof-item strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--sand-light);
  font-family: 'Playfair Display', serif;
}
.hero-proof-item span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 400;
}
.hero-proof-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

/* --- Trust Bar --- */
.trust-bar {
  padding: 28px 0;
  background: var(--sand-bg);
  border-bottom: 1px solid var(--border-light);
}
.trust-label {
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 500;
}
.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-logo-item {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  opacity: 0.7;
  letter-spacing: 0.02em;
}

/* --- Sections --- */
.section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sand);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-top: 16px;
  line-height: 1.75;
}

/* --- Problem Section --- */
.problem-section { background: var(--white); }

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

.problem-card {
  padding: 32px 28px;
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.problem-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.problem-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(179,58,58,0.08);
  color: var(--danger);
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.problem-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--navy);
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Services Section --- */
.services-section {
  background: var(--sand-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px 28px;
  position: relative;
  transition: all var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card.featured {
  border-color: var(--navy);
  border-width: 2px;
  box-shadow: var(--shadow-md);
}

.service-popular {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.service-tier {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sand);
  margin-bottom: 8px;
}

.service-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-list {
  list-style: none;
  margin-bottom: 24px;
}
.service-list li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 6px 0 6px 20px;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  background: var(--sand);
  border-radius: 50%;
}

.service-price {
  padding: 20px 0;
  margin-bottom: 16px;
  border-top: 1px solid var(--border-light);
}
.price-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.price-value {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  margin: 4px 0;
}
.price-unit {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.services-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 40px;
  font-style: italic;
}

/* --- Founder Section --- */
.founder-section { background: var(--white); }

.founder-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}

.founder-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.founder-content { padding-top: 8px; }
.founder-content h2 { margin-bottom: 20px; }
.founder-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.founder-content .link-arrow { margin-top: 8px; }

/* --- Lead Magnet --- */
.lead-magnet-section {
  background: var(--sand-bg);
}

.lead-magnet-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  color: var(--white);
}
.lead-magnet-card .section-tag { color: var(--sand-light); }
.lead-magnet-card h2 { color: var(--white); margin-bottom: 12px; }
.lead-magnet-card p {
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin-bottom: 28px;
}

.lead-form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.lead-form-row input {
  flex: 1;
  min-width: 180px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  transition: border-color var(--transition);
}
.lead-form-row input::placeholder { color: rgba(255,255,255,0.4); }
.lead-form-row input:focus {
  outline: none;
  border-color: var(--sand);
}
.lead-form-row .btn-primary {
  background: var(--sand);
  border-color: var(--sand);
  color: var(--navy);
  font-weight: 600;
}
.lead-form-row .btn-primary:hover {
  background: var(--sand-light);
  border-color: var(--sand-light);
}

.lead-form-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
}

/* --- CTA Section --- */
.cta-section {
  background: var(--cream);
  padding: 80px 0;
}

.cta-card {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}
.cta-card h2 { margin-bottom: 16px; }
.cta-card p {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.cta-assurances {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
}
.cta-assurances span {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.cta-assurances span::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--success);
  border-radius: 50%;
}

/* --- Footer --- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p {
  margin-top: 12px;
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-brand .nav-logo { color: var(--white); }
.footer-brand .nav-logo span { color: rgba(255,255,255,0.5); }

.footer-col h4 {
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 0.85rem;
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* --- Page Header (subpages) --- */
.page-header {
  padding: 140px 0 64px;
  background: var(--sand-bg);
  border-bottom: 1px solid var(--border-light);
}
.page-header .section-tag { margin-bottom: 8px; }
.page-header h1 { margin-bottom: 16px; }
.page-header-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.75;
}

/* --- Service Detail Pages --- */
.service-detail { padding: 64px 0; }

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}

.detail-content h2 { margin-bottom: 16px; }
.detail-content > p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.8;
}
.detail-content h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  margin-top: 32px;
}
.detail-content h3:first-of-type { margin-top: 0; }

.tag-popular {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 0.65rem;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  vertical-align: middle;
  margin-left: 8px;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.deliverable {
  padding: 20px;
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}
.deliverable h4 { margin-bottom: 6px; }
.deliverable p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0;
}

.detail-sidebar { position: sticky; top: 96px; }

.price-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  margin-bottom: 24px;
}
.price-card.featured {
  border-color: var(--navy);
  border-width: 2px;
}
.price-value-lg {
  display: block;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  margin: 4px 0;
}
.price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 12px 0 20px;
  line-height: 1.6;
}

.ideal-for {
  background: var(--sand-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.ideal-for h4 { margin-bottom: 12px; }
.ideal-for ul {
  list-style: none;
}
.ideal-for li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 5px 0 5px 18px;
  position: relative;
}
.ideal-for li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
  background: var(--sand);
  border-radius: 50%;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 0;
}

/* --- Process Section --- */
.process-section { background: var(--sand-bg); }

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

.process-step {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.process-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--sand);
  font-weight: 500;
  margin-bottom: 12px;
}

.process-step h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --- About Page --- */
.about-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: start;
}

.about-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.about-content h2 { margin-bottom: 20px; }
.about-lead {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}

/* Stats */
.stats-section {
  background: var(--navy);
  padding: 64px 0;
}

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

.stat-card {
  text-align: center;
  padding: 24px;
}
.stat-card strong {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  color: var(--sand-light);
  font-family: 'Playfair Display', serif;
  margin-bottom: 8px;
}
.stat-card span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* Philosophy */
.philosophy-section { background: var(--white); }

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

.philosophy-card {
  padding: 32px 28px;
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
}
.philosophy-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.philosophy-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Expertise */
.expertise-section { background: var(--sand-bg); }

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

.expertise-item {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.expertise-item h4 { margin-bottom: 8px; }
.expertise-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --- Contact Page --- */
.contact-section { padding-bottom: 64px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.contact-form-wrapper h2 { margin-bottom: 8px; }
.contact-form-wrapper > p {
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--navy);
}
.contact-form textarea { resize: vertical; min-height: 120px; }

.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }

.contact-card {
  padding: 28px;
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
}
.contact-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.65;
}

.contact-card-assurances {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}
.contact-card-assurances span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.contact-card-accent {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.contact-card-accent h3 { color: var(--sand-light); }
.contact-card-accent p { color: rgba(255,255,255,0.7); }

.lead-form-mini {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lead-form-mini input {
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
}
.lead-form-mini input::placeholder { color: rgba(255,255,255,0.4); }
.lead-form-mini input:focus {
  outline: none;
  border-color: var(--sand);
}
.lead-form-mini .btn-primary {
  background: var(--sand);
  border-color: var(--sand);
  color: var(--navy);
  font-weight: 600;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.contact-info-item svg { color: var(--sand); flex-shrink: 0; }
.contact-info-item a { color: var(--text-secondary); transition: color var(--transition); }
.contact-info-item a:hover { color: var(--navy); }

/* --- FAQ --- */
.faq-section { background: var(--sand-bg); }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.faq-item {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.faq-item h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.faq-item p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
}
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.2s; }
.d3 { animation-delay: 0.35s; }
.d4 { animation-delay: 0.5s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .services-grid,
  .philosophy-grid,
  .expertise-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav-links.active { display: flex; }
  .nav-toggle { display: flex; }

  .hero { padding: 130px 0 72px; }
  .hero h1 { font-size: 2rem; }
  .hero-proof { gap: 0; }
  .hero-proof-item { padding: 0 16px; }
  .hero-proof-item strong { font-size: 1.3rem; }
  .hero-proof-divider { height: 28px; }

  .section { padding: 64px 0; }
  .problem-grid,
  .services-grid,
  .philosophy-grid,
  .expertise-grid,
  .faq-grid,
  .process-grid,
  .stats-grid { grid-template-columns: 1fr; }

  .founder-grid,
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .founder-image img,
  .about-image img { max-width: 280px; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .detail-sidebar { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .lead-magnet-card { padding: 36px 24px; }
  .lead-form-row { flex-direction: column; }

  .hero-ctas { flex-direction: column; align-items: flex-start; }

  .deliverables-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-proof { flex-direction: column; gap: 16px; align-items: flex-start; }
  .hero-proof-divider { width: 32px; height: 1px; }
  .hero-proof-item { padding: 0; }
  .trust-logos { gap: 20px; }
  .cta-assurances { flex-direction: column; align-items: center; gap: 8px; }
}
