/* ══════════════════════════════════════════════
   BIKANER SWEETS — Design System & Global Styles
   ══════════════════════════════════════════════ */

:root {
  --saffron: #D4722C;
  --saffron-light: #E8944D;
  --saffron-dark: #B55E1E;
  --deep-maroon: #6B1D2A;
  --maroon-light: #8A2E3C;
  --gold: #C9A84C;
  --gold-light: #DBBF6A;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --cream: #FDF6E3;
  --warm-white: #FEFCF7;
  --dark-brown: #2A1506;
  --rich-green: #2D5A27;
  --green-light: #3A7332;
  --red-badge: #C0392B;
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;
  --text-primary: #2A1506;
  --text-secondary: #5D4E37;
  --text-muted: #8B7D6B;
  --border-light: rgba(201, 168, 76, 0.2);
  --shadow-sm: 0 2px 8px rgba(42, 21, 6, 0.06);
  --shadow-md: 0 4px 20px rgba(42, 21, 6, 0.1);
  --shadow-lg: 0 8px 40px rgba(42, 21, 6, 0.14);
  --shadow-xl: 0 16px 60px rgba(42, 21, 6, 0.18);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--warm-white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.loading {
  overflow: hidden;
}

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

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section globals */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--saffron);
  padding: 6px 16px;
  border: 1.5px solid var(--saffron);
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--deep-maroon);
  line-height: 1.15;
  margin-bottom: 16px;
}

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

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: #fff;
  border-color: var(--saffron);
  box-shadow: 0 4px 16px rgba(212, 114, 44, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 114, 44, 0.4);
  background: linear-gradient(135deg, var(--saffron-light), var(--saffron));
}

.btn--outline {
  border-color: var(--gold);
  color: var(--deep-maroon);
  background: transparent;
}

.btn--outline:hover {
  background: var(--gold-dim);
  transform: translateY(-2px);
}

.btn--secondary {
  background: transparent;
  color: var(--saffron);
  border-color: var(--saffron);
  padding: 12px 24px;
}

