/* ==========================================
   NORA LANE — Brand Website Styles
   ========================================== */

/* ---------- CSS Variables ---------- */
:root {
  --cream: #FFF8F3;
  --rose: #F4C2C2;
  --rose-dark: #E8A5A5;
  --rose-light: #FBE4E4;
  --gold: #D4A853;
  --gold-light: #E8C97A;
  --blue: #A8D4E6;
  --blue-light: #D0EAF3;
  --white: #FFFFFF;
  --text-dark: #2D2A26;
  --text-body: #5A5550;
  --text-light: #8A8580;
  --shadow-sm: 0 2px 8px rgba(45,42,38,0.06);
  --shadow-md: 0 8px 30px rgba(45,42,38,0.08);
  --shadow-lg: 0 20px 60px rgba(45,42,38,0.10);
  --shadow-card: 0 4px 20px rgba(45,42,38,0.07);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text-dark);
  line-height: 1.2;
}

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

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

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

/* ---------- Utility ---------- */
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-dark);
}

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

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(212,168,83,0.35);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212,168,83,0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
}

.btn-secondary:hover {
  background: var(--text-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---------- Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 248, 243, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,168,83,0.1);
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 248, 243, 0.95);
  box-shadow: var(--shadow-sm);
}

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

.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  position: relative;
  padding: 4px 0;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--text-dark);
}

.nav-cta {
  background: var(--gold);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212,168,83,0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

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

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

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

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

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  padding: 120px 24px 60px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--rose-light) 50%, var(--blue-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,168,83,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.hero-title em {
  font-style: italic;
  color: var(--rose-dark);
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
}

/* Trust Bar */
.trust-bar {
  max-width: 700px;
  margin: 60px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: var(--white);
  padding: 28px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

.trust-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

.trust-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(212,168,83,0.25);
}

/* ==========================================
   PAIN POINTS
   ========================================== */
.pain-points {
  padding: 100px 0;
  background: var(--white);
}

.pain-points-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.pain-points .section-title {
  margin-bottom: 48px;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
  margin-bottom: 40px;
}

.pain-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.pain-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.pain-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--rose-light);
  color: var(--rose-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-top: 2px;
}

.pain-item p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.pain-cta-text {
  font-size: 1.1rem;
  color: var(--text-dark);
}

/* ==========================================
   PRODUCTS
   ========================================== */
.products {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(212,168,83,0.1);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card-featured {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-md);
  transform: scale(1.04);
}

.product-card-featured:hover {
  transform: scale(1.04) translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.badge-popular {
  background: var(--rose);
  color: var(--text-dark);
}

.badge-value {
  background: var(--gold);
  color: var(--white);
}

.badge-premium {
  background: var(--text-dark);
  color: var(--white);
}

.badge-free {
  background: #7BC67E;
  color: var(--white);
}

.badge-coming {
  background: #A8C5DA;
  color: var(--white);
}

.btn-waitlist {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn-waitlist:hover {
  background: var(--gold);
  color: var(--white);
}

.product-icon {
  width: 60px;
  height: 60px;
  margin: 12px auto 20px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
}

.product-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-price {
  margin-bottom: 16px;
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.price-period {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-left: 4px;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.6;
}

.product-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  flex-grow: 1;
}

.product-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-features li i {
  color: var(--gold);
  font-size: 0.8rem;
}

.btn-card {
  width: 100%;
  justify-content: center;
  background: var(--cream);
  color: var(--text-dark);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(212,168,83,0.2);
}

.btn-card:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212,168,83,0.35);
}

.btn-card-featured {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(212,168,83,0.25);
}

.btn-card-featured:hover {
  background: var(--gold-light);
}

/* Testimonial */
.testimonial {
  max-width: 720px;
  margin: 0 auto;
}

.testimonial-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(244,194,194,0.3);
  box-shadow: var(--shadow-card);
}

