/* ============================================================
   ORGÂNIA — CSS
   Premium minimalist landing page
   ============================================================ */

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Colors */
  --green-darkest: #0C100D;
  --green-dark:    #141A10;
  --green-main:    #4E5E3E;
  --green-mid:     #3D4D2E;
  --green-light:   #7A8F6A;
  --green-pale:    #E4EBD9;
  --gold:          #C9A96E;
  --gold-light:    #E8D5B0;
  --off-white:     #F6F3ED;
  --white:         #FFFFFF;
  --charcoal:      #181818;
  --gray-mid:      #6A6A6A;
  --gray-light:    #D8D5CF;
  --gray-border:   #E8E5DF;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --section-py: 7rem;
  --section-py-sm: 5rem;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--charcoal);
  background: var(--off-white);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* ============================================================
   CUSTOM CURSOR (desktop only)
   ============================================================ */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }

  .cursor {
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    background: var(--green-main);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.08s var(--ease), background 0.3s;
    will-change: transform;
  }

  .cursor-follower {
    position: fixed;
    top: 0; left: 0;
    width: 32px; height: 32px;
    border: 1px solid rgba(78, 94, 62, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.2s var(--ease), opacity 0.3s, width 0.3s, height 0.3s, border-color 0.3s;
    will-change: transform;
  }

  body:has(a:hover) .cursor-follower,
  body:has(button:hover) .cursor-follower {
    width: 48px;
    height: 48px;
    border-color: var(--gold);
  }
}

/* Hide cursor elements on touch devices */
@media (hover: none) {
  .cursor, .cursor-follower { display: none; }
}

/* ============================================================
   LAYOUT — CONTAINER
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* ============================================================
   UTILITIES
   ============================================================ */

/* Section label */
.label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-main);
  margin-bottom: 1.25rem;
}
.label--light { color: var(--green-pale); }
.label--dim   { color: rgba(255,255,255,0.45); }

/* Section title */
.title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--charcoal);
  margin-bottom: 3rem;
}
.title--light { color: var(--off-white); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--green-main);
  color: var(--off-white);
  border: 1px solid var(--green-main);
}
.btn--primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: rgba(246, 243, 237, 0.8);
  border: 1px solid rgba(246, 243, 237, 0.25);
}
.btn--ghost:hover {
  color: var(--off-white);
  border-color: rgba(246, 243, 237, 0.6);
  background: rgba(246, 243, 237, 0.06);
}

.btn--light {
  background: var(--off-white);
  color: var(--charcoal);
  border: 1px solid var(--off-white);
}
.btn--light:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: rgba(246, 243, 237, 0.75);
  border: 1px solid rgba(246, 243, 237, 0.25);
}
.btn--outline:hover {
  color: var(--off-white);
  border-color: rgba(246, 243, 237, 0.5);
  background: rgba(246, 243, 237, 0.05);
}

.btn--gold {
  background: var(--gold);
  color: var(--charcoal);
  border: 1px solid var(--gold);
  font-weight: 600;
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), backdrop-filter 0.4s;
}

.nav.scrolled {
  background: rgba(12, 16, 13, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(78, 94, 62, 0.15);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  flex-shrink: 0;
}
.nav__logo-img {
  height: 38px;
  width: auto;
  border-radius: 3px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__link {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(246, 243, 237, 0.7);
  transition: color 0.25s;
}
.nav__link:hover { color: var(--off-white); }

.nav__cta {
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(201, 169, 110, 0.5);
  border-radius: 2px;
  color: var(--gold) !important;
  font-weight: 500;
  transition: all 0.3s var(--ease) !important;
}
.nav__cta:hover {
  background: var(--gold);
  color: var(--charcoal) !important;
  border-color: var(--gold);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav__hamburger span {
  display: block;
  height: 1px;
  background: var(--off-white);
  transition: all 0.3s var(--ease);
  transform-origin: left center;
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) scaleX(0.9); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) scaleX(0.9); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--green-darkest);
  overflow: hidden;
}

