/* ============================================
   NESARA GESARA WT - STYLES (Patriotic Theme)
   1. CSS Custom Properties
   2. Reset / Base
   3. Typography
   4. Layout
   5. Navigation
   6. Hero Section
   7. Features Section
   8. Pricing Section
   9. Final CTA Section
   10. Footer
   11. Policy Pages
   12. Glassmorphism
   13. Animations
   14. Responsive
   ============================================ */

/* ---- 1. CSS Custom Properties ---- */
:root {
    /* Backgrounds — light theme */
    --color-bg-primary: #ffffff;
    --color-bg-secondary: #f0f4f8;
    --color-bg-dark: #0b1a2e;

    /* Patriotic colors */
    --color-red: #b22234;
    --color-red-light: #d4354a;
    --color-red-dark: #8b1a28;
    --color-blue: #3c3b6e;
    --color-blue-light: #4e5d94;
    --color-blue-dark: #1a1a4e;

    /* Text — dark on light */
    --color-text-primary: #1a1a2e;
    --color-text-secondary: #4a4a5a;
    --color-text-muted: #8a8a9a;
    --color-border-glass: rgba(60, 59, 110, 0.15);

    /* Glass — adapted for light backgrounds */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: 1px solid rgba(60, 59, 110, 0.12);
    --glass-blur: 12px;
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);

    --font-heading: 'Cinzel', serif;
    --font-body: 'Source Sans 3', sans-serif;

    --section-padding: 120px 0;
    --container-max: 1200px;
    --card-radius: 16px;

    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

section[id] {
    scroll-margin-top: 80px;
}

/* ---- 3. Typography ---- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-primary);
}

h1 {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    letter-spacing: 4px;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    letter-spacing: 2px;
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    letter-spacing: 1px;
}

p {
    color: var(--color-text-secondary);
    font-size: 1.05rem;
}

/* ---- 4. Layout ---- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding);
    position: relative;
}

/* Slide sections — stack like PowerPoint slides */
.slide {
    position: relative;
    border-radius: 36px 36px 0 0;
    margin-top: -36px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.08);
    z-index: 2;
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.slide-visible {
    opacity: 1;
    transform: translateY(0);
}

.slide:nth-of-type(1) { z-index: 2; }
.slide:nth-of-type(2) { z-index: 3; }
.slide:nth-of-type(3) { z-index: 4; }
.slide:nth-of-type(4) { z-index: 5; }
.slide:nth-of-type(5) { z-index: 6; }
.slide:nth-of-type(6) { z-index: 7; }

/* Patriotic accent line on top edge of each slide */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-red), var(--color-blue), transparent);
    border-radius: 0 0 3px 3px;
    z-index: 1;
}

.section__header {
    text-align: center;
    margin-bottom: 70px;
}

.section__subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-blue);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 16px;
    display: inline-block;
}

.section__title {
    margin-bottom: 16px;
}

.section__description {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Decorative divider */
.section__divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-red), var(--color-blue));
    margin: 16px auto 0;
    border-radius: 2px;
}

/* ---- 5. Navigation ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(11, 26, 46, 0.95);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.navbar__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar__brand {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navbar__brand:hover {
    color: var(--color-red-light);
}

.navbar__menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.navbar__link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 4px 0;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-red), var(--color-red-light));
    transition: width 0.3s ease;
}

.navbar__link:hover {
    color: #ffffff;
}

.navbar__link:hover::after {
    width: 100%;
}

.navbar__toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}

/* ---- 6. Hero Section ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 120px;
    z-index: 1;
    background: url('../images/hero-flag.jpg') center center / cover no-repeat;
    background-attachment: fixed;
}

/* Dark overlay for text legibility */
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(11, 26, 46, 0.82) 0%,
        rgba(11, 26, 46, 0.68) 50%,
        rgba(60, 59, 110, 0.58) 100%
    );
    z-index: 1;
}

/* Split layout: text left, image right */
.hero__content {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    width: 100%;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 24px;
}

.hero__text {
    flex: 1;
    text-align: left;
}

.hero__visual {
    flex: 0 0 400px;
    animation: heroVisualFade 1s ease 0.6s both;
    transform-style: preserve-3d;
    will-change: transform;
    position: relative;
}

.hero__visual img {
    width: 100%;
    border-radius: var(--card-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Light glare that follows cursor */
.hero__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--card-radius);
    background: radial-gradient(
        circle at var(--glare-x, 50%) var(--glare-y, 50%),
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0.08) 30%,
        transparent 60%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero__visual.tilting::after {
    opacity: 1;
}

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

.hero__tagline {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 28px;
    display: inline-block;
    padding: 10px 28px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    background: rgba(178, 34, 52, 0.2);
    animation: heroTagFade 1s ease 0.3s both;
}

.hero__title {
    margin-bottom: 28px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e8 40%, #ffffff 70%, #c0c8d8 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroTitleFade 1s ease 0.5s both, shimmerWhite 4s linear infinite 2s;
}

.hero__description {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 44px;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.9);
    animation: heroDescFade 1s ease 0.7s both;
}

