:root {
  /* Couleurs de base */
  --color-blue-deep: #2a5082;
  --color-blue-light: #b9c9dd;
  --color-blue-xlight: #eef3f9;
  --color-beige: #c9b399;
  --color-beige-light: #e8e2da;
  --color-off-white: #fbf9f5;
  --color-full-white: #ffffff;
  --color-grey-light: #c9c9c9;
  --color-charcoal: #2a2928;
  --color-orange: #fd965b;
  --color-orange-btn: #C96A2E;

  /* Fonds de sections */
  --bg-hero: #e8e2da;
  --bg-section-1: #fbf9f5;
  --bg-section-2: #eef3f9;
  --bg-section-3: #e8e2da;
  --bg-section-4: #fbf9f5;
  --bg-section-tarifs: #2a5082;
  --bg-section-about: #e8e2da;
  --bg-section-faq: #fbf9f5;
  --bg-cta-final: #eef3f9;
  --bg-footer: #3d3c3a;

  --font-title: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-card: 0 4px 24px rgba(42, 80, 130, 0.1);
  --shadow-cta: 0 6px 32px rgba(253, 150, 91, 0.25);
  --max-width: 1180px;
  --section-padding: clamp(60px, 8vw, 120px) clamp(20px, 5vw, 80px);
}

body {
  font-family: var(--font-body);
  margin: 0;
  overflow-x: hidden;
}

.home-v2 {
  color: var(--color-charcoal);
  background: var(--color-off-white);
}

.section-shell {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding: var(--section-padding);
}

h1, h2, h3 {
  font-family: var(--font-title);
  font-style: normal;
  margin: 0 0 12px;
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-off-white);
  border-bottom: 1px solid var(--color-beige-light);
  box-shadow: 0 2px 16px rgba(42, 80, 130, 0.07);
  transition: background 300ms ease, box-shadow 300ms ease;
}

.site-header.scrolled {
  background: var(--color-off-white);
  box-shadow: 0 4px 24px rgba(42, 80, 130, 0.12);
}

.nav-container {
  position: relative;
  min-height: 70px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 34px);
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-logo,
.nav-cta {
  flex: 0 0 auto;
}

.nav-logo img { display: block; }

.footer-logo img { display: block; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-charcoal);
  margin: 5px 0;
}

.nav-links {
  list-style: none;
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--color-charcoal);
  text-decoration: none;
}

.site-header .nav-links a {
  color: var(--color-charcoal);
  font-weight: 500;
  text-decoration: none;
  transition: color 200ms;
}

.site-header .nav-links a:hover {
  color: var(--color-orange);
}

.site-header .nav-cta {
  color: #ffffff !important;
}

.nav-cta { margin-left: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 220ms ease;
  cursor: pointer;
  border: none;
}

