/* --- Global Styles & Variables --- */
:root {
    --matte-black: #0a0a0a; /* Slightly off-black for depth */
    --dark-bg-secondary: #1a1a1a;
    --premium-gold: #f3c300;
    --premium-gold-darker: #d4a700;
    --crisp-white: #ffffff;
    --text-muted: #a0a0a0;
    --success-green: #28a745;
    --error-red: #dc3545;
  
    --font-primary: "Poppins", sans-serif;
    --font-secondary: "Playfair Display", serif;
  
    --transition-speed: 0.3s;
    --animation-duration: 0.6s;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base font size */
  }
  
  body {
    font-family: var(--font-primary);
    background-color: var(--matte-black);
    color: var(--crisp-white);
    line-height: 1.7;
    overflow-x: hidden; /* Prevent horizontal scroll */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  h1,
  h2,
  h3,
  h4 {
    font-family: var(--font-secondary);
    color: var(--crisp-white);
    line-height: 1.3;
    margin-bottom: 0.75em;
    font-weight: 700;
  }
  
  h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
  } /* Responsive font size */
  h2 {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
  h4 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-family: var(--font-primary);
    font-weight: 600;
  }
  
  p {
    margin-bottom: 1em;
    color: var(--text-muted);
    font-weight: 300;
  }
  
  a {
    color: var(--premium-gold);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
  }
  
  a:hover {
    color: var(--premium-gold-darker);
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  ul {
    list-style: none;
  }
  
  .section-padding {
    padding: 80px 0;
  }
  .section-padding-small {
    padding: 40px 0;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 1.5em;
  }
  
  .section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: -1em auto 3em auto;
    color: var(--text-muted);
    font-size: 1.1rem;
  }
  
  .gold-text {
    color: var(--premium-gold);
  }
  
  .gold-icon {
    color: var(--premium-gold);
    margin-right: 8px;
  }
  .large-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  .medium-icon {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .muted-text {
    color: var(--text-muted);
    font-size: 0.9em;
  }
  .muted-icon {
    color: #555;
  }
  
  .text-center {
    text-align: center;
  }
  
  .strike-through {
    text-decoration: line-through;
    color: var(--text-muted);
    margin-right: 10px;
    font-size: 0.9em;
  }
  
  /* --- Buttons --- */
  .btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px; /* Pill shape */
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: 2px solid transparent;
    font-size: 1rem;
    position: relative; /* For pulse */
    overflow: hidden;
  }
  
  .btn-primary {
    background-color: var(--premium-gold);
    color: var(--matte-black);
    border-color: var(--premium-gold);
  }
  
  .btn-primary:hover {
    background-color: var(--premium-gold-darker);
    border-color: var(--premium-gold-darker);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 195, 0, 0.3);
  }
  
  .btn-secondary {
    color: var(--premium-gold);
    background-color: transparent;
    padding: 0; /* Adjust as needed for text links */
    border: none;
    margin-left: 15px; /* Space from primary */
    font-size: 0.95rem;
    border-bottom: 1px solid transparent; /* Subtle underline effect */
  }
  
  .btn-secondary:hover {
    color: var(--premium-gold-darker);
    border-bottom-color: var(--premium-gold-darker);
  }
  
  .btn-block {
    display: block;
    width: 100%;
  }
  
  .btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
  }
  
  /* Pulse Animation */
  .btn-pulse::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
  }
  
  .btn-pulse:hover::before {
    animation: pulse 0.75s ease-out;
  }
  
  @keyframes pulse {
    to {
      width: 200%;
      padding-bottom: 200%;
      opacity: 0;
    }
  }
  
  /* --- Hero Section --- */
  .hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 60px; /* Space for content */
    padding-bottom: 60px;
  }
  
  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  
  .hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay */
    z-index: 0;
  }
  
  .hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 40px;
    align-items: center;
  }
  
  .hero-logo {
    width: 180px;
    margin-bottom: 30px;
  }
  
  .main-headline {
    margin-bottom: 0.5em;
  }
  
  .subheadline {
    font-size: 1.2rem;
    margin-bottom: 1.5em;
    max-width: 550px;
    color: var(--crisp-white); /* Brighter than muted */
    opacity: 0.9;
  }
  
  .hero-benefits {
    margin-bottom: 2.5em;
  }
  
  .hero-benefits li {
    margin-bottom: 0.8em;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
  }
  
  .hero-benefits .gold-icon {
    font-size: 1.2rem;
    margin-right: 12px;
  }
  
  .hero-cta {
    margin-bottom: 3em;
  }
  
  .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .product-mockup {
    max-width: 100%;
    /* Optional: Add subtle perspective or shadow */
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
  }
  
  .micro-testimonial {
    display: flex;
    align-items: center;
    background: rgba(26, 26, 26, 0.8); /* Semi-transparent dark bg */
    padding: 15px 20px;
    border-radius: 8px;
    max-width: 400px;
    border-left: 3px solid var(--premium-gold);
    backdrop-filter: blur(5px); /* Glass effect */
  }
  
  .micro-testimonial .testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--premium-gold);
  }
  
  .micro-testimonial blockquote {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
    color: var(--text-muted);
  }
  .micro-testimonial cite {
    display: block;
    font-size: 0.8rem;
    margin-top: 5px;
    color: var(--crisp-white);
    font-style: normal;
    font-weight: 600;
  }
  
  /* --- Key Benefits Section --- */
  .key-benefits-section {
    background-color: var(--dark-bg-secondary);
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }
  
  .benefit-item {
    background-color: var(--matte-black);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #222;
    transition: transform var(--transition-speed) ease,
      box-shadow var(--transition-speed) ease;
  }
  
  .benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }
  
  .benefit-item h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.3rem;
  }
  
  /* --- How It Works Section --- */
  .how-it-works-section {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed; /* Parallax effect */
    color: var(--crisp-white);
  }
  
  .parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75); /* Darken the background image */
    z-index: 0;
  }
  
  .how-it-works-section .container {
    position: relative;
    z-index: 1;
  }
  
  .steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
    position: relative;
    max-width: 800px; /* Limit width for readability */
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Optional: Add connecting line */
  .steps-timeline::before {
    content: "";
    position: absolute;
    top: 20px; /* Adjust based on number size */
    bottom: 20px;
    left: 30px; /* Align with center of number */
    width: 3px;
    background-color: rgba(243, 195, 0, 0.3); /* Faded gold */
    z-index: -1;
    border-radius: 2px;
  }
  
  .step-item {
    display: flex;
    align-items: flex-start; /* Align number top with content */
    gap: 30px;
    background-color: rgba(26, 26, 26, 0.7); /* Slightly transparent */
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--premium-gold);
    backdrop-filter: blur(3px);
  }
  
  .step-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
    width: 60px; /* Ensure consistent alignment */
    text-align: center;
  }
  
  .step-content h4 {
    margin-bottom: 0.5em;
    color: var(--crisp-white);
  }
  .step-content p {
    color: var(--text-muted);
    margin-bottom: 0;
  }
  
  /* --- Feature Showcase Section --- */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }
  
  .feature-card {
    background-color: var(--dark-bg-secondary);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #282828;
    display: flex;
    flex-direction: column;
  }
  .feature-card:hover {
    border-left: 3px solid var(--premium-gold);
    transform: scale(1.02);
    transition: all var(--transition-speed) ease;
  }
  
  .feature-card h4 {
    margin-top: 0;
    margin-bottom: 10px;
  }
  .feature-card .gold-icon {
    align-self: flex-start;
  }
  .feature-card p {
    font-size: 0.95rem;
    flex-grow: 1;
  } /* Allow text to grow */
  .feature-screenshot {
    margin-top: 20px;
    border-radius: 5px;
    opacity: 0.85;
    border: 1px solid #333;
  }
  /* .feature-card .learn-more { margin-top: 15px; font-weight: 600; align-self: flex-start; }
  .feature-card .learn-more i { margin-left: 5px; transition: transform var(--transition-speed) ease; }
  .feature-card .learn-more:hover i { transform: translateX(5px); } */
  
  /* --- Social Proof Section --- */
  .social-proof-section {
      background-color: var(--dark-bg-secondary);
    }
    
    /* --- Testimonial Carousel Enhancements --- */
    .testimonial-carousel-wrapper {
      position: relative; /* Needed for absolute positioning of buttons */
      padding-left: 40px;  /* Space for prev button */
      padding-right: 40px; /* Space for next button */
      /* overflow: hidden; --- REMOVED: Let carousel handle overflow --- */
    }
    
    .testimonial-carousel {
      display: flex;
      gap: 30px;
      overflow-x: auto; /* Allow horizontal scrolling */
      padding-bottom: 20px; /* Space below cards if scrollbar were visible */
      scroll-snap-type: x mandatory; /* Enable snapping */
      /* Hide scrollbar visually but allow scrolling */
      -ms-overflow-style: none;  /* IE and Edge */
      scrollbar-width: none;  /* Firefox */
    }
    .testimonial-carousel::-webkit-scrollbar {
      display: none; /* Chrome, Safari, Opera */
    }
    
    .testimonial-card {
      flex-shrink: 0; /* Prevent card from shrinking below its basis */
      flex-grow: 0; /* Prevent card from growing beyond its basis */
      /* Width is controlled by flex-basis in media queries below */
      flex-basis: calc(100% - 40px); /* Default: Show ~one card + gap on mobile */
      /* max-width: calc(100% - 40px); --- REMOVED: Redundant with flex-basis --- */
    
      background-color: var(--matte-black);
      padding: 30px;
      padding-top: 60px; /* INCREASED slightly: More reliable space for 35px overlap + border + breathing room */
      border-radius: 10px;
      border: 1px solid #282828;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      scroll-snap-align: start; /* Align card start to snap point */
      position: relative; /* For avatar positioning */
      min-height: 200px; /* ADDED: Prevent card collapsing with short content */
      display: flex; /* ADDED: Use flex column for better internal alignment */
      flex-direction: column; /* ADDED */
    }
    
    .testimonial-card .testimonial-avatar {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid var(--premium-gold);
      position: absolute;
      top: -35px; /* ADJUSTED: Exactly half of 70px height */
      left: 30px;
      z-index: 1; /* Ensure avatar is above card background */
    }
    
    .testimonial-card .rating {
      margin-bottom: 15px;
      font-size: 1.1rem;
      color: var(--premium-gold);
    }
    
    .testimonial-card blockquote {
      font-size: 1.05rem;
      margin-bottom: 15px;
      line-height: 1.6;
      font-style: italic;
      color: var(--crisp-white);
      overflow-wrap: break-word; /* ADDED: Ensure long words wrap */
      flex-grow: 1; /* ADDED: Allow quote to take up available space */
    }
    
    .testimonial-card blockquote .highlight {
      background-color: rgba(243, 195, 0, 0.15);
      padding: 0.1em 0.3em;
      border-radius: 3px;
    }
    
    .testimonial-card cite {
      font-weight: 600;
      color: var(--text-muted);
      font-style: normal;
      margin-top: auto; /* ADDED: Push cite to the bottom */
      overflow-wrap: break-word; /* ADDED: Ensure long words wrap */
    }
    
    /* --- Client Logos --- */
    .client-logos {
      margin-top: 60px;
      text-align: center;
    }
    .sub-section-title {
      color: var(--text-muted);
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 20px;
    }
    .logo-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 40px;
    }
    .logo-grid img {
      max-height: 40px;
      width: auto;
      filter: grayscale(100%) brightness(1.5);
      opacity: 0.7;
      transition: all var(--transition-speed) ease;
    }
    .logo-grid img:hover {
      filter: none;
      opacity: 1;
    }
    
    /* --- Carousel Buttons --- */
    .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--premium-gold);
        border: 1px solid var(--premium-gold);
        border-radius: 50%;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        cursor: pointer;
        z-index: 10;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: background-color var(--transition-speed) ease, opacity var(--transition-speed) ease;
        backdrop-filter: blur(3px);
    }
    
    .carousel-btn:hover:not(:disabled) {
        background-color: var(--premium-gold);
        color: var(--matte-black);
    }
    
    .carousel-btn:disabled {
        opacity: 0.4;
        cursor: not-allowed;
        background-color: rgba(50, 50, 50, 0.3);
         border-color: #444;
         color: #666;
    }
    
    .carousel-btn-prev {
        left: -15px; /* Position slightly outside wrapper padding */
    }
    
    .carousel-btn-next {
        right: -15px; /* Position slightly outside wrapper padding */
    }
    
    /* --- Responsive Adjustments for Testimonials --- */
    
    /* Tablet */
    @media (min-width: 768px) {
        .testimonial-card {
            flex-basis: calc(50% - 15px); /* Show 2 cards (50% width minus half the gap) */
        }
    }
    
    /* Desktop */
    @media (min-width: 1024px) {
        .testimonial-card {
            flex-basis: calc(33.333% - 20px); /* Show 3 cards (33.3% width minus 2/3rds of the gap) */
        }
    }
    
    
    /* Adjust button position and avatar size on smaller screens */
    @media (max-width: 767px) {
         .testimonial-carousel-wrapper {
            padding-left: 30px; /* Reduce padding slightly */
            padding-right: 30px;
        }
        .carousel-btn-prev {
            left: -10px; /* Bring buttons closer */
        }
        .carousel-btn-next {
            right: -10px; /* Bring buttons closer */
        }
        .testimonial-card {
            flex-basis: calc(90% - 10px); /* Ensure slightly less than 100% for better visibility, adjust gap reference */
            padding-top: 50px; /* Adjust padding for smaller avatar */
            min-height: 180px; /* Slightly smaller min-height */
        }
        .testimonial-card .testimonial-avatar {
            width: 60px; /* Smaller avatar */
            height: 60px;
            top: -30px; /* Half of new height */
            left: 25px;
        }
    }
    
    /* Small Mobile */
    @media (max-width: 480px) {
         .testimonial-card {
            flex-basis: 95%; /* Almost full width */
            padding-top: 45px; /* Adjust padding for smallest avatar */
             min-height: 160px;
        }
         .testimonial-card .testimonial-avatar {
            width: 50px; /* Even smaller avatar */
            height: 50px;
            top: -25px; /* Half of new height */
            left: 20px;
        }
        .carousel-btn {
            width: 40px;
            height: 40px;
            font-size: 1rem;
        }
         .carousel-btn-prev {
            left: -5px;
        }
        .carousel-btn-next {
            right: -5px;
        }
         .testimonial-carousel-wrapper {
            padding-left: 25px;
            padding-right: 25px;
        }
    }
  
  
  
  /* --- Pricing Section --- */
  .pricing-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile first */
    gap: 30px;
    align-items: stretch; /* Make cards same height */
    margin-top: 40px;
  }
  
  .pricing-card {
    background-color: var(--dark-bg-secondary);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #282828;
    display: flex;
    flex-direction: column;
    position: relative; /* For badges */
    overflow: hidden;
  }
  
  .pricing-card.popular {
    border: 2px solid var(--premium-gold);
    box-shadow: 0 0 30px rgba(243, 195, 0, 0.2);
  }
  
  .plan-name {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
  
  .plan-price {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: var(--font-primary);
  }
  .price-term {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 25px;
  }
  
  .discount-badge,
  .popular-badge {
    position: absolute;
    top: 15px;
    background-color: var(--premium-gold);
    color: var(--matte-black);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
  }
  .discount-badge {
    right: 15px;
  }
  .popular-badge {
    left: -30px;
    top: 20px;
    transform: rotate(-45deg);
    width: 120px;
    text-align: center;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  }
  .popular-badge i {
    margin-right: 5px;
  }
  
  .feature-list {
    margin-bottom: 30px;
    flex-grow: 1; /* Push button to bottom */
  }
  
  .feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
  }
  .feature-list li i {
    width: 20px;
    text-align: center;
  }
  .feature-list li strong {
    color: var(--crisp-white);
  }
  
  .guarantee-box {
    margin-top: 50px;
    background-color: var(--dark-bg-secondary);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border-left: 5px solid var(--premium-gold);
  }
  .guarantee-box h4 {
    color: var(--crisp-white);
    margin-bottom: 10px;
  }
  .guarantee-box p {
    margin-bottom: 0;
  }
  
  .bonuses-section {
    margin-top: 30px;
    text-align: center;
    padding: 20px;
    background: rgba(243, 195, 0, 0.05); /* Very subtle gold bg */
    border-radius: 8px;
  }
  .bonuses-section h4 {
    color: var(--premium-gold);
    margin-bottom: 15px;
  }
  .bonuses-section ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .bonuses-section li {
    font-size: 0.95rem;
  }
  
  /* --- FAQ Section --- */
  .faq-section {
    background-color: var(--dark-bg-secondary);
  }
  .faq-accordion {
    max-width: 800px;
    margin: 40px auto 0 auto;
    border: 1px solid #282828;
    border-radius: 10px;
    overflow: hidden; /* Clip corners */
  }
  
  .faq-item {
    border-bottom: 1px solid #282828;
    background-color: var(--matte-black);
  }
  .faq-item:last-child {
    border-bottom: none;
  }
  
  .faq-item summary {
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none; /* Remove default marker */
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--crisp-white);
    transition: background-color var(--transition-speed) ease;
  }
  
  .faq-item summary::-webkit-details-marker {
    display: none;
  } /* Chrome/Safari */
  .faq-item summary::marker {
    display: none;
  } /* Firefox */
  
  .faq-item summary:hover {
    background-color: rgba(255, 255, 255, 0.05);
  }
  
  .faq-item summary i {
    transition: transform var(--transition-speed) ease;
    color: var(--premium-gold);
  }
  
  .faq-item[open] summary {
    background-color: rgba(243, 195, 0, 0.1); /* Subtle gold on open */
  }
  .faq-item[open] summary i {
    transform: rotate(180deg);
  }
  
  .faq-item p {
    padding: 0 20px 20px 20px;
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--text-muted);
    overflow: hidden; /* For animation */
    max-height: 0; /* Collapsed state */
    opacity: 0;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out,
      padding 0.5s ease-out;
  }
  .faq-item[open] p {
    max-height: 300px; /* Adjust as needed */
    opacity: 1;
    padding: 0 20px 20px 20px; /* Restore padding */
  }
  
  /* --- Final CTA Section --- */
  .final-cta-section {
    background-color: var(--premium-gold); /* High impact */
    color: var(--matte-black);
  }
  .final-cta-section .gold-text {
    color: var(--matte-black);
    text-decoration: underline;
  } /* Adjust gold text */
  .final-cta-headline {
    color: var(--matte-black);
    font-size: clamp(2.2rem, 6vw, 3.5rem);
  }
  .final-cta-subheadline {
    color: #333; /* Darker text on gold */
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2.5em auto;
  }
  .final-cta-section .btn-primary {
    background-color: var(--matte-black);
    color: var(--premium-gold);
    border-color: var(--matte-black);
  }
  .final-cta-section .btn-primary:hover {
    background-color: #333;
    color: var(--crisp-white);
    border-color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  .trust-indicators {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    color: #333;
    font-size: 0.9rem;
    font-weight: 600;
  }
  .trust-indicators .gold-icon {
    color: var(--matte-black);
  }
  .contact-option {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #333;
  }
  .contact-option a {
    color: var(--matte-black);
    font-weight: 600;
  }
  .contact-option a:hover {
    text-decoration: underline;
  }
  
  /* --- Newsletter Section --- */
  .newsletter-section {
    background-color: var(--dark-bg-secondary);
    text-align: center;
  }
  .newsletter-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  .newsletter-subtitle {
    margin-bottom: 30px;
  }
  
  .newsletter-form .form-group {
    display: flex;
    max-width: 600px;
    margin: 0 auto 15px auto;
    border: 1px solid #333;
    border-radius: 50px; /* Pill shape */
    overflow: hidden;
    background-color: var(--matte-black);
  }
  
  .newsletter-form input[type="email"] {
    flex-grow: 1;
    padding: 15px 25px;
    border: none;
    background: transparent;
    color: var(--crisp-white);
    font-size: 1rem;
    outline: none;
  }
  .newsletter-form input[type="email"]::placeholder {
    color: var(--text-muted);
  }
  
  .newsletter-form button[type="submit"] {
    padding: 15px 30px;
    border: none;
    border-radius: 0 50px 50px 0; /* Match outer radius */
    cursor: pointer;
    transition: background-color var(--transition-speed) ease;
    flex-shrink: 0;
    position: relative; /* For spinner */
  }
  .newsletter-form .loading-spinner {
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-top: 2px solid var(--matte-black);
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
  }
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  .newsletter-form .form-message {
    max-width: 600px;
    margin: 10px auto;
    padding: 10px;
    border-radius: 5px;
    font-size: 0.9rem;
  }
  .form-message.success {
    background-color: var(--success-green);
    color: white;
  }
  .form-message.error {
    background-color: var(--error-red);
    color: white;
  }
  
  .gdpr-consent {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .gdpr-consent input[type="checkbox"] {
    margin-right: 8px;
    accent-color: var(--premium-gold); /* Style checkbox */
    vertical-align: middle;
  }
  .gdpr-consent label {
    vertical-align: middle;
  }
  .gdpr-consent a {
    color: var(--premium-gold);
    text-decoration: underline;
  }
  
  /* --- Footer --- */
  .footer-section {
    background-color: var(--matte-black);
    border-top: 1px solid #222;
    padding: 60px 0 30px 0;
    font-size: 0.9rem;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .footer-col h4 {
    font-family: var(--font-primary); /* Use primary font for footer heads */
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--premium-gold);
    margin-bottom: 15px;
  }
  
  .footer-logo {
    max-width: 150px;
    margin-bottom: 15px;
  }
  
  .footer-about p {
    color: var(--text-muted);
    line-height: 1.6;
  }
  
  .footer-links ul li,
  .footer-legal ul li {
    margin-bottom: 10px;
  }
  
  .footer-links ul li a,
  .footer-legal ul li a {
    color: var(--text-muted);
  }
  .footer-links ul li a:hover,
  .footer-legal ul li a:hover {
    color: var(--crisp-white);
    text-decoration: underline;
  }
  
  .footer-contact p {
    margin-bottom: 10px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
  }
  .footer-contact p i {
    margin-right: 10px;
    width: 15px;
    text-align: center;
  }
  .footer-contact a {
    color: var(--text-muted);
  }
  .footer-contact a:hover {
    color: var(--crisp-white);
  }
  
  .social-links {
    margin-top: 15px;
  }
  .social-links a {
    color: var(--text-muted);
    font-size: 1.3rem;
    margin-right: 15px;
    transition: color var(--transition-speed) ease;
  }
  .social-links a:hover {
    color: var(--premium-gold);
  }
  
  .footer-bottom {
    border-top: 1px solid #222;
    padding-top: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
  }
  
  /* --- Animations --- */
  /* Initial states for scroll animations */
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--animation-duration) ease-out,
      transform var(--animation-duration) ease-out;
  }
  
  /* Active state triggered by JS */
  .animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Specific Hero Animations */
  .animate-fade-in {
    animation: fadeIn var(--animation-duration) ease-out forwards;
    opacity: 0;
  }
  .animate-fade-in-up {
    animation: fadeInUp var(--animation-duration) ease-out forwards;
    opacity: 0;
  }
  .animate-fade-in-down {
    animation: fadeInDown var(--animation-duration) ease-out forwards;
    opacity: 0;
  }
  .animate-fade-in-right {
    animation: fadeInRight var(--animation-duration) ease-out forwards;
    opacity: 0;
  }
  
  /* Delay utility (apply with JS if needed, or directly in CSS if sequence is fixed) */
  .animate-on-scroll[data-delay="100"].is-visible {
    transition-delay: 0.1s;
  }
  .animate-on-scroll[data-delay="150"].is-visible {
    transition-delay: 0.15s;
  }
  .animate-on-scroll[data-delay="200"].is-visible {
    transition-delay: 0.2s;
  }
  .animate-on-scroll[data-delay="250"].is-visible {
    transition-delay: 0.25s;
  }
  .animate-on-scroll[data-delay="300"].is-visible {
    transition-delay: 0.3s;
  }
  .animate-on-scroll[data-delay="350"].is-visible {
    transition-delay: 0.35s;
  }
  .animate-on-scroll[data-delay="400"].is-visible {
    transition-delay: 0.4s;
  }
  .animate-on-scroll[data-delay="450"].is-visible {
    transition-delay: 0.45s;
  }
  .animate-on-scroll[data-delay="500"].is-visible {
    transition-delay: 0.5s;
  }
  .animate-on-scroll[data-delay="600"].is-visible {
    transition-delay: 0.6s;
  }
  .animate-on-scroll[data-delay="700"].is-visible {
    transition-delay: 0.7s;
  }
  
  /* Hero direct animation delays */
  [data-delay="100"] {
    animation-delay: 0.1s;
  }
  [data-delay="200"] {
    animation-delay: 0.2s;
  }
  [data-delay="300"] {
    animation-delay: 0.3s;
  }
  [data-delay="400"] {
    animation-delay: 0.4s;
  }
  [data-delay="500"] {
    animation-delay: 0.5s;
  }
  [data-delay="600"] {
    animation-delay: 0.6s;
  }
  [data-delay="700"] {
    animation-delay: 0.7s;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* --- Media Queries (Mobile First Approach) --- */
  
  /* Tablet Styles */
  @media (min-width: 768px) {
    .hero-container {
      grid-template-columns: 55% 45%;
      gap: 50px;
    }
    .testimonial-card {
      flex: 0 0 calc(50% - 15px);
      max-width: calc(50% - 15px);
    } /* Show 2 cards */
    .pricing-grid {
      grid-template-columns: 1fr 1fr;
      align-items: start; /* Prevent stretching if content differs */
    }
    .footer-grid {
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    } /* Slightly larger columns */
  }
  
  /* Desktop Styles */
  @media (min-width: 1024px) {
    .hero-container {
      grid-template-columns: 60% 40%;
    }
    .testimonial-card {
      flex: 0 0 calc(33.333% - 20px);
      max-width: calc(33.333% - 20px);
    } /* Show 3 cards */
    /* If How It Works line feels off, adjust */
    .steps-timeline::before {
      left: 30px; /* Recenter if needed */
    }
    .step-number {
      width: 60px;
    }
  }
  
  /* Larger Desktop Styles */
  @media (min-width: 1200px) {
    /* Increase padding or element sizes slightly if desired */
    .section-padding {
      padding: 100px 0;
    }
  }
  