/* Animated orb shapes */
.hero__orb {
  position: absolute;
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  border: 1px solid rgba(78, 94, 62, 0.18);
  animation: morphOrb 18s ease-in-out infinite;
  pointer-events: none;
}
.hero__orb:nth-child(1) {
  width: min(60vw, 650px);
  aspect-ratio: 1;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
}
.hero__orb--2 {
  width: min(40vw, 430px);
  aspect-ratio: 1;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  border-color: rgba(78, 94, 62, 0.10);
  animation-duration: 22s;
  animation-direction: reverse;
  animation-delay: -8s;
}
.hero__orb--2::after {
  content: '';
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 94, 62, 0.07) 0%, transparent 70%);
}

@keyframes morphOrb {
  0%, 100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; }
  25%       { border-radius: 37% 63% 46% 54% / 48% 55% 45% 52%; }
  50%       { border-radius: 54% 46% 37% 63% / 52% 45% 48% 55%; }
  75%       { border-radius: 46% 54% 63% 37% / 45% 52% 55% 48%; }
}

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 700px;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.2s both;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 600;
  line-height: 1.04;
  color: var(--off-white);
  margin-bottom: 1.75rem;
  animation: fadeSlideUp 1s var(--ease-out) 0.4s both;
}
.hero__title em {
  font-style: italic;
  color: var(--green-pale);
}

.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(246, 243, 237, 0.6);
  max-width: 520px;
  margin-bottom: 2.75rem;
  animation: fadeSlideUp 0.9s var(--ease-out) 0.6s both;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.9s var(--ease-out) 0.75s both;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: fadeSlideUp 0.9s var(--ease-out) 1.2s both;
}
.hero__scroll-text {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 243, 237, 0.35);
}
.hero__scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(246, 243, 237, 0.2);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: lineSlide 2s var(--ease) 1.5s infinite;
}

@keyframes lineSlide {
  0%   { left: -100%; }
  100% { left: 100%; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--green-main);
  padding: 1.125rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  animation: marqueeScroll 35s linear infinite;
}

.marquee__track span {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(246, 243, 237, 0.85);
  text-transform: uppercase;
  flex-shrink: 0;
}

.marquee__sep {
  color: var(--gold) !important;
  font-size: 0.5rem !important;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  padding: var(--section-py) 0;
  background: var(--off-white);
}

.stats__grid {
  display: flex;
  align-items: center;
  gap: 0;
}

.stats__item {
  flex: 1;
  text-align: center;
  padding: 2rem 1rem;
}

.stats__number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--green-main);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.stats__number--text {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  line-height: 1.2;
}

.stats__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--gray-mid);
  text-transform: uppercase;
}

.stats__divider {
  width: 1px;
  height: 80px;
  background: var(--gray-border);
  flex-shrink: 0;
}

/* ============================================================
   PROBLEM
   ============================================================ */
.problem {
  padding: var(--section-py) 0;
  background: var(--white);
}

.problem__header {
  margin-bottom: 3.5rem;
}

.problem__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.problem__card {
  padding: 3rem 2.5rem;
  border: 1px solid var(--gray-border);
  border-radius: 4px;
  background: var(--off-white);
  transition: border-color 0.3s, transform 0.4s var(--ease), box-shadow 0.4s;
  position: relative;
}
.problem__card:hover {
  border-color: var(--green-light);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(78, 94, 62, 0.08);
}

.problem__card-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-main);
  background: var(--green-pale);
  padding: 0.35rem 0.875rem;
  border-radius: 2px;
  margin-bottom: 1.75rem;
}

.problem__card-title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.3;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}

.problem__card-text {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--gray-mid);
  margin-bottom: 2rem;
}