.btn--secondary:hover {
  background: var(--saffron);
  color: #fff;
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
  border-color: var(--whatsapp);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn--whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.btn--large {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ══════════ SCROLL REVEAL ══════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal--right {
  opacity: 0;
  transform: translateX(40px);
}

.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.visible {
  opacity: 1;
  transform: translate(0);
}

/* ══════════ LOADING SCREEN ══════════ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: linear-gradient(135deg, var(--deep-maroon) 0%, #3D0F18 50%, #1A0A0E 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__scene {
  position: relative;
  width: 280px;
  height: 200px;
  perspective: 800px;
  margin-bottom: 40px;
}

.loader__sweet {
  position: absolute;
  animation: sweetFloat 3s ease-in-out infinite;
}

.loader__sweet--laddu {
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.loader__sweet--barfi {
  top: 50%;
  left: 15%;
  animation-delay: 0.4s;
}

.loader__sweet--jalebi {
  top: 50%;
  right: 15%;
  animation-delay: 0.8s;
}

.loader__sweet--gulab {
  top: 75%;
  left: 32%;
  animation-delay: 1.2s;
}

.loader__sweet--kaju {
  top: 75%;
  right: 32%;
  animation-delay: 1.6s;
}

.sweet-shape {
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 -2px 6px rgba(0, 0, 0, 0.2), inset 0 2px 6px rgba(255, 255, 255, 0.2);
}

.sweet-shape--laddu {
  width: 56px;
  height: 56px;
  background: radial-gradient(circle at 35% 35%, #F5C842, #D4A017, #B8860B);
  border-radius: 50%;
}

.sweet-shape--barfi {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #F5F0E1, #E8DFC8, #D4C5A9);
  border-radius: 6px;
  transform: rotate(15deg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(192, 192, 192, 0.6);
}

.sweet-shape--jalebi {
  width: 50px;
  height: 50px;
  background: none;
  border: 8px solid transparent;
  border-radius: 50%;
  border-top-color: #E8740C;
  border-right-color: #D4680A;
  border-bottom-color: #C05C08;
  box-shadow: 0 0 12px rgba(232, 116, 12, 0.4), inset 0 0 8px rgba(232, 116, 12, 0.3);
  animation: jalebSpin 2s linear infinite;
}

.sweet-shape--gulab {
  width: 40px;
  height: 40px;
  background: radial-gradient(circle at 40% 35%, #C0956E, #8B6914);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(192, 149, 110, 0.3);
}

.sweet-shape--kaju {
  width: 50px;
  height: 28px;
  background: linear-gradient(135deg, #FCF5E5, #F0E4C8, #E0D0A5);
  border-radius: 4px 20px 4px 20px;
  transform: rotate(-10deg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(192, 192, 192, 0.5);
}

@keyframes sweetFloat {

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

  50% {
    transform: translateY(-18px) rotate(5deg);
  }
}

@keyframes jalebSpin {
  to {
    transform: rotate(360deg);
  }
}

.loader__brand {
  text-align: center;
  position: relative;
}

.loader__mandala {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  opacity: 0.2;
  animation: mandalaSpin 8s linear infinite;
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes mandalaSpin {
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}

.loader__title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  text-shadow: 0 2px 20px rgba(201, 168, 76, 0.3);
}

.loader__tagline {
  font-size: 0.95rem;
  color: rgba(253, 246, 227, 0.6);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.loader__progress {
  width: 180px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin: 0 auto;
  overflow: hidden;
}

.loader__progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--saffron));
  border-radius: 3px;
  animation: loaderProgress 2s ease-in-out forwards;
}

@keyframes loaderProgress {
  0% {
    width: 0;
  }

  60% {
    width: 70%;
  }

  100% {
    width: 100%;
  }
}

/* ══════════ NAVBAR ══════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all var(--transition-base);
  height: var(--nav-height);
}

.navbar.scrolled {
  background: rgba(254, 252, 247, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 20px rgba(42, 21, 6, 0.08);
}

.navbar__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  z-index: 1001;
}

.navbar__logo-icon {
  font-size: 1.6rem;
}

.navbar__brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--deep-maroon);
  display: block;
  line-height: 1.15;
}

.navbar:not(.scrolled) .navbar__brand {
  color: var(--cream);
}

.navbar__brand-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 600;
  display: block;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.navbar:not(.scrolled) .navbar__link {
  color: rgba(253, 246, 227, 0.8);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--saffron);
  transition: width var(--transition-base);
}

.navbar__link:hover::after,
.navbar__link--active::after {
  width: 100%;
}

.navbar__link:hover {
  color: var(--saffron);
}

.navbar:not(.scrolled) .navbar__link:hover {
  color: var(--gold);
}

.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--saffron);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition-base);
  box-shadow: 0 2px 12px rgba(212, 114, 44, 0.3);
}

.navbar__cta:hover {
  background: var(--saffron-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212, 114, 44, 0.4);
}

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1001;
}

.navbar__burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--deep-maroon);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.navbar:not(.scrolled) .navbar__burger span {
  background: var(--cream);
}

.navbar__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__burger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.navbar__drawer {
  position: fixed;
  inset: 0;
  background: rgba(42, 21, 6, 0.6);
  backdrop-filter: blur(8px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.navbar__drawer.open {
  opacity: 1;
  visibility: visible;
}

.navbar__drawer-inner {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 300px;
  max-width: 85%;
  background: var(--warm-white);
  padding: 100px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  box-shadow: -8px 0 40px rgba(42, 21, 6, 0.2);
}

.navbar__drawer.open .navbar__drawer-inner {
  transform: translateX(0);
}

.navbar__drawer-link {
  font-size: 1.15rem;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.navbar__drawer-link:hover {
  background: var(--gold-dim);
  color: var(--saffron);
}

.navbar__drawer-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 20px;
  background: var(--saffron);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

/* ══════════ HERO ══════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(107, 29, 42, 0.97) 0%,
      rgba(107, 29, 42, 0.92) 30%,
      rgba(61, 15, 24, 0.95) 60%,
      rgba(26, 10, 14, 0.98) 100%);
}

.hero__pattern {
  position: absolute;
  z-index: 1;
  width: 300px;
  height: 300px;
  border: 2px solid rgba(201, 168, 76, 0.12);
  border-radius: 50%;
}

.hero__pattern--left {
  top: 10%;
  left: -100px;
}

.hero__pattern--right {
  bottom: 10%;
  right: -100px;
}

.hero__pattern::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 50%;
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {

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

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.hero__title {
  margin-bottom: 24px;
}

.hero__title-top {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 400;
  color: rgba(253, 246, 227, 0.7);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero__title-main {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.05;
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold) 50%, var(--cream) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }

  100% {
    background-position: 0% center;
  }
}

.hero__title-accent {
  display: block;
  width: 80px;
  height: 3px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 3px;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(253, 246, 227, 0.65);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.hero__stat {
  text-align: center;
}

.hero__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(253, 246, 227, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(201, 168, 76, 0.2);
}

.hero__scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(253, 246, 227, 0.3);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201, 168, 76, 0.4), transparent);
  animation: scrollHint 2s ease-in-out infinite;
}

@keyframes scrollHint {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ══════════ ABOUT PREVIEW ══════════ */
.about-preview {
  padding: 100px 0;
  background: var(--warm-white);
  position: relative;
}

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

.about-preview__visual {
  position: relative;
}

.about-preview__pattern-frame {
  position: relative;
  padding: 20px;
}

.about-preview__image-stack {
  position: relative;
  height: 420px;
}

.about-preview__img {
  position: absolute;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.about-preview__img--1 {
  width: 280px;
  height: 340px;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, #8B4513, #A0522D, #CD853F);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Crect fill='%238B4513' width='200' height='200'/%3E%3Ccircle cx='100' cy='80' r='40' fill='%23D4A017' opacity='0.6'/%3E%3Ccircle cx='70' cy='120' r='25' fill='%23F5C842' opacity='0.5'/%3E%3Ccircle cx='130' cy='115' r='30' fill='%23DAA520' opacity='0.5'/%3E%3Ctext x='100' y='170' fill='%23FDF6E3' font-size='14' text-anchor='middle' font-family='serif'%3ESweets%3C/text%3E%3C/svg%3E");
  background-size: cover;
}

.about-preview__img--2 {
  width: 220px;
  height: 280px;
  bottom: 0;
  right: 0;
  background: linear-gradient(135deg, var(--deep-maroon), var(--maroon-light));
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Crect fill='%236B1D2A' width='200' height='200'/%3E%3Crect x='30' y='40' rx='5' width='60' height='40' fill='%23F5F0E1' opacity='0.6'/%3E%3Crect x='110' y='50' rx='5' width='60' height='35' fill='%23FCF5E5' opacity='0.5'/%3E%3Crect x='60' y='100' rx='5' width='70' height='45' fill='%23E8DFC8' opacity='0.5'/%3E%3Ctext x='100' y='170' fill='%23C9A84C' font-size='14' text-anchor='middle' font-family='serif'%3EBarfi%3C/text%3E%3C/svg%3E");
  background-size: cover;
}

.about-preview__corner {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid var(--gold);
}

.about-preview__corner--tl {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.about-preview__corner--br {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

.about-preview__experience {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: var(--saffron);
  color: #fff;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.about-preview__exp-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.about-preview__exp-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

.about-preview__content {}

.about-preview__text {
  font-size: 1.02rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.75;
}

.about-preview__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 32px;
}

.about-preview__feature {
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-preview__feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--gold-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.about-preview__feature strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.about-preview__feature span {
  font-size: 0.82rem;
  color: var(--text-muted);
}