/* ==========================================
   TAPIFY - Complete Stylesheet
   Redesigned: Warm Offwhite & Deep Teal Theme
   ========================================== */

/* ===== GOOGLE FONTS IMPORT ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    /* === Brand Colors === */
    --teal:          #153e3f;
    --teal-dark:     #0d2829;
    --teal-mid:      #1e5557;
    --teal-light:    #27706e;
    --teal-muted:    #3a8a87;
    --teal-soft:     rgba(21, 62, 63, 0.08);

    --cream:         #f6eee6;
    --cream-dark:    #ede3d8;
    --cream-mid:     #e4d6c8;
    --cream-deep:    #d9c9b8;
    --cream-border:  rgba(21, 62, 63, 0.12);

    /* === Accents === */
    --gold:          #c9933a;
    --gold-light:    #dba84f;
    --gold-soft:     rgba(201, 147, 58, 0.12);

    --white:         #ffffff;
    --off-white:     #f6eee6;

    /* === Text === */
    --text-primary:  #153e3f;
    --text-secondary: #3a6b6c;
    --text-muted:    #7a9e9f;
    --text-light:    #adc4c5;

    /* === Status Colors === */
    --success:       #1e7a4a;
    --danger:        #b5303e;
    --warning:       #c9933a;

    /* === Shadows === */
    --shadow-xs:   0 1px 4px rgba(21, 62, 63, 0.06);
    --shadow-sm:   0 2px 12px rgba(21, 62, 63, 0.08);
    --shadow-md:   0 6px 24px rgba(21, 62, 63, 0.12);
    --shadow-lg:   0 12px 48px rgba(21, 62, 63, 0.18);
    --shadow-xl:   0 24px 80px rgba(21, 62, 63, 0.22);

    --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm:   8px;
    --radius-md:   16px;
    --radius-lg:   24px;
    --radius-xl:   32px;
}

/* ===== GLOBAL RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== UTILITY CLASSES ===== */
.text-gold { color: var(--gold); }
.text-teal { color: var(--teal); }

.section-tag {
    color: var(--teal-muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.section-tag-light {
    color: rgba(246, 238, 230, 0.7);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-tag-light::before,
.section-tag-light::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.section-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.section-heading-light {
    font-family: 'Outfit', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--cream);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.section-subheading {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 3rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
}

.section-subheading-light {
    color: rgba(246, 238, 230, 0.75);
    font-size: 1rem;
    margin-bottom: 3rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ============================================
   NAVBAR
   ============================================ */
#mainNavbar {
    background: transparent;
    padding: 22px 0;
    transition: var(--transition);
    z-index: 1000;
}

#mainNavbar.scrolled {
    background: rgba(21, 62, 63, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 4px 30px rgba(21, 62, 63, 0.25);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(21,62,63,0.3));
}

#mainNavbar.scrolled .logo-img {
    height: 40px;
}

.navbar-nav .nav-link {
    color: var(--cream) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 55%;
}

.btn-signin {
    background: var(--gold);
    color: var(--teal-dark);
    border: 2px solid var(--gold);
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.btn-signin:hover {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 147, 58, 0.35);
}

/* Hamburger */
.navbar-toggler {
    border: none;
    box-shadow: none !important;
    padding: 5px;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    width: 28px;
    height: 20px;
    justify-content: space-between;
}

.hamburger-icon span {
    display: block;
    height: 2.5px;
    background: var(--cream);
    border-radius: 3px;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 45%, var(--teal-mid) 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 110px;
}

/* ── Video hero override ── */
.hero-video-section {
    padding: 100px 0 0 0;
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 45%, var(--teal-mid) 100%);
    height: auto;
    min-height: auto;
    display: block;
}
.hero-video-section::after { display: none; } /* Remove mesh overlay */
.hero-video {
    width: 100%;
    height: auto;
    max-height: 682px;
    object-fit: cover;
    display: block;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(ellipse at 15% 25%, rgba(201, 147, 58, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 75%, rgba(246, 238, 230, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 0%, rgba(246, 238, 230, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

/* Decorative mesh pattern */
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 80px,
            rgba(246, 238, 230, 0.02) 80px,
            rgba(246, 238, 230, 0.02) 81px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 80px,
            rgba(246, 238, 230, 0.02) 80px,
            rgba(246, 238, 230, 0.02) 81px
        );
    pointer-events: none;
}

.hero-text {
    color: var(--cream);
    z-index: 2;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 147, 58, 0.18);
    backdrop-filter: blur(10px);
    padding: 8px 22px;
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 28px;
    border: 1px solid rgba(201, 147, 58, 0.35);
    letter-spacing: 0.5px;
    animation: fade-in-down 0.8s ease both;
}

.hero-badge i { color: var(--gold-light); }

@keyframes fade-in-down {
    from { opacity: 0; transform: translateY(-15px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 22px;
    letter-spacing: -1.5px;
    animation: fade-in-up 0.8s ease 0.1s both;
}

.hero-title .text-gold {
    color: var(--gold-light);
    position: relative;
}

.hero-title .text-gold::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    font-size: 1.08rem;
    opacity: 0.85;
    margin-bottom: 38px;
    max-width: 500px;
    line-height: 1.75;
    font-weight: 400;
    animation: fade-in-up 0.8s ease 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 14px;
    margin-bottom: 55px;
    flex-wrap: wrap;
    animation: fade-in-up 0.8s ease 0.3s both;
}

.btn-primary-cta {
    background: var(--gold);
    color: var(--teal-dark);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.98rem;
    border: 2px solid var(--gold);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-primary-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    opacity: 0;
    transition: var(--transition);
}

.btn-primary-cta:hover {
    color: var(--teal-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(201, 147, 58, 0.45);
}

.btn-primary-cta:hover::before { opacity: 1; }
.btn-primary-cta span, .btn-primary-cta i { position: relative; z-index: 1; }

.btn-outline-cta {
    background: transparent;
    color: var(--cream);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.98rem;
    border: 2px solid rgba(246, 238, 230, 0.4);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline-cta:hover {
    background: rgba(246, 238, 230, 0.12);
    color: var(--cream);
    border-color: var(--cream);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 45px;
    flex-wrap: wrap;
    animation: fade-in-up 0.8s ease 0.4s both;
}

.stat-item {
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -22px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(246, 238, 230, 0.2);
}

.stat-item h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--gold-light);
    margin-bottom: 4px;
    line-height: 1;
}

.stat-item p {
    font-size: 0.8rem;
    opacity: 0.75;
    margin: 0;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* === Hero Visual === */
.hero-visual {
    position: relative;
    height: 620px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fade-in-up 0.9s ease 0.2s both;
}

.phone-card-mockup {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* NFC Card */
.nfc-card {
    position: absolute;
    width: 325px;
    height: 205px;
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, var(--teal-mid) 100%);
    border-radius: 20px;
    box-shadow: 0 25px 65px rgba(13, 40, 41, 0.55);
    transform: rotate(-12deg) translateX(-85px) translateY(55px);
    z-index: 1;
    overflow: hidden;
    animation: float-card 6s ease-in-out infinite;
    border: 1px solid rgba(201, 147, 58, 0.35);
}

@keyframes float-card {
    0%,  100% { transform: rotate(-12deg) translateX(-85px) translateY(55px); }
    50%       { transform: rotate(-12deg) translateX(-85px) translateY(38px); }
}

.card-shine {
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 147, 58, 0.22), transparent);
    animation: shine 3.5s infinite;
    border-radius: 50%;
}

@keyframes shine {
    0%   { left: -60%; }
    100% { left: 160%; }
}

.card-content {
    padding: 26px;
    height: 100%;
    position: relative;
}

.card-logo {
    height: 38px;
    width: auto;
    filter: drop-shadow(0 2px 6px rgba(201, 147, 58, 0.5)) brightness(10);
}

.card-chip {
    position: absolute;
    top: 26px;
    right: 26px;
    width: 42px;
    height: 32px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-dark);
    font-size: 1.2rem;
}

.card-name {
    position: absolute;
    bottom: 52px;
    left: 26px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gold-light);
    letter-spacing: 3px;
    font-family: 'Outfit', sans-serif;
}

.card-title {
    position: absolute;
    bottom: 26px;
    left: 26px;
    font-size: 0.82rem;
    color: rgba(246, 238, 230, 0.65);
    letter-spacing: 0.5px;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    width: 252px;
    height: 508px;
    background: #0d2829;
    border-radius: 42px;
    padding: 12px;
    box-shadow: 0 30px 70px rgba(13, 40, 41, 0.55), inset 0 0 0 1px rgba(246,238,230,0.1);
    transform: rotate(8deg) translateX(65px) translateY(-22px);
    z-index: 2;
    animation: float-phone 6s ease-in-out infinite;
}

@keyframes float-phone {
    0%,  100% { transform: rotate(8deg) translateX(65px) translateY(-22px); }
    50%       { transform: rotate(8deg) translateX(65px) translateY(-38px); }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--teal-dark) 0%, var(--teal) 100%);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 75px;
    height: 18px;
    background: #0d2829;
    border-radius: 0 0 14px 14px;
    z-index: 5;
}

.phone-content {
    padding: 38px 18px 18px;
    text-align: center;
    color: var(--cream);
}

.profile-avatar {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    margin: 0 auto 14px;
    border: 3px solid rgba(246, 238, 230, 0.3);
    position: relative;
}

.profile-avatar::after {
    content: '\f007';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--teal-dark);
}

.phone-content h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.phone-content p {
    font-size: 0.78rem;
    opacity: 0.75;
    margin-bottom: 18px;
}

.save-btn {
    width: 100%;
    padding: 11px;
    background: var(--gold);
    color: var(--teal-dark);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.82rem;
    margin-bottom: 22px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.3px;
}

