/* ============================================================
   AMOHAM EXPORTS — MAIN CSS
   Premium Light Lavender Theme
   ============================================================ */

:root {
  /* ── Core Lavender Palette ── */
  --clr-lavender-900:  #2D1F6E;   /* deepest – headings on light  */
  --clr-lavender-800:  #3D2A8A;
  --clr-lavender-700:  #5343C0;   /* primary brand violet         */
  --clr-lavender-600:  #6D5FD5;   /* interactive / buttons        */
  --clr-lavender-500:  #8B7EE8;   /* hover / active               */
  --clr-lavender-400:  #A99DF0;   /* borders light                */
  --clr-lavender-300:  #C4BBF7;   /* decorative                   */
  --clr-lavender-200:  #DDD7FB;   /* soft border                  */
  --clr-lavender-100:  #EDE9FF;   /* background tint              */
  --clr-lavender-50:   #F5F2FF;   /* page sections                */
  --clr-lavender-25:   #FAF9FF;   /* body/hero                    */

  /* ── Accent – warm mauve ── */
  --clr-mauve:         #C084F5;
  --clr-mauve-light:   #E9D5FF;
  --clr-mauve-pale:    #F5EEFF;

  /* ── Aliases for components ── */
  --clr-primary:       var(--clr-lavender-600);
  --clr-primary-dark:  var(--clr-lavender-700);
  --clr-accent:        var(--clr-mauve);

  /* ── Semantic ── */
  --clr-bg:            #FAF9FF;
  --clr-surface:       #FFFFFF;
  --clr-surface-2:     #F5F2FF;
  --clr-surface-3:     #EDE9FF;
  --clr-white:         #FFFFFF;
  --clr-text:          #18113C;   /* Deep luxury purple-black (extremely readable) */
  --clr-text-muted:    #483E6C;   /* Highly legible slate purple-gray for body text */
  --clr-text-light:    #7A709E;   /* Sophisticated light purple-gray for meta-info */
  --clr-border:        #E4DCFF;
  --clr-border-2:      #CFC7F8;
  --clr-success:       #059669;
  --clr-error:         #DC2626;

  /* ── Gold alias (premium gold text & accents) ── */
  --clr-gold:          #A38128;   /* Luxurious deep gold (perfectly readable on light backgrounds) */
  --clr-gold-light:    #C5A03E;   /* Rich bright gold for hovers & accents */
  --clr-gold-pale:     #FAF5E6;   /* Extremely soft gold/champagne tint for section highlights */
  --clr-navy:          var(--clr-lavender-900);
  --clr-navy-pale:     var(--clr-lavender-100);
  --clr-navy-ultra:    var(--clr-lavender-50);
  --clr-purple:        var(--clr-lavender-600);
  --clr-purple-deep:   var(--clr-lavender-900);
  --clr-purple-light:  var(--clr-lavender-500);
  --clr-lavender:      var(--clr-lavender-300);
  --clr-lavender-pale: var(--clr-lavender-100);
  --clr-lavender-light:var(--clr-lavender-200);
  --clr-lavender-ultra:var(--clr-lavender-50);

  /* ── Gradients ── */
  --grad-hero:    linear-gradient(145deg, #F5F2FF 0%, #EDE9FF 40%, #E0D9FB 75%, #D9D1F8 100%);
  --grad-primary: linear-gradient(135deg, #5343C0 0%, #6D5FD5 50%, #8B7EE8 100%);
  --grad-mauve:   linear-gradient(135deg, #7C3AED 0%, #C084F5 60%, #E879F9 100%);
  --grad-accent:  var(--grad-primary);
  --grad-card:    linear-gradient(145deg, #FFFFFF 0%, #FAF9FF 100%);
  --grad-hero-dark: linear-gradient(145deg, #2D1F6E 0%, #3D2A8A 45%, #5343C0 100%);

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

  /* ── Type Scale ── */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;
  --text-7xl:  4.5rem;

  /* ── Spacing ── */
  --space-1:  0.25rem;  --space-2:  0.5rem;   --space-3:  0.75rem;
  --space-4:  1rem;     --space-5:  1.25rem;  --space-6:  1.5rem;
  --space-8:  2rem;     --space-10: 2.5rem;   --space-12: 3rem;
  --space-16: 4rem;     --space-20: 5rem;     --space-24: 6rem;
  --space-32: 8rem;

  /* ── Borders ── */
  --radius-sm:   4px;     --radius-md:   8px;
  --radius-lg:   16px;    --radius-xl:   24px;
  --radius-2xl:  32px;    --radius-full: 9999px;

  /* ── Shadows — lavender-tinted ── */
  --shadow-sm:      0 1px 4px rgba(83,67,192,0.07), 0 1px 2px rgba(83,67,192,0.05);
  --shadow-md:      0 4px 16px rgba(83,67,192,0.10), 0 2px 6px rgba(83,67,192,0.06);
  --shadow-lg:      0 10px 40px rgba(83,67,192,0.13), 0 4px 12px rgba(83,67,192,0.08);
  --shadow-xl:      0 24px 64px rgba(45,31,110,0.14);
  --shadow-purple:  0 4px 20px rgba(109,95,213,0.30);
  --shadow-float:   0 8px 32px rgba(83,67,192,0.14), 0 2px 8px rgba(83,67,192,0.08);
  --shadow-card:    0 2px 12px rgba(83,67,192,0.07);
  --shadow-navy:    var(--shadow-purple);
  --shadow-red:     var(--shadow-purple);

  /* ── Transitions ── */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 150ms;
  --duration-base: 280ms;
  --duration-slow: 500ms;

  /* ── Layout ── */
  --container-max: 1280px;
  --container-pad: clamp(1rem, 5vw, 2rem);
  --header-h:      72px;
  --header-offset: 96px;
}

/* ── 2. Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.65;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color var(--duration-fast) ease; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
ul { list-style: none; }

/* ── 3. Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.18;
  color: var(--clr-text);
}
h1 { font-size: clamp(2rem, 5vw, var(--text-6xl)); }
h2 { font-size: clamp(1.75rem, 4vw, var(--text-5xl)); }
h3 { font-size: clamp(1.4rem, 3vw, var(--text-3xl)); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }
p  { color: var(--clr-text-muted); line-height: 1.82; }

/* ── 4. Layout ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section { padding-block: var(--space-24); }

.section--dark {
  background: var(--grad-hero-dark);
  color: var(--clr-white);
}
.section--dark h1, .section--dark h2,
.section--dark h3, .section--dark h4 { color: var(--clr-white); }
.section--dark p { color: rgba(255,255,255,0.75); }

.section--surface   { background: var(--clr-surface-2); }
.section--lavender  { background: var(--clr-lavender-100); }

.grid { display: grid; gap: var(--space-6); }
.grid--2 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 480px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr)); }

/* ── 5. Section Headers ── */
.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
}
.section-header__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-lavender-700);
  background: linear-gradient(135deg, var(--clr-lavender-700), var(--clr-mauve));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-3);
}
.section-header__title { margin-bottom: var(--space-4); }
.section-header__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.section-header__divider::before,
.section-header__divider::after {
  content: '';
  height: 2px;
  width: 60px;
}
.section-header__divider::before {
  background: linear-gradient(90deg, transparent, var(--clr-lavender-400));
}
.section-header__divider::after {
  background: linear-gradient(90deg, var(--clr-lavender-400), transparent);
}
.section-header__divider span { color: var(--clr-lavender-500); font-size: 1.1rem; }

/* ── 6. Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.75em 1.75em;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--duration-base) var(--ease-out);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn:active { transform: translateY(1px) scale(0.99); }

/* Primary – medium lavender */
.btn--primary {
  background: var(--grad-primary);
  color: var(--clr-white);
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(83,67,192,0.32);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(83,67,192,0.44);
}

/* Outline lavender */
.btn--outline {
  background: transparent;
  color: var(--clr-lavender-700);
  border-color: var(--clr-lavender-400);
}
.btn--outline:hover {
  background: var(--clr-lavender-100);
  border-color: var(--clr-lavender-600);
  color: var(--clr-lavender-800);
}

/* White outline (on dark bg) */
.btn--outline-white {
  background: transparent;
  color: var(--clr-white);
  border-color: rgba(255,255,255,0.45);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--clr-white);
}

