/* ============================================
   CYBERKIDA HOLI LANDING PAGE — MASTER STYLES
   ============================================ */

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
    /* Brand + Holi Colors */
    --brand-orange: #E87A00;
    --brand-orange-light: #FF9A2E;
    --brand-orange-dark: #C96800;
    --holi-pink: #FF2D7B;
    --holi-magenta: #E91E8C;
    --holi-purple: #9B2FE0;
    --holi-blue: #4A6CF7;
    --holi-cyan: #00D4FF;
    --holi-yellow: #FFD600;
    --holi-orange: #FF8C00;
    --holi-green: #00E676;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #1a0a00 0%, #0d0d1a 30%, #0f1a2e 60%, #1a0a00 100%);
    --gradient-primary: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-light));
    --gradient-secondary: linear-gradient(135deg, var(--holi-blue), var(--holi-cyan));
    --gradient-warm: linear-gradient(135deg, var(--brand-orange), var(--holi-yellow));
    --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    --gradient-card-border: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.03));
    --gradient-urgency: linear-gradient(135deg, #ff2d7b, #ff8c00, #ffd600, #00e676, #4a6cf7, #9b2fe0);

    /* Neutrals */
    --bg-dark: #0c0c18;
    --bg-section: #111126;
    --bg-card: rgba(255, 255, 255, 0.04);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.72);
    --text-muted: rgba(255, 255, 255, 0.45);

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1140px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Shadows */
    --shadow-glow-pink: 0 0 60px rgba(232, 122, 0, 0.3);
    --shadow-glow-purple: 0 0 60px rgba(255, 154, 46, 0.2);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

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

/* ---------- PARTICLES CANVAS ---------- */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    padding: 14px 32px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 24px rgba(232, 122, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(232, 122, 0, 0.55);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #1ebe5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.45);
}

.btn-nav {
    background: var(--gradient-primary);
    color: #fff;
    padding: 10px 24px;
    font-size: 0.9rem;
    box-shadow: 0 2px 12px rgba(232, 122, 0, 0.35);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(232, 122, 0, 0.5);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 22px 48px;
    font-size: 1.2rem;
}

.btn-block {
    width: 100%;
    padding: 18px 32px;
    font-size: 1.15rem;
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(13, 13, 26, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

/* ---------- STICKY WHATSAPP ---------- */
.whatsapp-sticky {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 14px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse-wa 2s infinite;
}

.whatsapp-sticky:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.55);
}

@keyframes pulse-wa {

    0%,
    100% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 6px 40px rgba(37, 211, 102, 0.65);
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.color-splash {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
    animation: float 12s ease-in-out infinite;
}

.splash-1 {
    width: 500px;
    height: 500px;
    background: var(--brand-orange);
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.splash-2 {
    width: 400px;
    height: 400px;
    background: var(--holi-purple);
    top: 20%;
    right: -8%;
    animation-delay: 3s;
}

.splash-3 {
    width: 350px;
    height: 350px;
    background: var(--holi-blue);
    bottom: 5%;
    left: 20%;
    animation-delay: 6s;
}

.splash-4 {
    width: 300px;
    height: 300px;
    background: var(--brand-orange);
    bottom: -5%;
    right: 25%;
    animation-delay: 9s;
    opacity: 0.2;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -40px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 30px) scale(0.95);
    }

    75% {
        transform: translate(25px, 20px) scale(1.03);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 28px;
    color: var(--brand-orange-light);
    animation: fadeInDown 0.8s ease-out;
}

.hero-title {
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out 0.15s both;
}

.price-highlight {
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.price-highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease-out 0.45s both;
}

/* Highlight Box */
.highlight-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 28px 36px;
    border-radius: var(--radius-lg);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.98rem;
    font-weight: 500;
    white-space: nowrap;
}

.highlight-item .check {
    color: var(--holi-green);
    font-weight: 700;
}

.highlight-item small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 1;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   SECTIONS — GENERAL
   ======================================== */
.section {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--brand-orange-light);
    background: rgba(232, 122, 0, 0.08);
    border: 1px solid rgba(232, 122, 0, 0.18);
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* ========================================
   OFFER / PRICING SECTION
   ======================================== */