.testimonial-icon {
  color: var(--rose);
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.testimonial blockquote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--rose-light);
  color: var(--rose-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.about-image {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
}

.about-image-accent {
  position: absolute;
  top: 24px;
  left: 24px;
  right: -24px;
  bottom: -24px;
  background: var(--rose-light);
  border-radius: var(--radius-xl);
  z-index: 1;
}

.about-content .section-eyebrow {
  margin-bottom: 8px;
}

.about-content .section-title {
  margin-bottom: 28px;
}

.about-content p {
  margin-bottom: 20px;
  font-size: 1.02rem;
  line-height: 1.8;
}

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.stat-item {
  text-align: center;
  padding: 28px 16px;
  background: var(--cream);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

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

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  display: inline;
}

.stat-plus {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* Values */
.values {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.value-tag {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-dark);
}

.value-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ==========================================
   BLOG SECTION
   ========================================== */
.blog {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--rose-light) 100%);
}

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

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card-link:hover .blog-card {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.blog-card-link:hover .blog-link {
  color: var(--gold);
}

.blog-image {
  height: 220px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  overflow: hidden;
}

.blog-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

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

.blog-image .blog-category {
  position: relative;
  z-index: 2;
}

.blog-category {
  background: var(--white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-body);
}

.blog-body {
  padding: 24px;
}

.blog-body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.6;
}

.blog-read-time {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
}

.blog-link:hover {
  gap: 10px;
  color: var(--gold-light);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.4fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  display: inline-block;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
  font-size: 0.95rem;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links h4,
.footer-newsletter h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-newsletter p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: all var(--transition);
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.4);
}

.newsletter-form input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}

.btn-subscribe {
  background: var(--gold);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
}

.btn-subscribe:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ==========================================
   RESPONSIVE — TABLET
   ========================================== */
@media (max-width: 1024px) {
  .hero-container {
    gap: 40px;
  }

  .hero-image img {
    height: 420px;
  }

  .about-grid {
    gap: 48px;
  }

  .about-image-wrapper img {
    height: 400px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* ==========================================
   RESPONSIVE — MOBILE
   ========================================== */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }

  /* Nav */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    padding: 100px 36px 36px;
    gap: 0;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(212,168,83,0.1);
  }

  .nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 1.05rem;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    padding: 100px 24px 48px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image img {
    height: 360px;
    border-radius: var(--radius-lg);
  }

  .trust-bar {
    flex-direction: row;
    gap: 16px;
    padding: 20px 24px;
  }

  .trust-divider {
    width: 1px;
    height: 30px;
  }

  .trust-number {
    font-size: 1.4rem;
  }

  .trust-label {
    font-size: 0.7rem;
  }

  /* Pain Points */
  .pain-points {
    padding: 72px 0;
  }

  .pain-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Products */
  .products {
    padding: 72px 0;
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
  }

  .product-card-featured {
    transform: scale(1);
  }

  .product-card-featured:hover {
    transform: translateY(-8px);
  }

  /* About */
  .about {
    padding: 72px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-image-accent {
    top: 16px;
    left: 16px;
    right: -16px;
    bottom: -16px;
  }

  .about-image-wrapper img {
    height: 360px;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-number, .stat-plus {
    font-size: 2rem;
  }

  /* Blog */
  .blog {
    padding: 72px 0;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Footer */
  .footer {
    padding: 60px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

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

  .newsletter-form input,
  .btn-subscribe {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .trust-bar {
    gap: 12px;
    padding: 16px;
  }

  .values {
    gap: 12px;
  }
}

/* ===== VIP PRODUCT CARD ===== */
.vip-wrapper {
  margin-top: 24px;
  border-radius: calc(var(--radius-lg) + 4px);
  padding: 4px;
  background: linear-gradient(135deg, #D4A853, #E8C97A, #D4A853);
  box-shadow: 0 20px 60px rgba(45,42,38,0.15), 0 0 30px rgba(212,168,83,0.25);
  transition: all var(--transition);
}

.vip-wrapper:hover {
  box-shadow: 0 30px 80px rgba(45,42,38,0.35), 0 0 30px rgba(212,168,83,0.5);
}

.product-card-vip {
  background: var(--white);
  border-radius: calc(var(--radius-lg) - 2px);
  overflow: hidden;
  transition: all var(--transition);
  margin: 0;
}

.product-card-vip:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(45,42,38,0.35);
}

.vip-card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 48px;
  align-items: center;
}

.vip-card-left .product-name {
  color: var(--text-dark);
  font-size: 1.8rem;
  margin: 12px 0 8px;
}

.vip-card-left .price-amount {
  color: var(--text-dark);
  font-size: 2.8rem;
}

.vip-card-left .price-period {
  color: var(--text-light);
}

.vip-card-left .product-desc {
  color: var(--text-body);
  margin-bottom: 28px;
}

.badge-vip {
  background: #D4A853;
  color: #2D2A26;
  font-weight: 700;
  letter-spacing: 2px;
}

.btn-vip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #D4A853;
  color: #2D2A26;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.btn-vip:hover {
  background: #E8C97A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,168,83,0.4);
}

.vip-features li {
  color: var(--text-body);
}

.vip-features li i {
  color: var(--gold);
}

@media (max-width: 768px) {
  .vip-card-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 24px;
  }
}

.badge-vip-gold {
  background: #D4A853 !important;
  color: #fff !important;
}

.vip-wrapper {
  position: relative;
}

.vip-wrapper::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-lg) + 5px);
  background: linear-gradient(135deg, #D4A853, #E8C97A, #D4A853);
  z-index: 0;
}

