:root {
    --bg-1: #071025;
    --bg-2: #081427;
    --panel: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    --muted: #9fb0bf;
    --accent-a: #6ee7b7;
    --accent-b: #60a5fa;
    --glass: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.035);
    --radius: 14px;
    --width: 112%;
    font-family: "Poppins", sans-serif;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: radial-gradient(700px 320px at 8% 8%, rgba(96, 165, 250, 0.05), transparent 12%), radial-gradient(560px 260px at 92% 88%, rgba(110, 231, 183, 0.035), transparent 12%), linear-gradient(135deg, var(--bg-1), var(--bg-2));
    color: #e7f5ff;
    -webkit-font-smoothing: antialiased;
    background-color: var(--bg-1);
    color: #f0f8ff;
    /* Near-white for text */
    line-height: 1.9;
    min-height: 100vh;
}

/* Layout */
.wrap {
    width: min(var(--max-width), 98%);
    margin: 30px auto;
    display: block;
    grid-template-columns: 1fr 360px;
    gap: 26px;
    align-items: start;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Shared Section Style */
.section {
    position: relative;
    background: var(--glass);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(12px);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
    overflow: hidden;
}

/* Neon Hue Animation */
@keyframes hueShift {

    0%,
    100% {
        filter: hue-rotate(0deg);
    }

    50% {
        filter: hue-rotate(45deg);
    }
}

/* CTA Buttons */
.cta {
    background: var(--accent-b);
    color: #071025;
    padding: 1.2rem 1.8rem;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 0 10px var(--accent-b);
    transition: all 0.3s ease;
    width: 290px;
}

.cta:hover {
    background: var(--accent-a);
    box-shadow: 0 0 20px var(--accent-a);
    transform: scale(1.05);
    width: 290px;
}

.cta.ghost {
    background: transparent;
    border: 1px solid var(--accent-b);
    color: var(--accent-b);
}

/* HERO */
.hero {
    text-align: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
    overflow: hidden;
}

.hero__inner {
    position: relative;
    z-index: 2;
}

.hero__badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
    color: #071025;
    padding: 0.3rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 1px;
    animation: hueShift 6s infinite ease-in-out;
    margin-bottom: 1rem;
}

.hero__title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--accent-b), var(--accent-a));
    background-clip: text;
    background-clip: text;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
    animation: hueShift 8s infinite ease-in-out;
}

.hero__subtitle {
    color: var(--muted);
    max-width: 655px;
    margin: 0.5rem auto 2rem;
    line-height: 1.6;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Floating Blobs */
.hero__bg-shapes .blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    filter: blur(100px);
    animation: blobMove 12s infinite ease-in-out;
}

.blob--a {
    width: 400px;
    height: 400px;
    background: var(--accent-a);
    top: -120px;
    left: -150px;
}

.blob--b {
    width: 600px;
    height: 600px;
    background: var(--accent-b);
    bottom: -200px;
    right: -100px;
}

@keyframes blobMove {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(30px, 50px);
    }

    66% {
        transform: translate(-30px, -20px);
    }
}

/* PERSONAS */
.personas .section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--accent-b);
}

.personas-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.persona {
    background: var(--panel);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.persona:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}

.avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(90deg, var(--accent-b), var(--accent-a));
    color: #071025;
    font-weight: 700;
    border-radius: 12px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.persona__content h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #e7f5ff;
}

.persona__content p {
    margin: 0.5rem 0;
    color: var(--muted);
    line-height: 1.5;
}

.persona__content small {
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 600;
}

/* BENEFITS */
.benefits-list {
    list-style: none;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-top: 1rem;
}

.benefits-list li {
    background: var(--panel);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #e7f5ff;
}

.benefits-list .icon {
    font-size: 1.5rem;
    color: var(--accent-a);
}

