/* ==========================================================
   DELPHINE — Editorial design system
   Palette: warm cream, sage greens, deep earth browns
   ========================================================== */

:root {
  /* Greens — du sage clair au vert profond */
  --sage-50:  #EDEFE6;
  --sage-100: #DCE0D0;
  --sage-200: #BFC8B0;
  --sage-300: #9BAA88;
  --sage-400: #7E9168;
  --sage-500: #5F7350;
  --sage-600: #46563B;
  --sage-700: #2F3D27;

  /* Earth tones — caramels et bruns chauds */
  --earth-100: #E8DCCB;
  --earth-200: #D4BFA3;
  --earth-300: #B89878;
  --earth-400: #936F4D;
  --earth-500: #6E513A;
  --earth-600: #4F3A2A;
  --earth-700: #2E2218;

  /* Surface */
  --bg:        #F2EBDC;   /* crème chaude principale */
  --bg-warm:   #EDE4D1;   /* crème un peu plus saturée */
  --bg-soft:   #F7F2E6;   /* crème très claire */
  --bg-deep:   #1F1B14;   /* presque noir, fond éditorial */

  /* Texte */
  --ink:       #2C261C;   /* marron très sombre */
  --ink-soft:  #5C5246;   /* marron moyen */
  --ink-mute:  #8B8275;

  /* Lignes */
  --line:      rgba(46, 34, 24, 0.14);
  --line-soft: rgba(46, 34, 24, 0.08);

  /* Typo */
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1280px;
  --gutter: 40px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--bg);
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-weight: 400;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(46, 34, 24, 0.025) 1px, transparent 1px);
  background-size: 4px 4px;
  z-index: 0;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

main, header, footer, section { position: relative; z-index: 1; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ==========================================================
   TYPO SYSTEM
   ========================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage-600);
  margin-bottom: 28px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--sage-500);
  display: inline-block;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 28px;
  max-width: 880px;
}

.section-title em {
  font-style: italic;
  color: var(--sage-500);
  font-weight: 400;
}

.section-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 580px;
  margin-bottom: 72px;
  font-weight: 300;
}

/* ==========================================================
   NAV
   ========================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242, 235, 220, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line-soft);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.brand-dot {
  color: var(--sage-500);
  font-style: normal;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  transition: color 0.25s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--sage-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.12em;
  padding: 8px 0;
}

.lang-toggle .lang-active { color: var(--ink); }
.lang-toggle .lang-sep { opacity: 0.35; margin: 0 2px; }
.lang-toggle .lang-inactive { opacity: 0.45; transition: opacity 0.2s; }
.lang-toggle:hover .lang-inactive { opacity: 1; }

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn::after {
  content: "→";
  font-size: 15px;
  transition: transform 0.3s ease;
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--earth-600);
  transform: translateY(-1px);
}

.btn-primary:hover::after { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.btn-ghost:hover::after { transform: translateX(4px); }

.btn-sm { padding: 11px 22px; font-size: 13px; }
.btn-sm::after { font-size: 13px; }

.btn-lg { padding: 20px 40px; font-size: 15px; }
.btn-lg::after { font-size: 16px; }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  padding: 100px 0 140px;
}

.hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 100px;
  align-items: center;
}

.hero-content { max-width: 660px; }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 6.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 36px;
}

.hero-title em {
  font-style: italic;
  color: var(--sage-500);
  font-weight: 400;
  position: relative;
}

.hero-title em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6%;
  height: 6px;
  background: var(--sage-200);
  z-index: -1;
  opacity: 0.6;
}

.hero-sub {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 48px;
  max-width: 540px;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.hero-trust {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.trust-item strong {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}

.trust-item span {
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  max-width: 150px;
}

/* Hero photo */
.hero-visual {
  position: relative;
  padding: 24px 24px 24px 0;
}

.hero-visual::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 80px;
  left: 80px;
  right: 0;
  background: var(--sage-200);
  border-radius: 4px;
  z-index: 0;
}

.hero-photo-wrap {
  position: relative;
  z-index: 2;
  border-radius: 4px;
  overflow: hidden;
  background: var(--sage-100);
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 80px rgba(46, 34, 24, 0.18);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.02) saturate(0.98);
}

.hero-photo-tag {
  position: absolute;
  bottom: -32px;
  left: -32px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--bg-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  box-shadow: 0 12px 40px rgba(46, 34, 24, 0.12);
  border: 1px solid var(--line-soft);
}

.dot-live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage-500);
  position: relative;
}

.dot-live::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--sage-500);
  opacity: 0.4;
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.8); opacity: 0; }
}