.btn-primary { background: var(--color-blue-deep); color: var(--color-off-white); }
.btn-primary:hover { background: #1e3d66; transform: translateY(-2px); box-shadow: var(--shadow-card); }
.btn-orange { background: var(--color-orange-btn); color: var(--color-full-white); box-shadow: var(--shadow-cta); }
.btn-orange:hover { background: #B05C27; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--color-off-white); border: 1.5px solid rgba(255,255,255,0.35); }
.btn-ghost:hover { border-color: var(--color-off-white); background: rgba(255,255,255,0.07); }
.btn-ghost-light { background: transparent; color: var(--color-off-white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); }
.btn-ghost-dark {
  background: transparent;
  color: var(--color-blue-deep);
  border: 1.5px solid var(--color-blue-deep);
}
.btn-ghost-dark:hover {
  background: var(--color-blue-deep);
  color: #fff;
}
.btn-large { padding: 18px 40px; font-size: 1.05rem; }

.hero-section {
  background: var(--color-beige-light);
  color: var(--color-charcoal);
  position: relative;
}

.hero-section h1 {
  color: var(--color-charcoal);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  margin-bottom: 16px;
}

.hero-section .hero-subtitle {
  color: var(--color-blue-deep);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  margin-bottom: 24px;
}

.hero-section .hero-kicker {
  color: var(--color-charcoal);
}

.hero-container {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 80px);
  position: relative;
}

.hero-media {
  margin: 0;
}

.hero-image-wrapper {
  aspect-ratio: 3 / 4;
  max-height: 480px;
  max-width: 360px;
  margin-left: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.hero-copy {
  order: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.hero-badges .badge {
  background: rgba(42, 80, 130, 0.08);
  border: 1px solid rgba(42, 80, 130, 0.2);
  color: var(--color-blue-deep);
  border-radius: 100px;
  font-size: 0.85rem;
  padding: 8px 14px;
}

.hero-section .btn-ghost {
  color: var(--color-charcoal);
  border-color: rgba(42, 40, 40, 0.3);
}

.hero-section .btn-ghost:hover {
  background: rgba(42, 40, 40, 0.07);
  border-color: var(--color-charcoal);
}

.section-head {
  text-align: center;
  margin-bottom: clamp(24px, 4vw, 44px);
}

.section-head p {
  max-width: 760px;
  margin: 12px auto 0;
}

.section-kicker {
  display: inline-block;
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-blue-deep);
}

.section-lead {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.65;
  color: var(--color-charcoal);
  opacity: 0.88;
}

.section-light { background: var(--color-off-white); }
.section-beige { background: var(--color-beige-light); }
.section-dark { background: var(--color-charcoal); color: var(--color-off-white); }

/* Sections — fonds v3 */
.pain-point {
  background: var(--bg-section-1);
  color: var(--color-charcoal);
}

.method {
  background: var(--bg-section-2);
  color: var(--color-charcoal);
}

.comparison {
  background: var(--bg-section-3);
  color: var(--color-charcoal);
}

.pricing-section {
  background: var(--color-blue-deep);
  padding: var(--section-padding);
}

.about {
  background: var(--bg-section-about);
  color: var(--color-charcoal);
}

.faq {
  background: var(--bg-section-faq);
  color: var(--color-charcoal);
}

/* Titres sections fond clair */
.pain-point h2,
.method h2,
.comparison h2,
.about .about-copy h2,
.faq h2 {
  color: var(--color-blue-deep);
}

.pain-point p,
.pain-card h3,
.method p,
.method h3,
.comparison p,
.comparison h3,
.about .about-copy p,
.about-quote,
.faq-question span {
  color: var(--color-charcoal);
}

.pricing-section h2 {
  color: var(--color-off-white);
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 56px);
}

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

.pain-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 32px;
  border-top: 3px solid var(--color-orange);
}

.pain-icon { font-size: 28px; margin-bottom: 10px; }

.method-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
}

.method-grid::before {
  content: "";
  position: absolute;
  top: 36%;
  left: 10%;
  right: 10%;
  border-top: 2px dashed var(--color-blue-deep);
}

.method-step {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
  box-shadow: var(--shadow-card);
}

.method-index {
  font-family: var(--font-title);
  font-size: 3rem;
  color: rgba(42, 80, 130, 0.15);
  line-height: 1;
}

.section-cta {
  margin-top: 28px;
  text-align: center;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.compare-col {
  border-radius: var(--radius-md);
  padding: 24px;
}

.compare-col ul { padding-left: 18px; margin: 0; }
.compare-col li { margin-bottom: 10px; }
.compare-col-bad { background: #fff; }
.compare-col-good { background: var(--color-blue-xlight); }

.pricing-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 36px 32px;
  position: relative;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pricing-card--featured {
  transform: translateY(-8px);
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.22);
  border-top: 4px solid var(--color-orange);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-orange-btn);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-blue-deep);
  margin-bottom: 12px;
}

.pricing-price {
  margin-bottom: 12px;
}

.pricing-amount {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--color-blue-deep);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.pricing-card--featured .pricing-amount {
  color: var(--color-orange-btn);
}