.problem__card-arrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--green-main);
  transition: gap 0.3s;
}
.problem__card-arrow svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease);
}
.problem__card:hover .problem__card-arrow { gap: 0.75rem; }
.problem__card:hover .problem__card-arrow svg { transform: translateX(4px); }

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: var(--section-py) 0;
  background: var(--green-darkest);
}

.services__header {
  margin-bottom: 3.5rem;
}

/* Featured service cards (01-03) */
.services__featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: 1px;
  border: 1px solid rgba(78, 94, 62, 0.2);
  border-radius: 4px 4px 0 0;
  overflow: hidden;
}

.service-feat {
  padding: 2.75rem 2rem;
  background: rgba(78, 94, 62, 0.08);
  border-right: 1px solid rgba(78, 94, 62, 0.15);
  transition: background 0.35s var(--ease);
}
.service-feat:last-child { border-right: none; }
.service-feat:hover { background: rgba(78, 94, 62, 0.16); }

.service-feat__num {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}

.service-feat__title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-feat__text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(246, 243, 237, 0.55);
  margin-bottom: 1.25rem;
}

.service-feat__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  letter-spacing: 0.04em;
}

/* Secondary service grid (04-08) */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-bottom: 4rem;
  border: 1px solid rgba(78, 94, 62, 0.2);
  border-top: none;
  border-radius: 0 0 4px 4px;
  overflow: hidden;
}

.service-card {
  padding: 2rem 1.75rem;
  background: rgba(78, 94, 62, 0.05);
  border-right: 1px solid rgba(78, 94, 62, 0.15);
  transition: background 0.35s var(--ease);
}
.service-card:last-child { border-right: none; }
.service-card:hover { background: rgba(78, 94, 62, 0.12); }

.service-card__num {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0.8;
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 0.875rem;
  line-height: 1.3;
}

.service-card__text {
  font-size: 0.8125rem;
  line-height: 1.7;
  color: rgba(246, 243, 237, 0.45);
}

.services__cta {
  text-align: center;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  padding: var(--section-py) 0;
  background: var(--off-white);
}

.process__header {
  margin-bottom: 4rem;
}

.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process__step {
  flex: 1;
  padding: 0 1.5rem;
  position: relative;
}
.process__step:first-child { padding-left: 0; }
.process__step:last-child  { padding-right: 0; }

.process__step-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--green-pale);
  line-height: 1;
  margin-bottom: 1.25rem;
  position: relative;
}
.process__step-num::after {
  content: '';
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--green-main);
  margin-top: 0.75rem;
}

.process__step-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.875rem;
}

.process__step-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--gray-mid);
}

.process__connector {
  width: 1px;
  height: 24px;
  background: var(--gray-border);
  align-self: flex-start;
  margin-top: 1.5rem;
  flex-shrink: 0;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: var(--section-py) 0;
  background: var(--green-main);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(246, 243, 237, 0.72);
  margin-bottom: 1.25rem;
}
.about__text:last-of-type { margin-bottom: 2.5rem; }

.about__mission {
  border-top: 1px solid rgba(246, 243, 237, 0.15);
  padding-top: 2rem;
}

.about__mission-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 243, 237, 0.45);
  margin-bottom: 0.875rem;
}

.about__mission-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: italic;
  font-weight: 400;
  color: var(--off-white);
  line-height: 1.3;
}

.about__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.about__logo-card {
  background: var(--green-mid);
  border-radius: 4px;
  padding: 3rem;
  border: 1px solid rgba(246, 243, 237, 0.08);
  transition: transform 0.5s var(--ease);
}
.about__logo-card:hover { transform: scale(1.02); }

.about__logo {
  width: min(220px, 100%);
  height: auto;
  border-radius: 3px;
}

.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
}

.about__tag {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(246, 243, 237, 0.6);
  border: 1px solid rgba(246, 243, 237, 0.2);
  padding: 0.375rem 0.875rem;
  border-radius: 2px;
  transition: border-color 0.3s, color 0.3s;
}
.about__tag:hover {
  border-color: rgba(246, 243, 237, 0.5);
  color: var(--off-white);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--white);
}