/* ==========================================================
   PROBLÈME
   ========================================================== */
.problem {
  padding: 140px 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.problem-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.problem-item:last-child { border-bottom: none; }

.problem-num {
  font-family: var(--serif);
  font-size: 32px;
  font-style: italic;
  color: var(--sage-500);
  font-weight: 400;
  line-height: 1;
  padding-top: 4px;
}

.problem-item p {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 400;
  font-family: var(--serif);
  letter-spacing: -0.005em;
}

/* ==========================================================
   SERVICES
   ========================================================== */
.services {
  padding: 160px 0;
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}

.services-header .section-title { margin-bottom: 0; }
.services-header .section-sub { margin-bottom: 0; }

.services-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 80px 80px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.services-card-left {
  position: relative;
}

.services-card-left::before {
  content: "—";
  font-family: var(--serif);
  font-size: 24px;
  color: var(--sage-500);
  display: block;
  margin-bottom: 16px;
}

.services-card-left h3 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 380px;
}

.services-price {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--ink-soft);
}

.services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.services-list li {
  position: relative;
  padding: 18px 0 18px 36px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
  font-weight: 400;
}

.services-list li:last-child { border-bottom: none; }

.services-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  width: 16px;
  height: 1px;
  background: var(--sage-500);
}

.services-reassurance {
  margin-top: 28px;
  padding: 16px 20px;
  background: var(--sage-50);
  border-left: 2px solid var(--sage-500);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
  border-radius: 0 4px 4px 0;
  max-width: 380px;
}

.services-reassurance strong {
  color: var(--ink);
  font-weight: 500;
}

/* ==========================================================
   POUR QUI / PAS POUR QUI
   ========================================================== */
.forwhom {
  padding: 140px 0;
}

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

.forwhom-card {
  position: relative;
  padding: 48px 40px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}

.forwhom-yes {
  background: var(--bg-soft);
  border-color: rgba(95, 115, 80, 0.25);
}

.forwhom-no {
  background: var(--bg-warm);
  border-color: var(--line);
}

.forwhom-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 24px;
}

.forwhom-yes .forwhom-icon {
  background: var(--sage-500);
  color: var(--bg-soft);
}

.forwhom-no .forwhom-icon {
  background: var(--earth-200);
  color: var(--earth-700);
}

.forwhom-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 28px;
}

.forwhom-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.forwhom-card li {
  position: relative;
  padding: 14px 0 14px 24px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}

.forwhom-card li:last-child { border-bottom: none; }

.forwhom-card li strong {
  color: var(--sage-600);
  font-weight: 500;
}

.forwhom-yes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--sage-500);
  font-size: 14px;
  font-weight: 600;
}

.forwhom-no li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--earth-400);
  font-size: 14px;
  font-weight: 600;
}

/* ==========================================================
   MÉTHODE
   ========================================================== */
.method {
  padding: 160px 0;
  background: var(--bg-deep);
  color: var(--bg-soft);
  position: relative;
  overflow: hidden;
}

.method::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(126, 145, 104, 0.18), transparent 60%);
  pointer-events: none;
}

.method .container { position: relative; z-index: 1; }

.method .eyebrow { color: var(--sage-300); }
.method .eyebrow::before { background: var(--sage-300); }
.method .section-title { color: var(--bg-soft); }
.method .section-title em { color: var(--sage-300); }

.method-steps {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 24px;
}

.method-step {
  display: grid;
  grid-template-columns: 100px 1fr 2fr;
  gap: 60px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(247, 242, 230, 0.1);
  align-items: start;
  transition: padding 0.3s ease;
}

.method-step:last-child { border-bottom: none; }

.method-step:hover { padding-left: 16px; }

.step-num {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--sage-300);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
}

.method-step h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--bg-soft);
  line-height: 1.05;
}

.method-step p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(247, 242, 230, 0.72);
  font-weight: 300;
  max-width: 480px;
}

/* ==========================================================
   RÉSULTATS
   ========================================================== */
.results {
  padding: 180px 0;
}

.results-header {
  text-align: center;
  margin-bottom: 100px;
}

.results-header .eyebrow {
  display: flex;
  justify-content: center;
}
.results-header .eyebrow::before { display: none; }

.results-header .section-title {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-sub-center {
  text-align: center;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 600px;
  margin: -8px auto 0;
  font-weight: 300;
}

/* ---------- DASHBOARD MOCK ---------- */
.dash-mock {
  margin: 64px auto 56px;
  max-width: 1080px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(46, 34, 24, 0.10);
  position: relative;
}

.dash-mock::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 24px;
  background: var(--earth-100);
  border-radius: 12px;
  z-index: -1;
  filter: blur(20px);
  opacity: 0.6;
}

