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

:root {
  --sage: #7FA87A;
  --sage-light: #EBF2E8;
  --sage-mid: #B8D4B3;
  --sand: #F5EFE0;
  --sand-dark: #E8DCC8;
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F4F4F5;
  --gray-200: #E4E4E7;
  --gray-400: #A1A1AA;
  --gray-600: #52525B;
  --gray-800: #27272A;
  --ink: #1A1A2E;

  --font-sans: 'DM Sans', sans-serif;
  --font-serif: 'DM Serif Display', serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, .08);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, .12);

  --trans: all .28s cubic-bezier(.4, 0, .2, 1);
}

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

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

/* ── TYPOGRAPHY HELPERS ── */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage);
  background: var(--sage-light);
  padding: .35rem .9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.2rem;
}

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

.section-body {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 560px;
  margin-bottom: 1.2rem;
}

.section-body--center {
  margin: 0 auto 1.2rem;
  text-align: center;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--trans);
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: #6A9465;
  border-color: #6A9465;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(127, 168, 122, .35);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--gray-200);
}

.btn-outline:hover {
  border-color: var(--sage);
  color: var(--sage);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, .15);
  color: var(--white);
  border-color: rgba(255, 255, 255, .35);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .25);
  transform: translateY(-2px);
}

.btn-lg {
  padding: .95rem 2.2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--trans);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--gray-200);
  padding: .85rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 1.4rem;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: -.02em;
}

.navbar:not(.scrolled) .logo-text {
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
}

.nav-link {
  font-size: .9rem;
  font-weight: 500;
  padding: .45rem .85rem;
  border-radius: 999px;
  color: var(--gray-600);
  transition: var(--trans);
}

.navbar:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, .85);
}

.nav-link:hover,
.nav-link.active {
  color: var(--sage);
  background: var(--sage-light);
}

.navbar:not(.scrolled) .nav-link:hover,
.navbar:not(.scrolled) .nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, .2);
}

.nav-cta {
  margin-left: .5rem;
}

.navbar:not(.scrolled) .nav-cta {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.navbar:not(.scrolled) .nav-cta:hover {
  background: var(--sand);
  border-color: var(--sand);
}

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

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--trans);
}

.navbar:not(.scrolled) .nav-hamburger span {
  background: var(--white);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 14s ease-out forwards;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(26, 26, 46, .72) 0%, rgba(26, 26, 46, .40) 55%, rgba(127, 168, 122, .15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10rem 2rem 6rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .25);
  padding: .45rem 1.1rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  animation: fadeUp .7s .1s both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #7DCEA0;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .6;
    transform: scale(1.3);
  }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeUp .7s .2s both;
}

.hero-title em {
  font-style: italic;
  color: #A8D5A2;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, .82);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  animation: fadeUp .7s .3s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp .7s .4s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 4rem;
  animation: fadeUp .7s .5s both;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--white);
  line-height: 1;
}

.stat-suffix {
  font-size: 1rem;
  color: #A8D5A2;
  font-weight: 600;
}

.stat-label {
  display: block;
  font-size: .78rem;
  color: rgba(255, 255, 255, .6);
  margin-top: .25rem;
  letter-spacing: .04em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, .2);
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-dot {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-radius: 999px;
  position: relative;
}

.scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: var(--white);
  border-radius: 50%;
  animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
}

/* ── SECTIONS ── */
.section {
  padding: 7rem 0;
}

.about {
  background: var(--white);
}

.mission {
  background: var(--sand) !important;
}

.pricing {
  background: var(--gray-50);
}

