/* ===================================
   JACOMIEN ROUWCOACH - FIGMA STYLE
   Matching the organic, soft design
   =================================== */

/* Google Fonts - Inter with all weights */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables - Matching Figma */
:root {
  /* Primary Colors */
  --color-sage: #8EBA80;
  --color-sage-dark: #5A7A50;
  --color-sage-darker: #4A6A42;
  --color-sage-light: #A8D49A;
  --color-olive: #938330;
  --color-header: #8FBB80;
  --color-bg-subtle: rgba(113, 188, 32, 0.05); /* #71BC20 at 5% opacity */

  /* Neutrals */
  --color-white: #FFFFFF;
  --color-off-white: #FAFAFA;
  --color-text: #1A1A1A;
  --color-text-light: #4A4A4A;
  --color-text-muted: #6B6B6B;

  /* Accent - Organic shapes */
  --color-blob-purple: #E8E0F0;
  --color-blob-lavender: #D4C8E8;
  --color-blob-soft: #EDE8F4;

  /* Backgrounds */
  --color-bg-sage: #F5F9F4;
  --color-bg-cream: #FDFCFA;

  /* Fonts - Inter */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: 80px;
  --container-max: 1200px;
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --border-radius-pill: 50px;

  /* Transitions */
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg-subtle);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* Typography - Bold headers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem); /* 64pt = 4rem */
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem); /* 48pt = 3rem */
  margin-bottom: 1rem;
  font-weight: 700;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem); /* 36pt = 2.25rem */
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
  font-weight: 700;
}

p {
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

/* Layout */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

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

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

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-header);
  transition: var(--transition);
}

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

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  height: 50px;
}

.logo img {
  height: 100%;
  width: auto;
}

.logo__text {
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: 600;
}

.logo__text span {
  font-weight: 400;
  color: rgba(255,255,255,0.9);
}

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

.nav__link {
  padding: 10px 18px;
  font-size: 1rem; /* 16pt */
  font-weight: 500; /* Medium */
  color: var(--color-white);
  border-radius: var(--border-radius-pill);
  transition: var(--transition);
}

.nav__link:hover {
  background: rgba(255,255,255,0.15);
}

.nav__link--active {
  background: rgba(255,255,255,0.2);
  color: var(--color-white);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-text);
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 32px 24px;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
  }

  .nav--open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav__link {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    color: var(--color-text);
  }

  .nav__link:hover,
  .nav__link--active {
    background: var(--color-bg-sage);
    color: var(--color-sage-dark);
  }

  .nav__toggle {
    display: block;
  }
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--border-radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

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

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

.btn--secondary {
  background: transparent;
  color: var(--color-sage-dark);
  border-color: var(--color-sage);
}

.btn--secondary:hover {
  background: var(--color-sage);
  color: var(--color-white);
}

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