/* Soft lavender (card footer) */
.btn--gold-outline {
  background: transparent;
  color: var(--clr-lavender-700);
  border-color: var(--clr-lavender-200);
}
.btn--gold-outline:hover {
  background: var(--clr-lavender-50);
  border-color: var(--clr-lavender-400);
}

/* Inquiry — gradient with glow */
.btn--inquiry {
  background: var(--grad-primary);
  color: var(--clr-white);
  border: none;
  box-shadow: 0 4px 18px rgba(83,67,192,0.32);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.btn--inquiry:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(83,67,192,0.48);
}

.btn--lg { padding: 1em 2.5em; font-size: var(--text-base); }
.btn--sm { padding: 0.5em 1.25em; font-size: var(--text-xs); }

/* ── 7. Floating Navbar — Frosted light lavender glass ── */
.top-bar { display: none; }

/* Skip to content (accessibility) */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-4);
  background: var(--clr-lavender-900);
  color: var(--clr-white);
  padding: 0.6em 1.2em;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 700;
  z-index: 9999;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

.site-header {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 1240px;
  z-index: 1000;
  /* frosted light glass */
  background: rgba(255, 253, 255, 0.78);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid rgba(196, 187, 247, 0.45);
  border-radius: var(--radius-2xl);
  height: var(--header-h);
  transition: all var(--duration-base) var(--ease-out);
  box-shadow: 0 6px 28px rgba(83,67,192,0.10), 0 1px 4px rgba(83,67,192,0.06);
}
.site-header.scrolled {
  background: rgba(255, 253, 255, 0.96);
  box-shadow: 0 12px 40px rgba(83,67,192,0.13), 0 0 0 1px rgba(196,187,247,0.60);
  top: 0.75rem;
}

