/* 
  ============================================
  WDP OPN - Neobrutalism Design System
  ============================================ 
*/

:root {
  /* Colors */
  --bg-cream: hsl(0, 0%, 98%);        /* #FAFAFA - Neutral Off-White */
  --bg-white: hsl(0, 0%, 100%);       /* #FFFFFF */
  --bg-black: hsl(0, 0%, 10%);        /* #1A1A1A */
  
  --text-heading: hsl(0, 0%, 10%);    /* #1A1A1A */
  --text-body: hsl(217, 19%, 27%);    /* #374151 */
  --text-muted: hsl(215, 16%, 40%);   /* #565D6A - Darker for WCAG contrast */
  
  --brand-yellow: hsl(49, 100%, 52%); /* #FFD60A */
  --brand-lavender: hsl(286, 75%, 84%); /* #E8B4F8 */
  --brand-mint: hsl(152, 69%, 80%);   /* #A7F3D0 */
  --brand-red: hsl(0, 84%, 60%);      /* #EF4444 */
  --brand-amber: hsl(38, 92%, 50%);   /* #F59E0B */
  --brand-blue: #2563EB;
  
  --border-color: hsl(0, 0%, 10%);    /* #1A1A1A */
  
  /* Typography */
  --font-heading: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  
  --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: 2rem;
  --text-4xl: clamp(2rem, 5vw, 3.5rem);
  --text-hero: clamp(2.25rem, 4vw, 3.5rem);

  /* Spacing */
  --space-2: 0.5rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  
  /* Borders & Shadows */
  --border-width: 3px;
  --border-width-sm: 2px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --shadow-offset: 4px 4px 0px var(--border-color);
  --shadow-offset-lg: 6px 6px 0px var(--border-color);
  --shadow-offset-sm: 2px 2px 0px var(--border-color);
  
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-cream);
  line-height: 1.6;
  letter-spacing: 0.012em;
  word-spacing: 0.05em;
  overflow-x: hidden;
}

p {
  margin-bottom: 1.5rem;
}

p:last-child {
  margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-4);
}

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

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

ul {
  list-style: none;
}

