/* ============================================
   ASANA CRYSTAL - Global Stylesheet
   Herbal Wellness for Women's Hormonal Transitions
   ============================================ */

/* === CSS Custom Properties === */
:root {
  /* Primary Purple Palette */
  --primary: #673de6;
  --primary-dark: #5025d1;
  --primary-light: #ebe4ff;
  --primary-charts: #B39EF3;

  /* Deep Purple / Meteorite */
  --meteorite-dark: #2f1c6a;
  --meteorite-darker: #1F1346;
  --meteorite: #8c85ff;
  --meteorite-light: #d5dfff;

  /* Neutrals */
  --dark: #1d1e20;
  --gray-dark: #36344d;
  --gray: #727586;
  --gray-light: #f2f3f6;
  --gray-border: #dadce0;
  --neutral-200: #D8DAE0;
  --white: #ffffff;

  /* Accent */
  --danger: #fc5185;
  --success: #00b090;
  --warning: #ffcd35;
  --azure: #357df9;

  /* Semantic */
  --bg-body: #faf9fe;
  --bg-section-alt: #f5f0ff;
  --text-primary: #1d1e20;
  --text-secondary: #727586;
  --text-inverse: #ffffff;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 80px;
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-lg: 20px;

  /* Transitions */
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.3;
  color: var(--meteorite-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); }

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* === Utility Classes === */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--space-2xl) 0;
}

.section--alt {
  background: var(--bg-section-alt);
}

.section--dark {
  background: var(--meteorite-darker);
  color: var(--white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--dark p {
  color: var(--meteorite-light);
}

.text-center {
  text-align: center;
}

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

/* === Skip Link (Accessibility) === */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  z-index: 9999;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
}

/* === Navigation === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-border);
  z-index: 1000;
  transition: var(--transition);
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(103, 61, 230, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--meteorite-dark);
}

.nav__logo img {
  height: 45px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  color: var(--gray-dark);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.25rem 0;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__links a.active {
  color: var(--primary);
}

.nav__cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
}

.nav__cta::after {
  display: none !important;
}

.nav__cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
  border-radius: 2px;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  line-height: 1.4;
}

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

.btn--primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(103, 61, 230, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn--white:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn--sm {
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
}

/* === Hero Section === */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
  background: linear-gradient(135deg, var(--meteorite-darker) 0%, var(--meteorite-dark) 50%, var(--primary-dark) 100%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(139,133,255,0.05)" d="M0,160L48,170.7C96,181,192,203,288,186.7C384,171,480,117,576,117.3C672,117,768,171,864,197.3C960,224,1056,224,1152,202.7C1248,181,1344,139,1392,117.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom center;
  background-size: cover;
  opacity: 0.6;
}

/* === Ken Burns Slideshow === */
.kenburns {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.kenburns__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.5s ease-in-out;
  will-change: transform, opacity;
}

.kenburns__slide--active {
  opacity: 1;
}

/* Alternate zoom directions for variety */
@keyframes kenburns-zoom-in {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.15) translate(-1%, -1%); }
}

@keyframes kenburns-zoom-out {
  0%   { transform: scale(1.15) translate(-1%, 1%); }
  100% { transform: scale(1) translate(0, 0); }
}

@keyframes kenburns-pan-right {
  0%   { transform: scale(1.05) translate(-2%, 0); }
  100% { transform: scale(1.12) translate(1%, -1%); }
}

@keyframes kenburns-pan-left {
  0%   { transform: scale(1.08) translate(2%, -1%); }
  100% { transform: scale(1.02) translate(-1%, 1%); }
}

.kenburns__slide:nth-child(1).kenburns__slide--active {
  animation: kenburns-zoom-in 8s ease-in-out forwards;
}
.kenburns__slide:nth-child(2).kenburns__slide--active {
  animation: kenburns-pan-right 8s ease-in-out forwards;
}
.kenburns__slide:nth-child(3).kenburns__slide--active {
  animation: kenburns-zoom-out 8s ease-in-out forwards;
}
.kenburns__slide:nth-child(4).kenburns__slide--active {
  animation: kenburns-pan-left 8s ease-in-out forwards;
}

.kenburns__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(31, 19, 70, 0.75) 0%,
    rgba(47, 28, 106, 0.65) 50%,
    rgba(80, 37, 209, 0.6) 100%
  );
  z-index: 1;
}

.hero--kenburns .hero__content {
  z-index: 2;
  position: relative;
}

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

.hero__badge {
  display: inline-block;
  background: rgba(139, 133, 255, 0.2);
  color: var(--meteorite-light);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
  letter-spacing: 0.5px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--meteorite-light) !important;
  margin-bottom: var(--space-lg);
  line-height: 1.8;
  max-width: 580px;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__image {
  position: absolute;
  right: -5%;
  bottom: 0;
  width: 45%;
  max-width: 600px;
  opacity: 0.15;
  z-index: 1;
}

/* === Feature Cards === */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: var(--space-lg);
}

.feature-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  border: 1px solid var(--gray-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--meteorite));
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(103, 61, 230, 0.1);
  border-color: var(--primary-light);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  font-size: 1.5rem;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === About / Story Section === */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.story__image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(47, 28, 106, 0.15);
}

