/* ==========================================================================
   Ygor Love Landing Page - Premium Design System & Styles
   ========================================================================== */

/* Design Tokens & CSS Variables */
:root {
    /* Colors */
    --bg-dark-deep: #07090E;       /* Deepest black/blue background */
    --bg-dark-card: #0E121E;       /* Semi-transparent dark card background */
    --bg-dark-border: rgba(255, 255, 255, 0.05); /* Soft border for glassmorphism */
    
    --neon-green: #39FF14;         /* Electric neon green (primary attention) */
    --neon-green-rgb: 57, 255, 20;
    --neon-purple: #BD00FF;        /* Mystical deep violet/magenta */
    --neon-purple-rgb: 189, 0, 255;
    --neon-cyan: #00E5FF;          /* Electric cyan accents */
    
    --text-white: #FFFFFF;
    --text-muted: #8F9CAE;         /* Clean readable low-contrast text */
    --text-green: #39FF14;
    
    /* Fonts */
    --font-title: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions & Shadows */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.5);
    --glow-green: 0 0 20px rgba(57, 255, 20, 0.3);
    --glow-purple: 0 0 30px rgba(189, 0, 255, 0.2);
}

/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-dark-deep);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark-deep);
}
::-webkit-scrollbar-thumb {
    background: #171D31;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-green);
}

/* Container */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Helpers */
h1, h2, h3, h4 {
    font-family: var(--font-title);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* Utilities */
.text-center { text-align: center; }
.text-highlight {
    background: linear-gradient(90deg, var(--neon-green) 0%, var(--neon-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hidden {
    display: none !important;
}

/* 0. Top Live Social Proof Status Bar */
.status-bar {
    background: rgba(14, 18, 30, 0.8);
    border-bottom: 1px solid var(--bg-dark-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    z-index: 101;
    padding: 10px 0;
}
.status-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-white);
}
.status-pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-green);
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 14px var(--neon-green); }
    100% { transform: scale(0.9); opacity: 0.6; }
}

/* Main Header */
.main-header {
    height: 80px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    background: rgba(7, 9, 14, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand {
    position: relative;
    display: flex;
    align-items: center;
}
.brand-text {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--text-white);
}
.brand-text span {
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}
.brand-glow {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--neon-green);
    filter: blur(25px);
    opacity: 0.3;
    left: -10px;
}
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-link-item {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}
.nav-link-item:hover {
    color: var(--text-white);
}
.header-cta-btn {
    background: transparent;
    border: 1.5px solid var(--neon-green);
    color: var(--text-white);
    text-decoration: none;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 20px;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: var(--glow-green);
}
.header-cta-btn:hover {
    background: var(--neon-green);
    color: #000000;
    box-shadow: 0 0 25px var(--neon-green);
    transform: translateY(-2px);
}

/* Sections Global */
section {
    padding: 80px 0;
    position: relative;
}
.section-badge {
    display: inline-block;
    font-family: var(--font-title);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--neon-green);
    background: rgba(57, 255, 20, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.section-title-area {
    margin-bottom: 50px;
}
.section-title {
    font-size: 2.2rem;
    color: var(--text-white);
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* 1. Hero Section */
.hero-section {
    padding: 100px 0 80px 0;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
}
.hero-radial-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 1;
}
.purple-glow {
    background: rgba(189, 0, 255, 0.15);
    top: 10%;
    left: -10%;
}
.green-glow {
    background: rgba(57, 255, 20, 0.08);
    bottom: 10%;
    right: -10%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.badge-vip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-title);
    font-size: 0.8rem;
    font-weight: 700;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}
.badge-icon {
    color: var(--neon-purple);
    animation: rotate-sparkle 3s linear infinite;
}

@keyframes rotate-sparkle {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 540px;
}

/* Premium Main CTA Button */
.cta-container {
    margin-bottom: 32px;
}
.main-cta-button {
    display: inline-flex;
    flex-direction: column;
    width: auto;
    min-width: 320px;
    background: linear-gradient(135deg, #2bff00 0%, #00bbff 100%);
    color: #000000;
    text-decoration: none;
    border-radius: 12px;
    padding: 16px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.25);
    font-family: var(--font-title);
    z-index: 1;
}
.main-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.6s;
    z-index: -1;
}
.main-cta-button:hover::before {
    left: 100%;
}
.main-cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(57, 255, 20, 0.45);
}
.btn-text {
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0.5px;
}
.btn-subtext {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.8;
}
.btn-icon {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.85;
}

