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

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

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #F5F5F0;
  background-color: #0A0A0A;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; display: block; }

/* ============================================
   ACCESSIBILITY BASICS
   ============================================ */
.skip-link {
  position: absolute;
  top: -100px;
  right: 16px;
  z-index: 300;
  background: #C9A96E;
  color: #0A0A0A;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: top 0.2s ease;
}

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

:where(a, button, input, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid #C9A96E;
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   NOISE TEXTURE OVERLAY
   ============================================ */
.noise-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================
   SECTION SEPARATOR
   ============================================ */
.section-sep {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.3), transparent);
  margin: 0 auto;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}

/* ============================================
   STICKY NAV
   ============================================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(10, 10, 10, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo — Alex Brush signature in nav */
.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  direction: ltr;
  unicode-bidi: isolate;
}

.nav-brand-name {
  font-family: 'Alex Brush', cursive;
  font-size: 1.9rem;
  color: #F5F5F0;
  line-height: 1;
}

.nav-brand-slogan {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 2px;
  color: #C9A96E;
  text-transform: uppercase;
  margin-top: 2px;
}

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

.nav-links a:not(.btn-nav) {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  color: #9CA3AF;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

.nav-links a:not(.btn-nav):hover { color: #F5F5F0; }

.btn-nav {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: #0A0A0A;
  background: linear-gradient(135deg, #C9A96E 0%, #D4B87A 100%);
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 14px rgba(201, 169, 110, 0.25);
}

.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.35);
}

/* ============================================
   SECTION BASE
   ============================================ */
section { padding: 100px 0; position: relative; }

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 16px;
  display: block;
}

.section-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #F5F5F0;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-heading .gold { color: #C9A96E; }

.section-subtext {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  color: #9CA3AF;
  line-height: 1.8;
  max-width: 640px;
}

.section-head-center {
  text-align: center;
  margin-bottom: 56px;
}

.section-head-center .section-subtext {
  margin: 0 auto;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  padding: 120px 0 80px;
  background: radial-gradient(ellipse at 30% 50%, #1a1a2e 0%, #0A0A0A 65%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 64px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.2);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: #C9A96E;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  color: #F5F5F0;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero-headline .gold { color: #C9A96E; }

.hero-lead {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.85;
  color: #9CA3AF;
  max-width: 520px;
  margin-bottom: 36px;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #0A0A0A;
  background: linear-gradient(135deg, #C9A96E 0%, #D4B87A 50%, #C9A96E 100%);
  background-size: 200% 200%;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: scale(1.02); box-shadow: 0 8px 28px rgba(201, 169, 110, 0.4); }
.btn-primary:active { transform: scale(0.98); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #F5F5F0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 32px;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.btn-secondary:hover {
  border-color: rgba(201, 169, 110, 0.4);
  background: rgba(201, 169, 110, 0.06);
}

.hero-note {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 0.82rem;
  color: #7E8592;
  font-style: italic;
}

/* Hero photo card */
.hero-visual {
  position: relative;
}

.hero-photo-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 32px;
  overflow: hidden;
  background-image: url("images/upper_image.jpeg");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

/* ============================================
   PROBLEM GRID SECTION
   ============================================ */
.problem-section {
  background: #0A0A0A;
}

.problem-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.3), transparent);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.dark-card {
  padding: 36px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
}

.dark-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(201, 169, 110, 0.18);
  transform: translateY(-3px);
}

.dark-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #F5F5F0;
  margin-bottom: 12px;
}

.dark-card p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.8;
  color: #9CA3AF;
  margin: 0;
}

/* ============================================
   PROCESS STEPS SECTION
   ============================================ */
.process-section {
  background: #0A0A0A;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.3), transparent);
}

.steps-wrapper {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  padding: 52px;
  position: relative;
  overflow: hidden;
}

.steps-wrapper::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border: 1px solid rgba(201, 169, 110, 0.06);
  border-radius: 50%;
  left: -160px; bottom: -220px;
  pointer-events: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.step-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
}

.step-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  color: #C9A96E;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.step-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #F5F5F0;
  margin-bottom: 10px;
}