body { padding-top: var(--header-offset); }
.hero { margin-top: calc(-1 * var(--header-offset)); padding-top: var(--header-offset); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-6);
  padding-inline: var(--space-6);
}

.header__logo { flex-shrink: 0; }
.logo-img { height: 44px; width: auto; object-fit: contain; }

.logo-text {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  line-height: 1;
}
.logo-text__icon {
  width: 38px; height: 38px;
  border-radius: var(--radius-md);
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(83,67,192,0.35);
}
.logo-text__words { display: flex; flex-direction: column; }
.logo-text__main {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-text);
  letter-spacing: 0.06em;
  line-height: 1;
}
.logo-text__sub {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--clr-lavender-700);
  text-transform: uppercase;
  line-height: 1;
  margin-top: 2px;
}

.main-nav { flex: 1; }
.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
}
.nav-list__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--clr-text-muted);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  transition: all var(--duration-fast) ease;
}
.nav-list__link:hover {
  color: var(--clr-lavender-800);
  background: var(--clr-lavender-100);
}
.nav-list__link.active {
  color: var(--clr-lavender-800);
  background: var(--clr-lavender-100);
  font-weight: 600;
  border: 1px solid var(--clr-lavender-200);
}

.header__cta { flex-shrink: 0; }

/* ── 8. Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  z-index: 999;
  position: relative;
}

.mobile-nav__cta { display: none; }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-lavender-700);
  border-radius: var(--radius-full);
  transition: all var(--duration-base) var(--ease-out);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── 9. Hero — soft lavender light ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--grad-hero);
  overflow: hidden;
}

/* Radial light blobs */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 50% at 15% 30%, rgba(196,187,247,0.50) 0%, transparent 65%),
    radial-gradient(ellipse 45% 40% at 85% 70%, rgba(192,132,245,0.25) 0%, transparent 65%);
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    radial-gradient(circle at 20% 18%, rgba(83,67,192,0.12) 1px, transparent 1px),
    radial-gradient(circle at 80% 82%, rgba(83,67,192,0.08) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  animation: blob-float 10s ease-in-out infinite;
  z-index: 0;
}
.hero__blob--1 {
  width: 560px; height: 560px;
  background: rgba(169,157,240,0.32);
  top: -150px; right: -80px;
}
.hero__blob--2 {
  width: 380px; height: 380px;
  background: rgba(192,132,245,0.22);
  bottom: -90px; left: -60px;
  animation-delay: -5s;
}
.hero__blob--3 {
  width: 250px; height: 250px;
  background: rgba(83,67,192,0.14);
  top: 55%; left: 46%;
  animation-delay: -8s;
}