/* FAQ */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.faq__item {
    background: var(--panel);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq__item .faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.faq__item .faq__question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq__item .title {
    font-weight: 600;
    color: #e7f5ff;
}

.faq__item .meta {
    color: var(--muted);
    font-size: 0.9rem;
}

.faq__answer {
    display: none;
    padding: 1rem;
    color: var(--muted);
    line-height: 1.5;
}

.faq__item.expanded .faq__answer {
    display: block;

    /* Responsive enhancements (mobile / tablet / laptop) */
    /* Make layout use CSS Grid on wider screens and improve fluid typography */

    :root {
        /* Provide a couple of utility sizes for responsive clamps */
        --hero-min: 1.6rem;
        --hero-max: 3.6rem;
    }

    /* Fluid typography and spacing for hero */
    .hero__title {
        font-size: clamp(1.8rem, 4.2vw, 3.6rem);
    }

    .hero {
        padding-top: clamp(2.5rem, 8vw, 6rem);
        padding-bottom: clamp(1.5rem, 4vw, 4rem);
    }

    .hero__subtitle {
        font-size: clamp(0.95rem, 1.6vw, 1.15rem);
        max-width: min(90%, 655px);
    }

    /* Make wrap act as grid on larger screens (fix earlier display:block) */
    @media (min-width: 901px) {
        .wrap {
            display: grid;
            grid-template-columns: 1fr 360px;
            gap: 26px;
            align-items: start;
        }

        /* Slightly increase persona grid density on wider screens */
        .personas-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        .features-grid {
            grid-template-columns: repeat(3, minmax(220px, 1fr));
        }
    }

    /* Tablet and small laptop tweaks */
    @media (max-width: 1200px) and (min-width: 768px) {
        .hero__title {
            font-size: clamp(2rem, 3.5vw, 3.2rem);
        }

        .blob--a {
            width: 300px;
            height: 300px;
        }

        .blob--b {
            width: 420px;
            height: 420px;
        }
    }

    /* Mobile-first adjustments */
    @media (max-width: 900px) {
        .hero__title {
            font-size: 2.2rem;
        }

        .hero__subtitle {
            font-size: 0.98rem;
        }

        .hero__actions {
            gap: 0.5rem;
        }

        .blob--a {
            width: 220px;
            height: 220px;
            left: -80px;
            top: -80px;
        }

        .blob--b {
            width: 300px;
            height: 300px;
            right: -60px;
            bottom: -120px;
        }

        /* Ensure the CTA buttons stack nicely on small screens */
        .hero__actions {
            flex-direction: column;
            align-items: stretch;
        }

        .cta,
        .cta.ghost {
            width: 100%;
            text-align: center;
        }

        /* Project / feature grids collapse to single column for narrow viewports */
        .features-grid {
            grid-template-columns: 1fr;
        }

        .personas-grid {
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        }
    }

    /* Small phones */
    @media (max-width: 520px) {
        .hero__title {
            font-size: 1.6rem;
            line-height: 1.25;
        }

        .hero {
            padding-top: 2.5rem;
            padding-bottom: 2rem;
        }

        .hero__badge {
            padding: 0.2rem 0.6rem;
            font-size: 0.85rem;
        }

        .cta-button {
            width: 100%;
            padding: 1.2rem 1rem;
            font-size: 1rem;
        }

        .cta {
            padding: 0.65rem 1rem;
            font-size: 0.95rem;
        }

        .blob--b {
            display: none;
        }
    }

    /* Improve readability on very large screens */
    @media (min-width: 1400px) {
        .container {
            max-width: 1280px;
        }

        .hero__title {
            font-size: clamp(2.6rem, 2.6vw, 4rem);
        }

        .features-grid {
            gap: 32px;
        }
    }

    /* Ensure CTA button in pricing and other places scale nicely */
    .cta-button {
        padding: clamp(0.8rem, 1.4vw, 1.4rem) clamp(1rem, 2vw, 2rem);
        font-size: clamp(0.95rem, 1.1vw, 1.2rem);
    }

    /* Minor utility: keep content readable by reducing line-length on small screens */
    .story-short,
    .story-full,
    .story-text,
    .mission-text,
    .guarantee-description {
        max-width: 100%;
    }
}

/* QUICK CHECKLIST */
.checklist-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.checklist-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e7f5ff;
}

.checklist-list li::before {
    content: "✅";
}

/* FOOTNOTE */
.foot {
    margin-top: 1rem;
    text-align: center;
    color: var(--muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .wrap {
        grid-template-columns: 1fr;
    }

    .blob--a {
        display: none;
    }
}

@media (max-width: 520px) {
    .hero__title {
        font-size: 2.4rem;
    }

    .persona {
        flex-direction: column;
    }

    .persona__content small {
        display: block;
        margin-top: 0.5rem;
    }

    .feature-list li::before {
        margin: 0 0 0 -5px;
    }

    .cta-container {
        padding: 1rem;
    }
}

.faq__answer ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq__answer li {
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.015);
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--accent-b);
    transition: background 0.3s ease;
}

.faq__answer li:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq__answer .subtopic {
    color: var(--accent-a);
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 0.2rem;
}