/* Accessibility - Focus */
:focus-visible {
  outline: 3px solid var(--brand-amber);
  outline-offset: 3px;
  border-radius: 0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--brand-yellow);
  color: var(--text-heading);
  padding: 8px 16px;
  z-index: 100;
  font-weight: bold;
  transition: top 0.2s;
  border: var(--border-width-sm) solid var(--border-color);
}
.skip-link:focus {
  top: 0;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

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

.bg-cream { background-color: var(--bg-cream); }
.bg-white { background-color: var(--bg-white); }
.bg-black { background-color: var(--bg-black); }
.bg-yellow { background-color: var(--brand-yellow); }
.bg-lavender { background-color: var(--brand-lavender); }
.bg-mint { background-color: var(--brand-mint); }
.bg-grid-blue {
  background-color: hsl(215, 100%, 97%);
  background-image: linear-gradient(rgba(37,99,235,0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(37,99,235,0.1) 1px, transparent 1px);
  background-size: 40px 40px;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-white { color: var(--bg-white); }
.text-muted { color: var(--text-muted); }
.text-red { color: var(--brand-red); }
.text-gray-300 { color: hsl(215, 15%, 80%); }
.text-gray-400 { color: hsl(215, 15%, 70%); }
.font-bold { font-weight: 700; }
.w-full { width: 100%; }

.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-12 { margin-bottom: var(--space-12); }

/* Typography Scale */
.section-title {
  font-size: var(--text-4xl);
  font-weight: 800;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto var(--space-8);
}

/* Layouts (Grid) */
.grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: var(--space-8);
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.gap-sm { gap: var(--space-4); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-base);
  border-radius: 0;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  border: var(--border-width) solid var(--border-color);
  white-space: nowrap;
}
.btn-sm { padding: 8px 20px; font-size: var(--text-sm); border-width: var(--border-width-sm); }
.btn-lg { padding: 18px 40px; font-size: var(--text-lg); }

.btn-primary {
  background-color: var(--brand-blue);
  color: var(--bg-white);
  box-shadow: 6px 6px 0px var(--border-color);
}
.btn-primary:hover {
  background-color: #1D4ED8;
  color: var(--bg-white);
  box-shadow: 4px 4px 0px var(--border-color);
  transform: translate(2px, 2px);
}

.btn-outline {
  background-color: var(--bg-white);
  color: var(--text-heading);
  box-shadow: 6px 6px 0px var(--border-color);
}
.btn-outline:hover {
  background-color: #F3F4F6;
  box-shadow: 4px 4px 0px var(--border-color);
  transform: translate(2px, 2px);
}

.btn-yellow {
  background-color: var(--brand-yellow);
  color: var(--text-heading);
  box-shadow: var(--shadow-offset);
}
.btn-yellow:hover {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-offset-lg);
  transform: translate(-2px, -2px);
}

/* Badges */
.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 0;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  border: var(--border-width-sm) solid var(--border-color);
  box-shadow: var(--shadow-offset-sm);
  color: var(--text-heading);
}
.badge-primary { background-color: var(--brand-yellow); }
.badge-lavender { background-color: var(--brand-lavender); }
.badge-mint { background-color: var(--brand-mint); }
.badge-amber { background-color: var(--brand-amber); }
.badge-gray { background-color: #E5E7EB; }

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-white);
  border-bottom: var(--border-width-sm) solid var(--border-color);
  z-index: 50;
  padding: var(--space-4) 0;
}
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-logo-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 26px;
  color: var(--text-heading);
  text-transform: uppercase;
  letter-spacing: -1px;
}
.nav-links {
  display: flex;
  gap: var(--space-6);
}
.nav-links a {
  font-weight: 500;
  color: var(--text-heading);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--text-heading);
  transition: var(--transition);
}
.nav-links a:hover::after {
  width: 100%;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding-top: calc(var(--space-24) + 60px);
  padding-bottom: var(--space-16);
  background-image: linear-gradient(rgba(26,26,26,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(26,26,26,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}
.hero-container {
  align-items: center;
}
.hero-title {
  font-size: var(--text-hero);
  font-weight: 800;
  margin: var(--space-6) 0 var(--space-2) 0;
}
.hero-tagline {
  font-size: var(--text-3xl);
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--brand-blue);
  margin-bottom: var(--space-6);
}
.hero-subtitle {
  font-size: var(--text-lg);
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-heading);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-8);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-2);
}
.micro-copy {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-weight: 500;
}
.hero-social-proof {
  margin-top: var(--space-8);
  padding-top: var(--space-4);
  border-top: 1px dashed hsl(215, 16%, 80%);
}
.mockup-img {
  margin: 0 auto;
  filter: drop-shadow(10px 10px 0px rgba(26,26,26,0.1));
}

/* Stats Bar */
.stats {
  border-top: var(--border-width-sm) solid var(--border-color);
  border-bottom: var(--border-width-sm) solid var(--border-color);
  padding: var(--space-8) 0;
}
.stat-item {
  text-align: center;
}
.stat-number {
  display: block;
  font-size: var(--text-3xl);
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-heading);
}
.stat-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
}

/* Cards Standard */
.card {
  background-color: var(--bg-white);
  border: var(--border-width-sm) solid var(--border-color);
  border-radius: 0;
  padding: var(--space-6);
  box-shadow: var(--shadow-offset);
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-offset-lg);
  transform: translate(-2px, -2px);
}
.card-title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

/* Pain Points - Neobrutalism Boxy Style */
.card-pain {
  border-radius: 0;
  box-shadow: 6px 6px 0px var(--border-color);
}
.card-pain:hover {
  transform: translate(2px, 2px);
  box-shadow: 4px 4px 0px var(--border-color);
}
.card-icon-box {
  width: 52px;
  height: 52px;
  background-color: var(--brand-blue);
  color: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  box-shadow: 3px 3px 0px var(--border-color);
}

/* Solution Boxy Grid */
.card-solution {
  border-radius: 0;
  box-shadow: 6px 6px 0px var(--border-color);
  display: flex;
  flex-direction: column;
}
.card-solution:hover {
  transform: translate(2px, 2px);
  box-shadow: 4px 4px 0px var(--border-color);
}
.card-solution .card-icon-box {
  width: 52px;
  height: 52px;
  background-color: var(--brand-amber);
  color: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  box-shadow: 3px 3px 0px var(--border-color);
}