.btn--sage:hover {
  background: var(--color-sage-dark);
  border-color: var(--color-sage-dark);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-sage-dark);
  border: 3px solid var(--color-sage-dark);
  font-weight: 600;
  padding: 16px 40px;
  font-size: 1.1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn--white:hover {
  background: var(--color-sage-dark);
  color: var(--color-white);
  border-color: var(--color-sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(90, 122, 80, 0.3);
}

/* Extra prominent CTA button */
.btn--cta {
  background: var(--color-sage-dark);
  color: var(--color-white);
  border: 3px solid var(--color-sage-dark);
  font-weight: 700;
  padding: 18px 48px;
  font-size: 1.2rem;
  box-shadow: 0 6px 25px rgba(90, 122, 80, 0.4);
}

.btn--cta:hover {
  background: var(--color-sage-darker);
  border-color: var(--color-sage-darker);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(90, 122, 80, 0.5);
}

/* Small button variant */
.btn--small {
  padding: 12px 24px;
  font-size: 0.95rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

/* ===================================
   HERO SECTION - Matching Figma
   =================================== */
.hero {
  padding: 140px 0 100px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

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

.hero__content {
  max-width: 540px;
}

.hero__subtitle {
  font-size: 1rem;
  color: var(--color-sage);
  margin-bottom: 16px;
  font-weight: 500;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--color-text);
}

.hero__text {
  font-size: 16pt;
  font-weight: 500;
  color: var(--color-text-light);
  margin-bottom: 0;
  line-height: 1.8;
}

/* Hero Image with Organic Blob */
.hero__image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__blob {
  position: absolute;
  width: 110%;
  height: 110%;
  top: -5%;
  left: -5%;
  z-index: 0;
}

.hero__blob svg {
  width: 100%;
  height: 100%;
}

.hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  overflow: hidden;
}

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

@media (max-width: 900px) {
  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

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

  .hero__content {
    max-width: 100%;
  }

  .hero__image-wrapper {
    order: -1;
  }

  .hero__image {
    max-width: 320px;
    margin: 0 auto;
  }

  .btn-group {
    justify-content: center;
  }
}

/* ===================================
   SECTION HEADERS
   =================================== */
.section-header {
  max-width: 700px;
  margin-bottom: 60px;
}

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

.section-header__subtitle {
  font-size: 0.9rem;
  color: var(--color-sage);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section-header__title {
  margin-bottom: 20px;
}

.section-header__text {
  font-size: 16pt;
  color: var(--color-text-light);
  line-height: 1.8;
}

.section-intro {
  font-size: 16pt;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ===================================
   CARDS - Service Cards
   =================================== */
.grid {
  display: grid;
  gap: 32px;
}

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

@media (max-width: 900px) {
  .grid--2, .grid--3, .grid--4 {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 600px) and (max-width: 900px) {
  .grid--3, .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(142, 186, 128, 0.15);
}

/* Sage green card variant */
.card--sage {
  background: #8EBA80;
  padding: 32px;
  overflow: visible;
}

.card--sage .card__title {
  color: var(--color-white);
  margin-bottom: 12px;
}

.card--sage .card__text {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
}

.card--sage:hover {
  box-shadow: 0 20px 40px rgba(142, 186, 128, 0.35);
}

/* ===================================
   INFO CARD - Highlighted info box
   =================================== */
.info-card {
  background: var(--color-header);
  padding: 24px 28px;
  border-radius: var(--border-radius-lg);
  margin: 28px 0;
}

.info-card__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
}

.info-card__text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-white);
  margin: 0;
}

/* ===================================
   ACCORDION CARDS - Expandable
   =================================== */
.accordion-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.accordion-card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-card:hover {
  box-shadow: 0 12px 40px rgba(142, 186, 128, 0.2);
  transform: translateY(-4px);
}

.accordion-card__header {
  padding: 28px 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  transition: background 0.3s ease;
}

.accordion-card__header:hover {
  background: var(--color-bg-sage);
}

.accordion-card__icon {
  width: 56px;
  height: 56px;
  background: var(--color-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.accordion-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-white);
}

.accordion-card__title-wrap {
  flex: 1;
}

.accordion-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.accordion-card__subtitle {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin: 0;
}

.accordion-card__toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-bg-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.accordion-card__toggle svg {
  width: 20px;
  height: 20px;
  color: var(--color-sage-dark);
  transition: transform 0.3s ease;
}

.accordion-card.is-open .accordion-card__toggle {
  background: var(--color-sage);
}

.accordion-card.is-open .accordion-card__toggle svg {
  color: var(--color-white);
  transform: rotate(180deg);
}

.accordion-card__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-card.is-open .accordion-card__content {
  max-height: 500px;
}

.accordion-card__body {
  padding: 0 32px 28px;
  border-top: 1px solid rgba(142, 186, 128, 0.2);
}

.accordion-card__body p {
  margin-top: 20px;
  line-height: 1.7;
  color: var(--color-text-light);
}

.accordion-card__body ul {
  margin-top: 16px;
  padding-left: 0;
  list-style: none;
}

.accordion-card__body li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--color-text-light);
}