@keyframes blob-float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(22px,-22px) scale(1.04); }
  66%       { transform: translate(-16px,16px) scale(0.97); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-lavender-700);
  margin-bottom: var(--space-6);
}
.hero__eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--clr-lavender-600), var(--clr-mauve));
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, var(--text-7xl));
  font-weight: 800;
  color: var(--clr-text);
  line-height: 1.08;
  margin-bottom: var(--space-6);
}
.hero__title em {
  font-style: italic;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, var(--text-xl));
  color: var(--clr-text-muted);
  margin-bottom: var(--space-10);
  line-height: 1.80;
  max-width: 580px;
}

.hero__actions { display: flex; gap: var(--space-4); flex-wrap: wrap; }

.hero__stats {
  display: flex;
  gap: var(--space-10);
  margin-top: var(--space-16);
  padding-top: var(--space-10);
  border-top: 1px solid rgba(169,157,240,0.40);
}

.hero__stat { text-align: center; }
.hero__stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.hero__stat-label {
  font-size: var(--text-xs);
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: var(--space-1);
}

/* ── 10. Benefits Bar ── */
.benefits-bar {
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
  padding-block: var(--space-8);
}
.benefits-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  transition: background var(--duration-base) ease;
}
.benefit-item:hover { background: var(--clr-lavender-50); }

.benefit-item__icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-lg);
  background: var(--clr-lavender-100);
  border: 1px solid var(--clr-lavender-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
  color: var(--clr-lavender-700);
  transition: all var(--duration-base) ease;
}
.benefit-item:hover .benefit-item__icon {
  background: var(--grad-primary);
  color: var(--clr-white);
  border-color: transparent;
  box-shadow: var(--shadow-purple);
  transform: scale(1.06);
}
.benefit-item__title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 2px;
}
.benefit-item__desc {
  font-size: var(--text-xs);
  color: var(--clr-text-muted);
  line-height: 1.5;
}

/* ── 11. Product Cards ── */
.product-card {
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--clr-border);
  transition: all var(--duration-base) var(--ease-out);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-lavender-300);
}

.product-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--clr-lavender-50);
}
.product-card__image {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}
.product-card:hover .product-card__image { transform: scale(1.06); }

.product-card__badge {
  position: absolute;
  top: var(--space-3); left: var(--space-3);
  background: var(--grad-primary);
  color: var(--clr-white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25em 0.75em;
  border-radius: var(--radius-full);
}

.product-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,31,110,0.55) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--duration-base) ease;
  display: flex;
  align-items: flex-end;
  padding: var(--space-4);
}
.product-card:hover .product-card__overlay { opacity: 1; }