.dash-mock-toolbar {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  background: #FAFAF8;
}

.dash-mock-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  font-size: 14px;
  font-weight: 500;
  color: #6B7280;
  border-right: 1px solid var(--line-soft);
}

.dash-mock-tab.active {
  color: #1877F2;
  background: #FFFFFF;
  position: relative;
}

.dash-mock-tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: #1877F2;
}

.dash-mock-tab-icon {
  font-size: 14px;
  opacity: 0.7;
}

.dash-mock-table-wrap {
  overflow-x: auto;
}

.dash-mock-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  color: #1C1E21;
  font-family: var(--sans);
}

.dash-mock-table th {
  text-align: left;
  padding: 14px 18px;
  font-size: 12px;
  font-weight: 500;
  color: #6B7280;
  text-transform: none;
  letter-spacing: 0;
  background: #FAFAF8;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

.dash-mock-table th.num { text-align: right; }

.dash-mock-table td {
  padding: 18px;
  border-bottom: 1px solid #F0EFEC;
  vertical-align: middle;
  white-space: nowrap;
}

.dash-mock-table td.num {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.dash-mock-table tr:hover td {
  background: #FAFAF8;
}

.dash-toggle {
  display: inline-block;
  width: 30px;
  height: 16px;
  border-radius: 999px;
  background: #1877F2;
  position: relative;
  vertical-align: middle;
  margin-right: 12px;
}

.dash-toggle::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
  top: 2px;
  right: 2px;
}

.dash-campaign {
  color: #1877F2;
  font-weight: 500;
}

.dash-mock-total {
  background: #FAFAF8;
  font-weight: 500;
}

.dash-mock-total td {
  border-bottom: none;
  border-top: 2px solid var(--line);
  font-weight: 500;
  color: #1C1E21;
}

/* ---------- HIGHLIGHTS ---------- */
.results-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.result-highlight {
  padding: 56px 36px;
  text-align: center;
  border-right: 1px solid var(--line);
  position: relative;
}

.result-highlight:last-child { border-right: none; }
.result-highlight-feature { background: var(--bg-warm); }

.result-number {
  display: block;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 20px;
}

.result-number-suffix {
  font-style: italic;
  color: var(--sage-500);
  font-size: 0.5em;
  vertical-align: super;
  margin-left: 4px;
}

.result-highlight p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 220px;
  margin: 0 auto;
  font-weight: 400;
}

/* ==========================================================
   ABOUT
   ========================================================== */
.about {
  padding: 180px 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  align-items: center;
}

.about-photo-wrap {
  position: relative;
  padding: 24px 0 24px 24px;
}

.about-photo-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 60px;
  left: 0;
  right: 60px;
  background: var(--earth-200);
  border-radius: 4px;
  z-index: 0;
}

.about-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(46, 34, 24, 0.15);
  filter: contrast(1.02) saturate(0.98);
}

.about-content p {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 560px;
  font-weight: 400;
  letter-spacing: -0.005em;
}

.about-content p:last-of-type {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
}

.about-signature {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.about-signature-name {
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.about-signature-line {
  width: 60px;
  height: 1px;
  background: var(--sage-500);
}

.about-signature-role {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.about-content .btn { margin-top: 32px; }

/* ==========================================================
   FAQ
   ========================================================== */
.faq {
  padding: 180px 0;
  background: var(--bg);
}

.faq-header {
  margin-bottom: 64px;
  text-align: center;
}

.faq-header .eyebrow {
  display: inline-flex;
  justify-content: center;
}

.faq-header .section-title {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }

.faq-item summary:hover { color: var(--sage-600); }

.faq-toggle {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 300;
  color: var(--sage-600);
  transition: all 0.3s ease;
}

.faq-item[open] .faq-toggle {
  background: var(--sage-500);
  color: var(--bg-soft);
  border-color: var(--sage-500);
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 32px;
  max-width: 720px;
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
}

.faq-answer p strong {
  color: var(--ink);
  font-weight: 500;
}

/* ==========================================================
   CONTACT
   ========================================================== */
.contact {
  padding: 180px 0;
  text-align: center;
  background: var(--bg-deep);
  color: var(--bg-soft);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(126, 145, 104, 0.18), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(110, 81, 58, 0.22), transparent 50%);
  pointer-events: none;
}

.contact .container { position: relative; z-index: 1; }

.contact .eyebrow {
  color: var(--sage-300);
  justify-content: center;
}
.contact .eyebrow::before { background: var(--sage-300); }

.contact .section-title {
  color: var(--bg-soft);
  text-align: center;
  margin: 0 auto 28px;
}

.contact .section-title em { color: var(--sage-300); }

.contact .section-sub {
  text-align: center;
  margin: 0 auto 40px;
  color: rgba(247, 242, 230, 0.72);
  max-width: 580px;
}

.contact-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 460px;
  margin: 0 auto 48px;
  text-align: left;
}

.contact-bullets li {
  position: relative;
  padding-left: 32px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(247, 242, 230, 0.85);
  font-weight: 300;
}

.contact-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(155, 170, 136, 0.18);
  color: var(--sage-300);
  font-size: 11px;
  font-weight: 600;
}