.accordion-card__body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--color-sage);
  border-radius: 50%;
}

.card__image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.card:hover .card__image img {
  transform: scale(1.05);
}

.card__content {
  padding: 28px;
}

.card__title {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--color-text);
}

.card__text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-sage);
}

.card__link:hover {
  color: var(--color-sage-dark);
  gap: 12px;
}

.card__link::after {
  content: "→";
  transition: var(--transition);
}

/* Value Cards */
.value-card {
  text-align: center;
  padding: 20px;
}

.value-card__image {
  width: 100%;
  height: 160px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
}

.value-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.value-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
}

/* ===================================
   TWO COLUMN SECTIONS
   =================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col--reverse .two-col__image {
  order: -1;
}

@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .two-col--reverse .two-col__image {
    order: 0;
  }
}

.two-col__image {
  position: relative;
}

.two-col__image img {
  border-radius: var(--border-radius-lg);
  width: 100%;
}

.two-col__image--blob {
  position: relative;
}

.two-col__image--blob::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 90%;
  background: var(--color-blob-purple);
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  top: 5%;
  left: 5%;
  z-index: -1;
}

/* ===================================
   CHECK LIST
   =================================== */
.check-list {
  list-style: none;
  margin-top: 24px;
}

.check-list li {
  font-size: 16pt;
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: var(--color-text-light);
  line-height: 1.6;
}

.check-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-sage);
  font-size: 1.5rem;
  line-height: 1;
}

/* Compact variant - less spacing */
.check-list--compact li {
  padding: 6px 0;
  padding-left: 32px;
}

/* Large variant */
.check-list--large li {
  font-size: 16pt;
  font-weight: 400;
  color: var(--color-text);
  padding: 6px 0;
  padding-left: 32px;
}

.check-list--large li::before {
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta {
  text-align: center;
  padding: 80px 24px;
}

.cta__subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.5px;
}

.cta__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 40px;
  color: var(--color-text);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: var(--color-white);
  padding: 40px 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
}

.footer__brand {
  max-width: 320px;
}

.footer__right {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.footer__certification {
  display: inline-block;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.footer__certification:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .footer__brand {
    max-width: 100%;
    margin: 0 auto;
  }

  .footer__right {
    flex-direction: column;
    gap: 16px;
  }
}

.footer__logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
}

.footer__logo span {
  font-weight: 400;
  color: var(--color-sage);
}

.footer__tagline {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-light);
  margin: 0;
}

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

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a {
  font-size: 1rem;
  color: var(--color-text-light);
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--color-sage);
}

.footer__bottom {
  padding: 24px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.footer__logos {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-self: start;
}

.footer__bottom .footer__certification {
  display: inline-block;
}

.footer__bottom p:first-of-type {
  justify-self: center;
  text-align: center;
}

.footer__bottom p:last-of-type {
  justify-self: end;
  text-align: right;
}

@media (max-width: 768px) {
  .footer__bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__bottom .footer__certification,
  .footer__bottom p:first-of-type,
  .footer__bottom p:last-of-type {
    justify-self: center;
    text-align: center;
  }
}

.footer__bottom p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
}

.footer__bottom a {
  color: var(--color-sage);
}

.footer__bottom a:hover {
  text-decoration: underline;
}

.footer__credit {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.footer__credit a {
  color: var(--color-sage);
  text-decoration: underline;
}

.footer__social {
  display: flex;
  gap: 16px;
}

@media (max-width: 768px) {
  .footer__social {
    justify-content: center;
  }
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-bg-sage);
  color: var(--color-text);
  transition: var(--transition);
}

.footer__social a:hover {
  background: var(--color-sage);
  color: var(--color-white);
}

/* ===================================
   PAGE HEADER - Matches Hero styling
   =================================== */
.page-header {
  padding: 160px 0 80px;
  text-align: center;
}

.page-header__title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--color-text);
}

