  :root {
      --color-primary: #0a0a0a;
      --color-secondary: #1a1a1a;
      --color-accent: #ff6b35;
      --color-accent-glow: rgba(255, 107, 53, 0.3);
      --color-accent-dark: #e65a2b;
      --color-gold: #ffd700;
      --color-gold-dark: #b8860b;
      --color-text: #1a1a1a;
      --color-text-light: #525252;
      --color-bg: #ffffff;
      --color-bg-alt: #fafafa;
      --color-bg-dark: #111111;
      --color-border: #e5e5e5;
      --color-success: #10b981;
      --color-warning: #f59e0b;
      --color-error: #ef4444;
      
      --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
      --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
      --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
      --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
      
      --font-display: 'Crimson Pro', serif;
      --font-body: 'DM Sans', sans-serif;
      
      --spacing-xs: 0.5rem;
      --spacing-sm: 1rem;
      --spacing-md: 2rem;
      --spacing-lg: 4rem;
      --spacing-xl: 6rem;
      
      --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      
      --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
      --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
      --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
      --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
      --shadow-glow: 0 0 40px var(--color-accent-glow);
  }
  
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }
  
  body {
      font-family: var(--font-body);
      background: var(--color-bg);
      color: var(--color-text);
      line-height: 1.7;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
  }
  
  /* Glassmorphism utility */
  .glass {
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      box-shadow: var(--shadow-lg);
  }
  
  .glass-dark {
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* Typography */
  h1, h2, h3, h4 {
      font-family: var(--font-display);
      font-weight: 700;
      line-height: 1.1;
      color: var(--color-primary);
  }
  
  h1 {
      font-size: clamp(2.5rem, 6vw, 5.5rem);
      letter-spacing: -0.03em;
      background: linear-gradient(135deg, #1a1a1a 0%, #667eea 50%, #764ba2 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: gradientShift 8s ease infinite;
      background-size: 200% 200%;
  }
  
  @keyframes gradientShift {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
  }
  
  h2 {
      font-size: clamp(2rem, 4vw, 4rem);
      letter-spacing: -0.02em;
  }
  
  h3 {
      font-size: clamp(1.5rem, 3vw, 2.5rem);
      letter-spacing: -0.01em;
  }
  
  /* Container */
  .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--spacing-md);
  }
  
  .container-narrow {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 var(--spacing-md);
  }
  
  /* Sections */
  section {
      padding: var(--spacing-xl) 0;
      position: relative;
  }
  
  /* Decorative Background Elements */
  .bg-decoration {
      position: absolute;
      pointer-events: none;
      opacity: 0.03;
      z-index: 0;
  }
  
  .bg-decoration-1 {
      top: 10%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
      filter: blur(80px);
  }
  
  .bg-decoration-2 {
      bottom: 20%;
      left: -15%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
      filter: blur(100px);
  }
  
  /* Hero Section */
  .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
      background-size: 400% 400%;
      animation: gradientFlow 15s ease infinite;
      overflow: hidden;
  }
  
  @keyframes gradientFlow {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
  }
  
  .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: 
          radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
          radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
          radial-gradient(circle at 40% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
      animation: particleFloat 20s ease-in-out infinite;
  }
  
  @keyframes particleFloat {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(30px, -30px) scale(1.1); }
      66% { transform: translate(-20px, 20px) scale(0.9); }
  }
  
  .hero::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      right: 0;
      height: 120px;
      background: linear-gradient(to bottom, transparent, var(--color-bg));
  }
  
  .hero-content {
      position: relative;
      z-index: 1;
      animation: fadeInUp 1s ease-out;
  }
  
  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(40px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }
  
  .hero-headline {
      margin-bottom: var(--spacing-md);
      animation: fadeInUp 1s ease-out 0.2s both;
      text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      color: white !important;
      background: none !important;
      -webkit-text-fill-color: white !important;
  }
  
  .hero-subheadline {
      font-size: clamp(1.25rem, 2vw, 1.75rem);
      color: rgba(255, 255, 255, 0.95);
      margin-bottom: var(--spacing-lg);
      max-width: 800px;
      animation: fadeInUp 1s ease-out 0.4s both;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      font-weight: 400;
  }
  
  .hero-bullets {
      list-style: none;
      margin-bottom: var(--spacing-md);
      animation: fadeInUp 1s ease-out 0.6s both;
  }
  
  .hero-bullets li {
      font-size: 1.125rem;
      padding: var(--spacing-sm) 0;
      padding-left: 2.5rem;
      position: relative;
      color: white;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: var(--transition-smooth);
  }
  
  .hero-bullets li:hover {
      transform: translateX(10px);
  }
  
  .hero-bullets li::before {
      content: '→';
      position: absolute;
      left: 0;
      color: var(--color-gold);
      font-weight: 700;
      font-size: 1.5rem;
      text-shadow: 0 0 20px var(--color-gold);
      animation: pulse 2s ease-in-out infinite;
  }
  
  @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.7; transform: scale(1.1); }
  }
  
  .filter-warning {
      display: inline-block;
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(10px);
      color: var(--color-gold);
      padding: var(--spacing-sm) var(--spacing-md);
      margin: var(--spacing-md) 0;
      font-weight: 600;
      letter-spacing: 0.5px;
      border-left: 4px solid var(--color-gold);
      animation: fadeInUp 1s ease-out 0.8s both, glow 2s ease-in-out infinite;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  }
  
  @keyframes glow {
      0%, 100% { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 0 rgba(255, 215, 0, 0); }
      50% { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 215, 0, 0.5); }
  }
  
  /* Buttons */
  .btn {
      display: inline-block;
      padding: 1.25rem 3rem;
      font-size: 1.125rem;
      font-weight: 700;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: var(--transition-smooth);
      position: relative;
      overflow: hidden;
      font-family: var(--font-body);
      letter-spacing: 0.5px;
      border-radius: 50px;
      text-transform: uppercase;
      font-size: 1rem;
  }
  
  .btn-primary {
      background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
      color: white;
      box-shadow: 
          0 10px 30px rgba(255, 107, 53, 0.4),
          0 0 0 0 rgba(255, 107, 53, 0.5);
      animation: fadeInUp 1s ease-out 1s both;
      position: relative;
  }
  
  .btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      transition: left 0.6s;
  }
  
  .btn-primary::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50px;
      padding: 2px;
      background: linear-gradient(135deg, #ffd700, #ff6b35, #f7931e);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: 0;
      transition: opacity 0.4s;
  }
  
  .btn-primary:hover {
      transform: translateY(-5px) scale(1.02);
      box-shadow: 
          0 20px 50px rgba(255, 107, 53, 0.5),
          0 0 0 8px rgba(255, 107, 53, 0.2);
  }
  
  .btn-primary:hover::before {
      left: 100%;
  }
  
  .btn-primary:hover::after {
      opacity: 1;
  }
  
  .btn-primary:active {
      transform: translateY(-2px) scale(0.98);
  }
  
  /* Section Headers */
  .section-header {
      text-align: center;
      margin-bottom: var(--spacing-lg);
  }
  
  .section-title {
      margin-bottom: var(--spacing-sm);
      position: relative;
      display: inline-block;
      padding-bottom: 1.5rem;
  }
  
  .section-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 4px;
      background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
      border-radius: 2px;
  }
  
  .section-title::before {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
      border-radius: 2px;
  }
  
  .section-subtitle {
      font-size: 1.25rem;
      color: var(--color-text-light);
      max-width: 700px;
      margin: var(--spacing-md) auto 0;
  }
  
  /* Content Cards */
  .content-card {
      background: white;
      padding: var(--spacing-lg);
      margin: var(--spacing-md) 0;
      border: 1px solid var(--color-border);
      border-radius: 20px;
      position: relative;
      transition: var(--transition-smooth);
      box-shadow: var(--shadow-sm);
  }
  
  .content-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 5px;
      height: 0;
      background: linear-gradient(180deg, var(--color-accent), var(--color-gold));
      transition: height 0.5s ease;
      border-radius: 20px 0 0 20px;
  }
  
  .content-card::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      background: radial-gradient(circle, rgba(255, 107, 53, 0.05), transparent 70%);
      transform: translate(-50%, -50%);
      transition: all 0.6s ease;
      border-radius: 50%;
      z-index: 0;
  }
  
  .content-card > * {
      position: relative;
      z-index: 1;
  }
  
  .content-card:hover::before {
      height: 100%;
  }
  
  .content-card:hover::after {
      width: 100%;
      height: 100%;
  }
  
  .content-card:hover {
      transform: translateY(-8px) scale(1.01);
      box-shadow: var(--shadow-xl);
      border-color: rgba(255, 107, 53, 0.3);
  }
  
  /* Checklists */
  .checklist {
      list-style: none;
      margin: var(--spacing-md) 0;
  }
  
  .checklist li {
      padding: var(--spacing-sm) 0;
      padding-left: 3.5rem;
      position: relative;
      font-size: 1.125rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      transition: var(--transition-smooth);
  }
  
  .checklist li:last-child {
      border-bottom: none;
  }
  
  .checklist li:hover {
      padding-left: 4rem;
      color: rgba(255, 255, 255, 0.95);
  }
  
  .checklist.check-yes li::before {
      content: '✓';
      position: absolute;
      left: 0;
      width: 2.5rem;
      height: 2.5rem;
      background: linear-gradient(135deg, #10b981, #059669);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-weight: 700;
      box-shadow: 
          0 4px 12px rgba(16, 185, 129, 0.4),
          inset 0 -2px 4px rgba(0, 0, 0, 0.2);
      transition: var(--transition-bounce);
  }
  
  .checklist.check-yes li:hover::before {
      transform: scale(1.15) rotate(360deg);
      box-shadow: 
          0 6px 20px rgba(16, 185, 129, 0.6),
          inset 0 -2px 4px rgba(0, 0, 0, 0.2);
  }
  
  .checklist.check-no li::before {
      content: '✗';
      position: absolute;
      left: 0;
      width: 2.5rem;
      height: 2.5rem;
      background: linear-gradient(135deg, #ef4444, #dc2626);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-weight: 700;
      box-shadow: 
          0 4px 12px rgba(239, 68, 68, 0.4),
          inset 0 -2px 4px rgba(0, 0, 0, 0.2);
      transition: var(--transition-bounce);
  }
  
  .checklist.check-no li:hover::before {
      transform: scale(1.15) rotate(360deg);
      box-shadow: 
          0 6px 20px rgba(239, 68, 68, 0.6),
          inset 0 -2px 4px rgba(0, 0, 0, 0.2);
  }
  
  /* Grid Layout */
  .grid {
      display: grid;
      gap: var(--spacing-md);
      margin: var(--spacing-lg) 0;
  }
  
  .grid-2 {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .grid-3 {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  /* Feature Cards */
  .feature-card {
      background: white;
      padding: var(--spacing-md);
      border: 1px solid var(--color-border);
      border-radius: 16px;
      transition: var(--transition-smooth);
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
  }
  
  .feature-card::before {
      content: '';
      position: absolute;
      top: -100%;
      left: -100%;
      width: 300%;
      height: 300%;
      background: conic-gradient(
          from 0deg at 50% 50%,
          transparent 0deg,
          rgba(255, 107, 53, 0.1) 60deg,
          transparent 120deg
      );
      transition: transform 0.6s ease;
  }
  
  .feature-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, transparent 0%, rgba(255, 107, 53, 0.03) 100%);
      opacity: 0;
      transition: opacity 0.4s ease;
      border-radius: 16px;
  }
  
  .feature-card:hover::before {
      transform: rotate(180deg);
  }
  
  .feature-card:hover {
      border-color: rgba(255, 107, 53, 0.5);
      transform: translateY(-10px);
      box-shadow: 
          var(--shadow-xl),
          0 0 0 1px rgba(255, 107, 53, 0.1);
  }
  
  .feature-card:hover::after {
      opacity: 1;
  }
  
  .feature-card > * {
      position: relative;
      z-index: 1;
  }
  
  .feature-icon {
      font-size: 3rem;
      margin-bottom: var(--spacing-sm);
      display: block;
      filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
      transition: var(--transition-bounce);
  }
  
  .feature-card:hover .feature-icon {
      transform: scale(1.2) rotate(5deg);
      filter: drop-shadow(0 8px 16px rgba(255, 107, 53, 0.3));
  }
  
  .feature-title {
      font-size: 1.5rem;
      margin-bottom: var(--spacing-sm);
      color: var(--color-primary);
      transition: var(--transition-smooth);
  }
  
  .feature-card:hover .feature-title {
      color: var(--color-accent);
  }
  
  .feature-description {
      color: var(--color-text-light);
      line-height: 1.7;
  }
  
  /* Highlight Sections */
  .highlight-section {
      background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
      background-size: 200% 200%;
      animation: gradientSlide 10s ease infinite;
      color: white;
      position: relative;
      overflow: hidden;
  }
  
  @keyframes gradientSlide {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
  }
  
  .highlight-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
      border-radius: 50%;
      animation: float 20s ease-in-out infinite;
  }
  
  @keyframes float {
      0%, 100% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(-50px, 50px) scale(1.1); }
  }
  
  .highlight-section::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      animation: float 15s ease-in-out infinite reverse;
  }
  
  .highlight-section h2,
  .highlight-section h3 {
      color: white;
  }
  
  .highlight-content {
      position: relative;
      z-index: 1;
  }
  
  /* Steps Section */
  .steps {
      counter-reset: step-counter;
      position: relative;
  }
  
  .steps::before {
      content: '';
      position: absolute;
      left: 1.75rem;
      top: 2rem;
      bottom: 2rem;
      width: 3px;
      background: linear-gradient(180deg, var(--color-accent), var(--color-gold));
      border-radius: 2px;
      opacity: 0.3;
  }
  
  .step-item {
      counter-increment: step-counter;
      position: relative;
      padding-left: 5.5rem;
      margin-bottom: var(--spacing-lg);
      transition: var(--transition-smooth);
  }
  
  .step-item:hover {
      transform: translateX(10px);
  }
  
  .step-item::before {
      content: counter(step-counter);
      position: absolute;
      left: 0;
      top: 0;
      width: 3.5rem;
      height: 3.5rem;
      background: linear-gradient(135deg, var(--color-accent), var(--color-gold));
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      font-weight: 700;
      font-family: var(--font-display);
      border-radius: 50%;
      box-shadow: 
          0 8px 24px rgba(255, 107, 53, 0.4),
          inset 0 -4px 8px rgba(0, 0, 0, 0.2);
      transition: var(--transition-bounce);
      z-index: 1;
  }
  
  .step-item:hover::before {
      transform: scale(1.15) rotate(360deg);
      box-shadow: 
          0 12px 32px rgba(255, 107, 53, 0.6),
          inset 0 -4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .step-title {
      font-size: 1.75rem;
      margin-bottom: var(--spacing-sm);
      color: var(--color-primary);
  }
  
  .step-description {
      color: var(--color-text-light);
      font-size: 1.125rem;
      line-height: 1.8;
  }
  
  /* CTA Section */
  .cta-section {
      text-align: center;
      background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
      position: relative;
      overflow: hidden;
  }
  
  .cta-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: 
          radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
          radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
  }
  
  .cta-box {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(20px);
      padding: var(--spacing-lg);
      max-width: 700px;
      margin: 0 auto;
      border: 2px solid transparent;
      background-clip: padding-box;
      box-shadow: 
          var(--shadow-xl),
          inset 0 0 0 1px rgba(255, 255, 255, 0.5);
      position: relative;
      border-radius: 24px;
      overflow: hidden;
  }
  
  .cta-box::before {
      content: '';
      position: absolute;
      inset: -2px;
      background: linear-gradient(135deg, var(--color-accent), var(--color-gold), var(--color-accent));
      background-size: 200% 200%;
      animation: gradientRotate 3s linear infinite;
      border-radius: 24px;
      z-index: -1;
  }
  
  @keyframes gradientRotate {
      0% { background-position: 0% 50%; }
      100% { background-position: 200% 50%; }
  }
  
  .cta-box::after {
      content: '';
      position: absolute;
      inset: 0;
      background: white;
      border-radius: 22px;
      z-index: -1;
  }
  
  /* Footer */
  footer {
      background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
      color: white;
      padding: var(--spacing-lg) 0 var(--spacing-md);
      position: relative;
      overflow: hidden;
  }
  
  footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  }
  
  footer::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      filter: blur(40px);
  }
  
  .footer-content {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 1;
  }
  
  .footer-title {
      background: linear-gradient(135deg, var(--color-accent), var(--color-gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-size: 1.5rem;
      margin-bottom: var(--spacing-md);
  }
  
  .legal-text {
      font-size: 0.875rem;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: var(--spacing-sm);
  }
  
  .legal-text strong {
      color: white;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
      :root {
          --spacing-lg: 3rem;
          --spacing-xl: 4rem;
      }
      
      .hero {
          min-height: auto;
          padding: var(--spacing-xl) 0;
      }
      
      .hero-bullets li {
          font-size: 1rem;
      }
      
      .btn {
          padding: 1rem 2rem;
          font-size: 1rem;
          width: 100%;
      }
      
      .step-item {
          padding-left: 4rem;
      }
      
      .step-item::before {
          width: 3rem;
          height: 3rem;
          font-size: 1.5rem;
      }
      
      .grid-2,
      .grid-3 {
          grid-template-columns: 1fr;
      }
      
      .feature-icon {
          font-size: 2.5rem;
      }
  }
  
  /* Smooth Scroll */
  html {
      scroll-behavior: smooth;
  }
  
  /* Selection */
  ::selection {
      background: linear-gradient(135deg, var(--color-accent), var(--color-gold));
      color: white;
  }
  
  /* Scroll Reveal Animations */
  @keyframes fadeInUpScroll {
      from {
          opacity: 0;
          transform: translateY(60px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }
  
  .reveal {
      animation: fadeInUpScroll 0.8s ease-out;
  }
  
  /* Custom Scrollbar */
  ::-webkit-scrollbar {
      width: 12px;
  }
  
  ::-webkit-scrollbar-track {
      background: var(--color-bg);
  }
  
  ::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, var(--color-accent), var(--color-gold));
      border-radius: 6px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(180deg, var(--color-accent-dark), var(--color-gold-dark));
  }
  
  /* Loading Animation */
  @keyframes shimmer {
      0% { background-position: -1000px 0; }
      100% { background-position: 1000px 0; }
  }
  
  .shimmer {
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      background-size: 1000px 100%;
      animation: shimmer 2s infinite;
  }
