/* Hide reCAPTCHA v3 badge — attribution in form text per Google TOS */
.grecaptcha-badge { visibility: hidden; }

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

:root {
  --dark-green: #003719;
  --green: #00814E;
  --rust: #A14622;
  --cream: #FFEBE2;
  --teal: #2C6E7D;
  --navy: #102A43;
  --light-bg: #F7FAFB;
  --white: #fcfcf7;
  --black: #000000;
  --text: #333;
  --text-light: #666;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Nunito Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

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

/* ── Typography ── */
.heading-serif {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1em;
  color: var(--black);
  text-align: center;
  margin-bottom: 24px;
}

.heading-sub {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 20px;
}

.body-text {
  font-family: 'Nunito Sans', 'Helvetica Neue', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6em;
  color: var(--black);
  text-align: center;
}

.body-text-white {
  font-family: 'Nunito Sans', 'Helvetica Neue', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6em;
  color: var(--white);
}

.content-centered {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 32px;
  border-radius: 100px;
  font-size: 1.125rem;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn-primary-green:hover {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}

.btn-outline-dark:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  font-weight: 700;
}

.btn-white {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--cream);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
}

.btn-primary {
  background: var(--dark-green);
  color: var(--white);
  border-color: var(--dark-green);
}

.btn-primary:hover {
  background: var(--green);
  border-color: var(--green);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--dark-green);
  color: var(--dark-green);
}

.btn-outline:hover {
  background: var(--dark-green);
  color: var(--white);
}

.btn-with-icon svg {
  flex-shrink: 0;
}

.btn-block {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--dark-green);
  transition: background 0.3s ease;
}

.navbar-transparent {
  background: transparent;
}

.navbar-transparent.scrolled {
  background: var(--dark-green);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

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

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--white);
  padding: 8px 12px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 0.8;
}

.nav-cta {
  display: flex;
  align-items: center;
}

.nav-cta .btn {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* ── Language Selector ── */
.lang-selector {
  position: relative;
  margin-left: 16px;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--white);
}

.lang-current:hover {
  background: rgba(255, 255, 255, 0.18);
}

.flag-icon {
  width: 22px;
  height: 16px;
  border-radius: 2px;
  display: block;
  overflow: hidden;
}

.lang-chevron {
  transition: transform 0.2s ease;
}

.lang-selector.open .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--dark-green);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 6px;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.2s ease;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.lang-selector.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.15s ease;
  letter-spacing: 0.5px;
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.lang-option.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 900px;
}

.hero-heading {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3.5vw, 1.8rem);
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 40px;
}