.contact-bullets li strong {
  color: var(--bg-soft);
  font-weight: 500;
}

.contact .btn-primary {
  background: var(--bg-soft);
  color: var(--ink);
}

.contact .btn-primary:hover {
  background: var(--sage-300);
  color: var(--ink);
}

.contact-alt {
  margin-top: 36px;
  font-size: 14px;
  color: rgba(247, 242, 230, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  letter-spacing: 0.04em;
}

.contact-alt a {
  color: var(--bg-soft);
  font-weight: 400;
  border-bottom: 1px solid rgba(247, 242, 230, 0.4);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}

.contact-alt a:hover { border-color: var(--bg-soft); }

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  padding: 80px 0 48px;
  background: var(--bg);
  color: var(--ink-soft);
  border-top: 1px solid var(--line-soft);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-soft);
}

.footer-brand .brand {
  color: var(--ink);
  font-size: 32px;
  display: inline-block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--ink-mute);
  max-width: 280px;
  line-height: 1.55;
}

.footer-col-title {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 16px;
  font-weight: 500;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.footer-links a {
  color: var(--ink);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--sage-500); }

.footer-copy {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
  :root { --gutter: 32px; }

  .hero-grid { gap: 60px; }
  .services-card { padding: 60px 40px 60px 0; gap: 60px; }
  .method-step { grid-template-columns: 80px 1fr 1.5fr; gap: 40px; }
  .about-grid { gap: 60px; }
}

@media (max-width: 860px) {
  :root { --gutter: 24px; }

  .nav-links { display: none; }
  .nav-inner { padding: 18px 24px; }

  .hero { padding: 56px 0 100px; }
  .hero-grid { grid-template-columns: 1fr; gap: 64px; }
  .hero-visual { max-width: 460px; margin: 0 auto; padding: 0; }
  .hero-visual::before { display: none; }
  .hero-photo-tag { bottom: 16px; left: 16px; }
  .hero-trust { gap: 32px; }

  .problem { padding: 96px 0; }
  .problem-grid { grid-template-columns: 1fr; gap: 48px; }

  .services { padding: 96px 0; }
  .services-header { grid-template-columns: 1fr; gap: 32px; }
  .services-card {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 56px 0 32px;
  }

  .method { padding: 96px 0; }
  .method-step {
    grid-template-columns: 60px 1fr;
    gap: 24px;
    padding: 36px 0;
  }
  .method-step h3 { grid-column: 2; }
  .method-step p { grid-column: 2; }
  .method-step:hover { padding-left: 0; }

  .results { padding: 96px 0; }
  .results-highlights { grid-template-columns: 1fr; }
  .result-highlight {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 40px 24px;
  }
  .result-highlight:last-child { border-bottom: none; }

  .dash-mock { margin: 40px -8px; border-radius: 6px; }
  .dash-mock-tab { padding: 14px 18px; font-size: 13px; }
  .dash-mock-table th,
  .dash-mock-table td { padding: 12px 14px; font-size: 13px; }

  .forwhom { padding: 80px 0; }
  .forwhom-grid { grid-template-columns: 1fr; gap: 20px; }
  .forwhom-card { padding: 36px 28px; }

  .faq { padding: 96px 0; }
  .faq-item summary { padding: 22px 0; font-size: 1.15rem; }

  .about { padding: 96px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-photo-wrap { max-width: 420px; margin: 0 auto; padding: 0; }
  .about-photo-wrap::before { display: none; }
  .about-content p { font-size: 19px; }

  .contact { padding: 110px 0; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-copy { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.5rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .hero-trust { flex-direction: column; gap: 24px; }

  .services-card { padding: 40px 0; }
  .method-step { grid-template-columns: 50px 1fr; gap: 16px; }
}

/* ==========================================================
   REVEAL ANIMATIONS
   ========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
