/* ==========================================
   GLOBAL STYLES & CUSTOM VARIABLES
   ========================================== */
:root {
    --bg-dark: #09090b;
    --bg-card: #18181b;
    --text-light: #f4f4f5;
    --text-muted: #a1a1aa;
    --primary-neon: #00f2fe; /* TikTok cyan */
    --secondary-neon: #fe0979; /* TikTok pink */
    --purple-glow: #9d4edd;
    --border-color: #27272a;
    --font-main: 'Inter', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-main);
}

body {
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Common UI Utilities */
.text-gradient {
    background: linear-gradient(90deg, var(--primary-neon), var(--secondary-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-center { text-align: center; }
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}
.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

/* Button Classes */
.btn {
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-neon), var(--secondary-neon));
    color: #fff;
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(254, 9, 121, 0.6);
}

.btn-neon {
    background: linear-gradient(90deg, var(--primary-neon), var(--secondary-neon));
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

.btn-neon:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(254, 9, 121, 0.6);
}

/* ==========================================
   1. STICKY HEADER NAVIGATION
   ========================================== */
.main-header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    width: 100%;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo-neon {
    color: var(--primary-neon);
    text-shadow: 0 0 8px rgba(0, 242, 254, 0.5);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.nav-menu a:hover {
    color: var(--primary-neon);
}

/* ==========================================
   2. HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    height: calc(100vh - 73px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(9,9,11,0.5) 0%, rgba(9,9,11,0.95) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeIn 1s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* ==========================================
   3. STACKED IPHONE SHOWCASE SECTION
   ========================================== */
.showcase-section {
    padding: 8rem 0;
    border-bottom: 1px solid var(--border-color);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.showcase-left {
    display: flex;
    justify-content: center;
    width: 100%;
}

.iphone-stack-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    overflow: visible;
}

.carousel-track {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.iphone-mockup {
    width: 240px;
    height: 480px;
    background-color: #000;
    border-radius: 40px;
    overflow: hidden;
    position: absolute;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                opacity 0.4s ease,
                filter 0.4s ease,
                z-index 0.4s ease;
    cursor: pointer;
    -webkit-user-drag: none;
}

.iphone-mockup .screen-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.iphone-mockup video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* Side Phones (50% Overlap + Shrink + Dim) */
.side-phone {
    z-index: 1;
    opacity: 0.6;
    filter: blur(0.5px);
    border: 10px solid #27272a;
}

.iphone-mockup[data-position="left"] {
    transform: translateX(-50%) scale(0.88);
    z-index: 1;
}

.iphone-mockup[data-position="right"] {
    transform: translateX(50%) scale(0.88);
    z-index: 1;
}

/* Center Active Phone */
.iphone-mockup[data-position="center"] {
    transform: translateX(0) scale(1);
    z-index: 10;
    opacity: 1;
    filter: blur(0);
    border: 10px solid #3f3f46;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
}

.notch {
    width: 100px;
    height: 16px;
    background-color: #27272a;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 20;
}

.live-badge {
    position: absolute;
    top: 25px;
    left: 15px;
    background-color: #fe0979;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    z-index: 15;
}

.video-ui-overlay {
    position: absolute;
    bottom: 20px;
    left: 15px;
    z-index: 15;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

/* Showcase Right value list */
.showcase-right .section-title {
    margin-bottom: 2rem;
}

.value-card {
    background-color: var(--bg-card);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.value-list {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-list li {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.list-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.icon-cyan { background-color: rgba(0, 242, 254, 0.1); color: var(--primary-neon); }
.icon-magenta { background-color: rgba(254, 9, 121, 0.1); color: var(--secondary-neon); }
.icon-purple { background-color: rgba(157, 78, 221, 0.1); color: var(--purple-glow); }

.list-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.list-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}




/* ==========================================
   4. SUCCESS STORIES (35% Left / 65% Right)
   ========================================== */
.success-section {
    padding: 8rem 0;
    background-color: #0d0d11;
    border-bottom: 1px solid var(--border-color);
}

.success-grid {
    display: flex;
    gap: 4rem;
}

/* 35% Left Portion - Sticky Sidebar */
.success-left {
    flex: 0 0 35%;
    position: sticky;
    top: 130px;
    height: fit-content;
}

.success-heading {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    font-weight: 800;
}

.success-subheading {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
    line-height: 1.5;
}

.story-tabs {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.tab-btn {
    text-align: left;
    background: none;
    border: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn:hover {
    border-color: var(--primary-neon);
    color: var(--text-light);
}

.tab-btn.active {
    background: linear-gradient(90deg, rgba(0, 242, 254, 0.15) 0%, rgba(254, 9, 121, 0.15) 100%);
    border-color: var(--primary-neon);
    color: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* 65% Right Portion - Scrollable Panel */
.success-right {
    flex: 0 0 65%;
}

.cards-scroll-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Testimonial Cards Styling */
.story-card {
    display: flex;
    background-color: var(--bg-card);
    border-radius: 30px;
    padding: 2.5rem;
    gap: 2.5rem;
    border: 1px solid var(--border-color);
    align-items: center;
    transition: transform 0.3s ease;
}

/* Decorative subtle glows on cards */
.story-card.card-cyan { border-left: 6px solid var(--primary-neon); }
.story-card.card-magenta { border-left: 6px solid var(--secondary-neon); }
.story-card.card-purple { border-left: 6px solid var(--purple-glow); }
.story-card.card-dark { border-left: 6px solid var(--text-muted); }

/* Left iPhone display inside card */
.card-iphone {
    width: 160px;
    height: 320px;
    border-radius: 25px;
    overflow: hidden;
    background-color: #000;
    border: 4px solid #27272a;
    flex-shrink: 0;
}

.card-iphone .screen-content, .card-iphone video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Card Text Details */
.card-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.card-quote {
    margin-bottom: 2rem;
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-neon);
    opacity: 0.4;
    margin-bottom: 0.5rem;
}

.card-quote p {
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-light);
}

/* Bottom Split Stats Block */
.card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    gap: 1.5rem;
}

.stat-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
}

.card-cyan .stat-num { color: var(--primary-neon); }
.card-magenta .stat-num { color: var(--secondary-neon); }
.card-purple .stat-num { color: var(--purple-glow); }

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.2rem;
}

.phone-video-player {
    width:100%;
    height:100%;
    position:relative;
    background:#000;
}

.phone-video-player video {
    width:100%;
    height:100%;
    object-fit:cover;
}

.video-play-btn {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:70px;
    height:70px;
    border-radius:50%;
    border:none;
    background:rgba(0,0,0,0.65);
    color:white;
    font-size:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    backdrop-filter:blur(4px);
    transition:all .25s ease;
}

.video-play-btn:hover {
    background:rgba(0,0,0,0.85);
    transform:
    translate(-50%,-50%)
    scale(1.1);
}

.video-play-btn i {
    margin-left:4px;
}

.video-controls {
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:10px;
    display:flex;
    align-items:center;
    gap:8px;
    background:
    linear-gradient(
        transparent,
        rgba(0,0,0,.85)
    );
}

.video-controls button {
    width:25px;
    height:25px;
    border:none;
    background:none;
    color:white;
    cursor:pointer;
}

.video-progress {
    flex:1;
    height:4px;
    background:rgba(255,255,255,.35);
    border-radius:10px;
    overflow:hidden;
}

.video-progress-bar {
    width:0%;
    height:100%;
    background:#fff;
}

.phone-video-player.playing .video-play-btn {
    display:none;
}

video:fullscreen {
    width:100vw;
    height:100vh;
    object-fit:contain;
    background:#000;
}


/* ==========================================
   5. FEATURES GRID (Title, Desc & 3 Square Cards)
   ========================================== */
.features-section {
    padding: 8rem 0;
    border-bottom: 1px solid var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.square-card {
    background-color: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.square-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-neon);
}

.card-img-container {
    height: 220px;
    width: 100%;
    overflow: hidden;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.square-card:hover .card-img-container img {
    transform: scale(1.05);
}

.card-info {
    padding: 2rem;
}

.card-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.card-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================
   6. FAQ SECTION
   ========================================== */
.faq-section {
    padding: 8rem 0;
    background-color: #0d0d11;
    border-bottom: 1px solid var(--border-color);
}

.faq-container {
    max-width: 800px;
}

.accordion {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background-color: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-smooth);
}

.accordion-header:hover {
    color: var(--primary-neon);
}

.toggle-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 2rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.4s ease;
}

/* Active Open state */
.accordion-item.active {
    border-color: var(--primary-neon);
}

.accordion-item.active .toggle-icon {
    transform: rotate(180deg);
    color: var(--primary-neon);
}

.accordion-item.active .accordion-body {
    padding-bottom: 1.5rem;
}

/* ==========================================
   7. FOOTER SECTION
   ========================================== */
.main-footer {
    background-color: var(--bg-dark);
    padding: 5rem 0 2.5rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    margin-bottom: 1.2rem;
}

.footer-brand .quote {
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
    max-width: 500px;
    font-size: 12px;
}

.footer-links, .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links h4, .footer-legal h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
}

.footer-links a, .footer-legal a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover, .footer-legal a:hover {
    color: var(--primary-neon);
}

.footer-bottom {
    border-top: 1px solid var(--border-color, #27272a);
    padding-top: 2rem;
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem; /* Vertical spacing between the rows */
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Row 1: Copyright */
.copyright-text {
    margin: 0;
    line-height: 1.4;
}

/* Row 2: Privacy Policy Link */
.footer-links .privacy-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

/* Row 3: Gray Badge Styling */
.badge-wrapper {
    margin-top: 0.2rem;
}

.footer__powered-by {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #27272a; /* Dark gray badge background */
    border: 1px solid #3f3f46; /* Subtle subtle outline */
    padding: 6px 16px;
    border-radius: 10px; /* Rounded pill badge shape */
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.footer__powered-by:hover {
    background-color: #3f3f46; /* Slightly lighter gray on hover */
    border-color: #52525b;
}

.powered-by-text {
    font-size: 0.75rem;
    font-weight: 500;
    color: #e4e4e7;
    letter-spacing: 0.3px;
}

.powered-by-logo {
    height: 16px; /* Scales logo down cleanly to match badge height */
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* ==========================================
   ANIMATIONS & RESPONSIVE DESIGN
   ========================================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(254, 9, 121, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(254, 9, 121, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(254, 9, 121, 0); }
}

/* Tablet & Mobile Responsiveness */
@media (max-width: 1024px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }

    .success-grid {
        flex-direction: column;
    }

    .success-left {
        position: relative;
        top: 0;
        width: 100%;
        margin-bottom: 3rem;
    }

    .story-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 1rem;
    }

    .tab-btn {
        white-space: nowrap;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Can be expanded to mobile toggle menu if needed */
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .story-card {
        flex-direction:column;
        align-items:center;
    }

    .card-iphone {
        width:180px;
        height:360px;
    }

    .card-details {
        width:100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ==========================================
   STATS SECTION (TikTok Stats Integration)
   ========================================== */
.stats-section {
    padding: 8rem 0;
    border-bottom: 1px solid var(--border-color);
}

.stats-header {
    margin-bottom: 4rem;
}

/* Horizontal 3-column Layout grid mimicking: X | X | X */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

/* Vertical divider lines between column elements */
.stats-card {
    text-align: center;
    position: relative;
    padding: 2rem 1rem;
}

.stats-card:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -1rem;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--border-color), transparent);
}

/* Bigger numbers with a different neon color for the digits and suffix */
.stats-value {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

/* Assign unique neon gradients to the statistic values */
.stats-card:nth-child(1) .stats-value {
    color: var(--primary-neon);
    text-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}

.stats-card:nth-child(2) .stats-value {
    color: var(--purple-glow);
    text-shadow: 0 0 15px rgba(157, 78, 221, 0.2);
}

.stats-card:nth-child(3) .stats-value {
    color: var(--secondary-neon);
    text-shadow: 0 0 15px rgba(254, 9, 121, 0.2);
}

/* Affix styles (the % sign or the "in 4") with slightly smaller, muted layout */
.stats-affix {
    font-size: 2.5rem;
    font-weight: 700;
    margin-left: 0.2rem;
    letter-spacing: -1px;
}

.stats-card:nth-child(2) .stats-affix {
    font-size: 1.8rem;
    color: var(--text-muted);
}

/* Smaller description under each number */
.stats-desc {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* Small academic footnote citation at the bottom of section */
.stats-note {
    margin-top: 4rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.6;
}

/* Tablet & Mobile Responsiveness for Stats Section */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .stats-card:not(:last-child)::after {
        display: none; /* Hide dividers on vertical layout */
    }
    .stats-card {
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 3rem;
    }
    .stats-card:last-child {
        border-bottom: none;
    }
}

/* ==========================================
   CONTACT PAGE SPECIFIC STYLES
   ========================================== */
.contact-page-wrapper {
    padding: 6rem 0;
    min-height: calc(100vh - 73px - 320px); /* Fill screen between header & footer */
    display: flex;
    align-items: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

/* Left Content Column */
.live-support-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-neon);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary-neon);
}

.status-text {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--primary-neon);
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

.contact-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 3rem;
}

/* Onboarding benefits layout */
.contact-perks-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-bottom: 3.5rem;
}

.perk-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.perk-icon {
    font-size: 1.1rem;
    color: var(--secondary-neon);
    background-color: rgba(254, 9, 121, 0.1);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.perk-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.perk-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-direct-channels p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.channel-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.channel-links a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.channel-links a:hover {
    color: var(--primary-neon);
}

/* Right Column: Contact Form Styling */
.contact-form-panel {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
}

.form-header {
    margin-bottom: 2.5rem;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.trend-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: var(--transition-smooth);
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.input-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Clean Input Box Wrapper */
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.field-icon {
    position: absolute;
    left: 1.2rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.input-wrapper input {
    width: 100%;
    padding: 1.1rem 1.2rem 1.1rem 3.2rem;
    background-color: var(--bg-dark);
    border: 1.5px solid var(--border-color);
    border-radius: 14px;
    color: var(--text-light);
    font-family: var(--font-main);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-smooth);
}

.input-wrapper input:focus {
    border-color: var(--primary-neon);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
}

.input-wrapper input:focus + .field-icon {
    color: var(--primary-neon);
}

/* Submit Action Button custom settings */
.w-full {
    width: 100%;
}

.form-action {
    margin-top: 1rem;
}

.form-action .btn-neon {
    gap: 0.8rem;
    padding: 1.1rem;
}

/* Disclaimer / Agreement paragraph */
.form-disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
    text-align: center;
    margin-top: 0.5rem;
}

.inline-link {
    color: var(--primary-neon);
    font-weight: 600;
    text-decoration: underline;
}

.inline-link:hover {
    color: var(--secondary-neon);
}

/* SUCCESS STATE STYLES */
.success-state-container {
    text-align: center;
    padding: 3rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.success-icon-badge {
    font-size: 4rem;
    color: var(--primary-neon);
    filter: drop-shadow(0 0 15px rgba(0, 242, 254, 0.4));
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.success-state-container h2 {
    font-size: 2rem;
    font-weight: 800;
}

.success-state-container p {
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 320px;
    margin-bottom: 1rem;
}

/* Utility Animations & Class toggling */
.hidden {
    display: none !important;
}

@keyframes scaleIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Pulse animation on Live status */
.animate-pulse {
    animation: livePulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .4; transform: scale(1.15); }
}

/* Tablet & Mobile Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-info-panel {
        text-align: center;
    }

    .live-support-indicator {
        justify-content: center;
    }

    .perk-item {
        text-align: left;
    }

    .channel-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact-page-wrapper {
        padding: 4rem 0;
    }

    .contact-title {
        font-size: 2.6rem;
    }

    .contact-form-panel {
        padding: 2rem 1.5rem;
    }
}

/* Active state for navigation menu items during scroll */
.nav-menu a.active {
    color: var(--primary-neon) !important;
    text-shadow: 0 0 8px rgba(0, 242, 254, 0.4);
    border-bottom: 2px solid var(--primary-neon);
    padding-bottom: 4px;
}

/* ==========================================
   4-STEP PROCESS LAYOUT (AbcShop Mentorship)
   ========================================== */
.showcase-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-intro-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Timeline vertical tracker wrapper */
.process-track {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
    padding-left: 1rem;
}

/* Vertical connector bar linking step badges */
.process-track::before {
    content: '';
    position: absolute;
    left: 2.1rem;
    top: 15px;
    bottom: 15px;
    width: 2px;
    background: linear-gradient(
        to bottom,
        var(--primary-neon),
        var(--purple-glow),
        var(--secondary-neon)
    );
    opacity: 0.35;
    z-index: 1;
}

/* Individual Step Box layout */
.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.process-step:hover {
    transform: translateX(8px);
}

/* Unique glowing step badges */
.step-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 800;
    flex-shrink: 0;
    border: 2px solid var(--border-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

/* Assign unique neon borders & text glow to numerical steps */
.process-step:nth-child(1) .step-badge {
    border-color: var(--primary-neon);
    color: var(--primary-neon);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}

.process-step:nth-child(2) .step-badge {
    border-color: #a855f7; /* Purple accents */
    color: #a855f7;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
}

.process-step:nth-child(3) .step-badge {
    border-color: var(--secondary-neon);
    color: var(--secondary-neon);
    box-shadow: 0 0 15px rgba(254, 9, 121, 0.2);
}

.process-step:nth-child(4) .step-badge {
    border-color: #10b981; /* Success Green */
    color: #10b981;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

/* Text adjustments */
.step-content {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: -0.5px;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Mobile & Tablet Adjustments */
@media (max-width: 768px) {
    .process-track::before {
        left: 1.6rem;
    }

    .step-badge {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }

    .process-step {
        gap: 1.2rem;
    }

    .step-content h3 {
        font-size: 1.15rem;
    }
}