/* ============================================================
   BASE & RESET
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #6c47ff;
    --primary-dark: #4f27e8;
    --accent: #ff6b35;
    --wa-green: #25d366;
    --wa-dark: #128c7e;
    --dark: #0d0b1e;
    --dark2: #16132e;
    --dark3: #1e1b38;
    --text: #e2e0f0;
    --text-muted: #9b96c4;
    --card-bg: rgba(255, 255, 255, 0.04);
    --card-border: rgba(255, 255, 255, 0.08);
    --radius: 16px;
    --radius-lg: 24px;
    --shadow: 0 8px 40px rgba(108, 71, 255, 0.15);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Hind Siliguri', sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'Hind Siliguri', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    border: none;
}

.btn:active {
    transform: scale(0.97);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 6px 28px rgba(108, 71, 255, 0.45);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(108, 71, 255, 0.55);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-lg {
    padding: 20px 44px;
    font-size: 1.1rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 0 80px;
    background: radial-gradient(ellipse at 50% 0%, rgba(108, 71, 255, 0.3) 0%, transparent 65%),
        linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%);
    overflow: hidden;
}

/* Animated background shapes */
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 8s ease-in-out infinite;
}

.shape1 {
    width: 450px;
    height: 450px;
    background: rgba(108, 71, 255, 0.18);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape2 {
    width: 350px;
    height: 350px;
    background: rgba(255, 107, 53, 0.12);
    top: 40%;
    right: -80px;
    animation-delay: 3s;
}

.shape3 {
    width: 300px;
    height: 300px;
    background: rgba(37, 211, 102, 0.1);
    bottom: -80px;
    left: 30%;
    animation-delay: 5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

.badge-pill {
    display: inline-block;
    background: linear-gradient(135deg, rgba(108, 71, 255, 0.3), rgba(255, 107, 53, 0.2));
    border: 1px solid rgba(108, 71, 255, 0.4);
    color: #c4b5fd;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease both;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 22px;
    animation: fadeInUp 0.7s 0.1s ease both;
}

.price-highlight {
    background: linear-gradient(135deg, #a78bfa, #f472b6, #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto 36px;
    animation: fadeInUp 0.7s 0.2s ease both;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 36px;
    animation: fadeInUp 0.7s 0.3s ease both;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    animation: fadeInUp 0.7s 0.4s ease both;
}

.hero-trust span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-label {
    display: inline-block;
    background: rgba(108, 71, 255, 0.15);
    color: #a78bfa;
    border: 1px solid rgba(108, 71, 255, 0.25);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.section-header h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.section-desc {
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    font-size: 1rem;
}

/* ============================================================
   OFFER / FEATURES SECTION
   ============================================================ */
.offer-section {
    padding: 100px 0;
    background: var(--dark2);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    opacity: 0;
    transform: translateY(30px);
    backdrop-filter: blur(10px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.55s ease, transform 0.55s ease, border-color var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(108, 71, 255, 0.35);
    box-shadow: 0 16px 40px rgba(108, 71, 255, 0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.icon-blue {
    background: rgba(99, 102, 241, 0.15);
}

.icon-green {
    background: rgba(16, 185, 129, 0.15);
}

.icon-purple {
    background: rgba(168, 85, 247, 0.15);
}

.icon-orange {
    background: rgba(251, 146, 60, 0.15);
}

.icon-teal {
    background: rgba(20, 184, 166, 0.15);
}

.icon-pink {
    background: rgba(236, 72, 153, 0.15);
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 18px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-list li {
    font-size: 0.88rem;
    color: #c4b5fd;
    padding: 6px 12px;
    background: rgba(108, 71, 255, 0.07);
    border-radius: 8px;
}

/* ============================================================
   PRICE SECTION
   ============================================================ */
.price-section {
    padding: 100px 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(108, 71, 255, 0.18) 0%, transparent 70%),
        var(--dark);
}

.price-card {
    max-width: 540px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(108, 71, 255, 0.12), rgba(30, 27, 56, 0.8));
    border: 1px solid rgba(108, 71, 255, 0.3);
    border-radius: 28px;
    padding: 48px 42px;
    text-align: center;
    box-shadow: 0 0 80px rgba(108, 71, 255, 0.15);
    position: relative;
    backdrop-filter: blur(20px);
}

.price-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    padding: 8px 28px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(108, 71, 255, 0.4);
}

.price-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 12px;
    margin-top: 10px;
}

.price-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin: 8px 0;
}

.currency {
    font-size: 2rem;
    font-weight: 700;
    color: #a78bfa;
    margin-top: 10px;
}

.amount {
    font-size: 5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 28px;
}

.price-includes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 32px;
    text-align: left;
}

.price-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.88rem;
}

.price-footer-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 18px;
}