.page-header__text {
  max-width: 700px;
  margin: 0 auto;
  font-size: 16pt;
  font-weight: 500;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ===================================
   ABOUT PAGE - Profile Section
   =================================== */
.profile {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 900px) {
  .profile {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.profile__image-wrapper {
  position: relative;
}

.profile__image {
  position: relative;
  z-index: 1;
}

.profile__image img {
  width: 100%;
  border-radius: var(--border-radius-lg);
}

.profile__image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--color-blob-purple);
  border-radius: var(--border-radius-lg);
  top: 20px;
  left: 20px;
  z-index: -1;
}

.profile__sidebar {
  background: var(--color-sage);
  color: var(--color-white);
  padding: 32px;
  border-radius: var(--border-radius-lg);
  margin-top: 32px;
}

.profile__sidebar h3 {
  color: var(--color-white);
  margin-bottom: 8px;
}

.profile__sidebar p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
}

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

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

.contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info__icon {
  width: 52px;
  height: 52px;
  background: var(--color-bg-sage);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.contact-info__value {
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-info__value a:hover {
  color: var(--color-sage);
}

/* Form */
.form-card {
  background: var(--color-off-white);
  padding: 48px;
  border-radius: var(--border-radius-lg);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__label {
  font-weight: 500;
  font-size: 0.95rem;
}

.form__input,
.form__textarea {
  padding: 16px 20px;
  border: 1px solid #E5E5E5;
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--color-white);
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-sage);
  box-shadow: 0 0 0 3px rgba(142, 186, 128, 0.15);
}

.form__textarea {
  min-height: 160px;
  resize: vertical;
}

/* ===================================
   PRICING
   =================================== */
.price-card {
  background: var(--color-white);
  border: 2px solid #E8E8E8;
  border-radius: var(--border-radius-lg);
  padding: 40px;
  text-align: center;
  transition: var(--transition);
}

.price-card:hover {
  border-color: var(--color-sage);
}

.price-card--featured {
  background: var(--color-sage);
  border-color: var(--color-sage);
  color: var(--color-white);
  transform: scale(1.02);
}

.price-card--featured:hover {
  transform: scale(1.04);
}

.price-card__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-sage);
}

.price-card--featured .price-card__label {
  color: rgba(255,255,255,0.8);
}

.price-card__title {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

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

.price-card__price {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 8px;
}

.price-card__price span {
  font-size: 1rem;
  font-weight: 400;
}

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

.price-card__text {
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

.price-card--featured .price-card__text {
  color: rgba(255,255,255,0.9);
}

.price-card__features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.price-card__features li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  font-size: 0.95rem;
}

.price-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: bold;
  color: var(--color-sage);
}

.price-card--featured .price-card__features li::before {
  color: var(--color-white);
}

/* ===================================
   FAQ
   =================================== */
.faq-item {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: 28px 32px;
  margin-bottom: 16px;
  border: 1px solid #E8E8E8;
}

.faq-item__question {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-text);
}

.faq-item__answer {
  color: var(--color-text-light);
  margin-bottom: 0;
  line-height: 1.7;
}

/* ===================================
   UTILITIES
   =================================== */
.text-center { text-align: center; }
.text-sage { color: var(--color-sage); }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* Hide on mobile */
@media (max-width: 768px) {
  .hide-mobile { display: none; }

  /* Accordion responsive */
  .accordion-card__header {
    padding: 20px;
    gap: 16px;
  }

  .accordion-card__icon {
    width: 48px;
    height: 48px;
  }

  .accordion-card__icon svg {
    width: 24px;
    height: 24px;
  }

  .accordion-card__title {
    font-size: 1.1rem;
  }

  .accordion-card__subtitle {
    font-size: 0.85rem;
  }

  .accordion-card__body {
    padding: 0 20px 20px;
  }
}

/* ===================================
   ORGANIC BLOB SVG BACKGROUNDS
   =================================== */
.blob-bg {
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.blob-purple {
  fill: var(--color-blob-purple);
}

.blob-lavender {
  fill: var(--color-blob-lavender);
}

/* ===================================
   STEPS / PROCESS SECTION
   =================================== */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(142, 186, 128, 0.2);
  position: relative;
}

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