.section.fomo {
    background: var(--bg-2);
    padding: 2rem 1rem;
    color: var(--muted);
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--accent-a);
    margin-bottom: 2rem;
}

.fomo-carousel {
    position: relative;
    overflow: hidden;
    max-width: var(--max-width);
    margin: 0 auto;
}

.fomo-carousel-para {
    display: block;
}

.fomo-list {
    display: flex;
    gap: 1.5rem;
    animation: scroll-horizontal 5s linear infinite;
    padding: 1rem;
    list-style: none;
}

.fomo-list-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fomo-carousel:hover .fomo-list {
    animation-play-state: paused;
}

.fomo-list li {
    flex: 0 0 calc(33.333% - 1rem);
    background: var(--glass);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 1rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    color: var(--muted);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.03);
}

.fomo-list li:hover {
    transform: scale(1.05);
    border-color: var(--accent-b);
}

.fomo-list .icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent-b);
}

.fomo-list h6 {
    font-size: 1rem;
    color: var(--accent-a);
    margin-bottom: 0.5rem;
}

.fomo-list p {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Auto-scroll animation */
@keyframes scroll-horizontal {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* why join section css*/

.course-section {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-subtitle {
    color: var(--muted);
    font-size: 1.1rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.feature-card {
    background: var(--panel);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 20px 16px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInScale 0.6s ease both;
}

.feature-card-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(110, 231, 183, 0.2);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    box-shadow: 0 20px 60px rgba(110, 231, 183, 0.15);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(110, 231, 183, 0.1), rgba(96, 165, 250, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(110, 231, 183, 0.2), rgba(96, 165, 250, 0.2));
}

.feature-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
}

.feature-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-a);
    font-weight: bold;
}

.differentiator-box {
    background: var(--panel);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 40px;
    position: relative;
    overflow: hidden;
    animation: fadeInScale 0.6s ease 0.5s both;
    margin-bottom: 25px;
}

.differentiator-box::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(110, 231, 183, 0.05) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.diff-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}

.diff-item {
    background: var(--glass);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.diff-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-a);
    transform: scale(1.05);
}

.diff-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.diff-text {
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
}

.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-a);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 10s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-100px) translateX(50px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1rem;
    }

    .fomo-list li {
        flex: 0 0 calc(100% - 0rem);
    }

    .fomo-list h6 {
        font-size: 0.8rem;
    }

    .fomo-list p {
        text-align: center;
        font-size: 0.8rem;
    }

    .cta-container {
        padding: 1rem;
    }

    .lead {
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .diff-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .personas-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.guarantee-section {
    max-width: var(--max-width);
    margin: 80px auto;
    padding: 0 20px;
    position: relative;
}

.guarantee-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.guarantee-card {
    background: var(--panel);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInScale 0.8s ease;
}

.guarantee-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(110, 231, 183, 0.03) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.guarantee-badge {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.badge-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(110, 231, 183, 0.15), rgba(96, 165, 250, 0.15));
    border: 2px solid var(--accent-a);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    animation: pulse-badge 3s ease-in-out infinite;
}

.shield-icon {
    width: 50px;
    height: 50px;
    color: var(--accent-a);
}

.guarantee-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--accent-a);
    opacity: 0.2;
    filter: blur(30px);
    animation: pulse-glow 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.guarantee-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.guarantee-description {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
}

.refund-timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
    color: var(--bg-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(110, 231, 183, 0.3);
}

.timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--muted);
}

.timeline-connector {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
    margin: 0 -10px;
    margin-bottom: 60px;
}

.security-section {
    background: var(--panel);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 40px;
    animation: fadeInScale 0.8s ease 0.2s both;
}

.security-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.lock-icon {
    width: 32px;
    height: 32px;
    color: var(--accent-b);
}

.security-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.security-text {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.payment-badges {
    margin-bottom: 30px;
}

.razorpay-badge {
    margin-bottom: 24px;
}

.razorpay-badge svg {
    width: 180px;
    height: 60px;
    filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.3));
}

.security-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
}

.security-icon-item {
    background: var(--glass);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.security-icon-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-b);
    transform: translateY(-2px);
}

.security-icon-item svg {
    width: 32px;
    height: 32px;
    color: var(--accent-b);
}

.security-icon-item span {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 500;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--card-border);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 0.9rem;
}