.pricing-amount small {
  font-size: 0.6em;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-grey-light);
}

.pricing-price-sub {
  display: block;
  font-size: 0.85rem;
  color: var(--color-charcoal);
  opacity: 0.7;
  margin-top: 4px;
}

.pricing-tagline {
  font-size: 0.9rem;
  color: var(--color-charcoal);
  line-height: 1.5;
  margin-bottom: 0;
}

.pricing-divider {
  border: none;
  border-top: 1px solid var(--color-beige-light);
  margin: 24px 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--color-charcoal);
  padding-left: 24px;
  position: relative;
  line-height: 1.4;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'%3E%3Ccircle cx='7' cy='7' r='7' fill='%232A5082'/%3E%3Cpath d='M4 7l2 2 4-4' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.pricing-card--featured .pricing-features li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'%3E%3Ccircle cx='7' cy='7' r='7' fill='%23E8824A'/%3E%3Cpath d='M4 7l2 2 4-4' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.pricing-cta {
  max-width: var(--max-width);
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.link-orange {
  color: var(--color-orange);
  text-decoration: none;
  font-weight: 600;
}

.testimonials-section {
  padding: var(--section-padding);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 24px;
  align-items: stretch;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 28px 26px 24px;
  background: var(--color-full-white);
  border: 1px solid var(--color-beige-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.testimonial-card__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(10, 102, 194, 0.1);
  color: #0a66c2;
}

.testimonial-card__quote {
  margin: 0;
  flex: 1 1 auto;
}

.testimonial-card__quote p {
  margin: 0;
  font-size: clamp(0.95rem, 1.2vw, 1.02rem);
  line-height: 1.7;
  color: var(--color-charcoal);
}

.testimonial-card__author {
  margin: 0;
  padding-top: 4px;
  border-top: 1px solid var(--color-beige-light);
}

.testimonial-card__name {
  display: block;
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-style: normal;
  color: var(--color-blue-deep);
  margin-bottom: 4px;
}

.testimonial-card__role {
  margin: 0 0 6px;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--color-charcoal);
  font-weight: 600;
}

.testimonial-card__context {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-charcoal);
  opacity: 0.65;
}

.testimonials-footer {
  margin: 36px 0 0;
  text-align: center;
}

.testimonials-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #0a66c2;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, color 200ms ease;
}

.testimonials-linkedin:hover,
.testimonials-linkedin:focus-visible {
  color: var(--color-blue-deep);
  border-bottom-color: var(--color-blue-deep);
}

.about-section {
  padding: clamp(48px, 6vw, 80px) clamp(20px, 5vw, 80px);
  background: var(--bg-section-about);
}

.about-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-intro {
  width: 100%;
}

.about-intro h2 {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--color-blue-deep);
  margin-bottom: 20px;
}

.about-intro p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--color-charcoal);
  line-height: 1.7;
  max-width: 720px;
}

.about-body {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.about-image-wrapper {
  aspect-ratio: 4 / 3;
  max-height: 400px;
  margin-top: 18px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-quote {
  margin: 0;
  background: #fff;
  border-left: 4px solid var(--color-orange);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  font-family: var(--font-title);
  font-style: italic;
}

.social-proof-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 6px 0;
}

.proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid var(--color-beige-light);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  text-decoration: none;
  transition: box-shadow 220ms, transform 220ms;
  flex: 1;
  min-width: 200px;
}

.proof-badge:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.proof-badge--keyaides {
  border-left: 3px solid var(--color-blue-deep);
}

.proof-badge--linkedin {
  border-left: 3px solid #0a66c2;
}

.proof-badge--linkedin .proof-badge-icon {
  color: #0a66c2;
}

.proof-badge-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-blue-xlight);
}

.proof-badge--linkedin .proof-badge-icon {
  background: #e8f0f9;
}

.proof-badge-icon--logo {
  background: transparent;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.proof-badge-icon--logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.proof-badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.proof-badge-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-charcoal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.proof-badge-source {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-blue-deep);
  font-weight: 500;
}