.hero-heading em {
  font-style: italic;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Light Section ── */
.section-light {
  background: var(--light-bg);
  padding: 100px 0;
}

/* ── Gradient Section (Expertise + Orb) ── */
.section-gradient {
  background: linear-gradient(180deg, var(--dark-green) 0%, var(--green) 100%);
  padding: 100px 0;
}

.gradient-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.orb-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb-video-wrap {
  width: 100%;
  max-width: 370px;
  aspect-ratio: 1;
  border-radius: 25px;
  border: none;
  box-shadow: none;
  overflow: hidden;
}

.orb-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orb-canvas {
  width: 100%;
  height: 100%;
}

.gradient-content {
  padding: 20px 0;
}

.gradient-content .body-text-white {
  margin-bottom: 32px;
}

/* ── Steps (Comment ça marche) ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.step-card {
  text-align: center;
}

.step-image {
  width: 140px;
  height: 140px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-card .body-text {
  font-size: 1rem;
}

.steps-cta {
  text-align: center;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 130px 0 50px;
  background: linear-gradient(170deg, var(--dark-green) 0%, #01502f 50%, var(--green) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
}

.page-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
}

.page-subtitle a {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-subtitle a:hover {
  color: var(--white);
}

/* ── Pricing ── */
/* ── Pricing Cards ── */
.pricing-section {
  background: var(--light-bg);
  padding-top: 80px;
  padding-bottom: 120px;
  position: relative;
}

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

.pricing-card {
  position: relative;
  border-radius: 24px;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.pricing-card-inner {
  background: var(--white);
  border: 1px solid rgba(0, 55, 25, 0.1);
  border-radius: 24px;
  padding: 44px 36px 40px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.pricing-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(0, 129, 78, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
}

.pricing-card:hover .pricing-card-inner {
  box-shadow: 0 20px 60px -12px rgba(0, 55, 25, 0.12), 0 4px 20px -4px rgba(0, 55, 25, 0.08);
}

.pricing-card:hover .pricing-card-inner::before {
  opacity: 1;
}

/* ── Featured card ── */
.pricing-card.featured {
  z-index: 2;
}

.pricing-card.featured .pricing-card-inner {
  background: var(--dark-green);
  border-color: transparent;
  box-shadow: 0 24px 64px -12px rgba(0, 55, 25, 0.3), 0 8px 24px -4px rgba(0, 55, 25, 0.15);
  color: var(--white);
}

.pricing-card.featured .pricing-card-inner::before {
  height: 100%;
  background: radial-gradient(ellipse at 30% 0%, rgba(0, 129, 78, 0.2) 0%, transparent 60%);
  opacity: 1;
}

.pricing-card-glow {
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  background: linear-gradient(160deg, var(--green), var(--dark-green), var(--green));
  z-index: 0;
  opacity: 0.6;
  filter: blur(0px);
  transition: opacity 0.4s ease, filter 0.4s ease;
}

.pricing-card.featured:hover .pricing-card-glow {
  opacity: 1;
  filter: blur(8px);
}

.pricing-card.featured:hover {
  transform: translateY(-10px);
}

.pricing-card.featured:hover .pricing-card-inner {
  box-shadow: 0 32px 80px -16px rgba(0, 55, 25, 0.4);
}

/* ── Badge ── */
.pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  padding: 6px 28px 8px;
  border-radius: 0 0 14px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 3;
}

/* ── Header ── */
.pricing-header {
  text-align: center;
  margin-bottom: 0;
}

.pricing-tier-label {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--green);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.pricing-card.featured .pricing-tier-label {
  color: rgba(255, 255, 255, 0.6);
}

.pricing-header h3 {
  margin-bottom: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--dark-green);
  letter-spacing: -0.01em;
}

.pricing-card.featured .pricing-header h3 {
  color: var(--white);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.price-amount {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--dark-green);
  line-height: 1;
  letter-spacing: -0.03em;
}

.pricing-card.featured .price-amount {
  color: var(--white);
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 400;
}

.pricing-card.featured .price-period {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-note {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 10px;
  font-weight: 400;
}

.pricing-card.featured .pricing-note {
  color: rgba(255, 255, 255, 0.45);
}

/* ── Divider ── */
.pricing-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 55, 25, 0.12), transparent);
  margin: 28px 0;
}

.pricing-card.featured .pricing-divider {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

/* ── Features ── */
.pricing-features {
  margin-top: 0;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.4;
}

.pricing-card.featured .pricing-features li {
  color: rgba(255, 255, 255, 0.85);
}

.feature-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.feature-icon.check {
  background: rgba(0, 129, 78, 0.1);
}

.feature-icon.check::after {
  content: '';
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg) translateY(-1px);
}

.pricing-card.featured .feature-icon.check {
  background: rgba(255, 255, 255, 0.12);
}

.pricing-card.featured .feature-icon.check::after {
  border-color: rgba(255, 255, 255, 0.8);
}

.feature-icon.xmark {
  background: rgba(0, 0, 0, 0.04);
}

.feature-icon.xmark::before,
.feature-icon.xmark::after {
  content: '';
  position: absolute;
  width: 9px;
  height: 1.5px;
  background: var(--text-light);
  border-radius: 1px;
}

.feature-icon.xmark::before {
  transform: rotate(45deg);
}

.feature-icon.xmark::after {
  transform: rotate(-45deg);
}

.pricing-features li.excluded {
  opacity: 0.4;
}

.pricing-card.featured .pricing-features li.excluded {
  opacity: 0.3;
}

/* ── Pricing Buttons ── */
.btn-pricing {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 14px 32px;
  border-radius: 14px;
  font-size: 0.95rem;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  text-decoration: none;
  letter-spacing: 0.01em;
  margin-top: auto;
}

.btn-pricing-outline {
  background: transparent;
  color: var(--dark-green);
  border: 1.5px solid rgba(0, 55, 25, 0.2);
}

.btn-pricing-outline:hover {
  background: var(--dark-green);
  color: var(--white);
  border-color: var(--dark-green);
  box-shadow: 0 8px 24px -4px rgba(0, 55, 25, 0.25);
}