/* Pulsing effect */
.pulse-effect {
    animation: button-pulse 2s infinite;
}
@keyframes button-pulse {
    0% { box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(57, 255, 20, 0); }
    100% { box-shadow: 0 0 0 0 rgba(57, 255, 20, 0); }
}

.micro-proof {
    display: flex;
    align-items: center;
    gap: 16px;
}
.avatar-group {
    display: flex;
}
.avatar-item {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: -8px;
}
.avatar-item:first-child {
    margin-left: 0;
}
.micro-proof-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.micro-proof-text strong {
    color: var(--text-white);
}

/* Expert Photo on Right side */
.hero-media {
    display: flex;
    justify-content: center;
    align-items: center;
}
.expert-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 30px rgba(189, 0, 255, 0.15), 0 0 20px rgba(57, 255, 20, 0.05);
    transition: var(--transition);
}
.expert-image-wrapper:hover {
    border-color: rgba(57, 255, 20, 0.2);
    box-shadow: 0 0 40px rgba(189, 0, 255, 0.25), 0 0 30px rgba(57, 255, 20, 0.15);
}
.glow-bg-behind-expert {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--neon-purple) 0%, transparent 70%);
    filter: blur(30px);
    opacity: 0.6;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.expert-photo-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.8));
    transition: var(--transition);
}
.expert-image-wrapper:hover .expert-photo-img {
    transform: scale(1.03);
}

/* Floating badges for CRO metrics */
.floating-badge {
    position: absolute;
    background: rgba(14, 18, 30, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    box-shadow: var(--shadow-premium);
}
.badge-top-right {
    top: 15%;
    right: -10%;
    border-left: 2px solid var(--neon-green);
}
.badge-bottom-left {
    bottom: 15%;
    left: -10%;
    border-left: 2px solid var(--neon-purple);
}
.float-icon {
    font-size: 1.4rem;
}
.float-content strong {
    font-family: var(--font-title);
    font-size: 1.1rem;
    color: var(--text-white);
    display: block;
    line-height: 1.1;
}
.float-content p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* 2. Stats Section */
.stats-section {
    background: rgba(14, 18, 30, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    padding: 60px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stat-card {
    background: rgba(14, 18, 30, 0.6);
    border: 1px solid var(--bg-dark-border);
    border-radius: 16px;
    padding: 28px 24px;
    transition: var(--transition);
}
.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(57, 255, 20, 0.2);
    background: rgba(20, 26, 43, 0.7);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--neon-green);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 15px rgba(57, 255, 20, 0.25);
}
.stat-label {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}
.stat-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* 3. How It Works Section */
.how-works-section {
    position: relative;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 50px;
}
.step-card {
    background: rgba(14, 18, 30, 0.6);
    border: 1px solid var(--bg-dark-border);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: var(--transition);
}
.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(189, 0, 255, 0.2);
}
.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
.step-num {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}
.step-icon-box {
    width: 48px;
    height: 48px;
    background: rgba(189, 0, 255, 0.1);
    color: var(--neon-purple);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(189,0,255,0.1);
}
.step-card:nth-child(2) .step-icon-box {
    background: rgba(57, 255, 20, 0.1);
    color: var(--neon-green);
    box-shadow: 0 4px 12px rgba(57,255,20,0.1);
}
.step-card:nth-child(2) .step-num {
    color: rgba(57, 255, 20, 0.05);
}
.step-title {
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 12px;
}
.step-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.step-cta-wrapper {
    margin-top: 40px;
}

/* 4. Expert / Biography Section */
.expert-section {
    background: linear-gradient(180deg, var(--bg-dark-deep) 0%, rgba(14,18,30,0.7) 50%, var(--bg-dark-deep) 100%);
}
.expert-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(189, 0, 255, 0.1);
    border-radius: 50%;
    filter: blur(120px);
    top: 30%;
    left: 40%;
    pointer-events: none;
}
.expert-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}
.expert-bio-p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.expert-value-points {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.value-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(57, 255, 20, 0.1);
    color: var(--neon-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}
.value-item span {
    font-size: 0.95rem;
    color: var(--text-white);
}

.expert-media-content {
    display: flex;
    justify-content: center;
}
.biography-visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.card-outline-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 30px rgba(189, 0, 255, 0.3);
    pointer-events: none;
    z-index: 2;
}
.expert-bio-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transform: scale(1.05);
    filter: brightness(0.85) contrast(1.1);
    transition: var(--transition);
}
.biography-visual-wrapper:hover .expert-bio-image {
    transform: scale(1.0);
    filter: brightness(1.0) contrast(1.0);
}