.contact {
  background: var(--white);
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.about-shape {
  position: absolute;
  width: 340px;
  height: 340px;
  background: var(--sage-light);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  animation: morphShape 8s ease-in-out infinite;
}

@keyframes morphShape {

  0%,
  100% {
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  }

  33% {
    border-radius: 45% 55% 40% 60% / 55% 45% 60% 40%;
  }

  66% {
    border-radius: 55% 45% 60% 40% / 40% 55% 45% 60%;
  }
}

.about-img-inner {
  position: relative;
  z-index: 1;
  width: 220px;
  height: 220px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.about-icon-display {
  font-size: 6rem;
}

.about-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: .85rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.about-card-icon {
  font-size: 1.5rem;
}

.about-card-text {
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  max-width: 130px;
}

.card-float {
  top: 2rem;
  left: -1rem;
  animation: floatA 4s ease-in-out infinite;
}

.card-float-2 {
  bottom: 2rem;
  right: -1rem;
  animation: floatB 4s ease-in-out infinite;
}

@keyframes floatA {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes floatB {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

.about-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
  color: var(--gray-600);
}

.feature-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--sage);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  margin-top: 2px;
}

/* ── MISSION ── */
.mission-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.pillar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
  border: 1px solid var(--gray-200);
}

.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pillar--accent {
  background: var(--sage);
  border-color: var(--sage);
}

.pillar--accent .pillar-title,
.pillar--accent .pillar-body {
  color: var(--white);
}

.pillar-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.pillar-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: .75rem;
}

.pillar-body {
  font-size: .92rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.mission-quote {
  text-align: center;
  padding: 3rem;
  border-top: 1px solid var(--sand-dark);
}

.mission-quote blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--ink);
  max-width: 700px;
  margin: 0 auto .75rem;
  line-height: 1.5;
}

.mission-quote cite {
  font-size: .85rem;
  color: var(--gray-400);
  letter-spacing: .05em;
}

/* ── PRICING ── */
.location-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.location-tab {
  padding: .6rem 1.25rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--trans);
}

.location-tab:hover {
  border-color: var(--sage);
  color: var(--sage);
}

.location-tab.active {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.toggle-label {
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-600);
}

.toggle-btn {
  width: 52px;
  height: 28px;
  background: var(--gray-200);
  border-radius: 999px;
  border: none;
  cursor: pointer;
  position: relative;
  transition: var(--trans);
}

.toggle-btn.active {
  background: var(--sage);
}

.toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--trans);
  box-shadow: var(--shadow-sm);
}

.toggle-btn.active .toggle-knob {
  transform: translateX(24px);
}

.toggle-badge {
  background: var(--sage-light);
  color: var(--sage);
  font-size: .7rem;
  font-weight: 700;
  padding: .15rem .5rem;
  border-radius: 999px;
  margin-left: .35rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
  position: relative;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: var(--sage);
  background: var(--ink);
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

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

.plan-featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: 999px;
}

.plan-header {
  margin-bottom: 2rem;
}

.plan-label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: .75rem;
}

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

.plan-price {
  display: flex;
  align-items: baseline;
  gap: .2rem;
}

.price-currency {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: .3rem;
}

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

.price-amount {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--ink);
  line-height: 1;
}

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

.price-period {
  font-size: .85rem;
  color: var(--gray-400);
  margin-left: .25rem;
}

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

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-bottom: 2rem;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .9rem;
  color: var(--gray-600);
}

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

.plan-feature--muted {
  opacity: .45;
}

.plan-check {
  width: 20px;
  height: 20px;
  background: var(--sage-light);
  color: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card--featured .plan-check {
  background: rgba(127, 168, 122, .25);
  color: #7DCEA0;
}

.plan-x {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gray-400);
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-item-icon {
  width: 46px;
  height: 46px;
  background: var(--sage-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item-label {
  display: block;
  font-size: .75rem;
  color: var(--gray-400);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.contact-item-value {
  display: block;
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink);
  transition: var(--trans);
}

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

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border: 1px solid var(--gray-200);
}

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

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

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: .03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--ink);
  background: var(--gray-50);
  transition: var(--trans);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(127, 168, 122, .15);
}

.form-group select {
  cursor: pointer;
}

.form-group textarea {
  min-height: 120px;
}

