/* index.css - Zambol Creatives Design System */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;600;800&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  /* Colors - Luxury Light Sand & Earth Palette matching original MEC page */
  --bg-dark: #faf8f4;          /* Warm sand/cream background */
  --bg-medium: #eae3dc;        /* Mid-beige for sections and key cards */
  --bg-card: #ffffff;          /* Clean white cards */
  --bg-glass: rgba(250, 248, 244, 0.85);
  
  --accent-gold: #9d745a;      /* Bronze highlights from original */
  --accent-gold-hover: #865f47;
  --accent-gold-glow: rgba(157, 116, 90, 0.15);
  --accent-cream: #faf8f4;
  --accent-sand: #75635b;      /* Bronze-brown for tags and descriptive titles */
  
  --text-primary: #331e1b;     /* Deep brown from original for primary text */
  --text-muted: #666666;       /* Medium neutral gray for body copy */
  --text-dark: #ffffff;        /* Pure white text for dark elements (hero/dark buttons/cards) */
  
  --border-color: #dbd3c8;     /* Dark-beige borders from original */
  --border-light: rgba(51, 30, 27, 0.08); /* Light transparent brown borders */
  --border-focus: #331e1b;     /* Deep brown active borders */

  /* Specific Card Backgrounds matching original MEC page */
  --bg-card-brown: #331e1b;    /* Solid dark brown guide card */
  --bg-card-blue: #ffffff;     /* White bonuses card */
  --bg-card-beige: #faf7f2;    /* Warm beige including card */

  /* Typography */
  --font-serif: 'Playfair Display', serif;
  --font-sans-title: 'Outfit', sans-serif;
  --font-sans-body: 'Inter', sans-serif;

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.15s ease-out;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-sans-body);
  font-size: 16px;
  line-height: 1.6;
}

body {
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-medium);
  border: 2px solid var(--bg-dark);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Custom Selection */
::selection {
  background: var(--accent-gold);
  color: var(--text-dark);
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans-title);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

p {
  color: var(--text-muted);
  font-weight: 300;
}

.serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.gold-text {
  color: var(--accent-gold);
}

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

.section {
  padding: 96px 0;
  position: relative;
}

.section-darker {
  background-color: var(--bg-medium);
}

/* Glassmorphism Card Style */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px;
  transition: var(--transition-smooth);
}

/* Card Type Modifiers */
.overview-card {
  background-color: var(--bg-card-brown) !important;
  border-color: var(--border-light) !important;
  color: var(--text-dark) !important;
}

.overview-card h3.gold-text {
  color: var(--text-dark) !important;
}

.overview-card .bullet-list li {
  color: var(--text-dark) !important;
}

.overview-card .bullet-icon {
  color: var(--accent-gold) !important;
}

.feature-card {
  background-color: var(--bg-card-blue) !important;
  border-color: var(--border-color) !important;
}

.glass-card:hover {
  border-color: rgba(157, 116, 90, 0.35);
  box-shadow: 0 12px 40px -15px var(--accent-gold-glow);
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: var(--font-sans-title);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: var(--text-primary);
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(51, 30, 27, 0.15);
}

.btn-primary:hover {
  background: var(--accent-gold);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-gold-glow);
}

.btn-primary:active {
  transform: translateY(0);
}

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

.btn-secondary:hover {
  background: rgba(51, 30, 27, 0.04);
  border-color: var(--text-primary);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* Alternate light button for dark CTA banner */
.cta-banner .btn-primary {
  background: #ffffff;
  color: var(--text-primary);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.cta-banner .btn-primary:hover {
  background: var(--accent-gold);
  color: var(--text-dark);
  box-shadow: 0 6px 20px var(--accent-gold-glow);
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  background: rgba(250, 248, 244, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-logo {
  font-family: var(--font-sans-title);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo span {
  color: var(--accent-gold);
}

.nav-logo img {
  height: 32px;
}

.nav-btn {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3) contrast(1.1);
  transform: scale(1.05);
  animation: slowPan 30s infinite alternate;
}

@keyframes slowPan {
  0% { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.15) translate(-1%, -1%); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: radial-gradient(circle at center, rgba(51, 30, 27, 0.35) 0%, rgba(51, 30, 27, 0.92) 85%);
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: #faf6f0;
}

.hero-tagline {
  font-family: var(--font-sans-title);
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 0.25em;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-title {
  color: #faf6f0;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease-out;
}

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

.hero-desc {
  font-size: 1.2rem;
  color: #d1cfcb;
  margin-bottom: 40px;
  animation: fadeInUp 1.2s ease-out;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  animation: fadeInUp 1.4s ease-out;
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

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

/* Trust Banner */
.trust-banner {
  background: var(--bg-medium);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 24px 0;
}

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

.trust-avatars {
  display: flex;
  align-items: center;
}

.trust-avatar-item {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2.5px solid var(--bg-medium);
  overflow: hidden;
  margin-right: -12px;
  transition: var(--transition-fast);
}

.trust-avatar-item:hover {
  transform: translateY(-4px) scale(1.08);
  z-index: 10;
}

.trust-avatar-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-text-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-stars {
  display: flex;
  gap: 4px;
}

.trust-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-gold);
}

.trust-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-sand);
}

/* Overview Section */
.overview-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 992px) {
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.section-title-wrapper {
  margin-bottom: 40px;
}

.section-tag {
  color: var(--accent-gold);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

.bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.05rem;
  color: var(--text-primary);
}

.bullet-icon {
  flex-shrink: 0;
  margin-top: 4px;
  width: 20px;
  height: 20px;
  color: var(--accent-gold);
}

/* Mockup Showcase (Slider) */
.mockup-showcase {
  width: 100%;
}

.tslider-wrap {
  width: 100%;
}

.tslider-main {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-medium);
  border: 1px solid var(--border-color);
  margin-bottom: 16px;
}

.tslider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.25s ease;
  filter: brightness(0.9);
}

