/* ============================================
   Dreams Funded - Design System v3
   Complete Unified Theme: Purple + Gold/Orange
   ============================================ */

:root {
  /* --- PRIMARY COLORS --- */
  --color-bg-primary: #0f0a1a;
  --color-bg-secondary: #1a1530;
  --color-bg-tertiary: #2a1f4a;

  /* --- ACCENT COLORS --- */
  --color-accent-gold: #FF8C00;
  --color-accent-gold-light: #FFB347;
  --color-accent-gold-dark: #E67E00;

  /* --- TEXT COLORS --- */
  --color-text-primary: #f8f9fa;
  --color-text-secondary: #d0d5dd;
  --color-text-muted: #9ca3af;

  /* --- BORDER & SURFACE --- */
  --color-border: #3d2a5e;
  --color-surface: rgba(42, 31, 74, 0.4);
  --color-surface-light: rgba(42, 31, 74, 0.6);

  /* --- SEMANTIC COLORS --- */
  --color-error: #ef4444;
  --color-success: #10b981;
  --color-warning: #FF8C00;

  /* --- SPACING --- */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;

  /* --- RADIUS --- */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  /* --- SHADOWS --- */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 0 20px rgba(255, 140, 0, 0.3);
  --shadow-gold-strong: 0 0 40px rgba(255, 140, 0, 0.5);
}

/* --- Base & Reset --- */
html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  color: var(--color-text-primary);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

/* --- Form Inputs (shared across checkout, contact, login, etc.) --- */
.df-input {
  width: 100%;
  padding: var(--spacing-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.df-input::placeholder {
  color: var(--color-text-muted);
}

.df-input:focus {
  border-color: var(--color-accent-gold);
  background: var(--color-surface-light);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.df-input--icon {
  padding-left: 2.75rem;
}

/* --- Input Group (icon positioned inside) --- */
.df-input-group {
  position: relative;
}

.df-input-icon {
  position: absolute;
  left: var(--spacing-md);
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
  font-size: 0.9rem;
  pointer-events: none;
  transition: color 0.2s ease;
}

.df-input-group:focus-within .df-input-icon {
  color: var(--color-accent-gold);
}

/* --- Buttons --- */
.df-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  text-decoration: none;
  min-height: 44px;
}

.df-btn--primary {
  padding: var(--spacing-md) var(--spacing-lg);
  background: linear-gradient(135deg, var(--color-accent-gold) 0%, var(--color-accent-gold-dark) 100%);
  color: var(--color-bg-primary);
  font-weight: 600;
  box-shadow: var(--shadow-gold);
}

.df-btn--primary:hover {
  background: linear-gradient(135deg, var(--color-accent-gold-light) 0%, var(--color-accent-gold) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-strong);
}

.df-btn--primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-gold);
}

.df-btn--primary:focus-visible {
  outline: 2px solid var(--color-accent-gold);
  outline-offset: 2px;
}

.df-btn--secondary {
  padding: var(--spacing-md) var(--spacing-lg);
  background: transparent;
  color: var(--color-accent-gold);
  border: 2px solid var(--color-accent-gold);
}

.df-btn--secondary:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: var(--color-accent-gold-light);
}

.df-btn--secondary:focus-visible {
  outline: 2px solid var(--color-accent-gold);
  outline-offset: 2px;
}

.df-btn--outline {
  padding: var(--spacing-md) var(--spacing-lg);
  background: transparent;
  color: var(--color-accent-gold);
  border: 2px solid var(--color-accent-gold);
}

.df-btn--outline:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: var(--color-accent-gold-light);
}

.df-btn--ghost {
  padding: var(--spacing-md) var(--spacing-lg);
  background: var(--color-surface);
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
}

.df-btn--ghost:hover {
  background: var(--color-surface-light);
  color: var(--color-accent-gold);
  border-color: var(--color-accent-gold);
}

.df-btn--full {
  width: 100%;
}

.df-btn--lg {
  padding: var(--spacing-lg) var(--spacing-xl);
  font-size: 1.1rem;
  min-height: 48px;
}

.df-btn--sm {
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: 0.875rem;
  min-height: 36px;
}