.form-success {
  text-align: center;
  color: var(--sage);
  font-weight: 600;
  font-size: .95rem;
  padding: .75rem;
  background: var(--sage-light);
  border-radius: var(--radius-sm);
  animation: fadeUp .4s both;
}

/* ── FOOTER ── */
.footer {
  background: var(--ink);
  padding: 3.5rem 0 2rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer .nav-logo .logo-text {
  color: var(--white);
}

.footer-tagline {
  font-size: .88rem;
  color: rgba(255, 255, 255, .45);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding: 1.5rem 0;
}

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

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255, 255, 255, .3);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-visual {
    min-height: 320px;
  }

  .mission-pillars {
    grid-template-columns: 1fr;
  }

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

  .pricing-card--featured {
    transform: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {

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

  .nav-hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 5rem 2rem 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    gap: .5rem;
    animation: fadeUp .3s both;
  }

  .nav-links.open .nav-link {
    color: var(--gray-600);
    padding: .75rem 1rem;
    border-radius: var(--radius-sm);
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-divider {
    width: 80px;
    height: 1px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .section {
    padding: 4rem 0;
  }

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

/* �� SLOT PICKER �� */
.price-legend {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: .75rem 1.25rem;
  box-shadow: var(--shadow-sm);
}

.legend-item strong {
  display: block;
  font-size: .88rem;
  color: var(--ink);
}

.legend-item span {
  font-size: .8rem;
  color: var(--gray-600);
}

.legend-item em {
  font-style: normal;
  font-weight: 700;
  color: var(--sage);
}

.legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  flex-shrink: 0;
}

.dot-peak {
  background: #F4A261;
}

.dot-mid {
  background: #7FA87A;
}

.dot-off {
  background: #90B4D4;
}

.slot-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}

.slot-grid {
  display: grid;
  grid-template-columns: 70px repeat(7, 1fr);
  min-width: 620px;
}

.slot-cell {
  padding: .6rem .4rem;
  text-align: center;
  font-size: .78rem;
  border-right: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

/* Header row */
.slot-cell.header {
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .04em;
  color: var(--gray-600);
  background: var(--gray-50);
  position: sticky;
  top: 0;
  z-index: 1;
  padding: .9rem .4rem;
}

.slot-cell.header.weekend {
  color: #E07B39;
}

/* Time label column */
.slot-cell.time-label {
  font-weight: 600;
  font-size: .75rem;
  color: var(--gray-400);
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  left: 0;
  z-index: 1;
  border-right: 2px solid var(--gray-200);
}

/* Clickable slot */
.slot-cell.slot {
  cursor: pointer;
  transition: var(--trans);
  user-select: none;
  position: relative;
}

.slot-cell.slot.peak {
  background: #FFF5EC;
}

.slot-cell.slot.mid {
  background: #EBF2E8;
}

.slot-cell.slot.off {
  background: #EAF3FB;
}

.slot-cell.slot:hover {
  filter: brightness(.93);
}

.slot-cell.slot.selected {
  background: var(--ink) !important;
  color: var(--white);
  box-shadow: inset 0 0 0 2px var(--sage);
}

.slot-cell.slot.selected::after {
  content: '✔';
  font-size: .8rem;
}

.slot-price {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  color: var(--gray-400);
  margin-top: 2px;
}

.slot-cell.slot.selected .slot-price {
  color: var(--sage-mid);
}

/* �zet �ubu�u */
.slot-summary {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  color: var(--white);
}

.summary-left {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex: 1;
  font-size: .95rem;
}

.summary-icon {
  font-size: 1.4rem;
}

.summary-right {
  text-align: right;
}

.summary-total-label {
  display: block;
  font-size: .72rem;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.summary-total {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--white);
}

/* Form se�ili saatler kutusu */
.selected-slots-box {
  min-height: 80px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: .85rem 1rem;
  transition: var(--trans);
}

.selected-slots-box:focus-within {
  border-color: var(--sage);
}

.slots-placeholder {
  font-size: .88rem;
  color: var(--gray-400);
}

.slots-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.slot-tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: var(--sage-light);
  color: var(--sage);
  border: 1px solid var(--sage-mid);
  border-radius: 999px;
  padding: .25rem .75rem;
  font-size: .78rem;
  font-weight: 600;
}

.slot-tag-remove {
  cursor: pointer;
  font-size: .9rem;
  line-height: 1;
  opacity: .6;
  transition: var(--trans);
}

.slot-tag-remove:hover {
  opacity: 1;
  color: #c0392b;
}

.selected-slots-total {
  margin-top: .6rem;
  font-size: .88rem;
  color: var(--gray-600);
  text-align: right;
}

.selected-slots-total strong {
  color: var(--ink);
  font-size: 1rem;
}

/* ── RIDER SECTION (SÜRÜCÜ OL) ── */
.rider {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.rider-grid {
  display: flex;
  flex-direction: column;
  /* İçerikleri dikey sıraya dizer */
  gap: 2rem;
  /* İki bölüm arasındaki boşluk */
}

.rider-info {
  position: sticky;
  top: 100px;
}

.rider-cta-box {
  margin-top: 2.5rem;
  margin-bottom: 6.5rem;
  background: var(--sage-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border-left: 5px solid var(--sage);
}

.rider-cta-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: .5rem;
}

.rider-cta-text {
  font-size: .95rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.rider-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  /* Ekran boyutuna göre otomatik dizilim */
  gap: 1.5rem;
}

.rider-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  transition: var(--trans);
}

.rider-card:hover {
  transform: translateY(-4px);
  border-color: var(--sage-mid);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.rider-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--sage-light);
  color: var(--sage);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.rider-card-content {
  flex: 1;
}

.rider-card-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: .5rem;
}