.trust-item svg {
    width: 16px;
    height: 16px;
    color: #fbbf24;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .guarantee-title {
        font-size: 1.8rem;
    }

    .guarantee-description {
        font-size: 1rem;
    }

    .refund-timeline {
        flex-direction: column;
        gap: 20px;
    }

    .timeline-connector {
        width: 2px;
        height: 40px;
        margin: -10px 0;
    }

    .security-icons {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-indicators {
        flex-direction: column;
        gap: 16px;
    }
}

.pricing-cta-section {
    max-width: var(--max-width);
    margin: 100px auto;
    padding: 0 20px;
}

.pricing-container {
    margin-bottom: 60px;
}

.pricing-card {
    background: var(--panel);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease;
}

.pricing-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(110, 231, 183, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.limited-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.15));
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.fire-icon {
    width: 20px;
    height: 20px;
    color: #ef4444;
}

.limited-badge span {
    color: #fca5a5;
    font-weight: 600;
    font-size: 0.9rem;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.pricing-title,
.motivation-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
    background-clip: text;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: var(--muted);
}

.price-display {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.price-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.old-price {
    position: relative;
    opacity: 0.5;
}

.old-price::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #ef4444;
    transform: rotate(-5deg);
}

.old-price .currency {
    font-size: 1.5rem;
    color: var(--muted);
}

.old-price .amount {
    font-size: 2rem;
    font-weight: 600;
    color: var(--muted);
}

.discount-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.current-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.current-price .currency {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
    background-clip: text;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.current-price .amount {
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
    background-clip: text;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.current-price .period {
    font-size: 1rem;
    color: var(--muted);
    align-self: center;
}

.savings-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--accent-a);
    font-weight: 600;
    font-size: 1.1rem;
}

.savings-text svg {
    width: 24px;
    height: 24px;
    color: var(--accent-a);
}

.whats-included {
    background: var(--glass);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 30px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
    width: 100%;
    /* take full width of the parent container */
    box-sizing: border-box;
    /* ensure padding is included in width */
    max-width: 980px;
    /* limit to a comfortable reading width on large screens */
}

.included-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.included-grid {
    display: grid;
    /* slightly larger minimum column so items don't feel cramped */
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    align-items: start;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.included-item svg {
    width: 24px;
    height: 24px;
    color: var(--accent-a);
    flex-shrink: 0;
}

.included-item span {
    color: var(--muted);
    font-size: 0.95rem;
}

.cta-button {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
    border: none;
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--bg-1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    z-index: 2;
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(110, 231, 183, 0.4);
}

.button-text {
    position: relative;
    z-index: 2;
}

.arrow-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.cta-button:hover .arrow-icon {
    transform: translateX(5px);
}

.urgency-section {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.1), rgba(202, 138, 4, 0.1));
    border: 1px solid rgba(234, 179, 8, 0.3);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.urgency-icon svg {
    width: 32px;
    height: 32px;
    color: #facc15;
    animation: tick 1s ease-in-out infinite;
}

@keyframes tick {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-5deg);
    }

    75% {
        transform: rotate(5deg);
    }
}

.urgency-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.urgency-text strong {
    color: #fef08a;
    font-size: 1rem;
}

.urgency-text span {
    color: var(--muted);
    font-size: 0.9rem;
}

.trust-signals {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--card-border);
    position: relative;
    z-index: 2;
}

.trust-signal {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
}

.trust-signal svg {
    width: 20px;
    height: 20px;
    color: var(--accent-a);
}

.trust-signal span {
    font-size: 0.9rem;
}

.motivation-section {
    background: var(--panel);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    margin-top: 25px;
    margin-bottom: 25px;
    text-align: center;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.motivation-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.motivation-text {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 40px;
}

.motivation-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    background: var(--glass);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-a);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--muted);
    font-size: 0.95rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {

    .pricing-title,
    .motivation-title {
        font-size: 1.8rem;
    }

    .current-price .amount {
        font-size: 3rem;
    }

    .included-grid {
        grid-template-columns: 1fr;
    }

    .trust-signals {
        flex-direction: column;
        gap: 16px;
    }

    .motivation-stats {
        grid-template-columns: 1fr;
    }

    /* Make whats-included fill small screens cleanly */
    .whats-included {
        padding: 18px;
        margin: 0 0 24px;
        max-width: none;
    }

    .included-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 12px;
    }
}

.cta-section {
    background: radial-gradient(circle at center, rgba(96, 165, 250, 0.08), rgba(7, 16, 37, 0.95));
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    padding: 5rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Glow animation background lines */
.cta-section::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    background: conic-gradient(from 0deg, var(--accent-a), var(--accent-b), transparent, transparent, var(--accent-a));
    animation: rotateGlow 10s linear infinite;
    opacity: 0.15;
    z-index: 0;
}