.vip-wrapper .product-card-vip {
  position: relative;
  z-index: 1;
}

/* VIP border — direct override */
.vip-wrapper > .product-card-vip {
  border: 3px solid #D4A853 !important;
  outline: 3px solid #D4A853 !important;
  outline-offset: 0px;
  box-shadow: 0 0 0 3px #D4A853, 0 20px 60px rgba(212,168,83,0.2) !important;
}

/* ===== VIP CLEAN REDESIGN ===== */
.vip-outer {
  margin-top: 28px;
  border: 3px solid #D4A853;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 8px 40px rgba(212,168,83,0.18);
  overflow: visible;
  position: relative;
}

.vip-inner {
  background: #fff;
  border-radius: 22px;
  padding: 48px;
  position: relative;
  overflow: visible;
}

.vip-badge {
  display: inline-block;
  background: #D4A853;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 20px;
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.vip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.vip-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #2D2A26;
  margin-bottom: 8px;
}

.vip-price {
  margin-bottom: 16px;
}

.vip-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #2D2A26;
}

.vip-period {
  font-size: 0.85rem;
  color: #8A8580;
  margin-left: 4px;
}

.vip-desc {
  color: #5A5550;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.vip-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #D4A853;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.vip-btn:hover {
  background: #E8C97A;
  transform: translateY(-2px);
}

.vip-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vip-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(212,168,83,0.1);
  color: #5A5550;
  font-size: 0.95rem;
}

.vip-list li:last-child {
  border-bottom: none;
}

.vip-list li i {
  color: #D4A853;
  font-size: 1rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .vip-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .vip-inner {
    padding: 32px 20px;
  }
}

/* VIP simple card */
.product-card-vip-simple {
  border: 2px solid #D4A853 !important;
  box-shadow: 0 4px 20px rgba(212,168,83,0.2) !important;
}

.badge-vip-simple {
  background: #D4A853;
  color: #fff;
}

/* ===== TESTIMONIALS GRID ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonials-grid .testimonial-inner {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(212,168,83,0.15);
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* PRE-SALE badge */
.badge-presale {
  background: #D4A853;
  color: #fff;
  font-weight: 700;
}

/* Launch date countdown strip */
.presale-strip {
  background: linear-gradient(135deg, #D4A853, #E8C97A);
  color: #2D2A26;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 10px;
  margin-bottom: 20px;
}
