/* ===========================
   CSS VARIABLES
   =========================== */
:root {
  --cocoa-deep: #853453;
  --cocoa: #6b2a43;
  --cream: #F6E7E5;
  --beige: #FCDDF2;
  --blush: #FCDDF2;
  --gold: #F63158;
  --gold-soft: #D6EFE1;
  --border: #f0d9e2;
  --input: #f0d9e2;
  --background: #ffffff;
  --foreground: #853453;
  --muted-foreground: oklch(0.5 0.03 45); /* approximately #7a6a5d */
  --card: #ffffff;
  --primary: #853453;
  --primary-foreground: #F6E7E5;
  --secondary: #FCDDF2;
  --radius: 1rem;
  --shadow-soft: 0 10px 40px -10px rgba(133, 52, 83, 0.18);
  --shadow-lift: 0 24px 60px -20px rgba(133, 52, 83, 0.25);
  --font-display: 'Fraunces', 'Playfair Display', ui-serif, Georgia, serif;
  --font-sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

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

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

/* ===========================
   UTILITY CLASSES
   =========================== */
.text-gradient-gold {
  background: linear-gradient(100deg, #F63158 0%, oklch(0.68 0.14 60) 50%, #F63158 100%);
  -webkit-background-clip: text;
  color: transparent;
}

.bg-gradient-hero {
  background: radial-gradient(1200px 600px at 90% -10%, rgba(252,221,242,0.35), transparent 60%),
              radial-gradient(900px 500px at -10% 20%, rgba(214,239,225,0.3), transparent 60%),
              linear-gradient(180deg, #F6E7E5 0%, #ffffff 100%);
}

.bg-gradient-cocoa {
  background: linear-gradient(135deg, #853453 0%, #2a1a10 100%);
}

.text-cocoa { color: var(--cocoa); }
.text-gold { color: var(--gold); }
.text-cream { color: var(--cream); }
.text-muted { color: var(--muted-foreground); }
.bg-secondary-40 { background: rgba(252,221,242,0.4); }

/* ===========================
   LAYOUT
   =========================== */
.container {
  max-width: 80rem; /* 1280px */
  margin: 0 auto;
  padding: 0 1rem;
}

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

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

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

.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

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

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===========================
   COMPONENTS
   =========================== */

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(240,217,226,0.6);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header__inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
}

.header__logo img {
  height: 2.5rem;
  width: auto;
}

.header__nav {
  display: none;
  gap: 1.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.header__nav a:hover {
  color: var(--foreground);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-call {
  display: none;
  height: 2.5rem;
  padding: 0 1rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  font-size: 0.875rem;
  font-weight: 500;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s;
}

.btn-call:hover {
  background: var(--secondary);
}

.btn-whatsapp-header {
  display: none;
  height: 2.5rem;
  padding: 0 1rem;
  border-radius: 9999px;
  background: #25D366;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  align-items: center;
  gap: 0.5rem;
}

.btn-whatsapp-header:hover {
  opacity: 0.9;
}

.btn-quote-header {
  height: 2.5rem;
  padding: 0 1rem;
  border-radius: 9999px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-soft);
}

.btn-quote-header:hover {
  filter: brightness(1.1);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: white;
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 49;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}

.mobile-menu__overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.mobile-menu__header img {
  height: 2.25rem;
  width: auto;
}

.mobile-menu__close {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  cursor: pointer;
}

.mobile-menu a {
  display: block;
  padding: 1rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

.mobile-menu__ctas {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-menu__ctas a {
  justify-content: center;
  border-bottom: none;
  padding: 0;
}

/* Icon Utilities */
.icon-gold {
  color: var(--gold);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
}

.hero__inner {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  padding: 2.5rem 1rem 4rem;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.7);
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-foreground);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  backdrop-filter: blur(4px);
}

.badge-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--gold);
}

.hero__title {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero__subtitle {
  margin-top: 1.25rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}

.hero__ctas {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.btn-primary {
  height: 3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: var(--primary);
  padding: 0 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-foreground);
  box-shadow: var(--shadow-lift);
  transition: filter 0.2s;
}

.btn-primary:hover {
  filter: brightness(1.1);
}

.btn-outline {
  height: 3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: white;
  padding: 0 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s;
}

.btn-outline:hover {
  background: var(--secondary);
}

.btn-whatsapp {
  height: 3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: #25D366;
  padding: 0 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  transition: opacity 0.2s;
}

.btn-whatsapp:hover {
  opacity: 0.9;
}

.hero__features {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  list-style: none;
  padding: 0;
}

.hero__features li {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.hero__image-mobile {
  margin-top: 2.5rem;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(240,217,226,0.7);
  box-shadow: var(--shadow-lift);
  display: block;
}

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

.hero__fade {
  position: absolute;
  inset-inline: 0;
  bottom: -1px;
  height: 4rem;
  background: linear-gradient(to bottom, transparent, var(--background));
}

/* Lead Form */
.lead-form {
  border-radius: 1.5rem;
  border: 1px solid rgba(240,217,226,0.7);
  background: white;
  padding: 1.5rem;
  box-shadow: var(--shadow-lift);
}

.lead-form__wrapper {
  /* sticky style on lg in responsive.css */
}

.lead-form__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.lead-form__title {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.lead-form__desc {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.lead-form__grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(133,52,83,0.8);
}

.form-field label .required {
  color: var(--gold);
}

.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  height: 2.5rem;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid var(--input);
  background: transparent;
  padding: 0 0.75rem;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  color: var(--foreground);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(246,49,88,0.15);
}

.form-field textarea {
  height: auto;
  padding: 0.75rem;
  resize: vertical;
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23853453' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

.form-consent {
  margin-top: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.form-consent input[type=checkbox] {
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  accent-color: var(--primary);
  border-radius: 0.25rem;
  cursor: pointer;
}

.btn-submit {
  margin-top: 1.25rem;
  height: 3rem;
  width: 100%;
  border-radius: 9999px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-sans);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-lift);
  transition: filter 0.2s;
}

.btn-submit:hover {
  filter: brightness(1.1);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.lead-form__footer {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.lead-form__footer a {
  font-weight: 500;
  color: var(--foreground);
  text-underline-offset: 2px;
}

.lead-form__footer a:hover {
  text-decoration: underline;
}

/* Toast Notification */
.toast-container {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.toast {
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--shadow-lift);
  pointer-events: auto;
  animation: toastIn 0.3s ease;
}

.toast--success {
  background: #16a34a;
  color: white;
}

.toast--error {
  background: #dc2626;
  color: white;
}

/* Trust Strip */
.trust-strip {
  border-top: 1px solid rgba(240,217,226,0.7);
  border-bottom: 1px solid rgba(240,217,226,0.7);
  background: rgba(252,221,242,0.4);
  padding: 1.25rem 0;
}

.trust-strip__inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 2rem;
  padding: 0 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

.trust-strip__dot {
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: var(--border);
}

/* Clients */
.clients {
  border-top: 1px solid rgba(240,217,226,0.7);
  border-bottom: 1px solid rgba(240,217,226,0.7);
  background: rgba(252,221,242,0.4);
  padding: 3rem 0;
}

.clients__title {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
}

.clients__grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 1.5rem;
}

.client-logo {
  display: flex;
  height: 3.5rem;
  align-items: center;
  justify-content: center;
}

.client-logo img {
  max-height: 3rem;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  opacity: 0.7;
  filter: grayscale(1);
  transition: opacity 0.3s, filter 0.3s;
}

.client-logo:hover img {
  opacity: 1;
  filter: grayscale(0);
}

/* Section (Reusable) */
.section {
  scroll-margin-top: 5rem;
  padding: 5rem 1rem;
}

.section__inner {
  max-width: 80rem;
  margin: 0 auto;
}

.section__header {
  max-width: 42rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: rgba(252,221,242,0.6);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
}

.section__eyebrow-dot {
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: var(--gold);
}

.section__title {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* Why Us Cards */
.why-us-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.why-card {
  border-radius: 1.5rem;
  border: 1px solid rgba(240,217,226,0.7);
  background: var(--card);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.why-card__icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: var(--secondary);
  color: var(--primary);
  transition: background 0.3s;
}

.why-card:hover .why-card__icon {
  background: rgba(246,49,88,0.2);
}

.why-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.why-card__title {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.why-card__desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}

/* Services */
.services-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.service-card {
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(240,217,226,0.7);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--secondary);
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

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

.service-card__tag {
  position: absolute;
  left: 1rem;
  top: 1rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.9);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--cocoa-deep);
  backdrop-filter: blur(4px);
}

.service-card__body {
  padding: 1.5rem;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.service-card__desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}

.service-card__link {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.3s;
}

.service-card__link:hover {
  gap: 0.625rem;
}

.chips {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: white;
  padding: 0.375rem 0.875rem;
  font-size: 0.875rem;
  color: rgba(133,52,83,0.8);
}

.chip-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--gold);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 180px;
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--secondary);
  box-shadow: var(--shadow-soft);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

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

.gallery-item figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(to top, rgba(107,42,67,0.7), transparent);
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cream);
}