@keyframes rotateGlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta-container {
    position: relative;
    background: var(--panel);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 3rem 2rem;
    max-width: 900px;
    box-shadow: var(--shadow-light);
    z-index: 1;
    backdrop-filter: blur(10px);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.cta-container:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.cta-heading {
    font-family: var(--orbitron);
    color: #f1f8ff;
    font-size: 1.7rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-heading span {
    color: var(--accent-b);
    text-shadow: var(--shadow-light);
}

/* Button style */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(96, 165, 250, 0.3);
}

.cta-button:hover {
    box-shadow: 0 0 25px rgba(96, 165, 250, 0.6);
    transform: translateY(-3px);
}

.cta-button {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(96, 165, 250, 0.4);
    }

    50% {
        box-shadow: 0 0 25px rgba(110, 231, 183, 0.7);
    }
}

/* ===== Accessibility & Mobile polish ===== */

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

    .blob--a,
    .blob--b {
        animation: none !important;
        filter: none !important;
    }
}

/* Improve focus visibility for keyboard users */
:focus {
    outline: none;
}

:focus-visible {
    outline: 3px solid rgba(96, 165, 250, 0.45);
    outline-offset: 3px;
    border-radius: 8px;
}

/* Mobile-specific polish */
@media (max-width: 520px) {

    /* Tighter hero spacing on small phones */
    .hero {
        padding-top: 1.8rem;
        padding-bottom: 1.6rem;
    }

    .hero__title {
        font-size: 1.4rem;
        line-height: 1.25;
        margin-bottom: 1rem;
    }

    .hero__subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    /* Make primary CTAs larger and thumb-friendly */
    .cta,
    .cta.ghost {
        padding: 1.2rem 1rem;
        font-size: 1rem;
        border-radius: 12px;
        width: 290px;
    }

    .hero__actions {
        gap: 0.6rem;
    }

    /* Make large CTA buttons very prominent */
    .cta-button {
        padding: 1rem 1.2rem;
        font-size: 1rem;
        border-radius: 12px;
        width: 100%;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 290px;
    }

    /* Reduce card paddings slightly to fit small screens */
    .section,
    .card,
    .feature-card,
    .guarantee-card {
        padding: 16px 4px;
    }

    /* Improve spacing for lists and readable line lengths */
    .feature-list li,
    .faq__answer li {
        font-size: 0.95rem;
        padding: 0.6rem 0.9rem;
    }

    /* Ensure large decorative blobs don't overlap content */
    .blob--a {
        left: -60px;
        top: -60px;
        opacity: 0.25;
        filter: blur(60px);
    }

    .blob--b {
        right: -40px;
        bottom: -90px;
        opacity: 0.2;
        filter: blur(60px);
    }

    /* Make trust signals vertical and compact */
    .trust-signals {
        gap: 12px;
        padding-top: 18px;
    }

    /* Improve urgency section layout */
    .urgency-section {
        padding: 14px;
        gap: 10px;
    }

    .urgency-text strong {
        font-size: 0.95rem;
    }

    /* Better spacing for hero badge */
    .hero__badge {
        padding: 0.2rem 0.6rem;
        font-size: 0.85rem;
    }
}

/* Slightly larger tappable areas for mid-size phones */
@media (max-width: 768px) and (min-width: 521px) {

    .cta,
    .cta.ghost {
        padding: 0.85rem 1.2rem;
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.95rem 1.4rem;
        font-size: 1.02rem;
    }

    .diff-title {
        font-size: 1.4rem;
    }

    .security-header {
        align-items: baseline;
    }
}

@media (max-width: 400px) and (min-width: 375px) {
    .cta-container {
        padding: 1rem;
    }

    .cta-heading {
        font-size: 1.2rem;
        text-align: center;
    }

    .diff-title {
        font-size: 1.2rem;
    }

    .security-header {
        align-items: baseline;
    }

    .pricing-card {
        padding: 40px 10px;
    }

    .limited-badge {
        justify-content: center;
        display: flex;
    }

    .motivation-title {
        font-size: 1.2rem;
    }

    .pricing-cta-section {
        margin: 50px auto;
    }

    .cta-section {
        padding: 0;
        background: none;
    }
}



/* Improve contrast for small text on low-contrast backgrounds */
.mission-text,
.story-text,
.guarantee-description {
    color: #cfe7f7;
}