.product-card__quick-view {
  width: 100%;
  padding: 0.6em;
  background: rgba(255,255,255,0.95);
  color: var(--clr-lavender-900);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: var(--text-xs);
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card__body {
  padding: var(--space-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card__category {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--clr-lavender-600);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-2);
}
.product-card__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--clr-text);
  margin-bottom: var(--space-2);
  line-height: 1.3;
  flex: 1;
}
.product-card__price {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--clr-lavender-700);
}
.product-card__footer {
  padding: var(--space-4) var(--space-5);
  border-top: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--clr-lavender-50);
}

/* ── 12. Blog Cards ── */
.blog-card {
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  transition: all var(--duration-base) var(--ease-out);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-lavender-300);
}

.blog-card__image-wrap {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--clr-lavender-50);
}
.blog-card__image { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration-slow) ease; }
.blog-card:hover .blog-card__image { transform: scale(1.05); }

.blog-card__body { padding: var(--space-6); flex: 1; display: flex; flex-direction: column; }

.blog-card__meta { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-3); }
.blog-card__date { font-size: var(--text-xs); color: var(--clr-text-muted); display: flex; align-items: center; gap: var(--space-1); }
.blog-card__author { font-size: var(--text-xs); color: var(--clr-lavender-600); font-weight: 600; }

.blog-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--clr-text);
  margin-bottom: var(--space-3);
  line-height: 1.4;
  flex: 1;
  transition: color var(--duration-fast) ease;
}
.blog-card:hover .blog-card__title { color: var(--clr-lavender-700); }

.blog-card__excerpt { font-size: var(--text-sm); color: var(--clr-text-muted); line-height: 1.7; margin-bottom: var(--space-5); }

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--clr-lavender-700);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.blog-card__link i { transition: transform var(--duration-fast) ease; }
.blog-card:hover .blog-card__link i { transform: translateX(4px); }

/* ── 13. Page Hero ── */
.page-hero {
  background: var(--grad-hero-dark);
  padding: var(--space-20) 0 var(--space-16);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 50% 60% at 20% 40%, rgba(255,255,255,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 60%, rgba(192,132,245,0.25) 0%, transparent 60%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--clr-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero__content { position: relative; z-index: 2; text-align: center; }
.page-hero__eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--clr-lavender-200);
  margin-bottom: var(--space-4);
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, var(--text-6xl));
  color: var(--clr-white);
  margin-bottom: var(--space-4);
}
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  margin-top: var(--space-4);
}
.page-hero__breadcrumb a { color: var(--clr-lavender-200); }
.page-hero__breadcrumb a:hover { color: var(--clr-white); }
.page-hero__breadcrumb span { color: rgba(255,255,255,0.4); }

/* ── 14. Category Pills ── */
.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-bottom: var(--space-12);
}
.category-pill {
  padding: 0.5em 1.5em;
  border-radius: var(--radius-full);
  border: 2px solid var(--clr-border);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration-fast) ease;
  background: var(--clr-white);
  color: var(--clr-text-muted);
  user-select: none;
}
.category-pill:hover {
  border-color: var(--clr-lavender-400);
  color: var(--clr-lavender-800);
  background: var(--clr-lavender-50);
}
.category-pill.active {
  background: var(--grad-primary);
  border-color: transparent;
  color: var(--clr-white);
  box-shadow: var(--shadow-purple);
}

/* ── 15. Footer ── */
.site-footer {
  background: var(--clr-lavender-900);
  color: var(--clr-white);
  position: relative;
}
.footer__wave { margin-bottom: -4px; line-height: 0; overflow: hidden; }
.footer__wave svg { width: 100%; height: 60px; display: block; }
.footer__body { padding: var(--space-16) 0 var(--space-10); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: var(--space-10);
}
.footer__col-title {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-lavender-300);
  margin-bottom: var(--space-5);
}

