/* Landing Page Specific Overrides/Additions */

/* WhatsApp Button Animation */
@keyframes pulse-attention {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.btn-pulse-attention {
    animation: pulse-attention 2s infinite ease-in-out;
}

header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

/* --- Vibrant Hero Section --- */
.landing-hero {
    padding: 40px 2rem 100px;
    background: linear-gradient(135deg, #1E3A8A 0%, #1E40AF 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    color: white;
}

/* Simplified Background Bubbles */
.bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 10s infinite ease-in-out;
}

.bubble-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation-duration: 12s;
}

.bubble-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -100px;
    animation-duration: 15s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    color: #93c5fd;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeIn 1s ease-out;
}

.landing-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 800;
    animation: slideUp 0.6s ease-out forwards;
}

.landing-hero p {
    font-size: 1.35rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: slideUp 0.6s ease-out 0.1s backwards; /* Minor delay for p to preserve aesthetic sequence */
}

/* --- Restored Layout Styles --- */
.details-section {
    padding: 80px 2rem;
    max-width: 100%;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* --- Professional Cards --- */
.domain-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* FAQ Styles */
.faq-card {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 1.5rem 2rem !important;
    overflow: hidden;
}

.faq-card:hover {
    border-color: var(--primary) !important;
    background: #f0f7ff !important;
}

.faq-question {
    margin: 0 !important;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '\2b'; /* Plus sign */
    font-family: "Phosphor";
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-card.active .faq-question::after {
    content: '\2212'; /* Minus sign */
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    margin: 0 !important;
    padding: 0 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-card.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    margin-top: 1rem !important;
}

.domain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #23a6d5, #23d5ab);
    z-index: 2;
}

.domain-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.domain-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: #0ea5e9;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.domain-card:hover .domain-icon {
    transform: rotate(10deg) scale(1.1);
    background: #0ea5e9;
    color: white;
}

.domain-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.domain-card:nth-child(1) .domain-icon {
    color: #f59e0b;
    background: #fffbeb;
}

.domain-card:nth-child(1)::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.domain-card:nth-child(1):hover .domain-icon {
    background: #f59e0b;
    color: white;
}

.domain-card:nth-child(2) .domain-icon {
    color: #8b5cf6;
    background: #f3f4f6;
}

.domain-card:nth-child(2)::before {
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
}

.domain-card:nth-child(2):hover .domain-icon {
    background: #8b5cf6;
    color: white;
}

.domain-card:nth-child(3) .domain-icon {
    color: #ec4899;
    background: #fdf2f8;
}