/* --- Glassmorphism Card --- */
.df-card {
  background: var(--color-surface-light);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  position: relative;
  transition: all 0.3s ease;
}

.df-card:hover {
  border-color: var(--color-accent-gold);
  box-shadow: var(--shadow-gold);
}

.df-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent-gold), transparent);
  border-radius: 2px;
}

/* --- Alert Messages --- */
.df-alert {
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.df-alert--error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.df-alert--success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #86efac;
}

.df-alert--warning {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--color-accent-gold-light);
}

/* --- Divider --- */
.df-divider {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  margin: var(--spacing-lg) 0;
}

.df-divider::before,
.df-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

/* --- Password Toggle --- */
.df-password-toggle {
  position: absolute;
  right: var(--spacing-md);
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted);
  padding: var(--spacing-sm);
  transition: color 0.2s ease;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.df-password-toggle:hover {
  color: var(--color-accent-gold);
}

.df-password-toggle:focus-visible {
  outline: 2px solid var(--color-accent-gold);
  outline-offset: 2px;
}

/* --- Ambient Glow (for centered pages like login, success, etc.) --- */
.df-ambient {
  position: relative;
  overflow: hidden;
}

.df-ambient::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.df-ambient::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* --- Dot Grid Background --- */
.df-dot-grid {
  background-image: radial-gradient(circle, var(--color-accent-gold) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.04;
  pointer-events: none;
}

/* --- Plan Selector Buttons --- */
.btn-default-plan,
.btn-default-type {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  min-height: 44px;
  border-radius: var(--radius-lg);
}

.btn-default-plan::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.btn-default-plan:hover::before {
  left: 100%;
}

.btn-default-plan.active {
  background: linear-gradient(135deg, var(--color-accent-gold) 0%, var(--color-accent-gold-dark) 100%) !important;
  color: var(--color-bg-primary) !important;
  border-color: var(--color-accent-gold) !important;
  box-shadow: var(--shadow-gold-strong), inset 0 0 20px rgba(255, 255, 255, 0.1);
  transform: scale(1.02);
}

.btn-default-plan:not(.active) {
  background-color: var(--color-bg-primary);
  color: var(--color-accent-gold);
  border: 2px solid rgba(245, 158, 11, 0.3);
  box-shadow: var(--shadow-md);
}

.btn-default-plan:not(.active):hover {
  background-color: var(--color-surface);
  border-color: var(--color-accent-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-default-type {
  position: relative;
  z-index: 1;
}

.btn-default-type.active {
  background: linear-gradient(135deg, var(--color-accent-gold) 0%, var(--color-accent-gold-dark) 100%) !important;
  color: var(--color-bg-primary) !important;
  box-shadow: var(--shadow-gold-strong);
  transform: scale(1.05);
}

.btn-default-type:not(.active) {
  background-color: rgba(245, 158, 11, 0.05);
  color: var(--color-text-muted);
  border: 2px solid rgba(245, 158, 11, 0.2);
}

.btn-default-type:not(.active):hover {
  color: var(--color-accent-gold);
  border-color: var(--color-accent-gold);
  background-color: rgba(245, 158, 11, 0.1);
}

/* --- Animations --- */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes pulse-soft {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes scale-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-10px); }
  75% { transform: translateX(10px); }
}

@keyframes float-up {
  0% { transform: translateY(0px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(-100px) rotate(20deg); opacity: 0; }
}

@keyframes gold-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(245, 158, 11, 0.5);
  }
}

.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-delay { animation: float 8s ease-in-out 2s infinite; }
.animate-pulse-soft { animation: pulse-soft 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.animate-scale-pulse { animation: scale-pulse 0.6s ease-out; }
.animate-shake { animation: shake 0.5s ease-in-out; }
.animate-float-up { animation: float-up 3s ease-in forwards; }
.animate-gold-glow { animation: gold-glow 3s ease-in-out infinite; }

/* --- Security Badge (shared across login, checkout, etc.) --- */
.df-security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-lg);
  color: var(--color-text-muted);
  font-size: 0.75rem;
}