/* ============================================================
   WHY US SECTION
   ============================================================ */
.why-section {
    padding: 100px 0;
    background: var(--dark2);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}

.why-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: transform var(--transition), border-color var(--transition);
}

.why-item:hover {
    transform: translateY(-4px);
    border-color: rgba(108, 71, 255, 0.3);
}

.why-num {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1;
}

.why-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
    padding: 100px 0;
    background: var(--dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: transform var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.stars {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.testimonial-card>p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 22px;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.82rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
    padding: 100px 0;
    background: var(--dark2);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-item summary {
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background var(--transition);
}

.faq-item summary:hover {
    background: rgba(108, 71, 255, 0.06);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item[open] summary {
    color: #a78bfa;
}

.faq-item p {
    padding: 0 24px 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-top: 1px solid var(--card-border);
    padding-top: 16px;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(108, 71, 255, 0.2), rgba(255, 107, 53, 0.1)),
        var(--dark);
}

.cta-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 40px;
    background: linear-gradient(145deg, rgba(108, 71, 255, 0.1), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(108, 71, 255, 0.25);
    border-radius: 28px;
    backdrop-filter: blur(12px);
}

.cta-box h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 14px;
}

.cta-box p {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    padding: 32px 0;
    background: rgba(0, 0, 0, 0.4);
    text-align: center;
    border-top: 1px solid var(--card-border);
}

.footer p {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.footer-note {
    margin-top: 6px;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 999;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
    transition: transform var(--transition), box-shadow var(--transition);
    animation: pulse-wa 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 36px rgba(37, 211, 102, 0.65);
    animation: none;
}

.float-tooltip {
    position: absolute;
    right: 72px;
    background: rgba(18, 140, 126, 0.95);
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(8px);
    transition: opacity 0.3s, transform 0.3s;
}

.whatsapp-float:hover .float-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes pulse-wa {

    0%,
    100% {
        box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5), 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(13, 11, 30, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
}

.logo-w3 {
    color: #a78bfa;
}

.logo-it {
    color: #fff;
}

.logo-bd {
    color: #f472b6;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* ============================================================
   HERO ADDITIONS
   ============================================================ */
.hook-underline {
    position: relative;
    display: inline-block;
}

.hook-underline::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, #f472b6, #fb923c);
    animation: underline-grow 1.2s 0.5s ease both;
    transform-origin: left;
}

@keyframes underline-grow {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.hero {
    padding-top: 130px;
}

/* ============================================================
   PROBLEM STORY SECTION
   ============================================================ */
.problem-section {
    padding: 100px 0;
    background: var(--dark2);
}

.story-intro {
    text-align: center;
    margin-bottom: 56px;
}

.story-label {
    display: inline-block;
    background: rgba(239, 68, 68, 0.12);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.25);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.story-intro h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.story-intro p {
    color: var(--text-muted);
    font-size: 1rem;
}

.story-flow {
    max-width: 680px;
    margin: 0 auto 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.story-arrow {
    font-size: 2rem;
    color: var(--text-muted);
    line-height: 1;
    padding: 8px 0;
    opacity: 0.5;
}

.story-card {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.story-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.story-card--danger {
    border-color: rgba(239, 68, 68, 0.2);
    background: rgba(239, 68, 68, 0.05);
}

.story-card--loss {
    border-color: rgba(251, 146, 60, 0.2);
    background: rgba(251, 146, 60, 0.05);
}

.story-card--warning {
    border-color: rgba(234, 179, 8, 0.2);
    background: rgba(234, 179, 8, 0.05);
}

.story-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 4px;
}

.story-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.story-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.story-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 4px;
}

.story-list li {
    color: #f87171;
    font-size: 0.95rem;
    padding: 6px 12px;
    background: rgba(239, 68, 68, 0.07);
    border-radius: 8px;
}

.story-list li::before {
    content: '❌ ';
}

.loss-highlight {
    margin-top: 14px;
    background: rgba(251, 146, 60, 0.12);
    border: 1px solid rgba(251, 146, 60, 0.25);
    color: #fb923c;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.95rem;
}

.problem-cta-banner {
    text-align: center;
    padding: 32px;
    border: 1px dashed rgba(108, 71, 255, 0.3);
    border-radius: var(--radius-lg);
    background: rgba(108, 71, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.problem-cta-banner p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.problem-cta-banner strong {
    color: var(--text);
}

/* ============================================================
   SOLUTION SECTION
   ============================================================ */
.solution-section {
    padding: 100px 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(16, 185, 129, 0.1) 0%, transparent 65%),
        var(--dark);
}

.solution-intro {
    text-align: center;
    margin-bottom: 56px;
}

.solution-label {
    background: rgba(16, 185, 129, 0.12) !important;
    color: #34d399 !important;
    border-color: rgba(16, 185, 129, 0.25) !important;
}

.solution-intro h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.highlight-text {
    background: linear-gradient(135deg, #34d399, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.85;
    max-width: 600px;
    margin: 0 auto;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 56px;
}

.solution-card {
    background: var(--card-bg);
    border: 1px solid rgba(16, 185, 129, 0.12);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease, border-color var(--transition), box-shadow var(--transition);
}

.solution-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.solution-card:hover {
    border-color: rgba(16, 185, 129, 0.35);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.1);
    transform: translateY(-4px);
}

.sol-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
    line-height: 1;
}

.solution-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #6ee7b7;
}

.solution-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.data-quote {
    text-align: center;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.7;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    background: var(--card-bg);
    position: relative;
}

.data-quote strong {
    color: #fff;
}

.quote-mark {
    font-size: 3rem;
    color: rgba(108, 71, 255, 0.3);
    font-family: Georgia, serif;
    line-height: 0;
    vertical-align: -0.4em;
    margin: 0 6px;
}

/* ============================================================
   PRICE CARD BRANDING
   ============================================================ */
.brand-on-price {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 22px;
    margin-bottom: 4px;
    background: linear-gradient(135deg, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================================
   CTA SECTION ADDITIONS
   ============================================================ */
.cta-brand {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-story {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 12px !important;
}

.cta-urgency {
    font-size: 0.9rem;
    color: #fb923c;
    margin-bottom: 28px !important;
    font-weight: 600;
}

/* Footer brand */
.footer-brand {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .hero {
        padding-top: 110px;
        padding-bottom: 60px;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .btn-sm {
        width: auto;
        max-width: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .price-card {
        padding: 40px 24px;
    }

    .price-includes {
        grid-template-columns: 1fr;
    }

    .amount {
        font-size: 4rem;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .solution-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-box {
        padding: 40px 24px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 16px;
        width: 54px;
        height: 54px;
    }

    .story-card {
        flex-direction: column;
        gap: 12px;
    }

    .data-quote {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .solution-grid {
        grid-template-columns: 1fr;
    }

    .hero-trust {
        flex-direction: column;
        align-items: center;
    }

    .hero-trust span {
        width: 100%;
        text-align: center;
        max-width: 260px;
    }

    .problem-cta-banner {
        padding: 20px;
    }

    .nav-inner .btn-sm {
        display: none;
    }
}