.social-icons-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.social-icons-row span {
    width: 34px;
    height: 34px;
    background: rgba(246, 238, 230, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

/* Floating Social Icons */
.floating-icon {
    position: absolute;
    width: 52px;
    height: 52px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    border: 2px solid var(--cream-dark);
}

.floating-icon i.fa-whatsapp    { color: #25D366; }
.floating-icon i.fa-instagram   { color: #E4405F; }
.floating-icon i.fa-linkedin-in { color: #0077B5; }
.floating-icon i.fa-facebook-f  { color: #1877F2; }
.floating-icon i.fa-google      { color: #DB4437; }
.floating-icon i.fa-map-marker-alt { color: var(--teal); }

.icon-1 { top: 10%;  left: 5%;  animation: float-icon 4s ease-in-out infinite; }
.icon-2 { top: 25%;  right: 5%; animation: float-icon 4s ease-in-out infinite 0.5s; }
.icon-3 { top: 55%;  left: 0%;  animation: float-icon 4s ease-in-out infinite 1s; }
.icon-4 { bottom: 25%; right: 8%; animation: float-icon 4s ease-in-out infinite 1.5s; }
.icon-5 { top: 40%;  right: 15%; animation: float-icon 4s ease-in-out infinite 2s; }
.icon-6 { bottom: 10%; left: 15%; animation: float-icon 4s ease-in-out infinite 2.5s; }

@keyframes float-icon {
    0%,  100% { transform: translateY(0); }
    50%        { transform: translateY(-14px); }
}

/* === Floating Video Widget === */
.floating-video-widget {
    position: fixed;
    bottom: 95px;
    left: 22px;
    width: 195px;
    height: 275px;
    background: var(--teal-dark);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(13, 40, 41, 0.45);
    z-index: 999;
    animation: slide-in-left 0.5s ease 1s both;
    border: 2px solid rgba(246, 238, 230, 0.1);
}

@keyframes slide-in-left {
    from { transform: translateX(-300px); opacity: 0; }
    to   { transform: translateX(0); opacity: 1; }
}

.video-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    background: rgba(13, 40, 41, 0.8);
    border: 1px solid rgba(246,238,230,0.2);
    border-radius: 50%;
    color: var(--cream);
    cursor: pointer;
    z-index: 10;
    font-size: 0.82rem;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--teal), var(--teal-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.video-thumbnail .play-icon {
    color: var(--gold-light);
    font-size: 3.5rem;
    opacity: 0.9;
    transition: var(--transition);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.video-thumbnail:hover .play-icon {
    transform: scale(1.1);
    opacity: 1;
}

.video-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(13, 40, 41, 0.95));
    color: var(--cream);
}

.video-overlay-text small {
    color: var(--gold-light);
    font-weight: 700;
    font-size: 0.68rem;
    letter-spacing: 1.5px;
}

.video-overlay-text p {
    font-size: 0.78rem;
    font-weight: 600;
    margin: 4px 0 0;
    line-height: 1.3;
}

/* ============================================
   TRUSTED CUSTOMERS - Logo Slider
   ============================================ */
.trusted-section {
    padding: 80px 0 60px;
    background: var(--white);
    overflow: hidden;
    position: relative;
}

.trusted-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--teal-light), var(--gold), var(--teal-light), transparent);
}

.logo-slider {
    margin-top: 55px;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}

.logo-track {
    display: flex;
    gap: 35px;
    animation: scroll-logos 28s linear infinite;
    width: max-content;
}

@keyframes scroll-logos {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logo-item { flex-shrink: 0; }

.logo-item span {
    display: inline-block;
    padding: 14px 32px;
    background: var(--cream);
    color: var(--teal);
    font-weight: 700;
    border-radius: 12px;
    letter-spacing: 1.5px;
    font-size: 0.88rem;
    border: 1.5px solid var(--cream-mid);
    min-width: 140px;
    text-align: center;
    transition: var(--transition);
}

.logo-item img {
    display: inline-block;
    height: 140px;
    width: auto;
    object-fit: contain;
    background: transparent;
    mix-blend-mode: multiply;
    transition: var(--transition);
    margin: 0 10px;
}

.logo-item span:hover {
    background: var(--teal);
    color: var(--cream);
    border-color: var(--teal);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.logo-item img:hover {
    transform: scale(1.05);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    padding: 90px 0;
    background: var(--cream);
}

.testimonials-slider {
    position: relative;
    margin-top: 55px;
}

.testimonials-track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 8px;
    scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar { display: none; }

.testimonial-card {
    flex: 0 0 235px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1.5px solid var(--cream-mid);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal-muted);
}

.video-thumb-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 12;
    overflow: hidden;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.video-placeholder i {
    color: var(--white);
    font-size: 3.8rem;
    opacity: 0.92;
    transition: var(--transition);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.video-placeholder:hover i {
    transform: scale(1.15);
}

.testimonial-card h5 {
    padding: 18px 18px 4px;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--teal);
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.testimonial-card p {
    padding: 0 18px 20px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin: 0;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 2px solid var(--cream-mid);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    color: var(--teal);
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.slider-arrow:hover {
    background: var(--teal);
    color: var(--cream);
    border-color: var(--teal);
    transform: translateY(-50%) scale(1.08);
}

.arrow-left  { left: -28px; }
.arrow-right { right: -28px; }

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background:
        radial-gradient(ellipse at 0% 50%, rgba(21,62,63,0.03) 0%, transparent 55%),
        radial-gradient(ellipse at 100% 50%, rgba(201,147,58,0.04) 0%, transparent 55%);
    pointer-events: none;
}

.feature-card {
    background: var(--cream);
    padding: 38px 32px;
    border-radius: 22px;
    transition: var(--transition);
    height: 100%;
    border: 2px solid var(--cream-mid);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    border-radius: 2px;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--teal-soft), rgba(201,147,58,0.04));
    opacity: 0;
    transition: var(--transition);
    border-radius: 20px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--teal-muted);
}

.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover::after  { opacity: 1; }

.feature-icon {
    width: 72px;
    height: 72px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    color: var(--teal);
    margin-bottom: 22px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--cream-mid);
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    background: var(--teal);
    color: var(--gold-light);
    transform: rotate(-5deg) scale(1.1);
    box-shadow: var(--shadow-md);
    border-color: var(--teal);
}

.feature-card h4 {
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--teal);
    font-family: 'Outfit', sans-serif;
    position: relative;
    z-index: 1;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, var(--teal-mid) 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 8% 20%, rgba(201, 147, 58, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 92% 80%, rgba(246, 238, 230, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

/* Decorative dots */
.how-it-works-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(246,238,230,0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.step-card {
    text-align: center;
    color: var(--cream);
    padding: 35px 25px;
    position: relative;
    transition: var(--transition);
    background: rgba(246, 238, 230, 0.04);
    border-radius: 22px;
    border: 1.5px solid rgba(246, 238, 230, 0.1);
    backdrop-filter: blur(8px);
}

.step-card:hover {
    transform: translateY(-12px);
    background: rgba(246, 238, 230, 0.08);
    border-color: rgba(201, 147, 58, 0.35);
}

.step-number {
    font-family: 'Outfit', sans-serif;
    font-size: 5.5rem;
    font-weight: 900;
    color: rgba(201, 147, 58, 0.22);
    line-height: 1;
    margin-bottom: -28px;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 92px;
    height: 92px;
    background: rgba(246, 238, 230, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(201, 147, 58, 0.45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold-light);
    margin: 0 auto 26px;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.step-card:hover .step-icon {
    background: var(--gold);
    color: var(--teal-dark);
    border-color: var(--gold);
    transform: rotate(360deg);
}

.step-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--cream);
}

.step-card p {
    color: rgba(246, 238, 230, 0.78);
    font-size: 0.93rem;
    line-height: 1.7;
}

/* Connector lines between steps */
.how-it-works-section .row > .col-md-4:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -18px;
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, rgba(201,147,58,0.4), rgba(201,147,58,0.1));
    display: none;
}

/* ============================================
   COMPARISON SECTION
   ============================================ */
.comparison-section {
    padding: 100px 0;
    background: var(--cream);
}

.comparison-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
    margin-top: 55px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-col {
    padding: 42px 38px;
    border-radius: 22px;
    box-shadow: var(--shadow-md);
}

.comparison-traditional {
    background: #fff5f5;
    border: 2px solid #ffd0d0;
}

.comparison-smart {
    background: #f0fdf6;
    border: 2px solid rgba(21, 62, 63, 0.2);
}

.comparison-col h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison-traditional h3 { color: var(--danger); }
.comparison-smart h3       { color: var(--teal); }

.comparison-col ul li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(21, 62, 63, 0.07);
    font-size: 0.93rem;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-primary);
}

.comparison-col ul li:last-child { border-bottom: none; }

.comparison-traditional ul li i {
    color: var(--danger);
    font-size: 0.9rem;
    width: 26px;
    height: 26px;
    background: rgba(181, 48, 62, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.comparison-smart ul li i {
    color: var(--teal);
    font-size: 0.9rem;
    width: 26px;
    height: 26px;
    background: rgba(21, 62, 63, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vs-badge {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--teal), var(--teal-mid));
    color: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 12px 30px rgba(21, 62, 63, 0.35);
    align-self: center;
    margin: 0 -36px;
    z-index: 5;
    position: relative;
    border: 3px solid var(--cream);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

#faqAccordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--cream) !important;
    border: 2px solid var(--cream-mid) !important;
    border-radius: 16px !important;
    margin-bottom: 14px;
    box-shadow: var(--shadow-xs);
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item:hover {
    border-color: var(--teal-muted) !important;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    background: var(--cream) !important;
    color: var(--teal) !important;
    font-weight: 600;
    padding: 22px 28px;
    font-size: 0.98rem;
    box-shadow: none !important;
    border: none !important;
    font-family: 'Outfit', sans-serif;
}

.accordion-button:not(.collapsed) {
    background: var(--teal) !important;
    color: var(--cream) !important;
    border-left: 0 !important;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23153e3f'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f6eee6'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-body {
    padding: 6px 28px 26px;
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.75;
    background: var(--cream);
    border-top: 1px solid var(--cream-mid);
}

.accordion-button:not(.collapsed) + * .accordion-body,
.accordion-collapse.show .accordion-body {
    background: var(--cream);
}

/* ============================================
   SOCIAL PROOF / IMAGES STRIP SECTION (NEW)
   ============================================ */
.social-proof-section {
    padding: 80px 0;
    background: var(--cream-dark);
    overflow: hidden;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 50px;
}

.proof-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--cream-mid);
    transition: var(--transition);
}

.proof-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal-muted);
}

.proof-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.proof-card-body {
    padding: 18px 20px;
}

.proof-card-body h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 5px;
}

.proof-card-body p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ── TESTIMONIAL CONTINUOUS MARQUEE ── */
.tpf-marquee-wrap {
    margin-top: 50px;
    overflow: hidden;
    position: relative;
    /* Fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    mask-image:         linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.tpf-marquee-track {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: tpfMarquee 38s linear infinite;
    will-change: transform;
}

/* Pause on hover */
.tpf-marquee-wrap:hover .tpf-marquee-track {
    animation-play-state: paused;
}

@keyframes tpfMarquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.tpf-slide {
    flex-shrink: 0;
    width: 240px;
}

.tpf-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--cream-mid);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tpf-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal-muted);
}

.tpf-card img {
    width: 100%;
    height: 340px;        /* A4 portrait ratio ≈ 1 : 1.414 → 240 × 340 */
    object-fit: cover;
    object-position: center top;
    display: block;
}

.tpf-card-name {
    padding: 13px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--teal);
    white-space: normal;
    line-height: 1.3;
}

.tpf-card-name i {
    color: var(--gold);
    font-size: 0.75rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .tpf-slide { width: 200px; }
    .tpf-card img { height: 283px; }
    .tpf-marquee-track { animation-duration: 28s; }
}

@media (max-width: 480px) {
    .tpf-slide { width: 170px; }
    .tpf-card img { height: 240px; }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 90px 0;
    background: var(--cream);
}

.cta-box {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 55%, var(--teal-mid) 100%);
    border-radius: 28px;
    padding: 70px 50px;
    text-align: center;
    color: var(--cream);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(246, 238, 230, 0.1);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(201, 147, 58, 0.18) 0%, transparent 55%),
        radial-gradient(circle at 80% 75%, rgba(246, 238, 230, 0.06) 0%, transparent 55%);
    pointer-events: none;
}

.cta-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(246,238,230,0.06) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
}

.cta-box h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.65rem;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}