.step__number {
  width: 60px;
  height: 60px;
  background: var(--color-sage);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(142, 186, 128, 0.3);
}

.step__content h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.step__content p {
  margin-bottom: 0;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* Horizontal steps layout for larger screens */
@media (min-width: 900px) {
  .steps--horizontal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .steps--horizontal .step {
    grid-template-columns: 1fr;
    text-align: center;
    border-bottom: none;
    padding: 0;
  }

  .steps--horizontal .step__number {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    font-size: 1.75rem;
  }

  .steps--horizontal .step__content h3 {
    font-size: 1.25rem;
  }
}

/* ===================================
   ANIMATIONS - Playful Effects
   =================================== */

/* Fade in from bottom */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade in from left */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Fade in from right */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scale in */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Gentle float animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Pulse animation */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

/* Animation classes */
.animate-fade-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-left {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-right {
  animation: fadeInRight 0.8s ease-out forwards;
}

.animate-scale {
  animation: scaleIn 0.6s ease-out forwards;
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

/* Staggered animation delays */
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }
.delay-4 { animation-delay: 0.4s; opacity: 0; }
.delay-5 { animation-delay: 0.5s; opacity: 0; }

/* Scroll-triggered animations using IntersectionObserver */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Card hover effects enhanced */
.card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(142, 186, 128, 0.2);
}

/* Button hover effects */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::after {
  width: 300px;
  height: 300px;
}

/* Hero image gentle animation */
.hero__image img {
  transition: transform 0.5s ease;
}

.hero__image:hover img {
  transform: scale(1.02);
}

/* Navigation link underline animation */
.nav__link {
  position: relative;
}

.nav__link::before {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: rgba(255,255,255,0.5);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav__link:hover::before {
  transform: scaleX(1);
}

/* Image reveal on scroll */
.img-reveal {
  overflow: hidden;
}

.img-reveal img {
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-reveal:hover img {
  transform: scale(1.05);
}

/* Gradient text animation for special headings */
.gradient-text {
  background: linear-gradient(135deg, var(--color-sage), var(--color-sage-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Soft shadow cards */
.soft-shadow {
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  transition: box-shadow 0.4s ease;
}

.soft-shadow:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* Button ripple effect */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ===================================
   VALUES SECTION WITH BACKGROUND
   =================================== */
.values-section {
  position: relative;
  overflow: hidden;
}

.values-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.values-section__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px) brightness(1.1);
  opacity: 0.3;
  transform: scale(1.1);
}

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

/* Feature Cards */
.feature-card {
  background: rgba(142, 186, 128, 0.2);
  backdrop-filter: blur(10px);
  padding: 32px 24px;
  border-radius: var(--border-radius-lg);
  text-align: left;
  transition: all 0.4s ease;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text);
}

.feature-card p {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0;
}

/* Animated Feature Cards */
.feature-card--animated {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

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

.feature-card--animated:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(142, 186, 128, 0.2);
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  padding: 20px 24px;
  display: none;
}

.cookie-banner.cookie-banner--visible {
  display: block;
}

.cookie-banner__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
  min-width: 280px;
}

.cookie-banner__text a {
  color: var(--color-sage);
  text-decoration: underline;
}

.cookie-banner__buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 10px 24px;
  border-radius: var(--border-radius-pill);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid var(--color-sage);
}

.cookie-banner__btn--accept {
  background: var(--color-sage);
  color: var(--color-white);
}

.cookie-banner__btn--accept:hover {
  background: var(--color-sage-dark);
  border-color: var(--color-sage-dark);
}

.cookie-banner__btn--decline {
  background: transparent;
  color: var(--color-sage);
}

.cookie-banner__btn--decline:hover {
  background: var(--color-bg-sage);
}

@media (max-width: 600px) {
  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner__buttons {
    width: 100%;
    justify-content: center;
  }
}