.offer-section {
    background: var(--bg-dark);
}

.pricing-card {
    max-width: 560px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-card), var(--shadow-glow-pink);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
}

.pricing-card-header {
    background: var(--gradient-primary);
    padding: 40px 36px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20%, 20%);
    }
}

.pricing-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    opacity: 0.9;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.pricing-amount .currency {
    font-size: 2rem;
    font-weight: 700;
}

.pricing-amount .price {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
}

.pricing-amount .period {
    font-size: 1rem;
    opacity: 0.75;
    font-weight: 400;
}

.pricing-original {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.pricing-original s {
    font-size: 1.1rem;
    opacity: 0.6;
}

.discount-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
}

.pricing-card-body {
    padding: 36px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.feature-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
}

.feature-list li div strong {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2px;
}

.feature-list li div small {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.delivery-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
    padding: 14px;
    background: rgba(74, 108, 247, 0.1);
    border: 1px solid rgba(74, 108, 247, 0.2);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--holi-cyan);
}

.pricing-card-footer {
    padding: 0 36px 36px;
}

/* ========================================
   PAYMENT SECTION
   ======================================== */
.payment-section {
    background: var(--bg-section);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    max-width: 780px;
    margin: 0 auto;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.info-card-icon {
    font-size: 2.5rem;
    margin-bottom: 18px;
}

.info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.payment-steps {
    text-align: left;
}

.payment-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.step-number {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.payment-step strong {
    display: block;
    font-weight: 600;
    margin-bottom: 2px;
}

.payment-step p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.step-divider {
    width: 2px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    margin: 6px 0 6px 17px;
}

.renewal-info {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.renewal-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.renewal-amount {
    font-size: 2.4rem;
    font-weight: 800;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.renewal-period {
    font-size: 1rem;
    color: var(--text-muted);
}

.renewal-note {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ========================================
   TERMS SECTION
   ======================================== */
.terms-section {
    background: var(--bg-dark);
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.term-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.term-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-warm);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.term-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.12);
}

.term-card:hover::before {
    opacity: 1;
}

.term-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.term-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.term-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ========================================
   WHY CHOOSE SECTION
   ======================================== */
.why-section {
    background: var(--bg-section);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.12);
}

.why-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.why-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ========================================
   URGENCY SECTION
   ======================================== */
.urgency-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.urgency-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-urgency);
    background-size: 300% 300%;
    animation: gradient-shift 8s ease infinite;
    opacity: 0.15;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.urgency-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.urgency-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    animation: fire 1s ease-in-out infinite alternate;
}

@keyframes fire {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.urgency-content h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 10px;
}

.urgency-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    background: var(--bg-dark);
}

.faq-list {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item.active {
    border-color: rgba(232, 122, 0, 0.35);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--brand-orange-light);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: all 0.35s ease;
}

.faq-item.active .faq-toggle {
    background: var(--gradient-primary);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 122, 0, 0.15), transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 14px;
}

.cta-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.cta-note {
    margin-top: 18px;
    font-size: 0.92rem;
    color: var(--text-muted);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #08081a;
    padding: 70px 0 0;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-logo {
    margin-bottom: 18px;
}

.footer-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 18px;
    max-width: 360px;
}

.footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--holi-green);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #25D366;
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: var(--brand-orange-light);
    padding-left: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 22px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ========================================
   SCROLL REVEAL ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.7s ease;
}

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

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablets */
@media (max-width: 992px) {
    :root {
        --section-padding: 80px 0;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

    .why-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

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

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 340px;
    }

    .highlight-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px 24px;
        gap: 10px;
    }

    .pricing-card-header {
        padding: 32px 24px 28px;
    }

    .pricing-amount .price {
        font-size: 3rem;
    }

    .pricing-card-body {
        padding: 28px 22px;
    }

    .pricing-card-footer {
        padding: 0 22px 28px;
    }

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

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .whatsapp-sticky span {
        display: none;
    }

    .whatsapp-sticky {
        padding: 14px;
        border-radius: 50%;
    }

    .btn-xl {
        padding: 18px 32px;
        font-size: 1.05rem;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

/* Small phones */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .pricing-amount .price {
        font-size: 2.5rem;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 1rem;
    }
}