/* Features */
.card-feature {
  padding: var(--space-4);
  box-shadow: var(--shadow-offset-sm);
}
.card-feature:hover {
  box-shadow: var(--shadow-offset);
}
.feature-emoji {
  font-size: 32px;
  margin-bottom: var(--space-2);
}
.feature-title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}
.feature-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* Dark Features Section (Reference Style) */
.bg-dark-blue {
  background-color: #172554; /* Turunan biru gelap dari brand-blue */
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  color: var(--bg-white);
}

.bg-dark-blue .section-title {
  color: var(--bg-white);
}

.bg-dark-blue .section-subtitle {
  color: #bfdbfe; /* blue-200 */
}

.card-feature-dark {
  background-color: #1e3a8a; /* blue-900 */
  border: var(--border-width-sm) solid #1d4ed8; /* blue-700 */
  border-radius: 0;
  padding: var(--space-6);
  box-shadow: 4px 4px 0px rgba(0,0,0,0.3);
  transition: var(--transition);
}

.card-feature-dark:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(0,0,0,0.4);
  border-color: var(--brand-amber);
}

.feature-dark-flex {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.feature-dark-left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  background-color: var(--brand-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}

.feature-icon-box svg {
  width: 24px;
  height: 24px;
  stroke: var(--bg-white);
}

.feature-dark-right {
  display: flex;
  flex-direction: column;
}

.feature-dark-right .feature-title {
  color: var(--bg-white);
  font-size: var(--text-lg);
  margin-bottom: 8px;
}

.feature-dark-right .feature-desc {
  color: #bfdbfe;
  font-size: var(--text-sm);
  line-height: 1.6;
}

/* How It Works */
.steps-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
}
.step-item {
  flex: 1;
  position: relative;
}
.step-number {
  width: 48px;
  height: 48px;
  background-color: var(--brand-yellow);
  color: var(--text-heading);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-xl);
  margin: 0 auto var(--space-4);
  border: 3px solid var(--border-color);
  box-shadow: 4px 4px 0px var(--border-color);
}
.step-title {
  font-size: var(--text-xl);
}
.step-line {
  flex: 0 0 60px;
  height: 24px;
  border-bottom: 2px dashed hsl(215, 16%, 70%);
  margin-top: 24px;
}