.step-card p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.75;
  color: #9CA3AF;
  margin: 0;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
  background: #0A0A0A;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.3), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.feature-card {
  padding: 32px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(201, 169, 110, 0.18);
  transform: translateY(-4px);
}

/* Gold SVG icon badge */
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.3);
  background: rgba(201, 169, 110, 0.06);
}

.feature-icon svg {
  width: 22px; height: 22px;
  stroke: #C9A96E;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #F5F5F0;
  margin-bottom: 10px;
}

.feature-card p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.75;
  color: #9CA3AF;
  margin: 0;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background: linear-gradient(180deg, #0A0A0A 0%, #111827 50%, #0A0A0A 100%);
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.3), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.about-photo {
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  background-image: url("images/dorin-caracucli-intorduction.jpeg");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.about-copy { padding: 8px 0; }

.about-copy p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.85;
  color: #9CA3AF;
  margin-bottom: 16px;
}

/* Alex Brush signature sign-off */
.about-signature {
  display: inline-block;
  margin-top: 24px;
  direction: ltr;
  unicode-bidi: isolate;
}

.about-signature-name {
  font-family: 'Alex Brush', cursive;
  font-size: 2.8rem;
  color: #F5F5F0;
  line-height: 1;
  margin-bottom: 4px;
}

.about-signature-slogan {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 2px;
  color: #C9A96E;
  text-transform: uppercase;
}

/* ============================================
   FIT / NOT-FIT SECTION
   ============================================ */
.fit-section {
  background: #0A0A0A;
}

.fit-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.3), transparent);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.fit-card {
  padding: 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.fit-card.not-fit {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.fit-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #F5F5F0;
  margin-bottom: 20px;
}

.fit-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fit-card li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: #9CA3AF;
  line-height: 1.5;
}

.fit-card li:last-child { border-bottom: none; }

.fit-check {
  color: #C9A96E;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.fit-card.not-fit .fit-check { color: #7E8592; }

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  background: #0A0A0A;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.3), transparent);
}

.testimonials-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #F5F5F0;
  font-style: italic;
  line-height: 1.3;
  margin-bottom: 56px;
  text-align: center;
}

.testimonials-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonials-carousel {
  display: flex;
  flex: 1;
  min-width: 0;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonials-carousel::-webkit-scrollbar { display: none; }

.testimonial-nav {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #C9A96E;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.2s ease;
}

.testimonial-nav:hover {
  border-color: rgba(201, 169, 110, 0.4);
  background: rgba(201, 169, 110, 0.08);
}

.testimonial-nav:active { transform: scale(0.94); }

.testimonial-nav svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.testimonial-dot.active {
  background: #C9A96E;
  transform: scale(1.3);
}

.testimonial-card {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
  padding: 36px 32px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.4s ease, background 0.4s ease;
}

.testimonial-card:hover {
  border-color: rgba(201, 169, 110, 0.15);
  background: rgba(255, 255, 255, 0.03);
}

.testimonial-stars {
  color: #C9A96E;
  letter-spacing: 3px;
  font-size: 0.85rem;
  margin-bottom: 16px;
  display: block;
}

.testimonial-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  line-height: 0.6;
  color: rgba(201, 169, 110, 0.3);
  margin-bottom: 12px;
  display: block;
  height: 1.4rem;
  unicode-bidi: isolate;
}

.testimonial-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.85;
  color: #9CA3AF;
  margin-bottom: 24px;
}

.testimonial-divider {
  width: 28px; height: 1px;
  background: rgba(201, 169, 110, 0.3);
  margin-bottom: 16px;
}

.testimonial-author {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: #F5F5F0;
  margin-bottom: 3px;
}

.testimonial-role {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  color: #9CA3AF;
  font-style: italic;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  background: #0A0A0A;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.3), transparent);
}

.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
}