.story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.story__content h2 {
  margin-bottom: var(--space-md);
}

.story__content .subtitle {
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: var(--space-sm);
  font-family: var(--font-heading);
  font-style: italic;
}

/* === Product Section === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--gray-border);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(103, 61, 230, 0.12);
}

.product-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--primary-light);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.product-card__body {
  padding: 1.5rem;
}

.product-card__tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.product-card__body h3 {
  margin-bottom: 0.5rem;
}

.product-card__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0.75rem 0;
}

/* === Testimonial === */
.testimonial {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-lg) 0;
}

.testimonial__quote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-style: italic;
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: var(--space-md);
  position: relative;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.testimonial__quote::before {
  content: '\201C';
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.4);
  position: absolute;
  top: -1.5rem;
  left: -1rem;
  font-family: var(--font-heading);
  line-height: 1;
}

.testimonial__author {
  font-weight: 600;
  color: #ffffff;
}

.testimonial__role {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* === Newsletter / CTA Banner === */
.cta-banner {
  background: linear-gradient(135deg, var(--meteorite-dark) 0%, var(--primary-dark) 100%);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 133, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: var(--space-sm);
  position: relative;
}

.cta-banner p {
  color: var(--meteorite-light);
  margin-bottom: var(--space-md);
  position: relative;
}

.cta-form {
  display: flex;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.cta-form input {
  flex: 1;
  padding: 0.85rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition);
}

.cta-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.cta-form input:focus {
  border-color: var(--meteorite);
  background: rgba(255, 255, 255, 0.15);
}

/* === Blog Cards === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--gray-border);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(103, 61, 230, 0.1);
}

.blog-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-light), var(--meteorite-light));
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.blog-card__body {
  padding: 1.5rem;
}

.blog-card__meta {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.blog-card__body h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.blog-card__body h3 a {
  color: var(--meteorite-dark);
}

.blog-card__body h3 a:hover {
  color: var(--primary);
}

.blog-card__excerpt {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.blog-card__link {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-card__link:hover {
  gap: 0.6rem;
}

/* === Contact Form === */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: 2px solid var(--gray-border);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--white);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

/* === Footer === */
.footer {
  background: var(--meteorite-darker);
  color: var(--meteorite-light);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: var(--space-lg);
}

.footer__brand p {
  color: var(--meteorite-light);
  font-size: 0.95rem;
  margin-top: 1rem;
  max-width: 300px;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
}

.footer__links li {
  margin-bottom: 0.6rem;
}

.footer__links a {
  color: var(--meteorite-light);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--meteorite-light);
  transition: var(--transition);
  font-size: 1.1rem;
}

.footer__social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__bottom p {
  font-size: 0.85rem;
  color: var(--gray);
}

.footer__bottom a {
  color: var(--gray);
  font-size: 0.85rem;
}

.footer__bottom a:hover {
  color: var(--white);
}

/* === FDA Disclaimer === */
.disclaimer {
  background: var(--gray-light);
  padding: var(--space-md);
  border-radius: var(--border-radius-sm);
  margin-top: var(--space-lg);
  border-left: 4px solid var(--warning);
}

.disclaimer p {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 0;
  line-height: 1.6;
}

/* === Breadcrumbs === */
.breadcrumbs {
  padding: calc(var(--nav-height) + 1.5rem) 0 0;
  font-size: 0.9rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  list-style: none;
}

.breadcrumbs li::after {
  content: '/';
  margin: 0 0.5rem;
  color: var(--gray);
}

.breadcrumbs li:last-child::after {
  display: none;
}

.breadcrumbs a {
  color: var(--text-secondary);
}

.breadcrumbs a:hover {
  color: var(--primary);
}

.breadcrumbs span[aria-current] {
  color: var(--primary);
  font-weight: 500;
}

/* === Page Header (inner pages) === */
.page-header {
  background: linear-gradient(135deg, var(--meteorite-darker) 0%, var(--primary-dark) 100%);
  padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-xl);
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.page-header p {
  color: var(--meteorite-light);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

/* === Section Headers === */
.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto var(--space-lg);
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1.05rem;
}

/* === Animations === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.animate-in:nth-child(2) { animation-delay: 0.15s; }
.animate-in:nth-child(3) { animation-delay: 0.3s; }
.animate-in:nth-child(4) { animation-delay: 0.45s; }

/* === Responsive === */
@media (max-width: 992px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .story {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .story__image {
    order: -1;
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    gap: 0;
    border-top: 1px solid var(--gray-border);
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links a {
    padding: 1rem 0;
    font-size: 1.1rem;
    width: 100%;
    border-bottom: 1px solid var(--gray-light);
  }

  .nav__links a::after {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .hero {
    min-height: 80vh;
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__subtitle {
    max-width: 100%;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__image {
    display: none;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

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

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

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

  .cta-form {
    flex-direction: column;
  }

  .cta-banner {
    padding: var(--space-lg) var(--space-md);
  }

  .section {
    padding: var(--space-xl) 0;
  }
}

@media (max-width: 480px) {
  .hero__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn--lg {
    padding: 0.85rem 2rem;
    font-size: 1rem;
  }
}

/* === Print Styles === */
@media print {
  .nav, .footer, .cta-banner, .btn {
    display: none;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
}