.hero__cta-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: heroCtaFade 1s ease 0.9s both;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 48px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-red-dark), var(--color-red), var(--color-red-light));
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.hero__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(178, 34, 52, 0.5);
}

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

.hero__cta:hover::before {
    left: 100%;
}

.hero__cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 36px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.hero__cta-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Hero trust badges */
.hero__badges {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 48px;
    animation: heroCtaFade 1s ease 1.1s both;
}

.hero__badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.hero__badge-icon {
    font-size: 1.3rem;
    color: var(--color-red-light);
    opacity: 0.9;
}

.hero__badge-text {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Hero scroll indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.5;
    animation: heroCtaFade 1s ease 1.4s both, scrollBounce 2s ease-in-out 2.4s infinite;
    transition: opacity 0.3s ease;
}

.hero__scroll-indicator:hover {
    opacity: 1;
}

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

/* Hero entrance keyframes */
@keyframes heroTagFade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroTitleFade {
    from { opacity: 0; transform: translateY(25px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

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

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

@keyframes shimmerWhite {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

/* ---- 7. Features Section ---- */
.features {
    background: var(--color-bg-primary);
    position: relative;
    overflow: hidden;
}

/* Subtle corner glow decorations */
.features__glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    pointer-events: none;
}

.features__glow--left {
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(60, 59, 110, 0.06), transparent 70%);
}

.features__glow--right {
    bottom: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(178, 34, 52, 0.04), transparent 70%);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 50px 32px 44px;
    border-radius: var(--card-radius);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

/* Red top accent line on each card */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-red), transparent);
    transition: width 0.4s ease;
}

.feature-card:hover::before {
    width: 80%;
}

.feature-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(60, 59, 110, 0.1), rgba(60, 59, 110, 0.03));
    border: 1px solid rgba(60, 59, 110, 0.15);
    font-size: 1.7rem;
    color: var(--color-blue);
    transition: var(--transition-smooth);
    position: relative;
}

/* Outer ring on icon */
.feature-card__icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(60, 59, 110, 0.08);
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-card__icon {
    background: linear-gradient(135deg, rgba(60, 59, 110, 0.18), rgba(60, 59, 110, 0.08));
    border-color: rgba(60, 59, 110, 0.3);
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(60, 59, 110, 0.12);
}

.feature-card:hover .feature-card__icon::after {
    border-color: rgba(60, 59, 110, 0.15);
    inset: -10px;
}

.feature-card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-blue);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.feature-card__text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(60, 59, 110, 0.04);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(60, 59, 110, 0.1);
}

/* ---- 8. Pricing Section ---- */
.pricing {
    position: relative;
    background: var(--color-bg-secondary);
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: #ffffff;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
}

/* Image wrapper */
.pricing-card__image {
    position: relative;
    overflow: hidden;
}

.pricing-card__image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

/* Tier badge — full-width header bar */
.pricing-card__badge {
    display: block;
    width: 100%;
    padding: 10px 16px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ffffff;
    text-align: center;
}

.pricing-card__badge--silver { background: #808080; }
.pricing-card__badge--gold { background: var(--color-blue); }
.pricing-card__badge--platinum { background: #5a6a7a; }
.pricing-card__badge--diamond { background: #3c8dbc; }
.pricing-card__badge--vip { background: var(--color-red); }
.pricing-card__badge--ultimate {
    background: linear-gradient(135deg, var(--color-red), var(--color-blue));
}

/* "Most Popular" inline tag inside VIP badge */
.pricing-card__popular {
    display: inline-block;
    margin-left: 10px;
    padding: 3px 10px;
    font-size: 0.6rem;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, #f5a623, #e8920d);
    border-radius: 20px;
    vertical-align: middle;
}

/* Card body */
.pricing-card__body {
    padding: 28px 24px 32px;
    text-align: center;
}

.pricing-card__name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-blue);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 14px;
}

.pricing-card__price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 22px;
    line-height: 1;
}

.pricing-card__currency {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-red);
    margin-top: 6px;
    margin-right: 2px;
}

.pricing-card__amount {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.pricing-card__cents {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-top: 6px;
}

/* Feature list */
.pricing-card__features {
    list-style: none;
    margin-bottom: 24px;
    padding: 0;
}

.pricing-card__features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-bottom: 1px solid rgba(60, 59, 110, 0.08);
}

.pricing-card__features li:last-child {
    border-bottom: none;
}

.pricing-card__features li i {
    color: var(--color-red);
    font-size: 0.75rem;
}