.tslider-img.tslider-fade {
  opacity: 0;
}

.tslider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent-cream);
  border: none;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-dark);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: var(--transition-fast);
  z-index: 2;
}

.tslider-arrow:hover {
  background: var(--accent-gold);
  transform: translateY(-50%) scale(1.05);
}

.tslider-arrow--left {
  left: 16px;
}

.tslider-arrow--right {
  right: 16px;
}

.tslider-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.tslider-thumb {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-fast);
  opacity: 0.6;
  background: var(--bg-medium);
}

.tslider-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tslider-thumb.is-active {
  border-color: var(--accent-gold);
  opacity: 1;
}

.tslider-thumb:hover:not(.is-active) {
  opacity: 0.85;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.feature-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.feature-icon-box svg {
  width: 24px;
  height: 24px;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Target Audience Segment (Tabs) */
.audience-tabs-container {
  margin-top: 48px;
}

.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 24px;
}

.tab-link {
  background: rgba(51, 30, 27, 0.05);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-sans-title);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 12px 24px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.tab-link:hover {
  background: rgba(51, 30, 27, 0.1);
  color: var(--text-primary);
}

.tab-link.is-active {
  background: var(--text-primary);
  color: var(--text-dark) !important;
  border-color: var(--text-primary);
}

.tab-panes {
  position: relative;
  min-height: 300px;
}

.tab-pane {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.tab-pane.is-active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .tab-pane.is-active {
    grid-template-columns: 1fr;
  }
}

.pane-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pane-image {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.pane-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pane-quote {
  border-left: 2px solid var(--accent-gold);
  padding-left: 20px;
  margin-top: 16px;
}

.pane-quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--accent-sand);
  margin-bottom: 8px;
}

.pane-quote-author {
  font-family: var(--font-sans-title);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Testimonials / Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

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

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  transition: var(--transition-smooth);
}

.review-card:hover {
  border-color: rgba(197, 160, 89, 0.25);
  transform: translateY(-4px);
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-primary);
  font-weight: 300;
}

.review-client {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-info {
  display: flex;
  flex-direction: column;
}

.review-name {
  font-family: var(--font-sans-title);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.review-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Interactive Accordion FAQs */
.faqs-list {
  max-width: 800px;
  margin: 48px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(197, 160, 89, 0.2);
}

.faq-trigger {
  width: 100%;
  background: var(--bg-card);
  border: none;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.faq-question {
  font-family: var(--font-sans-title);
  font-weight: 600;
  font-size: 1.1rem;
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--accent-gold);
  flex-shrink: 0;
}

.faq-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  background: transparent;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
  padding: 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  border-top: 1px solid var(--border-light);
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-item.is-open .faq-answer-wrapper {
  max-height: 500px; /* arbitrary height to allow expansion */
}

/* Video Grid Community Section */
.gallery-section {
  padding: 96px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.gallery-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background-color: var(--bg-medium);
  transition: var(--transition-smooth);
}

.gallery-card:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-color: rgba(197, 160, 89, 0.4);
}

.gallery-card video,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(51, 30, 27, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-caption {
  font-family: var(--font-sans-title);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-primary);
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Pricing Page & Gumroad Embed Card */
.pricing-section {
  scroll-margin-top: 80px;
}

.pricing-card-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

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

.pricing-info-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pricing-header-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.rating-block {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating-stars {
  display: flex;
  gap: 2px;
}

.rating-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--accent-gold);
}

.rating-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-deal-box {
  background: var(--bg-medium);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-display-wrapper {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.price-strike {
  font-size: 1.8rem;
  text-decoration: line-through;
  color: var(--text-muted);
  font-weight: 400;
}

.price-active {
  font-size: 3.5rem;
  color: var(--text-primary);
  font-family: var(--font-sans-title);
  font-weight: 800;
  display: flex;
  align-items: flex-start;
}

.price-active-currency {
  font-size: 1.8rem;
  margin-top: 8px;
  font-weight: 600;
  color: var(--accent-gold);
}

.price-save-badge {
  background: rgba(197, 160, 89, 0.15);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-family: var(--font-sans-title);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-left: 8px;
  align-self: center;
}

.divider {
  height: 1px;
  background: var(--border-light);
  width: 100%;
}

.pricing-inclusions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-inclusion-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--accent-sand);
}

.pricing-inclusion-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent-gold);
  flex-shrink: 0;
}