/* Testimonials (Reference Style) */
.bg-grid-cream {
  background-color: #fafaf9; /* stone-50 */
  background-image: 
    linear-gradient(rgba(245, 158, 11, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 158, 11, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
}

.badge-green {
  display: inline-block;
  background-color: #3f6244;
  color: white;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 1px;
  padding: 6px 16px;
  border: 3px solid var(--border-color);
  box-shadow: 2px 2px 0px var(--border-color);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
}

.text-gradient-orange {
  background: linear-gradient(90deg, #f97316, #84cc16);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.divider-text {
  display: flex;
  align-items: center;
  text-align: center;
  color: #9ca3af;
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 1px;
}
.divider-text::before,
.divider-text::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #d1d5db;
}
.divider-text:not(:empty)::before {
  margin-right: 1.5em;
}
.divider-text:not(:empty)::after {
  margin-left: 1.5em;
}

.stars-flat {
  display: flex;
  gap: 4px;
  margin-bottom: var(--space-4);
  color: var(--brand-amber);
}
.stars-flat svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-quote-flat {
  font-size: var(--text-sm);
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.testimonial-author-flat {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.avatar-initial {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  color: var(--text-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  flex-shrink: 0;
}

.avatar-yellow { background-color: var(--brand-yellow); }
.avatar-mint { background-color: var(--brand-mint); }
.avatar-lavender { background-color: var(--brand-lavender); }

.avatar-img-round {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-name-flat {
  font-weight: 700;
  color: var(--text-heading);
  font-size: 0.875rem;
  margin: 0 0 2px 0;
}
.author-role-flat {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}

/* Pricing New Layout */
.pricing-cards {
  display: flex;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-card-wrapper {
  position: relative;
  width: 100%;
  margin: 2rem auto 0;
  padding-top: 16px; /* Space for overlapping badge */
}

.pricing-badge-overlap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--brand-blue);
  color: white;
  padding: 8px 24px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 3px solid var(--border-color);
  z-index: 10;
  white-space: nowrap;
}

.card-pricing-new {
  background-color: white;
  border: 4px solid var(--border-color);
  box-shadow: 12px 12px 0px var(--border-color);
  padding: 16px;
  border-radius: 0;
}

.pricing-inner-dashed {
  border: 2px dashed #93c5fd; /* Light blue dashed border */
  background: linear-gradient(to bottom, #eff6ff, #ffffff);
  padding: 32px 24px;
  height: 100%;
}

.pricing-header-new {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.pricing-icon-box {
  width: 56px;
  height: 56px;
  background-color: var(--brand-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--border-color);
  flex-shrink: 0;
}
.pricing-icon-box svg {
  width: 28px;
  height: 28px;
}

.pricing-title-box {
  flex: 1;
}

.pricing-title-new {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.pricing-subtitle-new {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pricing-price-block {
  margin-bottom: 24px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.price-hero-new {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-heading);
}

.price-strike-new {
  font-size: 1.25rem;
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 600;
}

.price-green-note {
  font-size: 0.875rem;
  font-weight: 700;
  color: #16a34a;
}

.pricing-cta-new {
  margin-bottom: 24px;
}

.btn-primary-red {
  background-color: var(--brand-red);
  color: white;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.125rem;
  border: 3px solid var(--border-color);
  box-shadow: 4px 4px 0px var(--border-color);
  padding: 16px 24px;
  text-align: center;
  text-transform: uppercase;
  display: inline-block;
  width: 100%;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary-red:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px var(--border-color);
  background-color: #dc2626;
  color: white;
}

.pricing-promo-box {
  border: 2px solid #60a5fa;
  background-color: #eff6ff;
  padding: 16px;
  margin-bottom: 24px;
  text-align: center;
}

.promo-box-title {
  font-weight: 700;
  color: #1e3a8a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

/* Countdown Timer Component */
.cd-timer-container {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  margin-top: var(--space-4);
}

.cd-box {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  flex: 1;
  padding: 12px 6px;
  background-color: white;
  border: 3px solid var(--border-color);
  box-shadow: 4px 4px 0px var(--border-color);
  border-radius: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cd-box:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px var(--border-color);
}

.cd-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--brand-blue);
}

.cd-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand-blue);
  margin-top: 0;
}

.pricing-features-new {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features-new li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.9375rem;
  color: var(--text-heading);
}

.check-blue {
  width: 20px;
  height: 20px;
  color: var(--brand-blue);
  flex-shrink: 0;
  margin-top: 2px;
}
.hidden { display: none !important; }

/* FAQ Accordion */
.faq-accordion {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  align-items: start;
}
.faq-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.faq-item {
  background-color: var(--bg-white);
  border: var(--border-width-sm) solid var(--border-color);
  border-radius: 0;
  margin-bottom: 0;
  box-shadow: var(--shadow-offset-sm);
  transition: var(--transition);
}
.faq-item.active {
  background-color: var(--bg-cream);
  box-shadow: var(--shadow-offset);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-heading);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-icon {
  transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
  opacity: 0;
  padding: 0 20px;
}
.faq-item.active .faq-answer {
  opacity: 1;
  padding-bottom: 20px;
  border-top: 1px dashed hsl(215, 16%, 80%);
  margin-top: -10px;
  padding-top: 20px;
}

/* Custom Footer Redesign */
.border-top-thick {
  border-top: 4px solid var(--border-color);
}
.footer { padding: var(--space-12) 0 var(--space-8); }

.footer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 28px;
  color: var(--text-heading);
  text-transform: uppercase;
  letter-spacing: -1px;
}
.footer-nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-link {
  font-weight: 700;
  color: var(--text-heading);
  text-decoration: none;
  border: 2px solid transparent;
  padding: 6px 16px;
  transition: var(--transition);
}
.footer-link:hover {
  background-color: var(--brand-yellow);
  border-color: var(--border-color);
  box-shadow: 3px 3px 0px var(--border-color);
  transform: translate(-2px, -2px);
}
.footer-bottom-row {
  border-top: 3px solid var(--border-color);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.copyright {
  font-weight: 600;
  color: var(--text-muted);
}
.footer-tagline {
  font-weight: 800;
  color: var(--text-heading);
}

/* Animations Reveal */
.reveal-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* Coupon Box */
.coupon-box {
  background-color: var(--bg-white);
  border: 2px dashed var(--brand-blue);
  padding: 12px 16px;
  margin-top: var(--space-6);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: var(--transition);
}

.coupon-box:hover {
  background-color: #eff6ff;
  border-style: solid;
}

.coupon-box:focus-visible {
  outline: 3px solid var(--brand-amber);
  outline-offset: 3px;
}

.coupon-label {
  font-size: var(--text-sm);
  color: var(--text-body);
  font-weight: 700;
}

.coupon-code-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-white);
  padding: 6px 16px;
  border: 2px solid var(--border-color);
  box-shadow: 2px 2px 0px var(--border-color);
}

.coupon-code {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-lg);
  color: var(--brand-blue);
  letter-spacing: 1px;
}

.copy-icon {
  color: var(--text-muted);
  display: flex;
}

.coupon-box:hover .copy-icon {
  color: var(--brand-blue);
}

.copy-feedback {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--brand-blue);
  color: white;
  padding: 4px 12px;
  font-size: var(--text-sm);
  font-weight: 700;
  border-radius: 0;
  border: 2px solid var(--border-color);
  box-shadow: 2px 2px 0px var(--border-color);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 10;
}

.copy-feedback.show {
  opacity: 1;
}

/* Typing Animation Cursor */
#typing-word {
  border-right: 3px solid var(--brand-amber);
  padding-right: 4px;
  animation: blink-cursor 0.75s step-end infinite;
}
@keyframes blink-cursor {
  from, to { border-color: transparent }
  50% { border-color: var(--brand-amber) }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { margin-bottom: var(--space-8); }
  .hero-title, .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  
  .footer-top-row, .footer-bottom-row {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .footer-nav {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    border-bottom: 3px solid var(--border-color);
    padding: var(--space-6) 0;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 0px var(--border-color);
    z-index: 40;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-cta { display: none; }
  .menu-toggle {
    display: block;
    width: 30px;
    height: 24px;
    position: relative;
    padding: 0;
    margin: 0;
  }
  .hamburger, .hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--text-heading);
    border-radius: 0;
  }
  .hamburger { top: 50%; transform: translateY(-50%); }
  .hamburger::before { top: -8px; }
  .hamburger::after { bottom: -8px; }

  .grid-2, .grid-3, .faq-accordion { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .steps-container { flex-direction: column; }
  .step-line { display: none; }
  .step-item { margin-bottom: var(--space-8); }
  .hero-actions { flex-direction: row; flex-wrap: nowrap; gap: 10px; }
  .hero-actions .btn { width: 50%; padding: 14px 4px; font-size: 0.8rem; }
  .btn { width: 100%; white-space: nowrap; }
  .btn-lg { padding: 14px 4px; font-size: 0.8rem; }
  
  .hero-title { font-size: 2.75rem; line-height: 1.1; }
  .hero-tagline { font-size: 1.5rem; }
  
  .card-pricing-primary { transform: scale(1); }
  .card-pricing-primary:hover { transform: scale(1); }
  
  .cd-timer-container { flex-wrap: wrap; }
  .cd-box { flex: 1 1 calc(50% - 6px); padding: 10px 4px; }
  .cd-number { font-size: 1.4rem; }
  
  .footer-nav { gap: 4px; flex-wrap: nowrap; justify-content: center; width: 100%; }
  .footer-link { font-size: 0.7rem; padding: 4px; white-space: nowrap; border-width: 1px; }
  
  .price-row { flex-direction: column; align-items: flex-start; gap: 2px; }
  .price-hero-new { font-size: 2.25rem; line-height: 1.1; }
  .price-strike-new { font-size: 1.1rem; }
}