.btn-pricing-solid {
  background: var(--white);
  color: var(--dark-green);
  border: 1.5px solid transparent;
  box-shadow: 0 4px 16px -2px rgba(0, 0, 0, 0.15);
}

.btn-pricing-solid:hover {
  background: var(--cream);
  box-shadow: 0 8px 28px -4px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

/* ── Expertise Page ── */
.profiles-section {
  background: var(--white);
  padding: 100px 0;
}

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

.section-header .label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.section-header h2 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--dark-green);
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-top: 16px;
  line-height: 1.7;
}

.label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

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

.profile-card {
  background: var(--white);
  padding: 44px 32px 40px;
  border-radius: 24px;
  border: 1px solid rgba(0, 55, 25, 0.08);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
  overflow: hidden;
}

.profile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--dark-green));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.profile-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px -12px rgba(0, 55, 25, 0.12);
  border-color: rgba(0, 129, 78, 0.2);
}

.profile-card:hover::before {
  opacity: 1;
}

.profile-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(0, 129, 78, 0.08), rgba(0, 55, 25, 0.04));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.profile-card h3 {
  margin-bottom: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--dark-green);
}

.profile-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
}

.promise-section {
  background: var(--light-bg);
  padding: 100px 0;
  position: relative;
}

.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.promise-content h2 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--dark-green);
  margin: 12px 0 20px;
}

.promise-content p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
}

.promise-image {
  position: relative;
}

.promise-image::after {
  content: '';
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 2px solid rgba(0, 129, 78, 0.15);
  border-radius: 24px;
  z-index: -1;
}

.promise-image img {
  border-radius: 24px;
  box-shadow: 0 12px 40px -8px rgba(0, 55, 25, 0.15);
}

/* ── Partners Page ── */
.partners-intro {
  padding: 72px 0;
  background: var(--white);
}

.partners-intro-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.partners-intro-text p {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.85;
}

.partners-details {
  background: var(--light-bg);
  padding: 100px 0;
}

.partners-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.partners-col {
  background: var(--white);
  padding: 44px 40px;
  border-radius: 24px;
  border: 1px solid rgba(0, 55, 25, 0.08);
}

.partners-col h2 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--dark-green);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(0, 129, 78, 0.12);
}

.partners-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.partners-list li {
  padding-left: 28px;
  position: relative;
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--text);
}

.partners-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--green), var(--dark-green));
}

.partners-looking {
  background: var(--white);
  padding: 100px 0;
}

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

.looking-card {
  background: var(--white);
  padding: 36px 20px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(0, 55, 25, 0.08);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.looking-card:hover {
  border-color: rgba(0, 129, 78, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -8px rgba(0, 55, 25, 0.1);
}

.looking-card svg {
  margin: 0 auto 16px;
}

.looking-card span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark-green);
  line-height: 1.4;
  display: block;
}

.partners-form-section {
  background: var(--light-bg);
  padding: 100px 0;
}

/* ── Contact Page ── */
.contact-section {
  padding: 100px 0 120px;
  background: var(--white);
}

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

.contact-info {
  padding-top: 12px;
}

.contact-info h2 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--dark-green);
  margin-bottom: 36px;
}

.contact-info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--light-bg);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  box-shadow: 0 4px 16px rgba(0, 55, 25, 0.06);
}

.contact-info-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--dark-green);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info-item a,
.contact-info-item span {
  color: var(--text);
  font-size: 0.95rem;
}

.contact-info-item a:hover {
  color: var(--green);
}

/* ── Shared Form ── */
.contact-form {
  background: var(--white);
  padding: 44px;
  border-radius: 24px;
  border: 1px solid rgba(0, 55, 25, 0.08);
  box-shadow: 0 8px 32px -4px rgba(0, 55, 25, 0.08);
  max-width: 680px;
  margin: 0 auto;
}

.contact-grid .contact-form {
  max-width: none;
  margin: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(0, 55, 25, 0.1);
  border-radius: 14px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
  background: var(--light-bg);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 129, 78, 0.08);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.required {
  color: #c23;
  font-weight: 700;
}

.btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  filter: grayscale(0.3);
}