details {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

details[open] {
  border-color: rgba(201, 169, 110, 0.2);
}

summary {
  padding: 20px 24px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #F5F5F0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  user-select: none;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: "+";
  font-size: 1.3rem;
  color: #C9A96E;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

details[open] summary::after {
  content: "−";
}

details p {
  padding: 0 24px 20px;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.8;
  color: #9CA3AF;
}

/* ============================================
   CONTACT FORM SECTION
   ============================================ */
.contact-section {
  background: linear-gradient(180deg, #0A0A0A 0%, #111827 5%, #1a1a2e 50%, #111827 95%, #0A0A0A 100%);
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.3), transparent);
}

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

.contact-copy .section-subtext {
  margin-bottom: 28px;
}

.contact-points {
  display: grid;
  gap: 12px;
}

.contact-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  color: #9CA3AF;
}

.contact-point-check {
  color: #C9A96E;
  font-weight: 700;
  flex-shrink: 0;
}

/* Glassmorphism form card */
.form-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 44px 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  position: relative;
}

.form-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  border-radius: 25px;
  background: linear-gradient(135deg, rgba(201,169,110,0.1), transparent 50%, rgba(201,169,110,0.05));
  z-index: -1;
  pointer-events: none;
}

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

.form-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  color: #C9A96E;
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: #F5F5F0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  direction: rtl;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.22);
  font-weight: 300;
}

.form-input:focus {
  border-color: rgba(201, 169, 110, 0.5);
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

/* Submit button */
.submit-button {
  display: block;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #0A0A0A;
  background: linear-gradient(135deg, #C9A96E 0%, #D4B87A 50%, #C9A96E 100%);
  background-size: 200% 200%;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.25);
  position: relative;
  overflow: hidden;
}

.submit-button::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.submit-button:hover::before { left: 100%; }
.submit-button:hover { transform: scale(1.02); box-shadow: 0 8px 28px rgba(201,169,110,0.35); }
.submit-button:active { transform: scale(0.98); }
.submit-button:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.submit-button:focus-visible { outline: 3px solid rgba(201,169,110,0.5); outline-offset: 3px; }

/* Honeypot spam-trap field — hidden from real users and assistive tech */
.honeypot-field {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* Form success / error message */
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.88rem;
  text-align: center;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.25);
  color: #C9A96E;
}

.form-success.error {
  background: rgba(229, 115, 115, 0.1);
  border: 1px solid rgba(229, 115, 115, 0.25);
  color: #E57373;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 32px 0 40px;
  background: #0A0A0A;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand {
  direction: ltr;
  unicode-bidi: isolate;
}

.footer-brand-name {
  font-family: 'Alex Brush', cursive;
  font-size: 1.6rem;
  color: #F5F5F0;
  line-height: 1;
  margin-bottom: 2px;
}

.footer-brand-sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 0.72rem;
  color: #8A8F98;
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 0.78rem;
  color: #8A8F98;
  transition: color 0.3s ease;
}

.footer-links a:hover { color: #C9A96E; }

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 200;
  width: min(680px, calc(100% - 32px));
  background: rgba(15, 15, 15, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

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

.cookie-banner-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.75;
  color: #9CA3AF;
}

.cookie-banner-text a {
  color: #C9A96E;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  align-self: stretch;
}

.cookie-banner-actions .btn-primary,
.cookie-banner-actions .btn-secondary {
  padding: 10px 22px;
  font-size: 0.88rem;
}

@media (max-width: 480px) {
  .cookie-banner { padding: 20px; bottom: 12px; }
  .cookie-banner-actions { flex-direction: column; }
  .cookie-banner-actions .btn-primary,
  .cookie-banner-actions .btn-secondary { width: 100%; }
}

/* ============================================
   ACCESSIBILITY WIDGET
   ============================================ */
.a11y-trigger {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 210;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: linear-gradient(135deg, #C9A96E 0%, #D4B87A 100%);
  color: #0A0A0A;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.a11y-trigger:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 26px rgba(201, 169, 110, 0.45);
}

.a11y-panel {
  position: fixed;
  left: 20px;
  bottom: 82px;
  z-index: 210;
  width: min(320px, calc(100% - 40px));
  max-height: min(560px, calc(100% - 120px));
  overflow-y: auto;
  background: rgba(15, 15, 15, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 18px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.a11y-panel.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.a11y-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.a11y-panel-header h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #F5F5F0;
}

.a11y-panel-close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: #9CA3AF;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.a11y-panel-close:hover {
  color: #F5F5F0;
  border-color: rgba(201, 169, 110, 0.4);
}

.a11y-panel-body {
  padding: 18px 20px 22px;
}

.a11y-section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #C9A96E;
  margin: 18px 0 10px;
}

.a11y-section-title:first-child { margin-top: 0; }

.a11y-font-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 8px 10px;
}