/* CTA button */
.pricing-card__cta {
    display: inline-block;
    width: 100%;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-red-dark), var(--color-red), var(--color-red-light));
    border: none;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.pricing-card__cta:hover {
    box-shadow: 0 6px 24px rgba(178, 34, 52, 0.4);
    transform: translateY(-2px);
}

/* ---- 8b. How It Works Section ---- */
.how-it-works {
    background: var(--color-bg-primary);
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 24px;
    max-width: 320px;
}

.step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-red);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.step__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(60, 59, 110, 0.1), rgba(60, 59, 110, 0.03));
    border: 1px solid rgba(60, 59, 110, 0.15);
    font-size: 1.5rem;
    color: var(--color-blue);
    transition: var(--transition-smooth);
}

.step:hover .step__icon {
    background: linear-gradient(135deg, rgba(60, 59, 110, 0.18), rgba(60, 59, 110, 0.08));
    border-color: rgba(60, 59, 110, 0.3);
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(60, 59, 110, 0.12);
}

.step__title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.step__text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

/* Connector line between steps */
.step__connector {
    flex: 0 0 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-red), var(--color-blue));
    margin-top: 82px;
    border-radius: 2px;
    opacity: 0.4;
}

/* ---- 8b2. Eagle Divider Section ---- */
.eagle-divider {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: url('../images/eagle-soaring.jpg') center center / cover no-repeat;
    background-attachment: fixed;
}

/* No accent line on this section */
.eagle-divider::before {
    display: none;
}

.eagle-divider__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(11, 26, 46, 0.88) 0%,
        rgba(26, 26, 78, 0.78) 50%,
        rgba(60, 59, 110, 0.72) 100%
    );
    z-index: 1;
}

.eagle-divider__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 24px;
}

.eagle-divider__tagline {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-red-light);
    text-transform: uppercase;
    letter-spacing: 6px;
    display: block;
    margin-bottom: 20px;
}

.eagle-divider__title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 3px;
    line-height: 1.3;
    margin-bottom: 16px;
}

.eagle-divider__text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    letter-spacing: 0.5px;
}

/* ---- 8c. Testimonials Section ---- */
.testimonials {
    background: var(--color-bg-secondary);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    padding: 40px 32px;
    border-radius: var(--card-radius);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    /* Override glass-card for gradient */
    background: linear-gradient(135deg, #1a1a4e 0%, #3c3b6e 50%, #4e5d94 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 40px rgba(26, 26, 78, 0.25);
}

/* Each card gets a unique gradient */
.testimonial-card:nth-child(2) {
    background: linear-gradient(135deg, #8b1a28 0%, #b22234 50%, #d4354a 100%);
    box-shadow: 0 12px 40px rgba(178, 34, 52, 0.25);
}

.testimonial-card:nth-child(3) {
    background: linear-gradient(135deg, #0b1a2e 0%, #1a2a4e 40%, #3c3b6e 100%);
    box-shadow: 0 12px 40px rgba(11, 26, 46, 0.3);
}

/* Subtle decorative shimmer overlay */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(26, 26, 78, 0.35);
}

.testimonial-card:nth-child(2):hover {
    box-shadow: 0 20px 60px rgba(178, 34, 52, 0.35);
}

.testimonial-card:nth-child(3):hover {
    box-shadow: 0 20px 60px rgba(11, 26, 46, 0.4);
}

.testimonial__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: #f5c842;
    font-size: 0.95rem;
}

.testimonial__quote {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial__author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 20px;
}

.testimonial__name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
}

.testimonial__tier {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Trust bar */
.trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 36px;
    background: var(--color-bg-primary);
    border-radius: var(--card-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.trust-bar__item {
    text-align: center;
}

.trust-bar__number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-blue);
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 6px;
}

.trust-bar__label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.trust-bar__divider {
    width: 1px;
    height: 48px;
    background: rgba(60, 59, 110, 0.15);
}

/* ---- 9. Final CTA Section ---- */
.final-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-blue-dark) 0%, var(--color-blue) 100%);
    text-align: center;
}

.final-cta__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(178, 34, 52, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.final-cta__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta__icon {
    font-size: 2.5rem;
    color: var(--color-red-light);
    margin-bottom: 28px;
    opacity: 0.9;
}

.final-cta__title {
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #e0e0e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta__text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.85);
}

.final-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 52px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-red-dark), var(--color-red), var(--color-red-light));
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.final-cta__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(178, 34, 52, 0.5);
}

.final-cta__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.final-cta__btn:hover::before {
    left: 100%;
}