.footer__logo { display: inline-block; margin-bottom: var(--space-4); }
.footer-logo-text { display: flex; align-items: center; gap: var(--space-3); line-height: 1; }
.footer-logo-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: white; flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(83,67,192,0.45);
}
.footer-logo-text__words { display: flex; flex-direction: column; }
.footer-logo-text__main {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  color: var(--clr-white);
  letter-spacing: 0.08em; line-height: 1;
}
.footer-logo-text__sub {
  font-family: var(--font-body);
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--clr-lavender-300);
  text-transform: uppercase; line-height: 1; margin-top: 2px;
}
.footer-logo-img { height: 56px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.footer__tagline { font-size: var(--text-sm); color: rgba(255,255,255,0.50); line-height: 1.7; margin-bottom: var(--space-6); }

.footer__social-icons { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.footer__social-link {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(196,187,247,0.20);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.60);
  font-size: var(--text-base);
  transition: all var(--duration-base) var(--ease-out);
}
.footer__social-link:hover {
  border-color: transparent;
  color: var(--clr-white);
  transform: translateY(-3px);
}
.footer__social-link--instagram:hover { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.footer__social-link--twitter:hover   { background: #000; }
.footer__social-link--facebook:hover  { background: #1877F2; }
.footer__social-link--linkedin:hover  { background: #0A66C2; }
.footer__social-link--reddit:hover    { background: #FF4500; }

.footer__links li { margin-bottom: var(--space-3); }
.footer__links a {
  color: rgba(255,255,255,0.52);
  font-size: var(--text-sm);
  transition: all var(--duration-fast) ease;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.footer__links a::before { content: '›'; color: var(--clr-lavender-300); font-size: 1.1rem; line-height: 1; }
.footer__links a:hover { color: var(--clr-white); padding-left: var(--space-2); }

.footer__contact-list li {
  display: flex; align-items: flex-start;
  gap: var(--space-3); margin-bottom: var(--space-4);
  color: rgba(255,255,255,0.52);
  font-size: var(--text-sm); line-height: 1.6;
}
.footer__contact-list i { color: var(--clr-lavender-300); font-size: var(--text-base); margin-top: 2px; flex-shrink: 0; }
.footer__contact-list a { color: rgba(255,255,255,0.52); transition: color var(--duration-fast) ease; }
.footer__contact-list a:hover { color: var(--clr-lavender-300); }

.footer__bottom { border-top: 1px solid rgba(196,187,247,0.12); padding-block: var(--space-6); }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); flex-wrap: wrap; }
.footer__bottom p { font-size: var(--text-xs); color: rgba(255,255,255,0.36); }
.footer__bottom-links { display: flex; gap: var(--space-6); }
.footer__bottom-links a { font-size: var(--text-xs); color: rgba(255,255,255,0.36); transition: color var(--duration-fast) ease; }
.footer__bottom-links a:hover { color: var(--clr-lavender-300); }

/* ── 16. Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal--left  { transform: translateX(-36px); }
.reveal--right { transform: translateX(36px); }
.reveal--left.visible, .reveal--right.visible { transform: translateX(0); }

/* ── 17. Forms ── */
.form-group { margin-bottom: var(--space-5); }
.form-label { display: block; font-size: var(--text-sm); font-weight: 600; color: var(--clr-text); margin-bottom: var(--space-2); }
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75em 1em;
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-md);
  background: var(--clr-white);
  color: var(--clr-text);
  font-size: var(--text-base);
  transition: border-color var(--duration-fast) ease, box-shadow var(--duration-fast) ease;
  outline: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--clr-lavender-500);
  box-shadow: 0 0 0 3px rgba(109,95,213,0.14);
}
.form-textarea { resize: vertical; min-height: 140px; }

/* ── 18. Alerts ── */
.alert {
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}
.alert--success { background: #F0FDF4; color: #166534; border-left: 4px solid var(--clr-success); }
.alert--error   { background: #FFF5F5; color: #991B1B; border-left: 4px solid var(--clr-error); }

/* ── 19. Inquiry Modal ── */
.inquiry-overlay {
  position: fixed; inset: 0;
  background: rgba(45,31,110,0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-4);
  opacity: 0; visibility: hidden;
  transition: opacity var(--duration-base) ease, visibility var(--duration-base) ease;
}
.inquiry-overlay.open { opacity: 1; visibility: visible; }

.inquiry-modal {
  background: var(--clr-white);
  border-radius: var(--radius-2xl);
  width: 100%; max-width: 620px; max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 100px rgba(45,31,110,0.22);
  transform: scale(0.92) translateY(20px);
  transition: transform var(--duration-base) var(--ease-spring);
  position: relative;
  border: 1px solid var(--clr-border);
}
.inquiry-overlay.open .inquiry-modal { transform: scale(1) translateY(0); }

.inquiry-modal__header {
  padding: var(--space-8) var(--space-8) var(--space-6);
  background: var(--grad-hero);
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--clr-border);
}
.inquiry-modal__header::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 22% 30%, rgba(83,67,192,0.10) 1px, transparent 1px);
  background-size: 36px 36px;
}

.inquiry-modal__close {
  position: absolute; top: var(--space-4); right: var(--space-4);
  width: 36px; height: 36px;
  border-radius: var(--radius-full);
  border: 1px solid var(--clr-border);
  background: rgba(255,255,255,0.85);
  color: var(--clr-text-muted);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: var(--text-sm);
  transition: all var(--duration-fast) ease;
  z-index: 2;
}
.inquiry-modal__close:hover { background: var(--clr-white); color: var(--clr-text); }

.inquiry-modal__header-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-xl);
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff;
  margin-bottom: var(--space-4);
  position: relative; z-index: 2;
  box-shadow: var(--shadow-purple);
}
.inquiry-modal__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--clr-text);
  margin-bottom: var(--space-2);
  position: relative; z-index: 2;
}
.inquiry-modal__subtitle {
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  position: relative; z-index: 2;
}
.inquiry-modal__body { padding: var(--space-8); }

