﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #FEFEFE;
    color: #1E293B;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* NAVIGATION */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 3rem;
    z-index: 1000;
    transition: box-shadow 0.3s;
}

nav.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

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

/* Desktop nav links */
.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1;
    justify-content: center;
}

.nav-links a {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #8B5CF6;
}

/* Right-side nav actions */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.lang-toggle {
    background: white;
    border: 1px solid #E2E8F0;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: border-color 0.2s;
    white-space: nowrap;
}

.lang-toggle:hover {
    border-color: #8B5CF6;
}

.cta-nav {
    background: linear-gradient(135deg, #1E70E8, #9333EA);
    color: white;
    border: none;
    padding: 0.7rem 1.4rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.3);
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(139, 92, 246, 0.4);
}

/* Hamburger button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1100;
    border-radius: 8px;
    transition: background 0.2s;
}

.hamburger:hover {
    background: rgba(0, 0, 0, 0.05);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #1E293B;
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

/* Hamburger X animation */
.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Elements tagged .desktop-only are visble by default; hidden on mobile via media query */

/* MOBILE DRAWER */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1050;
    backdrop-filter: blur(2px);
}

.mobile-menu-overlay.open {
    display: block;
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: white;
    z-index: 1100;
    padding: 80px 32px 40px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    overflow-y: auto;
}

.mobile-menu-drawer.open {
    transform: translateX(0);
}