.form-feedback {
  margin-top: 14px;
  font-size: 0.92rem;
  font-weight: 500;
}
.form-feedback.success {
  color: var(--green);
}
.form-feedback.error {
  color: #c23;
}

.recaptcha-notice {
  margin-top: 14px;
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.5;
}

.recaptcha-notice a {
  color: var(--text-light);
  text-decoration: underline;
}

/* ── Blog Page ── */
.blog-section {
  padding: 0 0 120px;
  background: var(--white);
}

.blog-grid {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-card {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid rgba(0, 55, 25, 0.08);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.blog-card:hover {
  box-shadow: 0 20px 48px -12px rgba(0, 55, 25, 0.1);
  transform: translateY(-4px);
}

.blog-image {
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.blog-card:hover .blog-image img {
  transform: scale(1.03);
}

.blog-content {
  padding: 36px 40px 40px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: var(--text-light);
}

.blog-author-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 129, 78, 0.15);
}

.blog-author {
  font-weight: 700;
  color: var(--dark-green);
}

.blog-date, .blog-read {
  position: relative;
  padding-left: 14px;
}

.blog-date::before, .blog-read::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-light);
}

.blog-content h2 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--dark-green);
  margin-bottom: 14px;
  line-height: 1.3;
}

.blog-content > p {
  color: var(--text-light);
  line-height: 1.75;
  font-size: 0.93rem;
}

/* ── FAQ Page ── */
.faq-section {
  padding: 60px 0 120px;
  background: var(--white);
}

.faq-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 48px;
  justify-content: center;
  flex-wrap: wrap;
  background: var(--light-bg);
  padding: 6px;
  border-radius: 16px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.faq-tab {
  padding: 12px 24px;
  border-radius: 12px;
  border: none;
  background: transparent;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  flex: 1;
  text-align: center;
}

.faq-tab:hover {
  color: var(--dark-green);
}

.faq-tab.active {
  background: var(--white);
  color: var(--dark-green);
  box-shadow: 0 2px 8px rgba(0, 55, 25, 0.08);
}

.faq-content {
  display: none;
  max-width: 780px;
  margin: 0 auto;
}

.faq-content.active {
  display: block;
}

.faq-item {
  border: none;
  border-bottom: 1px solid rgba(0, 55, 25, 0.06);
  border-radius: 0;
  margin-bottom: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:first-child {
  border-top: 1px solid rgba(0, 55, 25, 0.06);
}

.faq-item.open {
  background: var(--light-bg);
  border-radius: 16px;
  border-color: transparent;
  margin: 8px 0;
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  background: transparent;
  border: none;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--dark-green);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-family: inherit;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--green);
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.5;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
  opacity: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 22px;
  color: var(--text);
  line-height: 1.75;
  font-size: 0.93rem;
}

/* ── Legal Pages ── */
.legal-section {
  padding: 80px 0 120px;
  background: var(--white);
}

.legal-content {
  max-width: 780px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--dark-green);
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 55, 25, 0.08);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 14px;
}

.legal-content a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a:hover {
  color: var(--dark-green);
}

.legal-content ul {
  margin: 12px 0 18px 24px;
  list-style: disc;
}

.legal-content ul li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 6px;
}

/* ── Plugin Page ── */
.plugin-section {
  padding: 120px 0 80px;
  background: #0C1F15;
  min-height: calc(100vh - 85px);
  display: flex;
  align-items: center;
}

.plugin-frame {
  display: flex;
  justify-content: center;
}

.plugin-iframe {
  border: none;
  border-radius: 24px;
  box-shadow: 0 12px 48px -8px rgba(0, 55, 25, 0.12);
  max-width: 100%;
}

@media (max-width: 768px) {
  .plugin-iframe {
    width: 100%;
    height: 520px;
  }
}

/* ── CTA Section ── */
.cta {
  background: linear-gradient(160deg, var(--dark-green) 0%, var(--green) 100%);
  color: var(--white);
  text-align: center;
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.cta h2 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 400;
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
  position: relative;
}

.cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  position: relative;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ── Footer ── */
.footer {
  background: var(--dark-green);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

.footer-email {
  display: block;
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 24px;
  transition: var(--transition);
}

.footer-email:hover {
  opacity: 0.8;
}

.footer-logo-link {
  display: block;
  margin-bottom: 24px;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.footer-address,
.footer-copy {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.footer-copy {
  margin-top: 8px;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

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

/* ── GDPR Cookie Banner ── */
.gdpr-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--dark-green);
  color: var(--white);
  padding: 0;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s ease;
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.25);
}

.gdpr-banner.visible {
  transform: translateY(0);
  opacity: 1;
}

.gdpr-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.gdpr-text {
  flex: 1;
}

.gdpr-text strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
}

.gdpr-text p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.gdpr-text a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.gdpr-text a:hover {
  color: var(--white);
}

.gdpr-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.gdpr-btn {
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: 'Nunito Sans', sans-serif;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.gdpr-btn-accept {
  background: var(--green);
  color: var(--white);
}

.gdpr-btn-accept:hover {
  background: #009a5c;
}

.gdpr-btn-reject {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.gdpr-btn-reject:hover {
  background: rgba(255, 255, 255, 0.18);
}

.gdpr-btn-settings {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.gdpr-btn-settings:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Settings panel */
.gdpr-settings {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.gdpr-settings.open {
  max-height: 400px;
  padding: 0 32px 28px;
}

.gdpr-setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gdpr-setting-row:last-of-type {
  border-bottom: none;
}

.gdpr-setting-row div {
  flex: 1;
}

.gdpr-setting-row strong {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 2px;
}

.gdpr-setting-row span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

.gdpr-settings-actions {
  padding-top: 12px;
  text-align: right;
}

/* Toggle switch */
.gdpr-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
}

.gdpr-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.gdpr-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.gdpr-slider {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  transition: background 0.2s ease;
}

.gdpr-slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.gdpr-toggle input:checked + .gdpr-slider {
  background: var(--green);
}

.gdpr-toggle input:checked + .gdpr-slider::before {
  transform: translateX(20px);
}

/* ── Mobile / Tablet ── */
@media (max-width: 968px) {
  .nav-inner {
    height: 70px;
  }

  .page-hero {
    padding: 110px 0 40px;
  }

  .page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
  }

  .section-light,
  .section-gradient {
    padding: 64px 0;
  }

  .cta {
    padding: 60px 0;
  }

  .gradient-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gradient-content {
    text-align: center;
  }

  .orb-video-wrap {
    max-width: 280px;
    margin: 0 auto;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .profiles-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    gap: 32px;
  }

  .pricing-card.featured {
    order: -1;
  }

  .promise-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .partners-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .looking-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    align-items: center;
  }

  .plugin-section {
    padding: 90px 0 40px;
  }

  .blog-card {
    flex-direction: column;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.active,
  .nav-cta.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--dark-green);
    padding: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    gap: 8px;
  }

  .nav-links.active a {
    padding: 12px;
    font-size: 1rem;
  }

  .nav-cta.active {
    top: auto;
    position: relative;
    padding-top: 0;
  }

  .nav-cta.active .btn {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
  }

  .nav-cta.active .lang-selector {
    margin-left: 0;
    margin-top: 8px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }

  .hero-inner {
    padding: 100px 16px 60px;
  }

  .hero-heading {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
    margin-bottom: 28px;
  }

  .heading-serif {
    font-size: clamp(1.6rem, 5vw, 2rem);
  }

  .page-hero {
    padding: 100px 0 32px;
  }

  .page-subtitle {
    font-size: 0.95rem;
  }

  .section-light,
  .section-gradient {
    padding: 48px 0;
  }

  .content-centered {
    margin: 0 auto 40px;
  }

  .body-text {
    font-size: 1rem;
  }

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

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .faq-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .faq-tab {
    text-align: center;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 16px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 1rem;
  }

  .cta h2 {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .steps-grid {
    gap: 32px;
  }

  .step-image {
    width: 110px;
    height: 110px;
  }

  .pricing-grid {
    max-width: 100%;
  }

  .gdpr-inner {
    flex-direction: column;
    padding: 24px 20px;
    gap: 20px;
  }

  .gdpr-actions {
    flex-direction: column;
    width: 100%;
  }

  .gdpr-btn {
    width: 100%;
    text-align: center;
    padding: 12px 22px;
  }

  .gdpr-settings {
    padding-left: 20px;
    padding-right: 20px;
  }

  .gdpr-setting-row {
    gap: 12px;
  }

  .footer {
    padding: 40px 0 32px;
  }
}