.testimonials__header {
  margin-bottom: 3.5rem;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.testimonial {
  border: 1px solid var(--gray-border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.testimonial__thumb {
  aspect-ratio: 16/10;
  background: var(--green-pale);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
}

.testimonial__play {
  width: 52px;
  height: 52px;
  background: var(--green-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform 0.3s var(--ease), background 0.3s;
}
.testimonial__play svg {
  width: 18px;
  height: 18px;
  margin-left: 2px;
}
.testimonial:hover .testimonial__play {
  transform: scale(1.1);
  background: var(--green-mid);
}

.testimonial__soon {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-main);
  font-weight: 500;
}

.testimonial__info {
  padding: 1.25rem 1.5rem;
  background: var(--off-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonial__role {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--charcoal);
}

.testimonial__location {
  font-size: 0.8125rem;
  color: var(--gray-mid);
}

.testimonials__note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-mid);
  font-style: italic;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  padding: var(--section-py) 0;
  background: var(--green-darkest);
}

.pricing__header {
  margin-bottom: 3.5rem;
}

.pricing__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 860px;
}

.pricing__card {
  padding: 3rem 2.5rem;
  border: 1px solid rgba(78, 94, 62, 0.25);
  border-radius: 4px;
  background: rgba(78, 94, 62, 0.07);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.3s, background 0.3s;
}
.pricing__card:hover {
  border-color: rgba(78, 94, 62, 0.4);
  background: rgba(78, 94, 62, 0.12);
}

.pricing__card--featured {
  border-color: rgba(201, 169, 110, 0.35);
  background: rgba(201, 169, 110, 0.06);
}
.pricing__card--featured:hover {
  border-color: rgba(201, 169, 110, 0.55);
  background: rgba(201, 169, 110, 0.1);
}

.pricing__card-tag {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

.pricing__card-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--off-white);
}

.pricing__card-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.pricing__currency {
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(246, 243, 237, 0.5);
  align-self: flex-start;
  margin-top: 0.25rem;
}
.pricing__value {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--off-white);
  line-height: 1;
}
.pricing__period {
  font-size: 1rem;
  color: rgba(246, 243, 237, 0.45);
}

.pricing__card-price--custom {
  align-items: center;
}
.pricing__card-price--custom span {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: rgba(246, 243, 237, 0.6);
}

.pricing__items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-bottom: 0.5rem;
}
.pricing__items li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: rgba(246, 243, 237, 0.7);
}
.pricing__items li svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.pricing__card-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(246, 243, 237, 0.5);
  flex: 1;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: var(--section-py) 0;
  background: var(--off-white);
}

.faq__header {
  margin-bottom: 3.5rem;
}

.faq__list {
  max-width: 780px;
}

.faq__item {
  border-bottom: 1px solid var(--gray-border);
}
.faq__item:first-child {
  border-top: 1px solid var(--gray-border);
}

.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.625rem 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--charcoal);
  text-align: left;
  transition: color 0.25s;
}
.faq__q:hover { color: var(--green-main); }
.faq__q[aria-expanded="true"] { color: var(--green-main); }

.faq__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--green-main);
  border: 1px solid var(--gray-border);
  border-radius: 50%;
  transition: transform 0.35s var(--ease), background 0.3s, border-color 0.3s;
}
.faq__q[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
  background: var(--green-main);
  color: white;
  border-color: var(--green-main);
}

.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s var(--ease);
}
.faq__a:not([hidden]) {
  max-height: 400px;
}
.faq__a p {
  padding-bottom: 1.75rem;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--gray-mid);
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  padding: var(--section-py) 0;
  background: var(--green-darkest);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final__orb {
  position: absolute;
  width: min(80vw, 700px);
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 94, 62, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-final__content {
  position: relative;
  z-index: 1;
}

.cta-final__title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--off-white);
  margin-bottom: 1.75rem;
}