.proof-badge--linkedin .proof-badge-source {
  color: #0a66c2;
}

.proof-badge-sub {
  font-size: 0.78rem;
  color: var(--color-grey-light);
  font-style: italic;
  margin-top: 1px;
}

.about-stats,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.stat-item {
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius-sm);
  padding: 14px;
}

.stat-number {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.stat-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--color-grey-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
}

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

.faq-item {
  border: none;
  border-bottom: 1px solid var(--color-grey-light);
  border-radius: 0;
  background: #fff;
  margin-bottom: 0;
}

.faq-item:first-child {
  border-top-left-radius: var(--radius-md);
  border-top-right-radius: var(--radius-md);
}

.faq-item:last-child {
  border-bottom-left-radius: var(--radius-md);
  border-bottom-right-radius: var(--radius-md);
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding: 16px 18px;
  font-family: var(--font-body);
  font-weight: 600;
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.24s ease;
}

.faq-answer p { margin: 0; padding: 0 18px 18px; }
.faq-footer { text-align: center; margin-top: 16px; }

.final-cta {
  background: var(--bg-cta-final);
  color: var(--color-charcoal);
  position: relative;
  border-top: 3px solid var(--color-blue-light);
}

.final-cta h2 {
  color: var(--color-blue-deep);
}

.final-cta p {
  color: var(--color-charcoal);
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.site-footer {
  background: #3d3c3a;
  color: var(--color-off-white);
  padding: 60px clamp(20px, 5vw, 80px) 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-grey-light);
  margin: 0 0 16px;
}

.footer-logo { display: inline-block; margin-bottom: 16px; }

.footer-tagline {
  font-size: 0.9rem;
  color: var(--color-grey-light);
  line-height: 1.5;
  margin-bottom: 16px;
}

.footer-address {
  font-style: normal;
  font-size: 0.875rem;
  color: var(--color-grey-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list a {
  color: var(--color-grey-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 200ms;
}

.footer-nav-list a:hover { color: var(--color-orange); }

.footer-map-wrapper {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.footer-map-col .footer-map-link {
  display: inline-block;
  margin-top: 10px;
}

.footer-map-link {
  color: var(--color-orange);
  font-size: 0.85rem;
  text-decoration: none;
}

.footer-map-link:hover { text-decoration: underline; }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-grey-light);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--color-blue-deep);
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.875rem;
  z-index: 9999;
  text-decoration: none;
  transition: top 200ms;
}

.skip-link:focus { top: 16px; }

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-grey-light);
  transition: background 200ms, color 200ms, transform 200ms;
  text-decoration: none;
}

.social-link:hover {
  background: var(--color-orange);
  color: #fff;
  transform: translateY(-2px);
}

.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.anim-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .pricing-grid,
  .pain-grid,
  .method-grid,
  .compare-grid,
  .testimonials-grid,
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .method-grid::before { display: none; }

  .nav-toggle { display: block; margin-left: auto; }
  .nav-cta { display: none; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-off-white);
    border-bottom: 1px solid var(--color-beige-light);
    box-shadow: 0 8px 24px rgba(42, 80, 130, 0.1);
    flex-direction: column;
    flex: none;
    padding: 12px 24px;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.2s ease;
  }
  .nav-links.is-open { transform: scaleY(1); }
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

@media (max-width: 480px) {
  .social-proof-row { flex-direction: column; }
  .proof-badge { min-width: unset; }
}

@media (max-width: 768px) {
  .about-body {
    grid-template-columns: 1fr;
  }

  .about-image-wrapper {
    max-height: 280px;
  }

  .hero-section .hero-container {
    grid-template-columns: 1fr;
  }

  .hero-section .hero-media {
    order: -1;
  }

  .hero-section .hero-copy {
    order: 0;
  }

  .hero-section .hero-image-wrapper {
    max-height: 280px;
    max-width: 220px;
    margin: 0 auto;
    aspect-ratio: 3 / 4;
  }
}