.cta-box p {
    font-size: 1.08rem;
    opacity: 0.88;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.cta-box .btn-primary-cta {
    position: relative;
    z-index: 1;
    background: var(--gold);
    color: var(--teal-dark);
    font-size: 1rem;
    padding: 16px 44px;
}

.cta-box .btn-primary-cta:hover {
    background: var(--gold-light);
    box-shadow: 0 14px 40px rgba(201, 147, 58, 0.5);
}

/* ============================================
   FOOTER
   ============================================ */
.footer-section {
    background: linear-gradient(160deg, var(--teal-dark) 0%, var(--teal) 60%, var(--teal-mid) 100%);
    color: var(--cream);
    padding: 90px 0 35px;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 85% 15%, rgba(201,147,58,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.footer-section .container { position: relative; z-index: 1; }

.footer-brand .footer-logo {
    height: 52px;
    margin-bottom: 22px;
    filter: brightness(10);
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.78;
    margin-bottom: 28px;
    line-height: 1.75;
    max-width: 310px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(246, 238, 230, 0.1);
    border: 1px solid rgba(246, 238, 230, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    transition: var(--transition);
    font-size: 0.88rem;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--teal-dark);
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(201, 147, 58, 0.35);
}

.footer-section h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--gold-light);
    position: relative;
    padding-bottom: 12px;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
    color: rgba(246, 238, 230, 0.75);
    font-size: 0.9rem;
    position: relative;
    padding-left: 18px;
    transition: var(--transition);
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.1rem;
    top: -1px;
    font-weight: 700;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 24px;
}

.footer-links a:hover::before { left: 4px; }

.payment-methods {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.payment-badge {
    background: rgba(246, 238, 230, 0.12);
    color: var(--cream);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.76rem;
    font-weight: 600;
    border: 1px solid rgba(246, 238, 230, 0.2);
    letter-spacing: 0.5px;
}

.security-text {
    font-size: 0.83rem;
    opacity: 0.78;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.security-text i { color: var(--gold-light); }

.footer-divider {
    border-color: rgba(246, 238, 230, 0.12);
    margin: 45px 0 30px;
}

.popular-services-title {
    font-size: 0.82rem;
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 8px;
}

.popular-services-list {
    font-size: 0.76rem;
    opacity: 0.6;
    line-height: 1.85;
}

.copyright {
    font-size: 0.83rem;
    opacity: 0.75;
    margin: 0;
}

.footer-policy {
    color: rgba(246, 238, 230, 0.75);
    font-size: 0.83rem;
    margin-left: 18px;
    transition: var(--transition);
}

.footer-policy:hover { color: var(--gold-light); }

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 62px;
    height: 62px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.85rem;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.6);
}

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: pulse-anim 2s infinite;
    z-index: -1;
}

@keyframes pulse-anim {
    0%   { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.55); opacity: 0; }
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--teal-dark);
    color: var(--cream);
    padding: 20px 0;
    z-index: 998;
    box-shadow: 0 -6px 30px rgba(13, 40, 41, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 2px solid rgba(201, 147, 58, 0.4);
}

.cookie-banner.show { transform: translateY(0); }

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.cookie-content i { color: var(--gold-light); }

.cookie-buttons { display: flex; gap: 10px; }

.btn-allow {
    background: var(--gold);
    color: var(--teal-dark);
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.88rem;
}

.btn-allow:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-decline {
    background: rgba(246, 238, 230, 0.1);
    color: var(--cream);
    border: 1px solid rgba(246, 238, 230, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.88rem;
}

.btn-decline:hover {
    background: rgba(246, 238, 230, 0.18);
}

/* ============================================
   BENEFITS BANNER (NEW COMPONENT)
   ============================================ */
.benefits-banner {
    background: var(--teal);
    padding: 0;
    overflow: hidden;
}

.benefits-ticker {
    display: flex;
    gap: 0;
    animation: ticker 22s linear infinite;
    width: max-content;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 48px;
    color: var(--cream);
    font-weight: 600;
    font-size: 0.88rem;
    border-right: 1px solid rgba(246, 238, 230, 0.2);
    white-space: nowrap;
}

.benefit-item i {
    color: var(--gold-light);
    font-size: 0.95rem;
}

@keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   NUMBERS SECTION (NEW COMPONENT)
   ============================================ */
.numbers-section {
    padding: 80px 0;
    background: var(--teal);
    position: relative;
    overflow: hidden;
}

.numbers-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 50%, rgba(201,147,58,0.12) 0%, transparent 45%),
        radial-gradient(circle at 85% 50%, rgba(246,238,230,0.05) 0%, transparent 45%);
    pointer-events: none;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.number-card {
    text-align: center;
    padding: 35px 20px;
    background: rgba(246, 238, 230, 0.06);
    border-radius: 20px;
    border: 1.5px solid rgba(246, 238, 230, 0.1);
    transition: var(--transition);
}

.number-card:hover {
    background: rgba(246, 238, 230, 0.1);
    border-color: rgba(201, 147, 58, 0.4);
    transform: translateY(-6px);
}

.number-card .num-value {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 10px;
}