.cta-final__sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(246, 243, 237, 0.5);
  margin-bottom: 2.75rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #090C09;
  padding: 4rem 0 2.5rem;
  border-top: 1px solid rgba(78, 94, 62, 0.15);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(246, 243, 237, 0.06);
  margin-bottom: 2.5rem;
}

.footer__logo {
  height: 52px;
  width: auto;
  border-radius: 3px;
  margin-bottom: 1rem;
}

.footer__tagline {
  font-size: 0.875rem;
  font-style: italic;
  color: rgba(246, 243, 237, 0.35);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: flex-end;
}

.footer__link {
  font-size: 0.875rem;
  color: rgba(246, 243, 237, 0.45);
  transition: color 0.25s;
}
.footer__link:hover { color: var(--off-white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copy,
.footer__location {
  font-size: 0.8125rem;
  color: rgba(246, 243, 237, 0.25);
}

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact {
  padding: var(--section-py) 0;
  background: var(--green-darkest);
  position: relative;
  overflow: hidden;
}

.contact__bg-orb {
  position: absolute;
  width: min(70vw, 600px);
  aspect-ratio: 1;
  top: 50%;
  left: -15%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 94, 62, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 6rem;
  align-items: start;
}

/* Headline side */
.contact__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--off-white);
  margin-bottom: 1.5rem;
}

.contact__sub {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(246, 243, 237, 0.5);
  margin-bottom: 2.5rem;
}

.contact__alt {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-wrap: wrap;
}
.contact__alt > span {
  font-size: 0.875rem;
  color: rgba(246, 243, 237, 0.35);
}
.contact__alt-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold);
  transition: gap 0.25s var(--ease), opacity 0.25s;
}
.contact__alt-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s var(--ease);
}
.contact__alt-link:hover { opacity: 0.8; gap: 0.6rem; }
.contact__alt-link:hover svg { transform: translateX(3px); }

/* Form side */
.contact__form {
  background: rgba(246, 243, 237, 0.04);
  border: 1px solid rgba(78, 94, 62, 0.2);
  border-radius: 4px;
  padding: 2.75rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246, 243, 237, 0.45);
}

.form-req  { color: var(--gold); }
.form-optional {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: rgba(246, 243, 237, 0.25);
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(246, 243, 237, 0.05);
  border: 1px solid rgba(246, 243, 237, 0.1);
  border-radius: 2px;
  padding: 0.875rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--off-white);
  outline: none;
  transition: border-color 0.3s var(--ease), background 0.3s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(246, 243, 237, 0.2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201, 169, 110, 0.5);
  background: rgba(246, 243, 237, 0.08);
}

/* Custom select arrow */
.form-group select {
  cursor: pointer;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 6L8 10L12 6' stroke='rgba%28246%2C243%2C237%2C0.35%29' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
}

/* Style select options (limited cross-browser) */
.form-group select option {
  background: #1a2615;
  color: var(--off-white);
}

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

.form-footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.form__btn {
  flex-shrink: 0;
  min-width: 180px;
  justify-content: center;
  position: relative;
}
.form__btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}

.form__privacy {
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(246, 243, 237, 0.2);
  max-width: 260px;
}

/* Feedback messages */
.form__feedback {
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 2px;
  min-height: 0;
  transition: all 0.3s;
}
.form__feedback:empty { display: none; }

.form__feedback--success {
  padding: 0.875rem 1rem;
  background: rgba(78, 94, 62, 0.2);
  border: 1px solid rgba(78, 94, 62, 0.4);
  color: var(--green-pale);
}
.form__feedback--error {
  padding: 0.875rem 1rem;
  background: rgba(180, 60, 60, 0.15);
  border: 1px solid rgba(180, 60, 60, 0.3);
  color: #f4b8b8;
}

/* ============================================================
   (removed old .cta-final — replaced by .contact above)
   ============================================================ */