/* Process */
.process-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.process-card {
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid rgba(240,217,226,0.7);
  background: var(--card);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.process-card__number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
}

.process-card__title {
  margin-top: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.process-card__desc {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Industries */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(240,217,226,0.7);
  background: var(--card);
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}

.industry-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.industry-card svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold);
}

.industry-card span {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.testimonial-card {
  border-radius: 1.5rem;
  border: 1px solid rgba(240,217,226,0.7);
  background: var(--card);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
}

.testimonial-card__stars {
  display: flex;
  gap: 0.25rem;
  color: var(--gold);
}

.testimonial-card__stars svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.testimonial-card__quote {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.625;
  color: rgba(133,52,83,0.9);
}

.testimonial-card__footer {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid rgba(240,217,226,0.7);
  padding-top: 1rem;
}

.testimonial-card__avatar {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #853453, #2a1a10);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--cream);
  font-size: 1rem;
}

.testimonial-card__name {
  font-size: 0.875rem;
  font-weight: 600;
}

.testimonial-card__role {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* FAQ */
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(240,217,226,0.7);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '';
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23853453' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item__answer {
  padding-bottom: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-foreground);
  animation: faqOpen 0.3s ease;
}

/* CTA Banner */
.cta-banner {
  padding: 0 1rem 5rem;
}