.number-card .num-label {
    font-size: 0.88rem;
    color: rgba(246, 238, 230, 0.72);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.number-card .num-icon {
    width: 55px;
    height: 55px;
    background: rgba(201, 147, 58, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold-light);
    margin: 0 auto 18px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1199px) {
    .numbers-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
    #mainNavbar {
        background: rgba(21, 62, 63, 0.97);
        backdrop-filter: blur(20px);
        padding: 12px 0;
    }

    .navbar-collapse {
        background: rgba(13, 40, 41, 0.98);
        padding: 22px;
        border-radius: 16px;
        margin-top: 14px;
        border: 1px solid rgba(246, 238, 230, 0.1);
    }

    .hero-title { font-size: 2.6rem; }

    .hero-visual {
        height: 520px;
        margin-top: 40px;
    }

    .nfc-card {
        width: 285px;
        height: 178px;
        transform: rotate(-12deg) translateX(-55px) translateY(42px);
    }

    .phone-mockup {
        width: 225px;
        height: 450px;
        transform: rotate(8deg) translateX(42px) translateY(-16px);
    }

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

    .vs-badge { margin: 0 auto; }

    .floating-video-widget {
        width: 158px;
        height: 218px;
        bottom: 105px;
    }

    .section-heading,
    .section-heading-light { font-size: 2.1rem; }

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

@media (max-width: 768px) {
    .hero-title { font-size: 2.1rem; }
    .hero-stats { gap: 22px; }
    .stat-item h3 { font-size: 1.6rem; }
    .hero-visual { height: 460px; }

    .nfc-card {
        width: 245px;
        height: 154px;
        transform: rotate(-10deg) translateX(-32px) translateY(32px);
    }

    .phone-mockup {
        width: 195px;
        height: 390px;
        transform: rotate(8deg) translateX(22px) translateY(-12px);
    }

    .feature-card { padding: 28px 22px; }
    .step-number { font-size: 4.2rem; }

    .cta-box {
        padding: 45px 28px;
    }

    .cta-box h2 { font-size: 2rem; }

    .floating-video-widget { display: none; }

    .footer-section { padding: 65px 0 30px; }

    .footer-policy {
        margin: 0 10px 0 0;
        display: inline-block;
        margin-top: 10px;
    }

    .copyright { margin-bottom: 10px; }

    .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .proof-grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    .hero-section { padding-top: 90px; }
    .hero-video-section { padding: 80px 0 0 0; height: auto; min-height: auto; }
    .hero-title { font-size: 1.85rem; letter-spacing: -0.5px; }
    .hero-subtitle { font-size: 0.95rem; }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn-primary-cta,
    .hero-cta .btn-outline-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .section-heading,
    .section-heading-light { font-size: 1.65rem; }

    .hero-visual { height: 390px; }

    .nfc-card { width: 205px; height: 128px; }

    .stat-item:not(:last-child)::after { display: none; }

    .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .number-card { padding: 25px 15px; }
    .number-card .num-value { font-size: 2.2rem; }

    .cta-box { padding: 38px 22px; }
    .cta-box h2 { font-size: 1.7rem; }

    .arrow-left  { left: -18px; }
    .arrow-right { right: -18px; }
}

/* ============================================
   3D SOCIAL BURST SECTION
   ============================================ */
.social-burst-section {
    background: linear-gradient(160deg, #08191a 0%, #0d2829 50%, #0f3030 100%);
    padding: 100px 0 110px;
    position: relative;
    overflow: hidden;
}
.social-burst-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(246,238,230,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}
/* Ambient light blob */
.social-burst-section::after {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,147,58,0.08) 0%, transparent 70%);
    top: 50%; right: -100px;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Layout */
.sb-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Copy side */
.sb-gold { color: #dba84f; }
.sb-steps { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.sb-step {
    display: flex; align-items: center; gap: 14px;
    font-size: 0.9rem; color: rgba(246,238,230,0.8); font-weight: 500;
}
.sb-step-num {
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(201,147,58,0.15);
    border: 1.5px solid rgba(201,147,58,0.4);
    color: #dba84f; font-size: 0.7rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; letter-spacing: 0.5px;
}

/* Stage */
.sb-stage {
    position: relative;
    width: 420px; height: 420px;
    margin: 0 auto;
    display: flex; align-items: center; justify-content: center;
    perspective: 900px;
    cursor: pointer;
}

/* Glow backdrop circle */
.sb-glow {
    position: absolute; inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,147,58,0.12) 0%, transparent 70%);
    animation: sbGlowPulse 3s ease-in-out infinite;
    pointer-events: none;
}
@keyframes sbGlowPulse {
    0%,100% { transform: scale(1); opacity: 0.8; }
    50%      { transform: scale(1.12); opacity: 1; }
}

/* ---- NFC Card ---- */
.sb-card {
    position: relative;
    width: 260px; height: 164px;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
    z-index: 10;
    cursor: pointer;
    animation: sbCardFloat 4s ease-in-out infinite;
}
@keyframes sbCardFloat {
    0%,100% { transform: rotateX(8deg) rotateY(-12deg) translateY(0); }
    50%      { transform: rotateX(4deg) rotateY(12deg) translateY(-10px); }
}
.sb-card.tapped {
    animation: sbCardTap 0.45s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes sbCardTap {
    0%   { transform: rotateX(8deg) rotateY(-12deg) scale(1); }
    30%  { transform: rotateX(20deg) rotateY(0deg) scale(0.88) translateZ(-20px); }
    60%  { transform: rotateX(-5deg) rotateY(5deg) scale(1.06) translateZ(20px); }
    100% { transform: rotateX(8deg) rotateY(-12deg) scale(1); }
}
.sb-card-inner {
    width: 100%; height: 100%;
    transform-style: preserve-3d;
    position: relative;
}
.sb-card-face {
    position: absolute; inset: 0;
    border-radius: 16px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    overflow: hidden;
}

/* Card front */
.sb-card-front {
    background: linear-gradient(145deg, #0d2829 0%, #153e3f 50%, #1e5557 100%);
    border: 1.5px solid rgba(201,147,58,0.4);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.6),
        0 0 0 1px rgba(255,255,255,0.05) inset,
        0 1px 0 rgba(255,255,255,0.12) inset;
    padding: 18px 20px;
    display: flex; flex-direction: column; justify-content: space-between;
}
/* Holographic shimmer on front */
.sb-card-front::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(115deg,
        transparent 30%,
        rgba(201,147,58,0.08) 45%,
        rgba(255,255,255,0.06) 50%,
        transparent 60%
    );
    animation: sbHolo 4s ease-in-out infinite;
    pointer-events: none;
}
@keyframes sbHolo {
    0%,100% { transform: translateX(-100%) skewX(-15deg); }
    50%      { transform: translateX(200%) skewX(-15deg); }
}

.sb-card-top {
    display: flex; align-items: flex-start; justify-content: space-between;
}
.sb-card-brand {
    color: #f6eee6; font-size: 1rem; font-weight: 900;
    letter-spacing: 2px; text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.sb-nfc-arc {
    color: rgba(201,147,58,0.8); font-size: 1.2rem;
    transform: rotate(90deg); display: block;
}

/* Gold chip */
.sb-chip {
    width: 44px; height: 33px;
    background: linear-gradient(135deg, #c9933a, #e8c060, #c9933a);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.sb-chip-lines { display: flex; flex-direction: column; gap: 4px; }
.sb-chip-lines span {
    display: block; width: 28px; height: 1.5px;
    background: rgba(0,0,0,0.25); border-radius: 2px;
}

.sb-card-bottom { display: flex; justify-content: space-between; align-items: flex-end; }
.sb-card-name { color: rgba(246,238,230,0.9); font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; }
.sb-card-hint {
    color: #dba84f; font-size: 0.7rem; font-weight: 700;
    animation: sbHintBlink 1.5s ease-in-out infinite;
}
@keyframes sbHintBlink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* Card back */
.sb-card-back {
    background: linear-gradient(160deg, #0a1e1e, #0d2829);
    border: 1.5px solid rgba(255,255,255,0.06);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    transform: rotateY(180deg);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.sb-back-strip { position: absolute; top: 24px; left: 0; right: 0; height: 36px; background: #111; }
.sb-back-logo { color: #c9933a; font-size: 0.9rem; font-weight: 900; letter-spacing: 3px; }
.sb-back-url  { color: rgba(246,238,230,0.4); font-size: 0.65rem; }

/* ---- NFC rings ---- */
.sb-rings {
    position: absolute; inset: -40px;
    pointer-events: none;
}
.sb-ring {
    position: absolute; border-radius: 50%;
    border: 2px solid rgba(201,147,58,0.5);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%) scale(0);
    opacity: 0;
}
.sr1 { width: 160px; height: 100px; }
.sr2 { width: 240px; height: 150px; }
.sr3 { width: 320px; height: 200px; }
.sb-rings.fire .sb-ring { animation: sbRingFire 0.9s ease-out forwards; }
.sb-rings.fire .sr2 { animation-delay: 0.1s; }
.sb-rings.fire .sr3 { animation-delay: 0.2s; }
@keyframes sbRingFire {
    0%   { transform: translate(-50%,-50%) scale(0.3); opacity: 0.8; }
    100% { transform: translate(-50%,-50%) scale(1.4); opacity: 0; }
}

/* ---- Social Icon Bubbles ---- */
.sb-icons {
    position: absolute; inset: 0;
    pointer-events: none;
    transform-style: preserve-3d;
}
.sbi {
    position: absolute;
    top: 50%; left: 50%;
    width: 56px; height: 56px;
    margin: -28px 0 0 -28px;
    display: flex; flex-direction: column; align-items: center; gap: 5px;
    transform: translate(0,0) scale(0) translateZ(0);
    opacity: 0;
    pointer-events: none;
    transition: none;
}
.sbi.burst  { animation: sbiBurst  0.65s cubic-bezier(0.34,1.56,0.64,1) var(--d,0s) forwards; pointer-events: auto; }
.sbi.retract{ animation: sbiRetract 0.4s cubic-bezier(0.55,0,1,0.45)   var(--d,0s) forwards; pointer-events: none; }

/* Each icon's final translated position (set via inline --tx/--ty) */
.sbi-0 { --tx:   0px; --ty: -170px; --d: 0.00s; --glow: #25d366; }
.sbi-1 { --tx: 120px; --ty: -120px; --d: 0.06s; --glow: #fd1d1d; }
.sbi-2 { --tx: 170px; --ty:    0px; --d: 0.12s; --glow: #0077b5; }
.sbi-3 { --tx: 120px; --ty:  120px; --d: 0.18s; --glow: #1877f2; }
.sbi-4 { --tx:   0px; --ty:  170px; --d: 0.24s; --glow: #ff0000; }
.sbi-5 { --tx:-120px; --ty:  120px; --d: 0.30s; --glow: #aaa; }
.sbi-6 { --tx:-170px; --ty:    0px; --d: 0.36s; --glow: #1e5557; }
.sbi-7 { --tx:-120px; --ty: -120px; --d: 0.42s; --glow: #c9933a; }

@keyframes sbiBurst {
    0%   {
        transform: translate(0,0) translateZ(0px) scale(0) rotateX(90deg) rotateZ(-180deg);
        opacity: 0;
    }
    40%  {
        transform: translate(calc(var(--tx)*0.65), calc(var(--ty)*0.65)) translateZ(90px) scale(1.25) rotateX(-15deg) rotateZ(15deg);
        opacity: 1;
    }
    70%  {
        transform: translate(calc(var(--tx)*1.06), calc(var(--ty)*1.06)) translateZ(50px) scale(0.92) rotateX(5deg) rotateZ(-5deg);
    }
    100% {
        transform: translate(var(--tx), var(--ty)) translateZ(50px) scale(1) rotateX(0deg) rotateZ(0deg);
        opacity: 1;
    }
}
@keyframes sbiRetract {
    0%   {
        transform: translate(var(--tx), var(--ty)) translateZ(50px) scale(1) rotateX(0deg);
        opacity: 1;
    }
    40%  {
        transform: translate(calc(var(--tx)*0.5), calc(var(--ty)*0.5)) translateZ(80px) scale(1.15) rotateX(-20deg) rotateZ(120deg);
        opacity: 0.9;
    }
    100% {
        transform: translate(0,0) translateZ(0) scale(0) rotateX(90deg) rotateZ(360deg);
        opacity: 0;
    }
}

/* Idle float after burst settles */
.sbi.floating {
    animation: sbiFloat 3s ease-in-out var(--d,0s) infinite;
}
@keyframes sbiFloat {
    0%,100% { transform: translate(var(--tx), calc(var(--ty) - 5px)) translateZ(50px) scale(1); }
    50%      { transform: translate(var(--tx), calc(var(--ty) + 5px)) translateZ(60px) scale(1.04); }
}

.sbi-inner {
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: #fff;
    box-shadow:
        0 8px 24px rgba(0,0,0,0.4),
        0 0 0 3px rgba(255,255,255,0.12),
        0 0 20px var(--glow, rgba(255,255,255,0.2));
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}
.sbi-inner::after {
    content: '';
    position: absolute;
    top: -30%; left: -30%;
    width: 60%; height: 60%;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    pointer-events: none;
}
.sbi-inner:hover { transform: scale(1.15); box-shadow: 0 12px 32px rgba(0,0,0,0.5), 0 0 30px var(--glow, rgba(255,255,255,0.3)); }
.sbi-label {
    font-size: 0.58rem; font-weight: 700;
    color: rgba(246,238,230,0.85);
    white-space: nowrap;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

/* ---- Spark particles ---- */
.sb-sparks { position: absolute; inset: 0; pointer-events: none; }
.sb-spark {
    position: absolute;
    width: 6px; height: 6px;
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%) scale(0);
    animation: sparkFly var(--sd, 0.8s) ease-out var(--ss, 0s) forwards;
}
@keyframes sparkFly {
    0%   { transform: translate(-50%,-50%) translateX(0) translateY(0) scale(1); opacity: 1; }
    100% { transform: translate(calc(-50% + var(--sx,40px)), calc(-50% + var(--sy,-40px))) scale(0); opacity: 0; }
}

/* ---- Tap hint ---- */
.sb-tap-hint {
    position: absolute;
    bottom: -16px; left: 50%;
    transform: translateX(-50%);
    font-size: 0.78rem; font-weight: 700;
    color: rgba(246,238,230,0.5);
    display: flex; align-items: center; gap: 6px;
    letter-spacing: 0.5px;
    animation: tapHintBob 2s ease-in-out infinite;
    white-space: nowrap;
}
@keyframes tapHintBob {
    0%,100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
    50%      { transform: translateX(-50%) translateY(-4px); opacity: 1; }
}

/* Responsive */
@media (max-width: 992px) {
    .sb-layout { grid-template-columns: 1fr; text-align: center; }
    .sb-steps { align-items: center; }
    .sb-stage { width: 360px; height: 360px; }
    .sbi-0 { --ty: -145px; }
    .sbi-1 { --tx: 103px; --ty: -103px; }
    .sbi-2 { --tx: 145px; }
    .sbi-3 { --tx: 103px; --ty:  103px; }
    .sbi-4 { --ty: 145px; }
    .sbi-5 { --tx:-103px; --ty:  103px; }
    .sbi-6 { --tx:-145px; }
    .sbi-7 { --tx:-103px; --ty: -103px; }
    .btn-get-real { margin-left: auto; margin-right: auto; }
}
@media (max-width: 480px) {
    .sb-stage { width: 300px; height: 300px; }
    .sb-card  { width: 210px; height: 132px; }
    .sbi-0 { --ty: -120px; }
    .sbi-1 { --tx:  85px; --ty: -85px; }
    .sbi-2 { --tx: 120px; }
    .sbi-3 { --tx:  85px; --ty:  85px; }
    .sbi-4 { --ty: 120px; }
    .sbi-5 { --tx: -85px; --ty:  85px; }
    .sbi-6 { --tx:-120px; }
    .sbi-7 { --tx: -85px; --ty: -85px; }
    .sbi-inner { width: 44px; height: 44px; font-size: 1.1rem; }
    .sbi { width: 44px; height: 44px; margin: -22px 0 0 -22px; }
}

/* ============================================
   NFC TAP DEMO — FUTURISTIC V2
   ============================================ */
.nfc-demo-section {
    background: #050e0f;
    padding: 100px 0 110px;
    position: relative;
    overflow: hidden;
}
/* Animated background grid canvas */
.nfc-bg-canvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    pointer-events: none; opacity: 0.35;
}
/* Cyan glow blobs */
.nfc-demo-section::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,255,220,0.07) 0%, transparent 70%);
    top: -100px; left: -100px;
    pointer-events: none;
}
.nfc-demo-section::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(201,147,58,0.07) 0%, transparent 70%);
    bottom: -80px; right: 0;
    pointer-events: none;
}

/* Header */
.nfc-demo-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative; z-index: 2;
}
.nfc-live-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 20px;
    background: rgba(0,255,180,0.08);
    border: 1px solid rgba(0,255,180,0.25);
    border-radius: 50px;
    color: #00ffb4; font-size: 0.75rem; font-weight: 800;
    letter-spacing: 2px; margin-bottom: 20px;
}
.nfc-live-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #00ffb4;
    box-shadow: 0 0 8px #00ffb4;
    animation: livePulse 1.2s ease-in-out infinite;
}
.nfc-cyan { color: #00e5ff; }

/* 3-panel grid */
.nfc-demo-v2 {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 24px;
    align-items: center;
    position: relative; z-index: 2;
}

/* Shared panel */
.ndv2-panel {
    display: flex; flex-direction: column;
    align-items: center; gap: 16px;
}
.ndv2-panel-label {
    font-size: 0.72rem; font-weight: 800;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: rgba(0,229,255,0.6);
    display: flex; align-items: center; gap: 7px;
}
.ndv2-panel-label i { font-size: 0.8rem; }

/* Status pills */
.ndv2-status {
    display: flex; align-items: center; gap: 7px;
    font-size: 0.75rem; font-weight: 600;
    color: rgba(246,238,230,0.5);
}
.ndv2-dot { width: 7px; height: 7px; border-radius: 50%; }
.ndv2-dot.green { background:#00ffb4; box-shadow: 0 0 8px #00ffb4; animation: livePulse 1.5s infinite; }
.ndv2-dot.grey  { background:#555; }
.ndv2-dot.cyan  { background:#00e5ff; box-shadow: 0 0 8px #00e5ff; animation: livePulse 1s infinite; }

/* ---- CARD PANEL ---- */
.ndv2-card-wrap {
    position: relative;
    filter: drop-shadow(0 0 30px rgba(0,229,255,0.3));
    animation: ndvCardHover 4s ease-in-out infinite;
}
@keyframes ndvCardHover {
    0%,100% { transform: rotateX(10deg) rotateY(-12deg) translateY(0); }
    50%      { transform: rotateX(5deg)  rotateY(12deg)  translateY(-8px); }
}
#nfcCanvas {
    width: 220px !important; height: 140px !important;
    border-radius: 14px;
    display: block;
}
.ndv2-card-glow {
    position: absolute; inset: -20px;
    border-radius: 24px;
    background: radial-gradient(ellipse, rgba(0,229,255,0.15) 0%, transparent 70%);
    animation: ndvGlowPulse 2.5s ease-in-out infinite;
    pointer-events: none;
}
@keyframes ndvGlowPulse {
    0%,100% { opacity: 0.7; }
    50%      { opacity: 1; }
}

/* ---- TRANSFER PANEL ---- */
.ndv2-transfer-wrap {
    width: 220px; height: 220px;
    position: relative;
    display: flex; align-items: center; justify-content: center;
}

/* Arc rings (always spinning slowly) */
.ndv2-arc-rings { position: absolute; inset: 0; pointer-events: none; }
.ndv2-arc {
    position: absolute; border-radius: 50%;
    border: 1px solid transparent;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
}
.a1 { width: 70px;  height: 70px;  border-color: rgba(0,229,255,0.5); animation: arcSpin 4s linear infinite; }
.a2 { width: 110px; height: 110px; border-color: rgba(0,229,255,0.3); animation: arcSpin 7s linear infinite reverse; border-style: dashed; }
.a3 { width: 160px; height: 160px; border-color: rgba(201,147,58,0.25); animation: arcSpin 10s linear infinite; }
.a4 { width: 210px; height: 210px; border-color: rgba(0,229,255,0.1); animation: arcSpin 15s linear infinite reverse; border-style: dotted; }
@keyframes arcSpin { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }

/* Beams and data packets */
.ndv2-beams { position: absolute; inset: 0; pointer-events: none; }
.ndv2-beam {
    position: absolute; overflow: hidden;
    top: 50%; left: 50%;
    transform-origin: left center;
    height: 2px;
}
.b1 { width: 100px; transform: translate(0,-50%) rotate(-10deg);  background: linear-gradient(90deg, rgba(0,229,255,0), rgba(0,229,255,0.4)); }
.b2 { width: 90px;  transform: translate(0,-50%) rotate(-170deg); background: linear-gradient(90deg, rgba(0,229,255,0), rgba(0,229,255,0.4)); }
.b3 { width: 85px;  transform: translate(0,-50%) rotate(80deg);   background: linear-gradient(90deg, rgba(201,147,58,0), rgba(201,147,58,0.5)); }
.ndv2-packet {
    position: absolute;
    width: 8px; height: 8px; border-radius: 50%;
    top: 50%; transform: translateY(-50%);
    opacity: 0;
}
.p1 { background: #00e5ff; box-shadow: 0 0 8px #00e5ff; animation: packetFly 2.5s ease-in-out 0s infinite; }
.p2 { background: #00e5ff; box-shadow: 0 0 8px #00e5ff; animation: packetFly 2.5s ease-in-out 0.8s infinite; }
.p3 { background: #dba84f; box-shadow: 0 0 8px #dba84f; animation: packetFly 2.5s ease-in-out 1.6s infinite; }
@keyframes packetFly {
    0%   { left: 0;    opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

/* NFC core symbol */
.ndv2-nfc-symbol {
    position: relative; z-index: 3;
    display: flex; align-items: center; justify-content: center;
    width: 54px; height: 54px;
}
.ndv2-nfc-core {
    width: 54px; height: 54px; border-radius: 50%;
    background: linear-gradient(135deg, #0d2829, #153e3f);
    border: 2px solid rgba(0,229,255,0.5);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: #00e5ff;
    box-shadow: 0 0 20px rgba(0,229,255,0.4), inset 0 0 20px rgba(0,229,255,0.05);
    animation: coreGlow 2s ease-in-out infinite;
    transform: rotate(90deg);
}
@keyframes coreGlow {
    0%,100% { box-shadow: 0 0 20px rgba(0,229,255,0.4), inset 0 0 20px rgba(0,229,255,0.05); }
    50%      { box-shadow: 0 0 40px rgba(0,229,255,0.7), inset 0 0 30px rgba(0,229,255,0.1); }
}
.ndv2-nfc-orbit {
    position: absolute; border-radius: 50%;
    border: 1px solid rgba(0,229,255,0.3);
    pointer-events: none;
}
.o1 { width: 70px;  height: 70px;  animation: orbitPulse 2s ease-in-out infinite; }
.o2 { width: 90px;  height: 90px;  animation: orbitPulse 2s ease-in-out 0.5s infinite; }
@keyframes orbitPulse {
    0%,100% { transform: scale(1); opacity: 0.4; }
    50%      { transform: scale(1.1); opacity: 0; }
}

/* Metrics */
.ndv2-metrics {
    position: absolute; bottom: -8px; left: 50%;
    transform: translateX(-50%);
    display: flex; align-items: center; gap: 0;
    background: rgba(0,20,22,0.85);
    border: 1px solid rgba(0,229,255,0.2);
    border-radius: 12px; padding: 8px 16px;
    white-space: nowrap; backdrop-filter: blur(10px);
}
.ndv2-metric { text-align: center; padding: 0 10px; }
.ndv2-metric-val { font-size: 1rem; font-weight: 900; color: #00e5ff; font-family: 'Courier New', monospace; }
.ndv2-metric-unit { font-size: 0.65rem; color: rgba(0,229,255,0.6); font-weight: 700; }
.ndv2-metric-label { display: block; font-size: 0.55rem; color: rgba(246,238,230,0.4); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }
.ndv2-metric-divider { width: 1px; height: 30px; background: rgba(0,229,255,0.15); margin: 0 4px; }

/* Step indicator */
.ndv2-steps {
    display: flex; gap: 0;
    background: rgba(0,20,22,0.7);
    border: 1px solid rgba(0,229,255,0.15);
    border-radius: 50px; overflow: hidden;
    padding: 6px 12px; gap: 8px;
}
.ndv2-step {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.65rem; font-weight: 700;
    color: rgba(246,238,230,0.25);
    letter-spacing: 0.5px; text-transform: uppercase;
    transition: color 0.4s;
    white-space: nowrap;
}
.ndv2-step-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(246,238,230,0.15);
    transition: all 0.4s;
}
.ndv2-step.active { color: #00e5ff; }
.ndv2-step.active .ndv2-step-dot { background: #00e5ff; box-shadow: 0 0 8px #00e5ff; }
.ndv2-step.done { color: #00ffb4; }
.ndv2-step.done .ndv2-step-dot { background: #00ffb4; }

/* ---- PHONE PANEL ---- */
.ndv2-phone-wrap { position: relative; }
.ndv2-phone {
    width: 155px; height: 310px;
    background: #0a0a0a;
    border-radius: 32px;
    border: 2px solid #222;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04) inset,
                0 0 30px rgba(0,229,255,0.1);
    position: relative;
}
.ndv2-phone-bar {
    height: 28px;
    background: #0a0a0a;
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 2;
}
.ndv2-phone-cam {
    width: 10px; height: 10px; border-radius: 50%;
    background: #1a1a1a;
    box-shadow: inset 0 0 3px rgba(0,0,0,0.8);
}
.ndv2-phone-screen {
    position: absolute;
    inset: 0; top: 28px;
    background: #111;
    overflow: hidden;
}
/* Screen states */
.ndvs { position: absolute; inset: 0; opacity: 0; transition: opacity 0.5s ease; pointer-events: none; }
.ndvs.active { opacity: 1; }
/* Idle */
.ndvs-idle { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; background: #111; }
/* Scan */
.ndvs-scan {
    background: radial-gradient(circle at 50% 50%, rgba(0,229,255,0.06) 0%, #0a0f0f 80%);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.ndvs-scan-ring {
    width: 70px; height: 70px; border-radius: 50%;
    border: 2px solid rgba(0,229,255,0.6);
    animation: scanPing 1s ease-out infinite;
}
.ndvs-scan-ring.r2 { width: 100px; height: 100px; position: absolute; border-color: rgba(0,229,255,0.3); animation-delay: 0.3s; }
@keyframes scanPing {
    0%   { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}
.ndvs-scan-text { font-size: 0.68rem; font-weight: 800; color: #00e5ff; letter-spacing: 1px; text-transform: uppercase; margin-top: 8px; }
.ndvs-loading-bar { width: 100px; height: 3px; background: rgba(0,229,255,0.1); border-radius: 3px; overflow: hidden; margin: 4px 0; }
.ndvs-loading-fill { height: 100%; background: linear-gradient(90deg, #00e5ff, #00ffb4); border-radius: 3px; width: 0; transition: width 1.2s ease; }
.ndvs-scan-sub { font-size: 0.58rem; color: rgba(0,229,255,0.5); }
/* Profile */
.ndvs-profile { background: #f6eee6; display: flex; flex-direction: column; align-items: center; }
.ndvs-cover { height: 70px; width: 100%; background: linear-gradient(135deg, #0d2829, #1e5557); flex-shrink: 0; }
.ndvs-avatar {
    width: 52px; height: 52px; border-radius: 50%;
    background: linear-gradient(135deg, #c9933a, #dba84f);
    border: 3px solid #f6eee6;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem; font-weight: 900; color: #0d2829;
    margin-top: -26px; margin-bottom: 6px; flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.ndvs-name  { font-size: 0.75rem; font-weight: 800; color: #153e3f; }
.ndvs-title { font-size: 0.58rem; color: #7a9e9f; margin-bottom: 6px; }
.ndvs-divider { width: 80%; height: 1px; background: rgba(21,62,63,0.1); margin: 4px 0; }
.ndvs-links { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; padding: 4px 10px; width: 100%; }
.ndvs-link {
    font-size: 0.6rem; font-weight: 700; color: #153e3f;
    background: rgba(21,62,63,0.08); border-radius: 8px;
    padding: 5px 4px; text-align: center;
    display: flex; align-items: center; justify-content: center; gap: 4px;
    opacity: 0; transform: translateY(8px);
    transition: all 0.4s ease;
}
.ndvs-link.show { opacity: 1; transform: translateY(0); }
.ndvs-link i { font-size: 0.65rem; }
.ndvs-save-btn {
    margin: 6px 10px 4px;
    background: linear-gradient(135deg, #153e3f, #1e5557);
    color: #f6eee6; border-radius: 8px;
    padding: 6px 16px; font-size: 0.62rem; font-weight: 800;
    display: flex; align-items: center; gap: 5px;
    width: calc(100% - 20px);
    justify-content: center;
    opacity: 0; transform: translateY(6px);
    transition: all 0.4s ease 0.6s;
}
.ndvs-save-btn.show { opacity: 1; transform: translateY(0); }
.ndvs-tag { font-size: 0.52rem; color: #adc4c5; margin-top: 4px; }
.ndvs-tag strong { color: #c9933a; }

/* Feature pills */
.nfc-feature-pills {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 10px; margin-top: 52px;
    position: relative; z-index: 2;
}
.nfc-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 18px;
    background: rgba(0,229,255,0.05);
    border: 1px solid rgba(0,229,255,0.18);
    border-radius: 50px;
    font-size: 0.78rem; font-weight: 700; color: rgba(246,238,230,0.7);
    letter-spacing: 0.3px; transition: all 0.3s ease;
}
.nfc-pill i { color: #00e5ff; font-size: 0.75rem; }
.nfc-pill:hover { background: rgba(0,229,255,0.1); border-color: rgba(0,229,255,0.4); color: #f6eee6; }

/* Responsive */
@media (max-width: 900px) {
    .nfc-demo-v2 { grid-template-columns: 1fr; gap: 40px; }
    .ndv2-transfer-wrap { width: 180px; height: 180px; }
    .ndv2-metrics { position: static; transform: none; margin-top: 12px; }
}
@media (max-width: 480px) {
    #nfcCanvas { width: 180px !important; height: 115px !important; }
}

/* ============================================
   INTERACTIVE 3-D NFC STAGE
   ============================================ */
.nfc-i3d-stage {
    position: relative;
    padding: 10px 0 50px;
    overflow: hidden;
    z-index: 2;
}

/* Particle beam canvas */
.nfc-beam-cvs {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 20;
}

/* 3-panel world */
.nfc-i3d-world {
    display: grid;
    grid-template-columns: 1fr 0.85fr 1fr;
    gap: 16px;
    align-items: center;
    max-width: 860px;
    margin: 0 auto;
    padding: 20px 0;
}

.nfc-i3d-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.nfc-i3d-center { gap: 20px; }

.nfc-i3d-label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(0,229,255,0.6);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nfc-i3d-status {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(246,238,230,0.5);
}

.nfc-i3d-hint-text {
    font-size: 0.62rem;
    color: rgba(246,238,230,0.28);
    margin: 0;
    text-align: center;
}

/* ── 3D CARD ── */
.nfc-i3d-card-scene {
    perspective: 900px;
    cursor: pointer;
    position: relative;
}

.nfc-i3d-card {
    width: 270px;
    height: 170px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0d2829 0%, #153e3f 55%, #1e5557 100%);
    transform: rotateX(7deg) rotateY(-15deg);
    transform-style: preserve-3d;
    transition: transform 0.5s ease, box-shadow 0.3s ease;
    position: relative;
    box-shadow:
        0 30px 60px rgba(0,0,0,0.65),
        0 0 40px rgba(0,229,255,0.18),
        inset 0 1px 0 rgba(255,255,255,0.07);
    animation: nfcCardFloat 5s ease-in-out infinite;
    overflow: hidden;
    will-change: transform;
}

@keyframes nfcCardFloat {
    0%,100% { transform: rotateX(7deg) rotateY(-15deg) translateY(0px); }
    50%      { transform: rotateX(9deg) rotateY(9deg)  translateY(-7px); }
}

.nfc-i3d-card.tilting { animation: none; }

/* Holographic shine overlay */
.nfc-shine {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    pointer-events: none;
    background: radial-gradient(circle at 35% 25%, rgba(255,255,255,0.18) 0%, rgba(201,147,58,0.06) 45%, transparent 65%);
    mix-blend-mode: overlay;
    z-index: 5;
    transition: background 0.06s linear;
}

/* Card content */
.nfc-i3d-card-top {
    position: absolute;
    top: 16px; left: 18px; right: 18px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.nfc-i3d-brand {
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: #f6eee6;
    font-family: 'Outfit', sans-serif;
    text-shadow: 0 0 20px rgba(0,229,255,0.25);
}

.nfc-i3d-nfc-arcs {
    font-size: 1.35rem;
    color: #c9933a;
    transform: rotate(90deg);
    display: block;
    text-shadow: 0 0 12px rgba(201,147,58,0.55);
}

/* EMV Chip */
.nfc-i3d-chip {
    position: absolute;
    top: 65px; left: 18px;
    width: 50px; height: 36px;
    background: linear-gradient(135deg, #c9933a, #dba84f, #a87022);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 7px 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.18);
}

.nfc-i3d-chip span {
    height: 1.5px;
    background: rgba(10,20,20,0.45);
    border-radius: 2px;
    display: block;
}

.nfc-i3d-card-name {
    position: absolute;
    bottom: 34px; left: 18px;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(246,238,230,0.85);
    letter-spacing: 0.8px;
    font-family: 'Outfit', sans-serif;
}

.nfc-i3d-card-sub {
    position: absolute;
    bottom: 20px; left: 18px;
    font-size: 0.52rem;
    color: rgba(246,238,230,0.38);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nfc-i3d-gold-stripe {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c9933a, #dba84f, #c9933a);
    border-radius: 0 0 16px 16px;
}

.nfc-i3d-card-shadow {
    width: 240px; height: 24px;
    background: radial-gradient(ellipse, rgba(0,229,255,0.28) 0%, transparent 70%);
    margin-top: 10px;
    filter: blur(8px);
    transition: transform 0.08s ease-out, opacity 0.3s;
}

/* ── CENTRE SIGNAL HUB ── */
.nfc-i3d-signal-hub {
    width: 140px; height: 140px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nfc-i3d-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid transparent;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
    transition: border-color 0.4s, box-shadow 0.4s;
}

.ni-r1 { width: 42px;  height: 42px;  border-color: rgba(0,229,255,0.55); animation: niSpin 3s linear infinite; }
.ni-r2 { width: 70px;  height: 70px;  border-color: rgba(0,229,255,0.3);  animation: niSpin 3s linear infinite 0.3s; border-style: dashed; }
.ni-r3 { width: 108px; height: 108px; border-color: rgba(201,147,58,0.22); animation: niSpin 5.5s linear infinite; }
.ni-r4 { width: 136px; height: 136px; border-color: rgba(0,229,255,0.1);  animation: niSpin 8s linear infinite reverse; border-style: dotted; }

@keyframes niSpin {
    from { transform: translate(-50%,-50%) rotate(0deg); }
    to   { transform: translate(-50%,-50%) rotate(360deg); }
}

/* Active state – rings glow and speed up */
.nfc-i3d-signal-hub.active .ni-r1 {
    border-color: #00e5ff;
    box-shadow: 0 0 14px #00e5ff;
    animation-duration: 0.7s;
}
.nfc-i3d-signal-hub.active .ni-r2 {
    border-color: rgba(0,229,255,0.65);
    animation-duration: 1s;
}
.nfc-i3d-signal-hub.active .ni-r3 {
    border-color: rgba(0,229,255,0.35);
    animation-duration: 1.8s;
}

.nfc-i3d-core-icon {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, #0d2829, #153e3f);
    border: 2px solid rgba(0,229,255,0.5);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: #00e5ff;
    transform: rotate(90deg);
    box-shadow: 0 0 22px rgba(0,229,255,0.4), inset 0 0 18px rgba(0,229,255,0.06);
    animation: coreGlow 2.5s ease-in-out infinite;
    position: relative; z-index: 5;
    transition: box-shadow 0.4s, background 0.4s;
}
@keyframes coreGlow {
    0%,100% { box-shadow: 0 0 22px rgba(0,229,255,0.4),  inset 0 0 18px rgba(0,229,255,0.06); }
    50%      { box-shadow: 0 0 44px rgba(0,229,255,0.75), inset 0 0 28px rgba(0,229,255,0.12); }
}
.nfc-i3d-signal-hub.active .nfc-i3d-core-icon {
    background: linear-gradient(135deg, rgba(0,229,255,0.15), rgba(0,229,255,0.3));
    box-shadow: 0 0 60px rgba(0,229,255,0.9), inset 0 0 30px rgba(0,229,255,0.2);
    border-color: #00e5ff;
}

/* Metrics */
.nfc-i3d-metrics {
    display: flex; align-items: center;
    background: rgba(0,18,20,0.88);
    border: 1px solid rgba(0,229,255,0.16);
    border-radius: 10px;
    padding: 9px 12px;
}
.nfc-i3d-metric {
    text-align: center; padding: 0 10px;
    display: flex; flex-direction: column; gap: 2px;
}
.nfc-i3d-mval {
    font-size: 0.95rem; font-weight: 900;
    color: #00e5ff; font-family: 'Courier New', monospace;
    line-height: 1;
}
.nfc-i3d-munit {
    font-size: 0.58rem; color: rgba(0,229,255,0.55); font-weight: 700;
}
.nfc-i3d-mlabel {
    font-size: 0.48rem; color: rgba(246,238,230,0.32);
    text-transform: uppercase; letter-spacing: 0.5px;
}
.nfc-i3d-mdiv {
    width: 1px; height: 28px;
    background: rgba(0,229,255,0.13); flex-shrink: 0;
}

/* Step dots */
.nfc-i3d-steps {
    display: flex; gap: 8px; align-items: center;
}
.nfc-i3d-step {
    display: flex; flex-direction: column;
    align-items: center; gap: 4px;
    font-size: 0.56rem; color: rgba(246,238,230,0.32);
    font-weight: 600; transition: color 0.3s;
}
.nfc-i3d-sdot {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(246,238,230,0.18);
    transition: all 0.3s;
}
.nfc-i3d-step.active { color: #00e5ff; }
.nfc-i3d-step.active .nfc-i3d-sdot { background: #00e5ff; box-shadow: 0 0 8px #00e5ff; }
.nfc-i3d-step.done   { color: #00ffb4; }
.nfc-i3d-step.done   .nfc-i3d-sdot { background: #00ffb4; }

/* ── 3D PHONE ── */
.nfc-i3d-phone-scene { perspective: 700px; position: relative; }

.nfc-i3d-phone {
    width: 128px; height: 252px;
    background: linear-gradient(160deg, #1c1c1e 0%, #111 60%, #0d0d0d 100%);
    border-radius: 28px;
    border: 1.5px solid rgba(255,255,255,0.09);
    box-shadow:
        0 30px 60px rgba(0,0,0,0.7),
        inset 0 1px 0 rgba(255,255,255,0.05);
    position: relative;
    transform: rotateX(4deg) rotateY(14deg);
    transform-style: preserve-3d;
    animation: nfcPhoneFloat 5s ease-in-out 0.6s infinite;
    overflow: hidden;
    transition: box-shadow 0.4s;
}
@keyframes nfcPhoneFloat {
    0%,100% { transform: rotateX(4deg) rotateY(14deg) translateY(0px); }
    50%      { transform: rotateX(6deg) rotateY(-5deg) translateY(-6px); }
}
.nfc-i3d-signal-hub.active ~ * .nfc-i3d-phone,
.nfc-i3d-phone.receiving {
    box-shadow: 0 30px 60px rgba(0,0,0,0.7), 0 0 40px rgba(0,229,255,0.3);
}

/* Dynamic Island */
.nfc-i3d-di {
    position: absolute; top: 10px; left: 50%;
    transform: translateX(-50%); z-index: 10;
}
.nfc-i3d-di-pill {
    width: 58px; height: 10px;
    background: #000; border-radius: 10px;
}

/* Home bar */
.nfc-i3d-home-btn {
    position: absolute; bottom: 7px; left: 50%;
    transform: translateX(-50%);
    width: 36px; height: 4px;
    background: rgba(255,255,255,0.22); border-radius: 4px;
}

.nfc-i3d-screen {
    position: absolute; inset: 0;
    border-radius: 28px;
    background: #000; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}

.nfc-i3d-phone-shadow {
    width: 90px; height: 18px;
    background: radial-gradient(ellipse, rgba(0,229,255,0.22) 0%, transparent 70%);
    margin: 12px auto 0; filter: blur(6px);
    transition: opacity 0.4s;
}

/* ── SCREEN STATES ── */
.nfc-is {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.4s ease;
    border-radius: 28px;
}
.nfc-is.active { opacity: 1; pointer-events: all; }

/* Idle */
.nfc-is-idle { background: #040808; gap: 6px; }
.nfc-is-idle p {
    font-size: 0.58rem; color: #555;
    text-align: center; margin: 0; line-height: 1.5;
}

/* Scan */
.nfc-is-scan {
    background: radial-gradient(circle at center, #0c1e1e 0%, #040808 100%);
    gap: 8px; position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
}
.nfc-is-scan-ring {
    width: 58px; height: 58px;
    border: 2px solid rgba(0,229,255,0.6); border-radius: 50%;
    animation: isScanPulse 1.2s ease-in-out infinite;
}
.nfc-is-scan-ring.r2 {
    position: absolute;
    width: 88px; height: 88px;
    border-color: rgba(0,229,255,0.28);
    animation: isScanPulse 1.2s ease-in-out 0.45s infinite;
}
@keyframes isScanPulse {
    0%   { transform: scale(0.85); opacity: 0.9; }
    100% { transform: scale(1.22); opacity: 0; }
}
.nfc-is-scan-text {
    font-size: 0.62rem; font-weight: 800;
    color: #00e5ff; letter-spacing: 0.5px; margin-top: 2px;
}
.nfc-is-bar {
    width: 65%; height: 3px;
    background: rgba(0,229,255,0.12); border-radius: 4px; overflow: hidden;
}
.nfc-is-fill {
    height: 100%; width: 0;
    background: linear-gradient(90deg, #00e5ff, #00ffb4);
    border-radius: 4px;
    transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nfc-is-scan-sub {
    font-size: 0.52rem; color: rgba(246,238,230,0.32);
}

/* Profile */
.nfc-is-profile {
    background: linear-gradient(180deg, #153e3f 0%, #0a1414 100%);
    justify-content: flex-start; overflow: hidden;
}
.nfc-is-cover {
    width: 100%; height: 54px; flex-shrink: 0;
    background: linear-gradient(135deg, #153e3f, #1e5557, rgba(201,147,58,0.18));
}
.nfc-is-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, #c9933a, #dba84f);
    color: #0d2829; font-weight: 900; font-size: 0.85rem;
    font-family: 'Outfit', sans-serif;
    display: flex; align-items: center; justify-content: center;
    margin-top: -22px; border: 2.5px solid #0a1414;
    flex-shrink: 0; position: relative; z-index: 2;
}
.nfc-is-name {
    font-size: 0.7rem; font-weight: 800;
    color: #f6eee6; margin-top: 5px;
}
.nfc-is-title {
    font-size: 0.5rem; color: rgba(246,238,230,0.48); margin-top: 2px;
}
.nfc-is-divider {
    width: 58%; height: 1px;
    background: rgba(246,238,230,0.1); margin: 7px 0;
}
.nfc-is-links {
    display: flex; gap: 6px; margin-bottom: 8px;
}
.nfc-is-link {
    width: 26px; height: 26px; border-radius: 8px;
    background: rgba(0,229,255,0.1);
    border: 1px solid rgba(0,229,255,0.24);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.62rem; color: #00e5ff;
    opacity: 0; transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
}
.nfc-is-link.show  { opacity: 1; transform: translateY(0); }
.nfc-is-link.l1 { color: #25D366; border-color: rgba(37,211,102,0.28); background: rgba(37,211,102,0.08); }
.nfc-is-link.l2 { color: #0077B5; border-color: rgba(0,119,181,0.28); background: rgba(0,119,181,0.08); }
.nfc-is-link.l3 { color: #E4405F; border-color: rgba(228,64,95,0.28);  background: rgba(228,64,95,0.08);  }

.nfc-is-save {
    background: linear-gradient(90deg, #c9933a, #dba84f);
    color: #0d2829; border: none; border-radius: 8px;
    padding: 5px 14px; font-size: 0.56rem; font-weight: 800;
    cursor: pointer;
    opacity: 0; transform: translateY(10px);
    transition: opacity 0.3s 0.5s, transform 0.3s 0.5s;
}
.nfc-is-save.show { opacity: 1; transform: translateY(0); }
.nfc-is-tag {
    font-size: 0.48rem; color: rgba(246,238,230,0.28); margin-top: 5px;
}

/* ── TAP BUTTON ── */
.nfc-i3d-cta {
    display: flex; flex-direction: column;
    align-items: center; gap: 12px;
    margin-top: 44px; position: relative; z-index: 5;
}

.nfc-i3d-tap-btn {
    position: relative;
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 38px;
    background: linear-gradient(135deg, #153e3f, #1e5557);
    border: 1.5px solid #00e5ff;
    border-radius: 50px;
    color: #00e5ff;
    font-size: 1rem; font-weight: 800;
    cursor: pointer; letter-spacing: 1px;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 0 30px rgba(0,229,255,0.2), inset 0 0 20px rgba(0,229,255,0.04);
    transition: all 0.2s ease;
    overflow: visible;
}
.nfc-i3d-tap-btn:hover {
    background: linear-gradient(135deg, #1e5557, #27706e);
    box-shadow: 0 0 55px rgba(0,229,255,0.45), inset 0 0 28px rgba(0,229,255,0.08);
    transform: translateY(-2px);
}
.nfc-i3d-tap-btn:active { transform: scale(0.97); }
.nfc-i3d-tap-btn i { transform: rotate(90deg); font-size: 1.1rem; }

/* Pulsing rings on button */
.nfc-tapring {
    position: absolute; inset: -5px;
    border-radius: 50px;
    border: 1.5px solid rgba(0,229,255,0.45);
    animation: tapRingPulse 2s ease-in-out infinite;
    pointer-events: none;
}
.nfc-tapring.r2 {
    inset: -12px;
    border-color: rgba(0,229,255,0.2);
    animation-delay: 0.45s;
}
@keyframes tapRingPulse {
    0%,100% { opacity: 0.7; transform: scale(1); }
    50%      { opacity: 0;   transform: scale(1.05); }
}

.nfc-i3d-cta-note {
    font-size: 0.65rem;
    color: rgba(246,238,230,0.28);
    text-align: center;
}

/* Responsive */
@media (max-width: 820px) {
    .nfc-i3d-world {
        grid-template-columns: 1fr;
        gap: 36px;
        max-width: 340px;
    }
    .nfc-i3d-center { order: 3; }
    .nfc-i3d-card   { width: 240px; height: 152px; }
    .nfc-i3d-phone  { width: 110px; height: 216px; }
}

/* ============================================
   DEMO CARD GENERATOR
   ============================================ */
.demo-gen-section {
    padding: 90px 0 100px;
    background: var(--cream);
}
.demo-gen-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 52px;
}
.demo-gen-form { display: flex; flex-direction: column; gap: 18px; }
.demo-field { display: flex; flex-direction: column; gap: 7px; }
.demo-field label {
    font-size: 0.85rem; font-weight: 700; color: var(--teal);
    display: flex; align-items: center; gap: 8px;
}
.demo-field label i { color: var(--gold); width: 14px; }
.demo-field input {
    height: 52px;
    padding: 0 18px;
    background: #fff;
    border: 2px solid rgba(21,62,63,0.12);
    border-radius: 14px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--teal);
    transition: all 0.3s ease;
}
.demo-field input:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(21,62,63,0.08);
}
.demo-field input::placeholder { color: var(--text-light); }
.btn-get-real {
    display: inline-flex;
    align-items: center; gap: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--teal-dark);
    font-weight: 800; font-size: 1rem;
    padding: 16px 32px; border-radius: 50px;
    text-decoration: none; margin-top: 8px;
    align-self: flex-start;
    box-shadow: 0 8px 24px rgba(201,147,58,0.4);
    transition: var(--transition);
}
.btn-get-real:hover {
    color: var(--teal-dark);
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(201,147,58,0.55);
}

/* Preview phone shell */
.demo-preview-wrap { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.demo-phone-shell {
    width: 220px; height: 440px;
    background: #111;
    border-radius: 40px;
    border: 4px solid #333;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3), inset 0 0 0 1px rgba(255,255,255,0.07);
}
.demo-phone-notch {
    width: 70px; height: 14px;
    background: #222; border-radius: 0 0 12px 12px;
    margin: 10px auto 0;
    position: relative; z-index: 2;
}
.demo-phone-screen {
    position: absolute;
    inset: 0;
    overflow-y: auto;
    overflow-x: hidden;
    background: #f6eee6;
    scrollbar-width: none;
}
.demo-phone-screen::-webkit-scrollbar { display: none; }

/* Card preview inside phone */
.demo-card-preview { min-height: 100%; display: flex; flex-direction: column; }
.dcp-cover {
    height: 100px;
    background: linear-gradient(135deg, #153e3f, #1e5557);
    flex-shrink: 0;
    position: relative;
}
.dcp-avatar {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c9933a, #dba84f);
    border: 3px solid #f6eee6;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; font-weight: 900; color: #0d2829;
    position: absolute;
    top: 68px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    transition: all 0.3s ease;
}
.dcp-name {
    padding: 44px 16px 4px;
    font-size: 1rem; font-weight: 800;
    color: #153e3f; text-align: center;
    transition: all 0.2s ease;
}
.dcp-title {
    font-size: 0.72rem; color: #7a9e9f;
    text-align: center; padding: 0 16px 12px;
    transition: all 0.2s ease;
}
.dcp-divider {
    height: 1px; background: rgba(21,62,63,0.1);
    margin: 0 16px 12px;
}
.dcp-info {
    font-size: 0.72rem; color: #153e3f;
    padding: 4px 16px; display: flex;
    align-items: center; gap: 8px;
    transition: all 0.2s ease;
}
.dcp-info i { color: #c9933a; font-size: 0.68rem; width: 12px; }
.dcp-actions {
    display: flex; justify-content: center;
    gap: 12px; padding: 14px 16px;
    margin-top: auto;
}
.dcp-actions button {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: none; cursor: pointer;
    font-size: 1rem;
    background: linear-gradient(135deg, #153e3f, #1e5557);
    color: #f6eee6;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s ease;
}
.dcp-tapify-tag {
    text-align: center; padding: 8px 0 14px;
    font-size: 0.6rem; color: #adc4c5;
}
.dcp-tapify-tag strong { color: #c9933a; }

/* QR code */
.demo-qr-wrap { text-align: center; }
.demo-qr-wrap #demoQR {
    display: inline-block;
    padding: 10px; background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(21,62,63,0.12);
    border: 2px solid rgba(21,62,63,0.08);
}
.demo-qr-wrap #demoQR canvas,
.demo-qr-wrap #demoQR img { display: block; border-radius: 6px; }
.qr-label {
    font-size: 0.78rem; color: var(--text-muted);
    margin-top: 10px; font-weight: 600;
}

/* ============================================
   COST CALCULATOR
   ============================================ */
/* ============================================
   KIT SHOWCASE
   ============================================ */
.kit-section {
    padding: 50px 0 55px;
    background: linear-gradient(135deg, #0d2829 0%, #153e3f 60%, #1e5557 100%);
    position: relative;
    overflow: hidden;
}
.kit-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(246,238,230,0.035) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
}
/* Ambient glows */
.kit-section::after {
    content: '';
    position: absolute;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(201,147,58,0.07) 0%, transparent 70%);
    top: -100px; right: -100px;
    pointer-events: none;
}

/* Two-column layout */
.kit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}

/* ── Image column ── */
.kit-img-col { position: relative; }

.kit-img-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
    animation: kitFloat 5s ease-in-out infinite;
}
@keyframes kitFloat {
    0%,100% { transform: translateY(0px) rotate(-1deg); }
    50%      { transform: translateY(-14px) rotate(1deg); }
}

.kit-img {
    width: 100%;
    border-radius: 28px;
    display: block;
    position: relative;
    z-index: 2;
    box-shadow:
        0 40px 80px rgba(0,0,0,0.55),
        0 0 0 1px rgba(255,255,255,0.06),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

.kit-img-glow {
    position: absolute;
    inset: -30px;
    border-radius: 40px;
    background: radial-gradient(ellipse at center, rgba(201,147,58,0.25) 0%, transparent 65%);
    z-index: 1;
    animation: kitGlow 3s ease-in-out infinite;
    pointer-events: none;
}
@keyframes kitGlow {
    0%,100% { opacity: 0.7; transform: scale(0.97); }
    50%      { opacity: 1;   transform: scale(1.03); }
}

/* Floating badge pills on image */
.kit-float {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    white-space: nowrap;
    animation: kitBadgeFloat 3s ease-in-out infinite;
}
.kit-float.top-l {
    top: 20px; left: -18px;
    background: rgba(0,229,255,0.15);
    border: 1px solid rgba(0,229,255,0.4);
    color: #00e5ff;
    animation-delay: 0s;
}
.kit-float.bot-r {
    bottom: 24px; right: -18px;
    background: rgba(201,147,58,0.18);
    border: 1px solid rgba(201,147,58,0.5);
    color: #dba84f;
    animation-delay: 1s;
}
@keyframes kitBadgeFloat {
    0%,100% { transform: translateY(0px); }
    50%      { transform: translateY(-5px); }
}

/* ── Content column ── */
.kit-content-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.kit-content-col .section-tag-light { margin-bottom: 14px; }
.kit-content-col .section-heading-light { margin-bottom: 20px; line-height: 1.2; }

.kit-gold { color: #dba84f; }

.kit-desc {
    font-size: 0.95rem;
    color: rgba(246,238,230,0.65);
    line-height: 1.65;
    margin-bottom: 22px;
}

/* Kit included items */
.kit-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.kit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 16px;
    background: rgba(246,238,230,0.05);
    border: 1px solid rgba(246,238,230,0.1);
    border-radius: 14px;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.kit-item:hover {
    background: rgba(201,147,58,0.1);
    border-color: rgba(201,147,58,0.35);
    transform: translateX(6px);
}

.kit-icon {
    width: 42px; height: 42px; flex-shrink: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(201,147,58,0.25), rgba(201,147,58,0.1));
    border: 1px solid rgba(201,147,58,0.35);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: #dba84f;
}

.kit-item-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: #f6eee6;
    font-family: 'Outfit', sans-serif;
}
.kit-item-sub {
    font-size: 0.75rem;
    color: rgba(246,238,230,0.45);
    margin-top: 2px;
}

/* CTA row */
.kit-cta-row {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.kit-price-amount {
    font-size: 2.4rem;
    font-weight: 900;
    color: #dba84f;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}
.kit-price-note {
    font-size: 0.72rem;
    color: rgba(246,238,230,0.4);
    margin-top: 4px;
    letter-spacing: 0.3px;
}

.kit-order-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    background: linear-gradient(135deg, #c9933a, #dba84f);
    color: #0d2829;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 30px rgba(201,147,58,0.45);
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}
.kit-order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(201,147,58,0.6);
}
.kit-order-btn:active { transform: scale(0.97); }

/* Responsive */
@media (max-width: 900px) {
    .kit-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .kit-img-wrap { max-width: 480px; margin: 0 auto; }
    .kit-float.top-l  { left: 10px; }
    .kit-float.bot-r  { right: 10px; }
}
@media (max-width: 480px) {
    .kit-cta-row { flex-direction: column; align-items: flex-start; gap: 20px; }
    .kit-float { display: none; }
}

/* Responsive */
@media (max-width: 768px) {
    .nfc-demo-stage { gap: 24px; }
    #nfcCanvas { width: 200px !important; height: 130px !important; }
    .demo-gen-wrap { grid-template-columns: 1fr; gap: 40px; }
    .kit-layout { grid-template-columns: 1fr; gap: 40px; }
    .demo-preview-wrap { flex-direction: row; align-items: flex-start; flex-wrap: wrap; justify-content: center; }
}

/* ============================================
   LEAD CAPTURE MODAL
   ============================================ */
.lead-modal-backdrop {
    display: none;
    position: fixed; inset: 0;
    z-index: 10000;
    background: rgba(13, 40, 41, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    align-items: center; justify-content: center;
    padding: 20px;
}
.lead-modal-backdrop.open { display: flex; }

.lead-modal {
    background: var(--cream);
    border-radius: 28px;
    padding: 44px 40px 36px;
    max-width: 480px; width: 100%;
    position: relative;
    box-shadow: 0 40px 100px rgba(13,40,41,0.5);
    border: 1.5px solid rgba(21,62,63,0.12);
    animation: leadModalIn 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes leadModalIn {
    from { opacity: 0; transform: translateY(50px) scale(0.94); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Gold top accent */
.lead-modal::before {
    content: '';
    position: absolute; top: 0; left: 10%; right: 10%; height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 0 0 3px 3px;
}

.lead-modal-close {
    position: absolute; top: 16px; right: 18px;
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(21,62,63,0.08);
    border: 1.5px solid rgba(21,62,63,0.12);
    color: var(--text-muted); font-size: 0.95rem;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.lead-modal-close:hover {
    background: rgba(181,48,62,0.1);
    border-color: rgba(181,48,62,0.3);
    color: #b5303e;
    transform: rotate(90deg);
}

.lead-modal-badge {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 6px 16px;
    background: rgba(201,147,58,0.15);
    border: 1px solid rgba(201,147,58,0.35);
    border-radius: 50px;
    color: var(--gold); font-size: 0.78rem; font-weight: 700;
    margin-bottom: 16px; letter-spacing: 0.4px;
}
.lead-modal-title {
    font-size: 1.75rem; font-weight: 900;
    color: var(--teal); line-height: 1.2;
    margin-bottom: 8px; letter-spacing: -0.5px;
}
.lead-modal-sub {
    font-size: 0.9rem; color: var(--text-secondary);
    margin-bottom: 24px; line-height: 1.65;
}

/* Fields */
.lead-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.lead-field label {
    font-size: 0.78rem; font-weight: 700; color: var(--teal);
    display: flex; align-items: center; gap: 7px; text-transform: uppercase; letter-spacing: 0.4px;
}
.lead-field label i { color: var(--gold); width: 12px; font-size: 0.72rem; }
.req { color: #b5303e; }
.optional { color: var(--text-light); font-weight: 500; text-transform: none; font-size: 0.72rem; }

.lead-field input {
    height: 52px; padding: 0 18px;
    background: #fff;
    border: 2px solid rgba(21,62,63,0.12);
    border-radius: 14px;
    font-family: inherit; font-size: 0.95rem; color: var(--teal);
    transition: all 0.3s ease;
}
.lead-field input:focus {
    outline: none; border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(21,62,63,0.08);
}
.lead-field input::placeholder { color: var(--text-light); }
.lead-field input.error { border-color: #b5303e; box-shadow: 0 0 0 4px rgba(181,48,62,0.08); }

/* Alert */
.alert-lead {
    display: none; align-items: center; gap: 10px;
    padding: 11px 16px; border-radius: 12px;
    font-size: 0.85rem; margin-bottom: 14px;
}
.alert-lead.show { display: flex; }
.alert-lead.error   { background: rgba(181,48,62,0.1); color: #b5303e; border-left: 4px solid #b5303e; }
.alert-lead.success { background: rgba(21,122,74,0.1); color: #1e7a4a; border-left: 4px solid #1e7a4a; }

/* Submit button */
.lead-submit-btn {
    width: 100%; height: 56px; margin-top: 6px;
    background: linear-gradient(135deg, var(--teal), var(--teal-mid));
    color: var(--cream); border: none; border-radius: 14px;
    font-family: inherit; font-size: 1rem; font-weight: 800;
    cursor: pointer; display: flex; align-items: center;
    justify-content: center; gap: 10px;
    transition: var(--transition); letter-spacing: 0.3px;
    position: relative; overflow: hidden;
}
.lead-submit-btn::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    opacity: 0; transition: opacity 0.3s ease;
}
.lead-submit-btn:hover::before { opacity: 1; }
.lead-submit-btn:hover { color: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,147,58,0.4); }
.lead-submit-btn span, .lead-submit-btn i { position: relative; z-index: 1; }
.lead-submit-btn:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

.lead-privacy {
    text-align: center; font-size: 0.75rem;
    color: var(--text-light); margin-top: 12px;
    display: flex; align-items: center; justify-content: center; gap: 6px;
}
.lead-privacy i { color: #2ecc71; }

/* Success state */
.lead-success-icon { font-size: 3.5rem; text-align: center; margin-bottom: 16px; }
.lead-success-perks { display: flex; flex-direction: column; gap: 10px; margin: 20px 0 28px; }
.perk {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.9rem; color: var(--text-secondary); font-weight: 500;
}
.perk i { color: #2ecc71; font-size: 1rem; flex-shrink: 0; }

@media (max-width: 576px) {
    .lead-modal { padding: 36px 22px 28px; border-radius: 20px; }
    .lead-modal-title { font-size: 1.45rem; }
}

/* ============================================
   ANIMATED COUNTERS — pulse on finish
   ============================================ */
.num-value.counted {
    animation: numPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes numPop {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.18); color: var(--gold-light); }
    100% { transform: scale(1); }
}

/* ============================================
   STICKY CTA BUTTON
   ============================================ */
.sticky-cta {
    position: fixed;
    bottom: 90px;
    right: 28px;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--teal-dark);
    font-weight: 800;
    font-size: 0.88rem;
    padding: 13px 24px;
    border-radius: 50px;
    box-shadow: 0 8px 28px rgba(201, 147, 58, 0.5);
    text-decoration: none;
    letter-spacing: 0.3px;
    transform: translateY(120px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease, box-shadow 0.3s ease;
    pointer-events: none;
}
.sticky-cta.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.sticky-cta:hover {
    color: var(--teal-dark);
    box-shadow: 0 14px 40px rgba(201, 147, 58, 0.65);
    transform: translateY(-3px);
}
.sticky-cta i { font-size: 0.9rem; }
@media (max-width: 576px) {
    .sticky-cta span { display: none; }
    .sticky-cta { padding: 14px 16px; bottom: 90px; right: 16px; }
}

/* ============================================
   LIVE ACTIVITY TOAST
   ============================================ */
.live-toast {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 9000;
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 12px 40px rgba(21, 62, 63, 0.18);
    border: 1.5px solid rgba(21, 62, 63, 0.1);
    min-width: 280px;
    max-width: 340px;
    transform: translateX(-120%);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}
.live-toast.show {
    transform: translateX(0);
    opacity: 1;
}
.live-toast-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}
.live-toast-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--teal);
    margin-bottom: 2px;
}
.live-toast-msg {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
}
.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ecc71;
    flex-shrink: 0;
    margin-left: auto;
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.25);
    animation: livePulse 1.5s infinite;
}
@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.25); }
    50%       { box-shadow: 0 0 0 7px rgba(46, 204, 113, 0); }
}
@media (max-width: 480px) {
    .live-toast { left: 12px; right: 12px; min-width: unset; max-width: unset; bottom: 16px; }
}

/* ============================================
   DARK MODE TOGGLE BUTTON
   ============================================ */
.btn-darkmode {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(246, 238, 230, 0.3);
    background: rgba(246, 238, 230, 0.08);
    color: var(--cream);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    margin-right: 12px;
    flex-shrink: 0;
}
.btn-darkmode:hover {
    background: rgba(246, 238, 230, 0.18);
    border-color: rgba(246, 238, 230, 0.5);
    transform: rotate(20deg);
}

/* ============================================
   DARK MODE OVERRIDES
   ============================================ */
body.dark-mode {
    background: #111a1a;
    color: #e8ddd2;
}
body.dark-mode .benefits-banner,
body.dark-mode .trusted-section,
body.dark-mode .testimonials-section,
body.dark-mode .features-section,
body.dark-mode .howitworks-section,
body.dark-mode .comparison-section,
body.dark-mode .social-proof-section,
body.dark-mode .faq-section,
body.dark-mode .cta-section {
    background: #111a1a;
}
body.dark-mode .feature-card,
body.dark-mode .step-card,
body.dark-mode .faq-card {
    background: #1a2828;
    border-color: rgba(246,238,230,0.08);
}
body.dark-mode .feature-card h4,
body.dark-mode .step-card h4,
body.dark-mode h2,
body.dark-mode h3 {
    color: #f0e6da;
}
body.dark-mode .feature-card p,
body.dark-mode .step-card p,
body.dark-mode p { color: #9ab5b5; }
body.dark-mode .comparison-table th,
body.dark-mode .comparison-table td { border-color: rgba(255,255,255,0.07); }
body.dark-mode .accordion-item { background: #1a2828; border-color: rgba(255,255,255,0.07); }
body.dark-mode .accordion-button { background: #1a2828; color: #f0e6da; }
body.dark-mode .accordion-button:not(.collapsed) { background: #1e3535; }
body.dark-mode .accordion-body { background: #1a2828; color: #9ab5b5; }
body.dark-mode footer { background: #0a1212 !important; }
body.dark-mode .logo-item span { background: #1a2828 !important; border-color: rgba(255,255,255,0.07) !important; }
body.dark-mode .number-card { background: #1a2828 !important; }
body.dark-mode .testimonial-card { background: #1a2828 !important; }
body.dark-mode .live-toast { background: #1a2828; border-color: rgba(255,255,255,0.1); }
body.dark-mode .live-toast-name { color: #dba84f; }
body.dark-mode .btn-darkmode i::before { content: '\f185'; } /* fa-sun */