.a11y-font-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #F5F5F0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.a11y-font-btn:hover {
  border-color: rgba(201, 169, 110, 0.4);
  background: rgba(201, 169, 110, 0.08);
}

.a11y-font-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.82rem;
  color: #9CA3AF;
}

.a11y-btn-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.a11y-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 8px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: #9CA3AF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.a11y-btn svg {
  width: 20px;
  height: 20px;
}

.a11y-btn:hover {
  border-color: rgba(201, 169, 110, 0.3);
  color: #F5F5F0;
}

.a11y-btn.active {
  border-color: #C9A96E;
  background: rgba(201, 169, 110, 0.12);
  color: #C9A96E;
}

.a11y-reset {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: #9CA3AF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.a11y-reset:hover {
  border-color: rgba(229, 115, 115, 0.4);
  color: #E57373;
}

/* Effects toggled by the accessibility widget */
html.a11y-underline-links a {
  text-decoration: underline !important;
  text-underline-offset: 2px;
}

html.a11y-readable-font,
html.a11y-readable-font * {
  font-family: Arial, Helvetica, sans-serif !important;
}

html.a11y-highlight-focus *:focus {
  outline: 3px solid #FFD54A !important;
  outline-offset: 3px !important;
}

@media (max-width: 480px) {
  .a11y-trigger { left: 14px; bottom: 14px; width: 46px; height: 46px; font-size: 1.3rem; }
  .a11y-panel { left: 14px; bottom: 70px; }
}

/* ============================================
   LEGAL / PRIVACY PAGE
   ============================================ */
.legal-main {
  padding: 64px 0 120px;
}

.legal-updated {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 0.85rem;
  color: #7E8592;
  margin-bottom: 40px;
}

.legal-body {
  max-width: 760px;
}

.legal-body h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #F5F5F0;
  margin-top: 40px;
  margin-bottom: 14px;
}

.legal-body h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #C9A96E;
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal-body p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.85;
  color: #9CA3AF;
  margin-bottom: 8px;
}

.legal-body a {
  color: #C9A96E;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-body .btn-secondary {
  margin-top: 8px;
}

.contact-box {
  margin-top: 8px;
  padding: 18px 20px;
  background: rgba(201, 169, 110, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.22);
  border-radius: 14px;
}

.contact-box p {
  margin-bottom: 0;
  color: #F5F5F0;
}

.contact-box a {
  color: #C9A96E;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .hero { padding: 100px 0 60px; }

  .problem-grid,
  .fit-grid { grid-template-columns: 1fr; }

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

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

  .testimonial-card { flex-basis: calc((100% - 24px) / 2); }

  .nav-links a:not(.btn-nav) { display: none; }
}

@media (max-width: 640px) {
  section { padding: 72px 0; }

  .hero { padding: 80px 0 48px; }
  .hero-headline { font-size: 2.2rem; }
  .hero-photo-card { border-radius: 24px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { width: 100%; }

  .steps-wrapper { padding: 32px 24px; border-radius: 20px; }

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

  .testimonial-card { flex-basis: 100%; }
  .testimonial-nav { width: 38px; height: 38px; }

  .about-photo { border-radius: 22px; }

  .fit-card { padding: 28px 24px; }

  .form-card { padding: 32px 22px; border-radius: 20px; }

  .contact-grid { gap: 32px; }

  .footer-inner { flex-direction: column; align-items: flex-start; }

  .nav-brand-name { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 1.9rem; }
  .section-heading { font-size: 1.5rem; }
  .dark-card { padding: 24px 20px; }
  .feature-card { padding: 24px 20px; }
  .testimonial-card { padding: 28px 22px; }
}