/* 5. Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}
.testimonial-card {
    background: rgba(14, 18, 30, 0.6);
    border: 1px solid var(--bg-dark-border);
    border-radius: 16px;
    padding: 28px;
    transition: var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(57, 255, 20, 0.15);
}
.card-header-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    position: relative;
}
.user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}
.user-meta {
    flex-grow: 1;
}
.user-name {
    font-size: 0.95rem;
    color: var(--text-white);
}
.user-status {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.rating-stars {
    color: #FFD700;
    font-size: 0.8rem;
    letter-spacing: 1px;
}
.testimonial-comment {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.testimonial-cta-wrapper {
    margin-top: 40px;
}

/* 6. FAQ Section */
.faq-accordion-container {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background: rgba(14, 18, 30, 0.6);
    border: 1px solid var(--bg-dark-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-question-btn {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-white);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}
.faq-toggle-icon {
    font-size: 1.3rem;
    color: var(--neon-green);
    transition: var(--transition);
}
.faq-item.active {
    border-color: rgba(57, 255, 20, 0.15);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
    color: var(--neon-purple);
}
.faq-answer-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}
.faq-answer-inner {
    padding: 0 24px 20px 24px;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

/* 7. Footer */
.footer-area {
    background: #040508;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 60px 0 110px 0; /* Extra bottom padding for sticky CTA */
}
.footer-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}
.footer-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 6px;
}
.footer-nav-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}
.footer-nav-links a:hover {
    color: var(--text-white);
}
.meta-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 24px;
    text-align: center;
    max-width: 800px;
}
.meta-disclaimer p {
    font-size: 0.72rem;
    color: #4a5468;
    line-height: 1.5;
    margin-bottom: 16px;
}
.copyright-text {
    font-size: 0.7rem;
    color: #4a5468;
    margin-top: 12px;
}

/* 8. Mobile Sticky CTA Bar */
.sticky-cta-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(7, 9, 14, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 16px 20px;
    z-index: 999;
    display: flex;
    justify-content: center;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s;
}
.sticky-cta-mobile-bar.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}
.sticky-cta-btn-element {
    width: 100%;
    max-width: 500px;
    background: linear-gradient(135deg, #2bff00 0%, #00bbff 100%);
    color: #000000;
    text-decoration: none;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1rem;
    height: 52px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(57, 255, 20, 0.3);
    animation: sticky-button-pulse 2.5s infinite;
}
.sticky-icon {
    display: flex;
    align-items: center;
}

@keyframes sticky-button-pulse {
    0% { transform: scale(1.0); }
    50% { transform: scale(1.02); box-shadow: 0 8px 25px rgba(57, 255, 20, 0.45); }
    100% { transform: scale(1.0); }
}

/* ==========================================================================
   Responsive Breakpoints (Mobile First overrides)
   ========================================================================== */

/* Tablet Viewport (991px and down) */
@media (max-width: 991px) {
    section {
        padding: 60px 0;
    }
    .hero-section {
        padding: 60px 0 40px 0;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .hero-info {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-title {
        font-size: 2.6rem;
    }
    .hero-description {
        margin: 0 auto 28px auto;
    }
    .expert-image-wrapper {
        max-width: 320px;
        margin: 0 auto;
    }
    .floating-badge {
        padding: 8px 14px;
    }
    .badge-top-right {
        right: -5%;
        top: 10%;
    }
    .badge-bottom-left {
        left: -5%;
        bottom: 10%;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .expert-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .expert-text-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .expert-value-points {
        align-items: flex-start;
        display: inline-flex;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .desktop-nav {
        display: none; /* Hide header menu on mobile, rely on CTA buttons */
    }
}

/* Small Smartphone Viewport (576px and down) */
@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }
    .hero-title {
        font-size: 2.1rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .main-cta-button {
        width: 100%;
        min-width: unset;
        padding: 14px 20px;
    }
    .btn-text {
        font-size: 1rem;
    }
    .btn-icon {
        display: none; /* Hide icon on very small screen to make space for text */
    }
    .stat-number {
        font-size: 2.2rem;
    }
    .stat-card {
        padding: 20px 16px;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .section-subtitle {
        font-size: 0.95rem;
    }
    .badge-top-right, .badge-bottom-left {
        display: none; /* Hide floating labels on small screens to avoid overflow */
    }
    .sticky-cta-btn-element {
        font-size: 0.9rem;
        font-weight: 700;
        height: 48px;
    }
    .faq-question-btn {
        padding: 16px 20px;
        font-size: 0.95rem;
    }
}