.final-cta__guarantee {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.final-cta__guarantee i {
    color: var(--color-red-light);
    opacity: 0.8;
}

/* ---- 10. Footer ---- */
.footer {
    background: var(--color-bg-dark);
    padding: 60px 0 30px;
    position: relative;
    z-index: 6;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(178, 34, 52, 0.4), transparent);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__brand {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer__text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    max-width: 350px;
}

.footer__heading {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer__links a:hover {
    color: var(--color-red-light);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    text-align: center;
}

.footer__copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
}

/* ---- 11. Policy Pages ---- */
.policy {
    min-height: 100vh;
    padding: 140px 24px 80px;
    position: relative;
    background: var(--color-bg-secondary);
}

.policy__content {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 50px;
    border-radius: var(--card-radius);
}

.policy__title {
    text-align: center;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--color-blue), var(--color-blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy__date {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.policy__intro {
    font-size: 1.05rem;
    margin-bottom: 36px;
    line-height: 1.8;
}

.policy__section {
    margin-bottom: 32px;
}

.policy__section-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-blue);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.policy__section p {
    margin-bottom: 12px;
    line-height: 1.8;
}

.policy__section ul {
    padding-left: 24px;
    margin-bottom: 12px;
}

.policy__section ul li {
    position: relative;
    padding: 6px 0 6px 16px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.policy__section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-red);
}

/* ---- 12. Glassmorphism ---- */
.glass-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: var(--card-radius);
    -webkit-backdrop-filter: blur(var(--glass-blur));
    backdrop-filter: blur(var(--glass-blur));
    box-shadow: var(--glass-shadow);
}

@supports not (backdrop-filter: blur(12px)) {
    .glass-card {
        background: rgba(255, 255, 255, 0.97);
    }
}

/* ---- 13. Animations ---- */

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered children */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.5s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.6s; }

.reveal-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Particle container */
#tsparticles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.page-content {
    position: relative;
    z-index: 1;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-stagger > *,
    .slide {
        opacity: 1;
        transform: none;
    }
}

/* ---- 14. Responsive ---- */

/* Tablet */
@media (max-width: 1024px) {
    .hero__content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero__text {
        text-align: center;
    }

    .hero__visual {
        flex: 0 0 auto;
        max-width: 360px;
    }

    .hero__cta-group {
        justify-content: center;
    }

    .hero__badges {
        justify-content: center;
    }

    .hero__description {
        margin-left: auto;
        margin-right: auto;
    }

    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .slide {
        border-radius: 28px 28px 0 0;
        margin-top: -28px;
    }

    .step__connector {
        flex: 0 0 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
        --glass-blur: 8px;
    }

    .slide {
        border-radius: 20px 20px 0 0;
        margin-top: -20px;
    }

    .navbar__toggle {
        display: block;
    }

    .navbar__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(11, 26, 46, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 40px;
        transition: right 0.4s ease;
        z-index: 1001;
    }

    .navbar__menu.active {
        right: 0;
    }

    .navbar__menu .navbar__link {
        font-size: 1.1rem;
    }

    .navbar__overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }

    .navbar__overlay.active {
        display: block;
    }

    .hero {
        padding: 100px 20px 60px;
        min-height: 100vh;
        background-attachment: scroll;
    }

    .hero__visual {
        max-width: 280px;
    }

    .hero__tagline {
        font-size: 0.7rem;
        letter-spacing: 4px;
        padding: 8px 18px;
    }

    .hero__description {
        font-size: 1rem;
    }

    .hero__badges {
        gap: 24px;
    }

    .hero__badge-text {
        font-size: 0.6rem;
    }

    .hero__cta {
        padding: 16px 36px;
        font-size: 0.9rem;
    }

    .hero__cta-secondary {
        padding: 16px 28px;
        font-size: 0.8rem;
    }

    .features__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 36px 24px;
    }

    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Steps stack vertically */
    .steps {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .step__connector {
        width: 2px;
        height: 40px;
        flex: 0 0 40px;
        margin-top: 0;
    }

    .step {
        max-width: none;
    }

    /* Eagle divider */
    .eagle-divider {
        min-height: 280px;
        background-attachment: scroll;
    }

    .eagle-divider__title {
        font-size: clamp(1.3rem, 5vw, 2rem);
        letter-spacing: 2px;
    }

    /* Testimonials */
    .testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .trust-bar {
        flex-direction: column;
        gap: 24px;
        padding: 28px;
    }

    .trust-bar__divider {
        width: 60px;
        height: 1px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer__text {
        max-width: none;
    }

    .policy__content {
        padding: 30px 24px;
    }

    .final-cta__title {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
    }
}

/* Small phones */
@media (max-width: 380px) {
    h1 {
        font-size: 2.2rem;
    }

    .hero__cta-group {
        flex-direction: column;
    }

    .hero__badges {
        flex-wrap: wrap;
        gap: 16px;
    }

    .pricing-card__amount {
        font-size: 2.4rem;
    }
}