.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 90;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, opacity 0.4s;
  opacity: 0;
  pointer-events: none;
}
.wa-float.visible {
  opacity: 1;
  pointer-events: auto;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}
.wa-float svg {
  width: 26px;
  height: 26px;
}
.wa-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(37, 211, 102, 0.3);
  animation: waPulse 2.5s ease-in-out infinite;
}

@keyframes waPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50%       { transform: scale(1.2); opacity: 0; }
}

/* ============================================================
   ANIMATIONS (global)
   ============================================================ */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-py: 5.5rem;
  }

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

  .stats__grid {
    flex-wrap: wrap;
  }
  .stats__item { flex: 1 1 40%; }
  .stats__divider { display: none; }

  .process__steps {
    flex-wrap: wrap;
    gap: 3rem;
  }
  .process__step { flex: 1 1 40%; padding: 0; }
  .process__connector { display: none; }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about__visual {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
  }
}

/* ============================================================
   RESPONSIVE — TABLET: contact form
   ============================================================ */
@media (max-width: 1024px) {
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact__title { font-size: clamp(2rem, 5vw, 2.75rem); }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-py: 4.5rem;
  }

  /* Contact form */
  .form-row { grid-template-columns: 1fr; }
  .contact__form { padding: 2rem 1.5rem; }
  .form-footer { flex-direction: column; align-items: flex-start; }
  .form__btn { width: 100%; }

  /* Nav mobile */
  .nav__hamburger { display: flex; }

  .nav__menu {
    position: fixed;
    inset: 0;
    background: rgba(10, 14, 10, 0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    z-index: 99;
  }
  .nav__menu.open {
    transform: translateX(0);
  }
  .nav__link {
    font-size: 1.375rem;
    font-weight: 400;
    color: rgba(246, 243, 237, 0.8);
    letter-spacing: 0.06em;
  }
  .nav__cta {
    font-size: 1.375rem !important;
    border-width: 1px !important;
    padding: 0.75rem 1.75rem !important;
  }

  /* Hero mobile */
  .hero__title {
    font-size: clamp(3rem, 13vw, 5rem);
  }
  .hero__orb { display: none; }
  .hero__inner { padding-bottom: 5rem; }

  /* Marquee */
  .marquee__track {
    animation-duration: 25s;
  }

  /* Stats */
  .stats__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .stats__item {
    padding: 2.5rem 1rem;
    border-bottom: 1px solid var(--gray-border);
    border-right: 1px solid var(--gray-border);
  }
  .stats__item:nth-child(2n) { border-right: none; }
  .stats__item:nth-child(n+5) { border-bottom: none; }
  /* Remove flex dividers since we use grid */
  .stats__divider { display: none; }

  /* Problem */
  .problem__cards {
    grid-template-columns: 1fr;
  }

  /* Services */
  .services__featured {
    grid-template-columns: 1fr;
  }
  .service-feat {
    border-right: none;
    border-bottom: 1px solid rgba(78, 94, 62, 0.15);
  }
  .service-feat:last-child { border-bottom: none; }

  .services__grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-card {
    border-right: none;
    border-bottom: 1px solid rgba(78, 94, 62, 0.15);
  }
  .service-card:nth-child(2n) { border-right: none; }

  /* Process */
  .process__steps {
    flex-direction: column;
    gap: 2.5rem;
  }
  .process__step { padding: 0; }
  .process__connector { display: none; }

  /* About */
  .about__inner { grid-template-columns: 1fr; }
  .about__visual {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Testimonials */
  .testimonials__grid { grid-template-columns: 1fr; }

  /* Pricing */
  .pricing__cards { grid-template-columns: 1fr; }

  /* Footer */
  .footer__top {
    flex-direction: column;
    gap: 2rem;
  }
  .footer__nav {
    justify-content: flex-start;
    gap: 0.5rem 1.5rem;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }

  .hero__ctas {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn { width: 100%; justify-content: center; }

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

  .pricing__value { font-size: 2.75rem; }
}