.df-security-badge span {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.df-security-badge i {
  color: var(--color-accent-gold);
}

/* --- Standalone Page Base (for pages not using base.html) --- */
.df-standalone {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
}

/* ============================================
   Navbar Logo & Navigation Styling
   ============================================ */

/* Logo - Clean Brand Mark (No Button Look) */
.navbar-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.navbar-logo:focus,
.navbar-logo:focus-visible {
  outline: none;
}

.navbar-logo:hover {
  opacity: 0.8;
}

.navbar-logo:active {
  opacity: 0.7;
}

/* Logo Image */
.navbar-logo-img {
  height: 4.5rem; /* 72px on desktop */
  width: auto;
  display: block;
  object-fit: contain;
}

/* Desktop Navigation Links */
.navbar-nav-link {
  display: inline-flex;
  align-items: center;
  padding: var(--spacing-sm);
  color: var(--color-text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all 0.25s ease;
  position: relative;
  min-height: 44px;
}

.navbar-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent-gold);
  transition: width 0.3s ease;
}

.navbar-nav-link:hover {
  color: var(--color-accent-gold);
  padding-bottom: var(--spacing-md);
}

.navbar-nav-link:hover::after {
  width: 100%;
}

.navbar-nav-link:focus-visible {
  outline: 2px solid var(--color-accent-gold);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

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

.navbar-nav-link.border-b-2 {
  border-bottom: 2px solid var(--color-accent-gold);
}

/* Mobile Menu Links */
.navbar-mobile-link {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all 0.25s ease;
  display: block !important;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.navbar-mobile-link:hover {
  color: var(--color-accent-gold);
  background-color: rgba(245, 158, 11, 0.1) !important;
}

.navbar-mobile-link:focus-visible {
  outline: 2px solid var(--color-accent-gold);
  outline-offset: -2px;
}

.navbar-mobile-link.text-accent {
  color: var(--color-accent-gold);
  background-color: rgba(245, 158, 11, 0.1) !important;
  font-weight: 600;
}

/* Mobile Menu Styles */
#mobile-menu {
  animation: slideDown 0.3s ease-out;
  max-width: 100%;
  box-shadow: var(--shadow-lg);
  background: var(--color-surface-light);
  border-bottom: 1px solid var(--color-border);
}

#mobile-menu.hidden {
  animation: slideUp 0.3s ease-out forwards;
  display: none !important;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: var(--shadow-gold);
  }
  50% {
    box-shadow: var(--shadow-gold-strong);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes cardLift {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes smoothGlow {
  0%, 100% {
    box-shadow: var(--shadow-gold), inset 0 0 0px rgba(245, 158, 11, 0);
  }
  50% {
    box-shadow: var(--shadow-gold-strong), inset 0 0 10px rgba(245, 158, 11, 0.15);
  }
}

/* Animation Classes */
.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in-down {
  animation: fadeInDown 0.6s ease-out;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.6s ease-out;
}

.animate-fade-in-right {
  animation: fadeInRight 0.6s ease-out;
}

.animate-glow {
  animation: glow 3s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Section animations */
section {
  animation: fadeInUp 0.7s ease-out 0.2s both;
}

/* Smooth scroll-triggered animations */
section[data-animate] {
  scroll-behavior: smooth;
  transition: all 0.4s ease;
}

/* Stagger animations for lists */
.card-grid > div {
  animation: fadeInUp 0.6s ease-out both;
}

.card-grid > div:nth-child(1) { animation-delay: 0.1s; }
.card-grid > div:nth-child(2) { animation-delay: 0.2s; }
.card-grid > div:nth-child(3) { animation-delay: 0.3s; }
.card-grid > div:nth-child(4) { animation-delay: 0.4s; }
.card-grid > div:nth-child(5) { animation-delay: 0.5s; }
.card-grid > div:nth-child(6) { animation-delay: 0.6s; }

/* Typography Improvements */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: var(--spacing-md);
  color: var(--color-text-primary);
}

h1 {
  font-size: clamp(1.875rem, 5vw, 3.75rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 600;
}

p {
  max-width: 65ch;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-md);
}

/* Responsive Utility Classes */
@media (max-width: 768px) {
  section {
    padding: var(--spacing-2xl) var(--spacing-md);
  }

  h1 {
    font-size: 1.875rem;
  }

  h2 {
    font-size: 1.5rem;
  }
}

/* Smooth Transition Utilities */
.transition-smooth {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.animate-card-lift {
  animation: cardLift 4s ease-in-out infinite;
}

.animate-smooth-glow {
  animation: smoothGlow 3s ease-in-out infinite;
}

/* Enhanced Hover Effects */
.hover-lift {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-lift:hover {
  transform: translateY(-6px);
}

.hover-glow {
  transition: all 0.3s ease;
}

.hover-glow:hover {
  box-shadow: var(--shadow-gold-strong), inset 0 0 10px rgba(255, 140, 0, 0.15);
  border-color: var(--color-accent-gold);
}

/* ============================================
   CTA & ACTION BUTTONS
   ============================================ */

/* Primary CTA Button */
.df-btn--primary {
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.95) 0%, rgba(230, 126, 0, 0.95) 100%);
  color: white;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 24px rgba(255, 140, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.df-btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transition: left 0.4s ease;
  z-index: -1;
}

.df-btn--primary:hover::before {
  left: 100%;
}

.df-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 140, 0, 0.45);
}

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

/* Secondary CTA Button */
.df-btn--secondary {
  background: transparent;
  border: 2px solid rgba(255, 140, 0, 0.5);
  color: rgba(255, 140, 0, 1);
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.df-btn--secondary:hover {
  background: rgba(255, 140, 0, 0.1);
  border-color: rgba(255, 140, 0, 1);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(255, 140, 0, 0.2);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .navbar-logo-img {
    height: 3.5rem; /* 56px on mobile */
  }

  .navbar-nav-link {
    font-size: 0.9rem;
  }

  #mobile-menu {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: hsl(240, 10%, 12%);
    border-radius: 0;
    width: 100%;
    border-bottom: 1px solid hsl(240, 5%, 25%);
  }

  .navbar-mobile-link {
    padding: 1rem 1.5rem;
  }
}

/* ============================================
   SECTION STYLING & LAYOUT
   ============================================ */

/* Global Section Styling */
section {
  padding: var(--spacing-3xl) var(--spacing-lg);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  scroll-behavior: smooth;
  position: relative;
  overflow: hidden;
}

/* Add subtle borders between sections for clear separation */
section {
  border-top: 2px solid rgba(255, 140, 0, 0.1);
}

section:first-of-type {
  border-top: none;
}

/* Section alternation for visual interest */
section:nth-of-type(odd) {
  background: linear-gradient(180deg, rgba(15, 27, 63, 0.7) 0%, rgba(30, 41, 59, 0.5) 100%);
}

section:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.5) 0%, rgba(15, 27, 63, 0.7) 100%);
}

/* Hero Section - Primary gradient */
section:first-of-type {
  background: linear-gradient(135deg, rgb(15, 27, 63) 0%, rgba(15, 27, 63, 0.9) 50%, rgb(30, 41, 59) 100%);
  padding: var(--spacing-3xl) var(--spacing-lg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  border-top: none;
}

/* Section transition indicator */
section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.1), transparent);
  opacity: 0.5;
}

section:nth-of-type(3)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent-gold), transparent);
}

/* How It Works Section */
section:nth-of-type(4) {
  background: linear-gradient(180deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
}

/* Why Choose Us Section */
section:nth-of-type(5) {
  background: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
}

/* Mission Section */
section:nth-of-type(6) {
  background: linear-gradient(180deg, var(--color-bg-tertiary) 0%, var(--color-bg-secondary) 100%);
}

/* Container width for large screens */
section > .max-w-7xl,
section > .max-w-5xl,
section > .max-w-3xl {
  padding: 0 var(--spacing-xl);
}

@media (min-width: 1024px) {
  section {
    padding: var(--spacing-3xl) var(--spacing-xl);
  }

  section > .max-w-7xl,
  section > .max-w-5xl,
  section > .max-w-3xl {
    padding: 0;
  }
}