.cta-banner__inner {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 2rem;
  padding: 3.5rem 1.5rem;
  color: var(--cream);
  box-shadow: var(--shadow-lift);
}

.cta-banner__orb1 {
  position: absolute;
  right: -5rem;
  top: -5rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: rgba(246,49,88,0.2);
  filter: blur(48px);
  pointer-events: none;
}

.cta-banner__orb2 {
  position: absolute;
  bottom: -6rem;
  left: -4rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: rgba(252,221,242,0.3);
  filter: blur(48px);
  pointer-events: none;
}

.cta-banner__content {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.cta-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(246,231,229,0.2);
  background: rgba(255,255,255,0.05);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
}

.cta-banner__title {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.15;
}

.cta-banner__desc {
  margin-top: 1rem;
  font-size: 1rem;
  color: rgba(246,231,229,0.8);
}

.cta-banner__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.btn-gold {
  height: 3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: var(--gold);
  padding: 0 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cocoa-deep);
  box-shadow: var(--shadow-lift);
  transition: filter 0.2s;
}

.btn-gold:hover {
  filter: brightness(1.05);
}

.btn-outline-cream {
  height: 3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(246,231,229,0.3);
  padding: 0 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cream);
  transition: background 0.2s;
}

.btn-outline-cream:hover {
  background: rgba(255,255,255,0.1);
}

/* Footer */
.footer {
  border-top: 1px solid rgba(240,217,226,0.7);
  background: rgba(252,221,242,0.4);
}

.footer__grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  padding: 3.5rem 1rem;
}

.footer__logo img {
  height: 3rem;
  width: auto;
}

.footer__desc {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}

.footer__gstin {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.footer__gstin span {
  font-weight: 500;
  color: var(--foreground);
}

.footer__heading {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(133,52,83,0.7);
}

.footer__contact {
  margin-top: 1rem;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer__contact svg {
  margin-top: 0.125rem;
  width: 1rem;
  height: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}

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

.footer__links {
  margin-top: 1rem;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

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

.footer__map {
  margin-top: 1rem;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.footer__map iframe {
  display: block;
  width: 100%;
  height: 180px;
}

.footer__bottom {
  border-top: 1px solid rgba(240,217,226,0.7);
}

.footer__bottom-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 1.25rem 1rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Floating WhatsApp */
.whatsapp-fab {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 50;
  display: inline-flex;
  width: 3.5rem;
  height: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25D366;
  color: white;
  box-shadow: var(--shadow-lift);
  transition: transform 0.2s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-fab:hover {
  transform: scale(1.05);
}

.whatsapp-fab svg {
  width: 1.5rem;
  height: 1.5rem;
}