.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-links li a {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid #F1F5F9;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1E293B;
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-nav-links li a:hover {
    color: #8B5CF6;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 10rem 3rem 6rem;
    background: linear-gradient(135deg, #FAFBFD 0%, #F4F5FB 100%);
    position: relative;
    overflow: hidden;
}

.sparkle-1 {
    position: absolute;
    top: 8%;
    right: 8%;
    font-size: 3rem;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.sparkle-2 {
    position: absolute;
    bottom: 15%;
    left: 5%;
    font-size: 2rem;
    opacity: 0.12;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

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

    50% {
        transform: translateY(-25px);
    }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-left {
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
}

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

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: #8B5CF6;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #1E70E8, #9333EA);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.05rem;
    color: #64748B;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 540px;
}

.form-box {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    max-width: 500px;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
}

.email-input {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    background: #F8FAFC;
    font-size: 1rem;
    font-family: inherit;
    margin-bottom: 1.2rem;
    transition: all 0.2s;
}

.email-input:focus {
    outline: none;
    border-color: #8B5CF6;
    background: white;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 1rem;
}

.checkbox-row input {
    margin-top: 0.25rem;
    accent-color: #8B5CF6;
    width: 16px;
    height: 16px;
}

.checkbox-row label {
    font-size: 0.85rem;
    color: #64748B;
    line-height: 1.5;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #1E70E8, #9333EA);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.counter-text {
    text-align: center;
    font-size: 0.85rem;
    color: #64748B;
    margin-top: 1rem;
}

.counter-text strong {
    color: #EC4899;
    font-weight: 700;
}

/* PHONE MOCKUP */
.hero-right {
    opacity: 0;
    animation: fadeUp 1s ease 0.4s forwards;
}

.phone-mockup {
    max-width: 420px;
    margin: 0 auto;
    position: relative;
}

.phone-device {
    background: #1E293B;
    border-radius: 50px;
    padding: 14px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.phone-display {
    background: white;
    border-radius: 42px;
    height: 760px;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    scrollbar-width: none;
}

.phone-display::-webkit-scrollbar {
    display: none;
}

.notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 145px;
    height: 32px;
    background: #1E293B;
    border-radius: 0 0 22px 22px;
    z-index: 10;
}

.phone-content {
    padding-top: 42px;
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px 14px;
}

.back-link {
    color: #3B82F6;
    font-weight: 600;
    font-size: 0.9rem;
}

.header-icons {
    display: flex;
    gap: 0.8rem;
}

.icon-circle {
    width: 34px;
    height: 34px;
    background: #F1F5F9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.business-bar {
    background: #F8FAFC;
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.business-label {
    color: #8B5CF6;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.appointment-body {
    padding: 22px 20px;
}

.greeting-text {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.sub-text {
    font-size: 0.9rem;
    color: #64748B;
    margin-bottom: 1.4rem;
}

.service-card {
    background: #F8FAFC;
    border-left: 4px solid #8B5CF6;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 12px;
}

.card-tag {
    font-size: 0.65rem;
    font-weight: 700;
    color: #8B5CF6;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4px;
}

.service-title {
    font-size: 1.1rem;
    font-weight: 700;
}

.service-sub {
    font-size: 0.85rem;
    color: #64748B;
}

.points-tag {
    background: #FEF3C7;
    color: #D97706;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    white-space: nowrap;
}

.details-card {
    background: #F8FAFC;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}

.detail-col {
    flex: 1;
}

.detail-value {
    font-size: 0.92rem;
    font-weight: 600;
    margin-top: 5px;
}

.expert-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: flex-end;
    margin-top: 5px;
}

.expert-avatar {
    background: #8B5CF6;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

.status-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    padding: 12px;
    border-radius: 9px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.calendar-button {
    background: #EEF2FF;
    color: #6366F1;
    border: none;
    padding: 12px;
    border-radius: 9px;
    width: 100%;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    cursor: pointer;
}

.reschedule-btn {
    background: #8B5CF6;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    width: calc(100% - 40px);
    margin: 0 20px 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
}

.cancel-text {
    text-align: center;
    color: #94A3B8;
    font-size: 0.9rem;
    padding: 12px;
}

/* FEATURES SECTION */
.features {
    padding: 5rem 3rem;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    opacity: 0;
}

.section-header.visible {
    animation: fadeUp 0.8s ease forwards;
}

.section-tag {
    color: #3B82F6;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.3rem);
    font-weight: 700;
    color: #1E293B;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.3;
}

.features {
    padding: 5rem 3rem;
    background: white;
}

.features-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.feature-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 16px;
    padding: 1.4rem 1.6rem;
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    transition: all 0.25s;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
    border-color: rgba(139, 92, 246, 0.2);
}

.feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(79, 110, 247, 0.12), rgba(139, 92, 246, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.feature-text h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    line-height: 1.3;
    color: #1E293B;
}

.feature-text p {
    color: #64748B;
    font-size: 0.85rem;
    line-height: 1.55;
}

.section-subtitle {
    color: #64748B;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* RESOURCES SECTION */
.resources {
    padding: 5rem 3rem;
    background: #FAFBFC;
}

.resources-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.resource-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    opacity: 0;
}

.resource-card.visible {
    animation: fadeUp 0.8s ease forwards;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.resource-img {
    height: 140px;
    background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.resource-body {
    padding: 1.5rem;
}

.resource-type {
    display: inline-block;
    background: rgba(139, 92, 246, 0.1);
    color: #8B5CF6;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.resource-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.resource-card p {
    color: #64748B;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.download-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #1E293B;
    color: white;
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 9px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s;
}

.download-button:hover {
    background: #8B5CF6;
    transform: translateY(-2px);
}

/* FAQ SECTION */
.faq {
    padding: 5rem 3rem;
    background: white;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #F8FAFC;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    opacity: 0;
}

.faq-item.visible {
    animation: fadeUp 0.8s ease forwards;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.3rem 1.5rem;
    text-align: left;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

.faq-question:hover {
    color: #8B5CF6;
}

.faq-arrow {
    font-size: 1.3rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.3rem;
}

.faq-answer p {
    color: #64748B;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    z-index: 2000;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    font-size: 0.9rem;
    color: #475569;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-btn.accept {
    background: #1E293B;
    color: white;
    border: none;
}

.cookie-btn.accept:hover {
    background: #8B5CF6;
}

.cookie-btn.decline {
    background: transparent;
    border: 1px solid #E2E8F0;
    color: #64748B;
}

.cookie-btn.decline:hover {
    border-color: #CBD5E1;
    color: #1E293B;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}

/* FOOTER */
footer {
    background: #0C0E1A;
    color: #94A3B8;
    padding: 3rem 2rem;
    text-align: center;
}

footer p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-rights {
    color: #475569;
    font-size: 0.8rem;
    margin-bottom: 1.2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #475569;
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #94A3B8;
}

.footer-email {
    color: #475569;
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-email:hover {
    color: #94A3B8;
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-box {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #64748B;
}

.modal-box h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.success-box {
    background: white;
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 18px;
    padding: 2.5rem;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.success-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.success-box p {
    color: #64748B;
    margin-bottom: 2rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-right {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }

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

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

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .cf-3col {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 991px) {
    nav {
        padding: 0.7rem 1.2rem;
    }

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

    .hamburger {
        display: flex;
    }

    .cta-nav {
        display: none !important;
    }

    .logo img {
        height: 34px;
    }

    .hero {
        padding: 7rem 1.2rem 3rem;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        line-height: 1.15;
        word-break: break-word;
    }

    .hero p {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .features,
    .faq,
    .contact-section {
        padding: 3rem 1.2rem;
    }

    .sre-highlight {
        padding: 3rem 1.2rem;
    }

    .sre-highlight-left {
        width: 100% !important;
    }

    .sre-highlight-inner {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }

    .sre-chain {
        flex-direction: column;
        align-items: flex-start;
    }

    .wl-inner {
        padding: 3rem 1.2rem;
    }
}


.form-error-msg {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #DC2626;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hidden {
    display: none !important;
}

/* ═══════════════════════════════════════════════════════════
   HERO EXTRAS
   ═══════════════════════════════════════════════════════════ */
.hero-subtitle2 {
    font-size: 0.9rem;
    color: #94A3B8;
    margin-top: -1.5rem;
    margin-bottom: 1.5rem;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748B;
}

.live-dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

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

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

/* ═══════════════════════════════════════════════════════════
   SMART REFILL ENGINE SIMULATOR PANEL
   ═══════════════════════════════════════════════════════════ */
.sre-panel {
    width: 100%;
    max-width: 100%;
    height: 800px;
    display: flex;
    flex-direction: column;
    background: #0C0E1A;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #1E2240;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
    user-select: none;
}

/* Slot Bar */
.sre-slot-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1rem;
    background: #13162A;
    border-bottom: 1px solid #1E2240;
    flex-shrink: 0;
}

.sre-slot-bar-left {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.sre-slot-text {
    font-size: 0.75rem;
    color: #CBD5E1;
    font-weight: 500;
}

.sre-open-badge {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    border: 1px solid rgba(239, 68, 68, 0.25);
    animation: pulse 2s infinite;
}

.sre-algo-badge {
    font-size: 0.65rem;
    color: #475569;
}

/* Body */
.sre-body {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 1.2rem;
    overflow: visible;
    position: relative;
}

/* Footer / step nav */
.sre-footer {
    flex-shrink: 0;
    background: #13162A;
    border-top: 1px solid #1E2240;
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sre-steps {
    display: flex;
    gap: 0.3rem;
    flex: 1;
}

.sre-step-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    padding: 0.4rem 0.3rem;
    border-radius: 9px;
    border: none;
    background: transparent;
    color: #475569;
    font-size: 0.6rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    line-height: 1.2;
}

.sre-step-btn:hover {
    color: #94A3B8;
    background: rgba(255, 255, 255, 0.04);
}

.sre-step-btn.active {
    background: linear-gradient(160deg, #4F6EF7, #8B5CF6);
    color: white;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
}

.sre-step-icon {
    font-size: 0.95rem;
    line-height: 1;
}

.sre-step-label {
    display: none;
}

@media (min-width: 480px) {
    .sre-step-label {
        display: block;
    }
}

.sre-restart-btn {
    margin-left: 0.5rem;
    background: none;
    border: none;
    color: #475569;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    white-space: nowrap;
    font-family: inherit;
    transition: all 0.2s;
}

.sre-restart-btn:hover {
    color: #94A3B8;
    background: rgba(255, 255, 255, 0.04);
}

/* --- Screen styles --- */
.sre-screen {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    animation: sreIn 0.3s ease;
}

@keyframes sreIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

.sre-icon-ring {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.sre-icon-ring.blue {
    background: linear-gradient(135deg, #4F6EF7, #8B5CF6);
    box-shadow: 0 6px 18px rgba(139, 92, 246, 0.3);
}

.sre-icon-ring.red {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.sre-icon-ring.orange {
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.sre-icon-ring.green {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.sre-screen h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.sre-screen p {
    color: #94A3B8;
    font-size: 0.85rem;
    margin: 0;
    max-width: 260px;
    line-height: 1.55;
}

.sre-screen p.orange-text {
    color: #fb923c;
    font-weight: 600;
}

.sre-badge-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* SRE primary CTA button */
.sre-btn {
    background: linear-gradient(135deg, #4F6EF7, #8B5CF6);
    color: white;
    border: none;
    padding: 0.6rem 1.4rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.2s;
    box-shadow: 0 6px 16px rgba(139, 92, 246, 0.25);
}

.sre-btn:hover {
    opacity: 0.88;
}

.sre-btn:active {
    transform: scale(0.97);
}

/* SRE secondary/ghost button */
.sre-btn-ghost {
    background: #13162A;
    color: white;
    border: 1px solid #1E2240;
    padding: 0.6rem 1.4rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}

.sre-btn-ghost:hover {
    border-color: rgba(79, 110, 247, 0.4);
}

/* Pulse ring animation for detecting / accepted */
.sre-pulse-ring {
    position: relative;
    width: 52px;
    height: 52px;
}

.sre-pulse-ring::before,
.sre-pulse-ring::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(79, 110, 247, 0.2);
    animation: pingRing 1.8s ease-out infinite;
}

.sre-pulse-ring::after {
    animation-delay: 0.6s;
}

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

    100% {
        opacity: 0;
        transform: scale(1.9);
    }
}

.sre-pulse-inner {
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4F6EF7, #8B5CF6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.4);
}

/* Bounce dots for detecting */
.sre-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sre-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: bounceDot 1.2s ease-in-out infinite;
}

.sre-dots span:nth-child(1) {
    background: #4F6EF7;
    animation-delay: 0s;
}

.sre-dots span:nth-child(2) {
    background: #8B5CF6;
    animation-delay: 0.2s;
}

.sre-dots span:nth-child(3) {
    background: #EC4899;
    animation-delay: 0.4s;
}

@keyframes bounceDot {

    0%,
    80%,
    100% {
        transform: scale(0.6);
        opacity: 0.5;
    }

    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Matching screen list */
.sre-match-screen {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    animation: sreIn 0.3s ease;
}

.sre-match-label {
    font-size: 0.6rem;
    font-weight: 700;
    color: #4F6EF7;
    letter-spacing: 0.1em;
    text-align: center;
}

.sre-candidate-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #13162A;
    border-radius: 12px;
    padding: 0.5rem 0.75rem;
    border: 1px solid #1E2240;
    animation: sreSlideUp 0.35s ease both;
}

@keyframes sreSlideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.sre-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(79, 110, 247, 0.3), rgba(236, 72, 153, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.sre-candidate-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: white;
}

.sre-candidate-sub {
    font-size: 0.65rem;
    color: #475569;
}

.sre-score {
    margin-left: auto;
    text-align: right;
    flex-shrink: 0;
}

.sre-score-val {
    font-size: 0.75rem;
    font-weight: 700;
    color: #F59E0B;
}

.sre-score-lbl {
    font-size: 0.58rem;
    color: #334155;
}

/* Source tag badges */
.sre-src-tag {
    font-size: 0.58rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
    border: 1px solid;
}

.sre-src-tag.vip {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
    border-color: rgba(245, 158, 11, 0.25);
}

.sre-src-tag.waitlist {
    background: rgba(59, 130, 246, 0.1);
    color: #60A5FA;
    border-color: rgba(59, 130, 246, 0.25);
}

.sre-src-tag.crm {
    background: rgba(139, 92, 246, 0.1);
    color: #A78BFA;
    border-color: rgba(139, 92, 246, 0.25);
}

.sre-src-tag.wizedeals {
    background: rgba(249, 115, 22, 0.1);
    color: #fb923c;
    border-color: rgba(249, 115, 22, 0.25);
}

/* Offering (SMS mockup) screen */
.sre-sms-card {
    background: #13162A;
    border-radius: 14px;
    border: 1px solid #1E2240;
    padding: 0.5rem;
    width: 100%;
    max-width: 280px;
    overflow-wrap: break-word;
}

.sre-sms-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid #1E2240;
    margin-bottom: 0.4rem;
}

.sre-sms-header>div:nth-child(2) {
    flex: 1;
    min-width: 0;
}

.sre-sms-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4F6EF7, #8B5CF6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.sre-sms-name {
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
}

.sre-sms-sub {
    font-size: 0.58rem;
    color: #475569;
}

/* Circular timer */
.sre-timer-wrapper {
    position: relative;
    width: 34px;
    min-width: 34px;
    height: 34px;
    margin-left: auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sre-timer-svg {
    position: absolute;
    inset: 0;
}

#sre-timer-num {
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 1;
    transform: translateY(1px);
}

.sre-sms-body {
    background: #0C0E1A;
    border-radius: 10px;
    padding: 0.4rem;
    margin-bottom: 0.4rem;
}

.sre-sms-offer-hdr {
    font-size: 0.65rem;
    font-weight: 700;
    color: #FCD34D;
    text-align: center;
    margin-bottom: 0.5rem;
}

.sre-sms-text {
    font-size: 0.65rem;
    color: #CBD5E1;
    line-height: 1.55;
}

.sre-sms-footer {
    font-size: 0.55rem;
    color: #334155;
    font-style: italic;
    margin-top: 0.4rem;
}

.sre-accept-btn {
    width: 100%;
    background: #22c55e;
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 9px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
    margin-bottom: 0.5rem;
}

.sre-accept-btn:hover {
    background: #16a34a;
}

.sre-skip-link {
    display: block;
    text-align: center;
    font-size: 0.68rem;
    color: #475569;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    width: 100%;
    transition: color 0.2s;
    padding: 0.2rem;
}

.sre-skip-link:hover {
    color: #94A3B8;
}

.sre-contacted-bar {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
    width: 100%;
    max-width: 270px;
}

.sre-contacted-lbl {
    font-size: 0.6rem;
    color: #334155;
}

.sre-struck {
    font-size: 0.6rem;
    color: #475569;
    background: #0F1629;
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
    text-decoration: line-through;
}

/* Accepted screen summary card */
.sre-accepted-card {
    width: 100%;
    max-width: 270px;
    background: #13162A;
    border-radius: 14px;
    border: 1px solid #1E2240;
    padding: 0.8rem;
    text-align: left;
}

.sre-accepted-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.sre-accepted-service {
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

.sre-accepted-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: #4ade80;
}

.sre-accepted-via {
    font-size: 0.7rem;
    color: #64748B;
    margin-bottom: 0.6rem;
}

.sre-accepted-divider {
    border: none;
    border-top: 1px solid #1E2240;
    margin: 0.5rem 0;
}

.sre-recovered-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sre-recovered-lbl {
    font-size: 0.65rem;
    color: #475569;
}

.sre-recovered-val {
    font-size: 0.85rem;
    font-weight: 700;
    color: #4ade80;
}

.sre-exhausted-mono {
    font-family: monospace;
    font-size: 0.75rem;
    color: #64748B;
    background: #13162A;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    border: 1px solid #1E2240;
}

/* ═══════════════════════════════════════════════════════════
   WAITING LIST SECTION
   ═══════════════════════════════════════════════════════════ */
.waiting-list-section {
    position: relative;
    overflow: hidden;
}

.wl-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #4F6EF7 0%, #8B5CF6 50%, #EC4899 100%);
}

.wl-inner {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

.wl-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: white;
    margin-bottom: 0.7rem;
}

.wl-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.wl-form {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    padding: 1.5rem;
    text-align: left;
}

.wl-email-input {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: none;
    font-size: 0.95rem;
    font-family: inherit;
    margin-bottom: 0.9rem;
    outline: none;
    background: white;
    color: #1E293B;
}

.wl-email-input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
}

.wl-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.6rem;
    cursor: pointer;
    line-height: 1.5;
}

.wl-checkbox-muted {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.2rem;
}

.wl-check {
    margin-top: 0.15rem;
    flex-shrink: 0;
    accent-color: white;
    width: 15px;
    height: 15px;
}

.wl-link {
    color: white;
    font-weight: 600;
}

.wl-submit-btn {
    width: 100%;
    background: white;
    color: #4F6EF7;
    font-weight: 800;
    font-size: 0.95rem;
    border: none;
    padding: 0.9rem;
    border-radius: 12px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.wl-submit-btn:hover {
    background: #F8FAFC;
    transform: translateY(-1px);
}

.wl-submit-btn:active {
    transform: scale(0.98);
}

.wl-social-proof {
    margin-top: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.wl-social-proof strong {
    color: white;
    font-weight: 700;
}

.wl-success-box {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    padding: 2.5rem;
    text-align: center;
    color: white;
}

.wl-success-emoji {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.wl-success-box h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.wl-success-box p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════════════
   SRE HIGHLIGHT SECTION
   ═══════════════════════════════════════════════════════════ */
.sre-highlight {
    background: #F6F7FB;
    border-top: 1px solid #E8EAF0;
    border-bottom: 1px solid #E8EAF0;
    padding: 5rem 3rem;
}

.sre-highlight-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.sre-highlight-left {
    width: 40%;
    flex-shrink: 0;
}

.sre-highlight-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #8B5CF6;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.sre-highlight-left h2 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800;
    color: #1E293B;
    line-height: 1.2;
}

.sre-highlight-right {
    flex: 1;
}

.sre-highlight-right p {
    color: #64748B;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.sre-priority-label {
    font-size: 0.65rem;
    font-weight: 800;
    color: #94A3B8;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.sre-chain {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: nowrap;
}

.sre-chain-item {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1E293B;
    background: white;
    border: 1px solid #E2E8F0;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.sre-chain-dashed {
    border-style: dashed;
    color: #94A3B8;
    background: #F8FAFC;
}

.sre-chain-arrow {
    color: #CBD5E1;
    font-size: 1.2rem;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT FORM SECTION
   ═══════════════════════════════════════════════════════════ */
.contact-section {
    background: white;
    padding: 5rem 3rem;
}

.contact-inner {
    max-width: 860px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cf-row {
    display: grid;
    gap: 0.75rem;
}

.cf-3col {
    grid-template-columns: repeat(3, 1fr);
}

.cf-input {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    font-size: 0.85rem;
    font-family: inherit;
    color: #1E293B;
    background: white;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.cf-input:focus {
    border-color: #4F6EF7;
    box-shadow: 0 0 0 3px rgba(79, 110, 247, 0.1);
}

.cf-input.error {
    border-color: #EF4444;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.15);
}

.cf-textarea {
    resize: none;
    height: 110px;
}

.cf-check-row {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.78rem;
    color: #475569;
    cursor: pointer;
    line-height: 1.5;
}

.cf-check-muted {
    color: #94A3B8;
}

.cf-check {
    margin-top: 0.15rem;
    flex-shrink: 0;
    accent-color: #4F6EF7;
    width: 14px;
    height: 14px;
}

.cf-check-row.error {
    color: #EF4444;
}

.cf-link {
    color: #4F6EF7;
    text-decoration: none;
}

.cf-required-note {
    font-size: 0.7rem;
    color: #CBD5E1;
}

.cf-submit-btn {
    background: linear-gradient(135deg, #4F6EF7, #8B5CF6);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.2s;
    box-shadow: 0 6px 18px rgba(139, 92, 246, 0.3);
}

.cf-submit-btn:hover {
    opacity: 0.88;
}

.cf-submit-btn:active {
    transform: scale(0.98);
}

.contact-success {
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: 18px;
    padding: 3rem;
    text-align: center;
}

.contact-success-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: #16a34a;
}

.contact-success p {
    color: #166534;
    font-weight: 600;
    font-size: 1rem;
}