.domain-card:nth-child(3)::before {
    background: linear-gradient(90deg, #ec4899, #f472b6);
}

.domain-card:nth-child(3):hover .domain-icon {
    background: #ec4899;
    color: white;
}

.domain-card:nth-child(4) .domain-icon {
    color: #10b981;
    background: #ecfdf5;
}

.domain-card:nth-child(4)::before {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.domain-card:nth-child(4):hover .domain-icon {
    background: #10b981;
    color: white;
}

.domain-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.cta-footer {
    background: var(--primary-dark);
    color: white;
    padding: 100px 2rem;
    text-align: center;
}

.cta-footer h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* --- Metric Cards --- */
.metric-card {
    background: white;
    border-radius: 32px;
    padding: 3.5rem 2rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}
.metric-card:hover { transform: translateY(-5px); }

.metric-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}
.live-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
    animation: blink 1.5s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.metric-number {
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1.5rem;
    color: #2563eb;
    background: linear-gradient(135deg, #2563eb 0%, #9333ea 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -2px;
    display: block;
}
.metric-label {
    font-size: 1.5rem;
    font-weight: 900;
    color: #1e293b;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.metric-sub {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 240px;
    line-height: 1.4;
}
.metric-blob {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 50%;
    top: -50px;
    left: -50px;
    z-index: -1;
    filter: blur(40px);
}

/* --- Certificate Animations --- */
@keyframes slideUpToast {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Social Proof Toasts --- */
@keyframes slideInLeft { from { transform: translateX(-100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes slideOutLeft { from { transform: translateX(0); opacity: 1; } to { transform: translateX(-100%); opacity: 0; } }

/* --- Responsive Styles --- */
@media (max-width: 768px) {
    .landing-hero {
        padding: 40px 1.5rem 60px;
    }

    .landing-hero h1 {
        font-size: 2.5rem;
    }

    .landing-hero p {
        font-size: 1.1rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .details-section {
        padding: 60px 1.5rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

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

    .hero-badge {
        margin-bottom: 1.5rem;
    }

    .desktop-only {
        display: none !important;
    }

    /* Certificate Showcase Mobile Fix */
    .certificate-showcase {
        padding: 4rem 1.5rem;
    }
    .cert-container {
        gap: 3rem;
        flex-direction: column;
        text-align: center;
    }
    .cert-content, .cert-image-container {
        min-width: 100%;
    }
    .cert-title {
        font-size: 2.2rem;
    }
    .cert-p {
        margin: 0 auto 2.5rem;
    }
    .cert-cta-group {
        justify-content: center;
    }
    .cert-verified-badge {
        right: 10px;
        bottom: 10px;
        padding: 0.8rem 1.2rem;
        scale: 0.9;
    }
}
/* Extracted From index.html for Maximum Performance & SEO */
@keyframes slideUpCRO {
    from {
        opacity: 0;
        transform: translateY(40px)
    }

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px)
    }

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

@keyframes livePulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

/* --- CRO Section: City Grid --- */
.city-section {
    background: #F8FAFC;
    padding: 4rem 1.5rem;
}

.city-container {
    max-width: 1100px;
    margin: 0 auto;
}

.city-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: .7rem;
    margin-bottom: 2.2rem;
}

.city-btn {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: .8rem;
    font-weight: 600;
    font-size: .85rem;
    cursor: pointer;
    transition: all .2s;
    color: #0F172A;
}

.city-btn:hover {
    border-color: #2563EB;
    color: #2563EB;
    background: #EFF6FF;
}

/* --- Mid-Page Urgency Strip --- */
.urgency-strip {
    background: linear-gradient(135deg, #1E3A8A, #1D4ED8);
    padding: 3.5rem 1.5rem;
    text-align: center;
}

.urgency-strip-content {
    max-width: 700px;
    margin: 0 auto;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 100px;
    padding: .4rem 1.2rem;
    font-size: .82rem;
    color: #93C5FD;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: .5px;
}

.live-dot {
    width: 7px;
    height: 7px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10B981;
    display: inline-block;
    animation: livePulse 1.4s infinite;
}

.urgency-title {
    font-size: clamp(1.5rem, 3.5vw, 2.3rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: .8rem;
}

.urgency-p {
    color: #CBD5E1;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: #FCD34D;
    color: #0F172A;
    padding: .95rem 2.4rem;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 800;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(252, 211, 77, .35);
    transition: all .2s;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .25);
    padding: .95rem 1.8rem;
    border-radius: 50px;
    font-size: .95rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.feature-tag-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1.8rem;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .85rem;
    color: #93C5FD;
}

/* --- Exit Intent Popup --- */
.exit-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(6px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.exit-content {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    max-width: 440px;
    width: 100%;
    text-align: center;
    position: relative;
    animation: slideUpCRO .35s ease-out;
}

.exit-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: #94A3B8;
}

.exit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .55rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.exit-list li {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .9rem;
    font-weight: 500;
}

.exit-check {
    color: #10B981;
    font-size: 1.1rem;
}

.exit-btn {
    width: 100%;
    background: #2563EB;
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: background .2s;
}

.exit-btn:hover {
    background: #1D4ED8;
}

/* --- Footer SEO --- */
.footer-seo-section {
    margin-bottom: 2.5rem;
}

.footer-seo-title {
    color: #64748b;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    display: block;
    font-weight: 700;
}

.footer-seo-links {
    color: #475569;
    font-size: 0.75rem;
    line-height: 2;
    text-align: justify;
}

.footer-seo-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
    cursor: pointer;
}

.footer-seo-links a:hover {
    color: #60a5fa;
    text-decoration: underline;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
    z-index: 9997;
    text-decoration: none;
    transition: transform .2s;
}

.whatsapp-float:hover {
    transform: scale(1.12);
}

/* --- Metrics Section --- */
.metrics-section {
    background: #f8fafc;
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
}

.metrics-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 10;
}

.metric-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
}

.metric-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 99, 235, 0.08);
    color: #2563EB;
    padding: 0.4rem 0.9rem;
    border-radius: 40px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    margin-bottom: 2rem;
}

.metric-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -1.5px;
}

.metric-label {
    font-size: 0.9rem;
    font-weight: 800;
    color: #64748b;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.metric-sub {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.metric-blob {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 50%;
    filter: blur(40px);
    top: -40px;
    left: -40px;
    z-index: 0;
}

/* --- Certificate Showcase --- */
.certificate-showcase {
    background: linear-gradient(135deg, #020617 0%, #0f172a 100%);
    padding: 7rem 2rem;
    color: white;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cert-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5rem;
}

.cert-content {
    flex: 1;
    min-width: 320px;
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    margin-bottom: 2rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: #93C5FD;
}

.cert-title {
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.cert-p {
    color: #94A3B8;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 520px;
    font-weight: 400;
}

.cert-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #60A5FA;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 3.5rem;
    cursor: pointer;
    transition: gap 0.3s;
}

.cert-link:hover {
    gap: 0.8rem;
}

.cert-cta-group {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.cert-btn {
    background: white;
    color: #020617;
    padding: 1.1rem 2.4rem;
    border-radius: 14px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    font-size: 1rem;
    transition: transform 0.2s;
}

.cert-btn:hover {
    transform: translateY(-3px);
}

.cert-image-container {
    flex: 1;
    min-width: 380px;
    position: relative;
    perspective: 1000px;
}

.cert-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(37, 99, 235, 0.25) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 1;
}

.cert-mockup-wrapper {
    position: relative;
    border-radius: 16px;
    background: white;
    padding: 6px;
    box-shadow: 0 40px 100px -15px rgba(0, 0, 0, 0.8);
    z-index: 2;
    transition: transform 0.5s ease;
}

.cert-mockup-wrapper:hover {
    transform: scale(1.02) rotate(1deg);
}

.cert-verified-badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: white;
    border-radius: 20px;
    padding: 1.4rem 2.2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: #0f172a;
    border: 1px solid #f1f5f9;
    animation: slideUpToast 0.8s backwards 0.5s;
}

@keyframes slideUpToast {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.verified-text {
    font-size: 0.8rem;
    font-weight: 800;
    color: #64748b;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.verified-status {
    font-size: 1.15rem;
    font-weight: 900;
    color: #0f172a;
}

.verified-id {
    color: #2563eb;
    font-weight: 800;
}

/* --- Hero Sub-elements --- */
.hero-stats-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: slideUp 0.8s ease-out 0.5s backwards;
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e2e8f0;
    font-size: 0.9rem;
}

.hero-cta-btn {
    padding: 1rem 2.2rem;
    font-size: 1.1rem;
    background: #2563EB;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
    cursor: pointer;
    transition: transform 0.2s;
}

.hero-cta-btn:hover {
    transform: translateY(-2px);
}

.hero-cta-secondary {
    padding: 1rem 2.2rem;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.hero-trust-badge {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    animation: slideUp 0.9s ease-out 0.8s backwards;
    background: rgba(0, 0, 0, 0.15);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(5px);
}

/* --- Social Proof Toast --- */
.recent-reg-toast {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #10b981;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideInLeft 0.5s ease-out;
    font-size: 0.85rem;
}

.toast-icon {
    background: #ecfdf5;
    color: #10b981;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-title {
    font-weight: 700;
    color: #1e293b;
}

.toast-sub {
    color: #64748b;
}

.toast-domain {
    color: #2563eb;
    font-weight: 600;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

@keyframes slideOutLeft {
    to {
        opacity: 0;
        transform: translateX(-30px);
    }
}

 
 /* Success Overlay */
 .success-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100vw;
     height: 100vh;
     background: rgba(0, 0, 0, 0.6);
     backdrop-filter: blur(8px);
     z-index: 9999;
     display: none;
     align-items: center;
     justify-content: center;
     padding: 1.5rem;
 }
 
 .success-content {
     background: white;
     padding: 3.5rem 2rem;
     border-radius: 24px;
     width: 100%;
     max-width: 500px;
     text-align: center;
     box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
     position: relative;
 }
 
 .success-icon-box {
     width: 80px;
     height: 80px;
     background: #f0fdf4;
     color: #22c55e;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 3rem;
     margin: 0 auto 1.5rem;
 }
 
 @media (max-width: 480px) {
     .success-content {
         padding: 2.5rem 1.75rem;
         border-radius: 20px;
     }
     .success-content h2 {
         font-size: 1.5rem;
     }
 }