/* Language Selection pills */
.lang-selector-block {
  margin-top: 8px;
}

.lang-label {
  font-family: var(--font-sans-title);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.lang-pills {
  display: flex;
  gap: 12px;
}

.lang-pill {
  flex: 1;
  background: rgba(250, 246, 240, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--text-primary);
  font-family: var(--font-sans-title);
  font-weight: 600;
  font-size: 0.9rem;
}

.lang-pill img {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  filter: saturate(0.85);
}

.lang-pill:hover {
  background: rgba(250, 246, 240, 0.06);
  border-color: var(--accent-sand);
}

.lang-pill.is-active {
  border-color: var(--accent-gold);
  background: rgba(197, 160, 89, 0.08);
  color: var(--accent-gold);
}

/* Sticky Right Product Images Card */
.pricing-product-card {
  position: sticky;
  top: 112px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
}

.pricing-product-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: var(--bg-medium);
  overflow: hidden;
}

.pricing-product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing-product-details {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-product-title {
  font-size: 1.2rem;
  font-weight: 600;
}

/* Instructors Section */
.instructor-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 992px) {
  .instructor-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.instructor-image {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.instructor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.instructor-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.instructor-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--accent-sand);
}

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--text-primary) 0%, #1a0f0d 100%);
  border: 1px solid var(--accent-gold);
  border-radius: 24px;
  padding: 64px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .cta-banner {
    padding: 40px 24px;
  }
}

.cta-title {
  font-size: 2.8rem;
  font-weight: 800;
  max-width: 700px;
  line-height: 1.1;
  color: #faf6f0;
}

@media (max-width: 768px) {
  .cta-title {
    font-size: 2rem;
  }
}

.cta-desc {
  font-size: 1.15rem;
  max-width: 600px;
  color: #d1cfcb;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-light);
  padding: 48px 0;
  background: var(--bg-dark);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}

.footer-credit {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-link-item {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.footer-link-item:hover {
  color: var(--accent-gold);
}

/* Success Page Styling */
.success-wrapper {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px 24px;
}

.success-container {
  max-width: 600px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.success-icon-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.1);
  border: 2px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
}

.success-icon-box svg {
  width: 40px;
  height: 40px;
}

.success-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
}

.success-desc {
  font-size: 1.1rem;
  color: var(--accent-sand);
  line-height: 1.6;
}

.success-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

/* Editorial Photo Grids */
.editorial-grid-section {
  padding: 96px 0;
  position: relative;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-rows: 240px;
  gap: 24px;
  margin-top: 48px;
}

.masonry-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}

.masonry-item:hover {
  transform: translateY(-6px);
  border-color: rgba(197, 160, 89, 0.4);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
}

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

/* Row & Column Spanning for editorial feel */
.masonry-item.span-h2 {
  grid-column: span 2;
}

.masonry-item.span-v2 {
  grid-row: span 2;
}

.masonry-item.span-h2.span-v2 {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 900px) {
  .masonry-item.span-h2 {
    grid-column: span 1;
  }
}

@media (max-width: 600px) {
  .masonry-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }
  .masonry-item.span-h2,
  .masonry-item.span-v2,
  .masonry-item.span-h2.span-v2 {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(51, 30, 27, 0.95) 0%, rgba(51, 30, 27, 0) 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.masonry-item:hover .grid-overlay {
  opacity: 1;
}

.grid-meta-tag {
  font-family: var(--font-sans-title);
  color: var(--accent-gold);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}

.grid-title {
  font-family: var(--font-sans-title);
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 600;
}
