:root {
    --bg-gradient-light: linear-gradient(135deg, #e0f7ff, #ffffff);
    --text-color-light: #111827;
    --nav-bg-light: rgba(255 255 255 / 0.9);
    --nav-text-light: #0c4a6e;
    --nav-link-hover-bg-light: #bae6fd;
    --nav-link-hover-color-light: #0369a1;
    --btn-gradient-light: linear-gradient(90deg, #0ea5e9, #3b82f6);
    --footer-bg-light: #0c4a6e;
    --footer-text-light: #e0f2fe;
    --footer-link-light: #38bdf8;
    --bg-gradient-dark: linear-gradient(135deg, #0f172a, #1e293b);
    --text-color-dark: #e0e7ff;
    --nav-bg-dark: rgba(15 23 42 / 0.85);
    --nav-text-dark: #93c5fd;
    --nav-link-hover-bg-dark: #2563eb;
    --nav-link-hover-color-dark: #dbeafe;
    --btn-gradient-dark: linear-gradient(90deg, #2563eb, #1d4ed8);
    --footer-bg-dark: #1e293b;
    --footer-text-dark: #475569;
    --footer-link-dark: #60a5fa;
}

body {
    background: var(--bg-gradient-light);
    color: var(--text-color-light);
    transition: background 0.4s ease, color 0.4s ease;
}

nav {
    background: var(--nav-bg-light)!important;
    color: var(--nav-text-light)!important;
    transition: background 0.4s ease, color 0.4s ease;
}

nav .logo {
    color: var(--nav-text-light);
    transition: color 0.4s ease;
}

nav .logo:hover {
    color: var(--btn-gradient-light);
}

nav .nav-links a {
    color: #334155;
}

nav .nav-links a:hover,
nav .nav-links a:focus-visible {
    background-color: var(--nav-link-hover-bg-light);
    color: var(--nav-link-hover-color-light);
}

nav .cta-button {
    background: var(--btn-gradient-light);
    box-shadow: 0 4px 15px rgb(14 165 233 / 0.6);
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

nav .cta-button:hover,
nav .cta-button:focus-visible {
    background: var(--btn-gradient-light);
    box-shadow: 0 6px 25px rgb(14 165 233 / 0.9);
}

        .footer {
            background-color: #f9fafb;
            padding: 1.5rem 1rem;
            color: #475569;
            font-size: 0.9rem;
            border-top: 1px solid #e2e8f0;
        }
    
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }
    
        .footer-brand {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
    
        .footer-brand p {
            margin: 0;
        }
    
        .footer-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
    
        .footer-nav a {
            color: #3b82f6;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }
    
        .footer-nav a:hover,
        .footer-nav a:focus {
            color: #0ea5e9;
            outline: none;
        }
    
        /* Dark Mode */
        body.dark-mode .footer {
            background-color: #1e293b;
            color: #cbd5e1;
            border-color: #334155;
        }
    
        body.dark-mode .footer-nav a {
            color: #93c5fd;
        }
    
        body.dark-mode .footer-nav a:hover,
        body.dark-mode .footer-nav a:focus {
            color: #60a5fa;
        }
    
        /* Responsive */
        @media (max-width: 600px) {
            .footer-container {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
    
            .footer-brand {
                justify-content: center;
            }
    
            .footer-nav {
                justify-content: center;
            }
        }

body.dark-mode {
    background: var(--bg-gradient-dark)!important;
    color: var(--text-color-dark)!important;
}

body.dark-mode nav {
    background: var(--nav-bg-dark)!important;
    color: var(--nav-text-dark)!important;
}

body.dark-mode nav .logo {
    color: var(--nav-text-dark)!important;
}

body.dark-mode nav .logo:hover {
    color: var(--btn-gradient-dark)!important;
}

body.dark-mode nav .nav-links a:hover,
body.dark-mode nav .nav-links a:focus-visible {
    background-color: var(--nav-link-hover-bg-dark)!important;
    color: var(--nav-link-hover-color-dark)!important;
}

body.dark-mode nav .cta-button {
    background: var(--btn-gradient-dark)!important;
    box-shadow: 0 4px 15px rgb(37 99 235 / 0.6);
}

body.dark-mode nav .cta-button:hover,
body.dark-mode nav .cta-button:focus-visible {
    background: var(--btn-gradient-dark)!important;
    box-shadow: 0 6px 25px rgb(37 99 235 / 0.9);
}



*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: linear-gradient(135deg, #e0f7ff, #ffffff);
    color: #111827;
    scroll-behavior: smooth;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

.container {
    width: min(90vw, 1200px);
    margin-inline: auto;
    padding-block: 3rem;
}

nav {
    position: sticky;
    top: 0;
    background: rgba(255 255 255 / 0.9);
    backdrop-filter: saturate(180%) blur(10px);
    box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
    z-index: 9999;
}

nav .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: auto;
}

nav .logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: #0c4a6e;
    letter-spacing: 0.05em;
    user-select: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

nav .logo:hover {
    color: #0ea5e9;
}

nav .nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

body.dark-mode nav .nav-links a {
    color: #cbd5e1!important;
}

body.dark-mode nav .nav-links a:hover,
body.dark-mode nav .nav-links a:focus-visible {
    background-color: #1e293b!important;
    color: #f1f5f9!important;
}

nav .nav-links a {
    font-weight: 600;
    font-size: 1rem;
    color: #334155;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav .nav-links a:hover,
nav .nav-links a:focus-visible {
    background-color: #bae6fd;
    color: #0369a1;
    outline-offset: 3px;
    outline: 3px solid #38bdf8;
}

nav .cta-button {
    background: linear-gradient(90deg, #0ea5e9, #3b82f6);
    color: white;
    font-weight: 700;
    padding: 0.65rem 1.75rem;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgb(14 165 233 / 0.6);
    transition: background 0.4s ease, box-shadow 0.4s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    user-select: none;
}

nav .cta-button:hover,
nav .cta-button:focus-visible {
    background: linear-gradient(90deg, #3b82f6, #0ea5e9);
    box-shadow: 0 6px 25px rgb(14 165 233 / 0.9);
    outline-offset: 3px;
    outline: 3px solid #38bdf8;
}

nav .mobile-menu-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: #0c4a6e;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    nav .nav-links {
        display: none;
        flex-direction: column;
        background: rgba(255 255 255 / 0.95);
        position: absolute;
        top: 100%;
        right: 0;
        width: 220px;
        padding: 1rem;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgb(0 0 0 / 0.15);
        gap: 1rem;
    }

    nav .nav-links.active {
        display: flex;
    }

    nav .mobile-menu-button {
        display: block;
    }
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5rem 1.5rem 6rem;
    background-color: #dbeafe;
    position: relative;
    overflow: visible;
    gap: 2rem;
}

.hero h1 {
    font-size: clamp(2.75rem, 5vw, 4rem);
    font-weight: 900;
    color: #0c4a6e;
    max-width: 900px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    font-weight: 600;
    color: #334155;
}

.hero .btn-gradient {
    background: linear-gradient(90deg, #3b82f6, #0ea5e9);
    color: white;
    font-weight: 700;
    padding: 1rem 3rem;
    font-size: 1.125rem;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgb(14 165 233 / 0.6);
    transition: background 0.4s ease, box-shadow 0.4s ease;
    user-select: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-shadow: 0 0 8px rgb(0 0 0 / 0.15);
}

.hero .btn-gradient:hover,
.hero .btn-gradient:focus-visible {
    background: linear-gradient(90deg, #0ea5e9, #3b82f6);
    box-shadow: 0 14px 40px rgb(14 165 233 / 0.9);
    outline-offset: 3px;
    outline: 3px solid #38bdf8;
    outline-radius: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

.feature-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05);
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.feature-card:hover,
.feature-card:focus-within {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
    border-color: #38bdf8;
}

.feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 1rem;
    color: #0ea5e9;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.feature-card .lead {
    font-weight: 600;
    font-size: 1rem;
    color: #475569;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
}

.feature-card a {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: #0ea5e9;
    text-decoration: none;
    transition: color 0.2s ease;
}

.feature-card a:hover,
.feature-card a:focus {
    color: #0284c7;
    text-decoration: underline;
}

body.dark-mode .feature-card {
    background-color: #1e293b;
    color: #f1f5f9;
    border-color: #334155;
}

body.dark-mode .feature-card h3 {
    color: #e2e8f0;
}

body.dark-mode .feature-card .lead {
    color: #cbd5e1;
}

body.dark-mode .feature-card p {
    color: #94a3b8;
}

body.dark-mode .feature-card a {
    color: #93c5fd;
}

body.dark-mode .feature-card:hover {
    background-color: #334155;
    border-color: #475569;
}

body.dark-mode .feature-icon {
    stroke: #60a5fa;
}

body.dark-mode .hero h1 {
    color: #e0f2fe;
}

body.dark-mode .hero p {
    color: #cbd5e1;
}

body.dark-mode .hero .btn-gradient {
    background: linear-gradient(90deg, #2563eb, #0284c7);
    color: #ffffff;
    box-shadow: 0 10px 30px rgb(2 132 199 / 0.5);
    text-shadow: 0 0 6px rgb(0 0 0 / 0.2);
}

body.dark-mode .hero .btn-gradient:hover,
body.dark-mode .hero .btn-gradient:focus-visible {
    background: linear-gradient(90deg, #0284c7, #2563eb);
    box-shadow: 0 14px 40px rgb(2 132 199 / 0.8);
    outline: 3px solid #38bdf8;
}

body.dark-mode .hero {
    background-color: #0f172a;
}



html {
    scroll-behavior: smooth;
}

.about-section {
    background-color: #e0f2fe;
    border-radius: 1rem;
    padding: 3rem 2rem;
    margin-top: 4rem;
    text-align: center;
    color: #1e3a8a;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.about-section h2 {
    font-weight: 800;
    font-size: 2rem;
    color: #0369a1;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.about-section p {
    font-weight: 600;
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    transition: color 0.3s ease;
}

body.dark-mode .about-section {
    background-color: #1e293b;
    color: #f1f5f9;
}

body.dark-mode .about-section h2 {
    color: #60a5fa;
}

body.dark-mode .about-section p {
    color: #cbd5e1;
}

.affiliate-section {
    background-color: #e0f2fe;
    border-radius: 1rem;
    padding: 3rem 2rem;
    margin-bottom: 4rem;
    text-align: center;
    color: #1e3a8a;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pricing-section h2 {
    font-weight: 800;
    font-size: 2.5rem;
    color: #0c4a6e;
    margin-bottom: 1rem;
    text-align: center;
}

body.dark-mode .pricing-section h2 {
    color: #60a5fa;
}

body.dark-mode .features-section h2 {
    color: #60a5fa;
}

.features-section h2 {
    font-weight: 800;
    font-size: 2.5rem;
    color: #0c4a6e;
    margin-bottom: 1rem;
    text-align: center;
}

.pricing-section .pricing-subheading {
    font-weight: 600;
    color: #475569;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    text-align: center;
}

body.dark-mode .pricing-section .pricing-subheading {
    color: #cbd5e1;
}

.features-section .features-subheading {
    font-weight: 600;
    color: #475569;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    text-align: center;
}

body.dark-mode .features-section .features-subheading {
    color: #cbd5e1;
}

.affiliate-section h2 {
    font-weight: 800;
    font-size: 2rem;
    color: #0369a1;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.affiliate-section p {
    font-weight: 600;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 1.5rem;
    transition: color 0.3s ease;
}

body.dark-mode .affiliate-section {
    background-color: #1e293b;
    color: #f1f5f9;
}

body.dark-mode .affiliate-section h2 {
    color: #60a5fa;
}

body.dark-mode .affiliate-section p {
    color: #cbd5e1;
}

.btn-gradient {
    background: linear-gradient(90deg, #3b82f6, #0ea5e9);
    color: white;
    font-weight: 700;
    padding: 1rem 3rem;
    font-size: 1.125rem;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgb(14 165 233 / 0.6);
    transition: background 0.4s ease, box-shadow 0.4s ease;
    user-select: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-shadow: 0 0 8px rgb(0 0 0 / 0.15);
}

.typed-text {
    color: #3b82f6;
    font-weight: 600;
}

.cursor {
    display: inline-block;
    color: #3b82f6;
    animation: blink 0.7s steps(1) infinite;
    font-weight: bold;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}
/* DARK MODE - Review Section */
body.dark-mode #review-title,
body.dark-mode .review-sub {
    color: #f1f5f9;
}

body.dark-mode .review-card {
    background-color: #1e293b;
    color: #f1f5f9;
    border: 1px solid #334155;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.dark-mode .review-card.blue-card {
    background-color: #1e40af;
    color: #f8fafc;
}

body.dark-mode .reviewer span {
    color: #cbd5e1;
}

body.dark-mode .reviewer img {
    filter: brightness(0.9) contrast(1.1);
}
.review-card {
  flex: 1 1 280px;
  border-radius: 20px;
  padding: 2rem;
  max-width: 400px;
  font-size: 1.1rem;
  font-style: italic;
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.05);
  color: #334155;
  background: rgba(255, 255, 255, 0.9);
  transition: background 0.3s ease, color 0.3s ease;
}

.review-card .reviewer {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
}

.review-card .reviewer img {
  border-radius: 9999px;
  width: 40px;
  height: 40px;
  margin-right: 0.75rem;
}

.review-card .reviewer strong {
  font-weight: 700;
  color: #0f172a;
}

.review-card .reviewer span {
  font-size: 0.85rem;
  color: #64748b;
}

.blue-card {
  background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.5);
}

.blue-card .reviewer strong,
.blue-card .reviewer span {
  color: white;
}

@media (prefers-color-scheme: dark) {
  .review-sub {
    color: #94a3b8 !important;
  }

  .light-card {
    background: rgb(255 255 255 / 60%);
    color: #475569;
  }

  .light-card .reviewer strong {
    color: #f8fafc;
  }

  .light-card .reviewer span {
    color: #94a3b8;
  }

  .blue-card {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.5);
  }

  .blue-card .reviewer strong,
  .blue-card .reviewer span {
    color: white;
  }
}
.review-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform, box-shadow;
}

.review-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}
@media (prefers-color-scheme: dark) {
  .review-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  }
}