/* ── 20. Scroll To Top ── */
.scroll-to-top {
  position: fixed; bottom: var(--space-6); right: var(--space-6);
  width: 48px; height: 48px;
  background: var(--grad-primary);
  color: #fff; border: none;
  border-radius: var(--radius-full);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: var(--text-base);
  box-shadow: var(--shadow-purple);
  opacity: 0; transform: translateY(16px);
  transition: all var(--duration-base) ease;
  z-index: 997;
}
.scroll-to-top.visible { opacity: 1; transform: translateY(0); }
.scroll-to-top:hover { box-shadow: 0 8px 24px rgba(83,67,192,0.45); transform: translateY(-3px); }

/* ── 21. Responsive ── */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .benefits-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .header__cta { display: none; }
  .site-header { width: calc(100% - 2rem); }
}

@media (max-width: 768px) {
  :root { --header-h: 62px; --header-offset: 82px; }
  .site-header { top: 0.75rem; width: calc(100% - 1.5rem); border-radius: var(--radius-xl); }
  .hamburger { display: flex; }
  .header__cta { display: none !important; }
  .mobile-nav__cta { display: block !important; }

  .main-nav {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(250, 249, 255, 0.98);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    padding: var(--space-8); padding-top: 5rem;
    transform: translateX(100%);
    transition: transform var(--duration-base) var(--ease-out);
    z-index: 998; overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list__link {
    color: var(--clr-text);
    padding: var(--space-5) var(--space-3);
    font-size: var(--text-xl);
    border-bottom: 1px solid var(--clr-border);
    border-radius: 0;
  }
  .nav-list__link:hover, .nav-list__link.active {
    background: var(--clr-lavender-100);
    border-radius: var(--radius-md);
    color: var(--clr-lavender-800);
  }

  .hero__stats { gap: var(--space-6); }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .inquiry-modal { max-width: 100%; border-radius: var(--radius-xl); }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .benefits-bar__grid { grid-template-columns: 1fr; }
  .inquiry-modal__body { padding: var(--space-5); }
  .inquiry-modal__header { padding: var(--space-6); }
}