.rider-card-body {
  font-size: .95rem;
  color: var(--gray-600);
  line-height: 1.6;
}

@media (max-width: 968px) {
  .rider-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .rider-info {
    position: static;
  }
}

/* ── SSS (FAQ) SECTION ── */
.faq {
  background: var(--gray-50);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--trans);
}

.faq-item:hover {
  border-color: var(--sage-mid);
  box-shadow: var(--shadow-sm);
}

.faq-item.active {
  border-color: var(--sage);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: var(--trans);
}

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

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--sage);
  transition: transform .3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(0.4, 0, 0.2, 1), padding .35s ease;
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  font-size: .95rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ── REKLAM ÖNİZLEME ── */
.advert-preview {
  background: var(--white);
}

.preview-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 550px;
  margin: 0 auto;
  background: radial-gradient(circle at center, #2e3033 0%, #111215 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
}

#canvas3d-container {
  width: 100%;
  height: 100%;
  cursor: grab;
}

#canvas3d-container:active {
  cursor: grabbing;
}

.preview-overlay-info {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26, 26, 46, 0.75);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .preview-container {
    height: 400px;
  }
  .preview-overlay-info {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    bottom: 1rem;
  }
}

/* ── MASAÜSTÜ NAV SIKIŞIKLIK ÖNLEYİCİ ── */
@media (min-width: 769px) {
  .nav-link.desktop-hide {
    display: none;
  }
}

/* ── YAN NAVİGASYON (SIDE NAV) ── */
.side-navbar {
  position: fixed;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(228, 228, 231, 0.8);
  padding: 1rem 0.6rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--trans);
}

.side-nav-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  color: var(--gray-600);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--trans);
  text-decoration: none;
}

.side-nav-icon {
  font-size: 1.2rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.side-nav-text {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
  opacity: 0;
}

.side-navbar:hover .side-nav-text {
  max-width: 120px;
  opacity: 1;
}

.side-nav-link:hover,
.side-nav-link.active {
  color: var(--sage);
  background: var(--sage-light);
}

/* Mobil Cihazlarda Yan Menüyü Gizle */
@media (max-width: 768px) {
  .side-navbar {
    display: none;
  }
}