/* Easy2IT Internship Landing Page Stylesheet */

/* --- Design Tokens / Core Properties --- */
:root {
    --bg-dark: #070a13;
    --bg-card: rgba(22, 30, 49, 0.65);
    --bg-card-hover: rgba(30, 41, 67, 0.85);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-active: #06b6d4;
    
    --primary-gradient: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 100%);
    --secondary-gradient: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    --accent-cyan: #06b6d4;
    --accent-violet: #8b5cf6;
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --success: #10b981;
    --error: #f43f5e;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-neon: 0 0 20px rgba(6, 182, 212, 0.18);
    --shadow-neon-violet: 0 0 20px rgba(139, 92, 246, 0.18);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.35);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Dynamic Theme Variables */
    --grid-color: rgba(255, 255, 255, 0.015);
    --header-bg: rgba(7, 10, 19, 0.85);
    --checklist-header-bg: rgba(15, 23, 42, 0.6);
    --floating-badge-bg: rgba(22, 30, 49, 0.9);
    --section-alt-bg: rgba(15, 23, 42, 0.4);
    --panel-card-bg: rgba(15, 23, 42, 0.45);
    --step-num-bg: #0f172a;
    --tab-hover-bg: rgba(255, 255, 255, 0.04);
    --footer-bg: #04060d;
    --input-bg: rgba(15, 23, 42, 0.4);
    --input-bg-focus: rgba(15, 23, 42, 0.6);
    --hero-bg: radial-gradient(circle at 50% 50%, rgba(10, 15, 30, 0.45) 0%, var(--bg-dark) 85%);
}

body.light-theme {
    --bg-dark: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.85);
    --bg-card-hover: rgba(255, 255, 255, 0.95);
    --border-color: rgba(15, 23, 42, 0.08);
    --border-active: #06b6d4;
    
    --secondary-gradient: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 100%);
    
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    
    --shadow-neon: 0 4px 20px rgba(6, 182, 212, 0.1);
    --shadow-neon-violet: 0 4px 20px rgba(139, 92, 246, 0.1);
    --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.05);
    
    /* Dynamic Theme Variables - Light Mode */
    --grid-color: rgba(15, 23, 42, 0.02);
    --header-bg: rgba(248, 250, 252, 0.85);
    --checklist-header-bg: rgba(241, 245, 249, 0.9);
    --floating-badge-bg: rgba(255, 255, 255, 0.95);
    --section-alt-bg: rgba(241, 245, 249, 0.6);
    --panel-card-bg: rgba(255, 255, 255, 0.9);
    --step-num-bg: #e2e8f0;
    --tab-hover-bg: rgba(15, 23, 42, 0.03);
    --footer-bg: #e2e8f0;
    --input-bg: rgba(255, 255, 255, 0.8);
    --input-bg-focus: rgba(255, 255, 255, 0.95);
    --hero-bg: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.95) 0%, var(--bg-dark) 85%);
}

/* --- Base Styles & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* --- Ambient Background Glow --- */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.1;
    pointer-events: none;
    z-index: -2;
}

.bg-glow-1 {
    background: var(--accent-cyan);
    top: -100px;
    left: -200px;
}

.bg-glow-2 {
    background: var(--accent-violet);
    top: 500px;
    right: -200px;
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center top;
    pointer-events: none;
    z-index: -1;
}

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

/* --- Button Styling --- */
.btn-primary, .btn-secondary, .btn-nav-apply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #ffffff;
    padding: 14px 28px;
    box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 28px rgba(6, 182, 212, 0.35);
}

.btn-secondary {
    background: var(--secondary-gradient);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 14px 28px;
}

.btn-secondary:hover {
    background: rgba(30, 41, 67, 0.4);
    border-color: var(--text-muted);
    transform: translateY(-2px);
}

/* --- Gradients --- */
.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Header Section --- */
.main-header {
    position: sticky;
    top: 0;
    background: var(--header-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
}

.header-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    object-fit: contain;
}

.logo-img.logo-dark {
    height: 74px;
}

.logo-img.logo-light {
    height: 60px;
}

.logo-light {
    display: none !important;
}

body.light-theme .logo-light {
    display: inline-block !important;
}

body.light-theme .logo-dark {
    display: none !important;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a:not(.btn-nav-apply) {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition-fast);
}

.nav-links a:not(.btn-nav-apply):hover {
    color: var(--accent-cyan);
}

.btn-nav-apply {
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-cyan);
    border: 1px solid rgba(6, 182, 212, 0.3);
    padding: 8px 18px;
    font-size: 14px;
}

.btn-nav-apply:hover {
    background: var(--primary-gradient);
    color: #ffffff;
    border-color: transparent;
}

.mobile-menu-toggle {
    display: none;
}

/* --- Hero Section --- */
.hero-section {
    padding: 100px 0 120px 0;
    position: relative;
    overflow: hidden;
    background: var(--hero-bg);
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.badge-new {
    display: inline-block;
    background: rgba(139, 92, 246, 0.15);
    color: #c084fc;
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 58px;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.hero-tagline-main {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: 24px;
}

.bullets-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 12px 16px;
    margin-bottom: 32px;
}

.feature-bullet {
    font-size: 14.5px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-bullet i {
    color: var(--accent-violet);
}

.hero-qualification-text {
    color: var(--text-secondary);
    font-size: 15px;
    max-width: 580px;
    margin-bottom: 36px;
    border-left: 3px solid var(--accent-cyan);
    padding-left: 16px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
}

/* Hero Visual: Checklist Card */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.visual-card-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
    transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
    will-change: transform;
}

.visual-checklist-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.checklist-header {
    background: var(--checklist-header-bg);
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
}

.checklist-header i {
    color: var(--accent-cyan);
}

.checklist-body {
    padding: 24px;
}

.checklist-body ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.checklist-body li {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-glow {
    color: var(--accent-cyan);
    font-size: 18px;
    filter: drop-shadow(0 0 4px rgba(6, 182, 212, 0.5));
}

.floating-badge {
    position: absolute;
    background: var(--floating-badge-bg);
    border: 1px solid var(--border-color);
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: floating 4s ease-in-out infinite;
}

.badge-pune {
    top: -20px;
    right: -20px;
    border-left: 3px solid var(--accent-cyan);
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* --- Section Formatting --- */
.section-header {
    margin-bottom: 56px;
}

.text-center {
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Trust Counter Section --- */
.trust-counter-section {
    padding: 80px 0;
    background: var(--section-alt-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 24px 16px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-fast);
}

.stat-card:hover {
    border-color: rgba(6, 182, 212, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-cyan);
}

.stat-lbl {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 8px;
    font-weight: 500;
}

/* --- Colleges Ticker --- */
.colleges-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.colleges-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.colleges-marquee {
    overflow: hidden;
    width: 100%;
    display: flex;
    position: relative;
}

.colleges-marquee::before, .colleges-marquee::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.colleges-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-dark) 0%, transparent 100%);
}

.colleges-marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg-dark) 0%, transparent 100%);
}

.marquee-content {
    display: flex;
    gap: 48px;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}

.marquee-content img {
    height: 60px;
    width: auto;
    object-fit: contain;
    background: #ffffff;
    border-radius: 8px;
    padding: 8px 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
}

.marquee-content img:hover {
    transform: scale(1.08);
}

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

/* --- Reality Check Section --- */
.reality-section {
    padding: 100px 0;
}

.reality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
}

.reality-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 16px;
    position: relative;
}

.reality-card h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

.reality-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.reality-card li {
    font-size: 14.5px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
}

.reality-card li i {
    font-size: 18px;
    margin-top: 2px;
}

.other-ways li i {
    color: var(--error);
}

.easy2it-way {
    border-color: rgba(6, 182, 212, 0.25);
    background: rgba(6, 182, 212, 0.02);
    box-shadow: var(--shadow-neon);
}

.easy2it-way li i {
    color: var(--success);
}

.tag-card {
    position: absolute;
    top: -14px;
    right: 24px;
    background: var(--primary-gradient);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 9999px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* --- What You Will Get Outcome Section --- */
.outcomes-section {
    padding: 100px 0;
    background: var(--section-alt-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.outcome-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
    transition: var(--transition-normal);
}

.outcome-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.25);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-soft);
}

.outcome-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent-violet);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 20px;
}

.outcome-card h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.outcome-card p {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* --- Certificate Showcase Section --- */
.certificate-showcase-section {
    padding: 100px 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.certificate-wrapper-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.cert-info-column {
    display: flex;
    flex-direction: column;
}

.cert-info-column h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin: 16px 0 20px;
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cert-intro {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.cert-feature-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.cert-feat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.15);
}

.cert-feat-text h3 {
    font-family: var(--font-heading);
    font-size: 16.5px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.cert-feat-text p {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--text-muted);
}

.cert-visual-column {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.certificate-card-frame {
    position: relative;
    border-radius: 16px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition-normal);
}

.certificate-card-frame:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: rgba(6, 182, 212, 0.3);
}

.cert-frame-glow {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, rgba(139, 92, 246, 0.03) 70%, transparent 100%);
    z-index: 0;
    pointer-events: none;
}

.certificate-image {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    display: block;
}

.cert-badge-floating {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(16, 185, 129, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 12.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    z-index: 2;
}

body.light-theme .certificate-card-frame {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

body.light-theme .cert-info-column h2 {
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 991px) {
    .certificate-wrapper-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .cert-visual-column {
        order: -1;
    }
}

/* --- Process Section (Timeline) --- */
.process-section {
    padding: 100px 0;
}

.process-timeline {
    display: flex;
    position: relative;
    gap: 20px;
    margin-top: 40px;
}

.process-timeline::after {
    content: '';
    position: absolute;
    height: 2px;
    background: var(--border-color);
    top: 24px;
    left: 40px;
    right: 40px;
    z-index: 1;
}

.timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--step-num-bg);
    border: 2px solid var(--border-color);
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.timeline-step:hover .step-number {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: var(--shadow-neon);
}

.timeline-step h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-step p {
    font-size: 13px;
    color: var(--text-secondary);
    max-width: 190px;
    margin: 0 auto;
}

/* --- Domains Section --- */
.domains-section {
    padding: 100px 0;
    background: var(--section-alt-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.domains-tabs-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
}

.tabs-list {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn:hover {
    color: var(--text-primary);
    background: var(--tab-hover-bg);
}

.tab-btn.active {
    background: var(--primary-gradient);
    color: #ffffff;
    box-shadow: var(--shadow-neon-violet);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.panel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.domain-detail-card {
    background: var(--panel-card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
}

.domain-detail-card:hover {
    border-color: var(--text-muted);
}

.domain-detail-card h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.domain-detail-card p {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 16px;
    line-height: 1.5;
    flex-grow: 1;
}

.tools-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}

.tools-tags span {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
}

.tools-tags span i {
    margin-right: 5px;
    font-size: 12px;
}

/* --- Perks & Benefits Section --- */
.perks-section {
    padding: 100px 0;
    background: var(--section-alt-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.perks-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.perk-card-premium {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
    position: relative;
}

.perk-img-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.perk-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.perk-card-premium:hover .perk-photo {
    transform: scale(1.05);
}

.perk-badge-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

/* Badge colors */
.perk-badge-tag.bg-gold { background: #eab308; color: #000000; }
.perk-badge-tag.bg-cyan { background: #06b6d4; color: #ffffff; }
.perk-badge-tag.bg-purple { background: #8b5cf6; color: #ffffff; }
.perk-badge-tag.bg-green { background: #10b981; color: #ffffff; }
.perk-badge-tag.bg-blue { background: #3b82f6; color: #ffffff; }
.perk-badge-tag.bg-orange { background: #f97316; color: #ffffff; }

.perk-content-block {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.perk-content-block h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.perk-content-block p {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--text-secondary);
}

/* Individual Perk Highlight Styles (Different shadows and accent colors on hover) */

/* Cert */
.perk-card-premium.perk-cert:hover {
    border-color: rgba(234, 179, 8, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(234, 179, 8, 0.15);
}
.perk-card-premium.perk-cert:hover h4 {
    color: #eab308;
}

/* Projects */
.perk-card-premium.perk-projects:hover {
    border-color: rgba(6, 182, 212, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(6, 182, 212, 0.18);
}
.perk-card-premium.perk-projects:hover h4 {
    color: #06b6d4;
}

/* Mentor */
.perk-card-premium.perk-mentor:hover {
    border-color: rgba(139, 92, 246, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.18);
}
.perk-card-premium.perk-mentor:hover h4 {
    color: #8b5cf6;
}

/* Placement */
.perk-card-premium.perk-placement:hover {
    border-color: rgba(16, 185, 129, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.18);
}
.perk-card-premium.perk-placement:hover h4 {
    color: #10b981;
}

/* Profile */
.perk-card-premium.perk-profile:hover {
    border-color: rgba(59, 130, 246, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.18);
}
.perk-card-premium.perk-profile:hover h4 {
    color: #3b82f6;
}

/* Collaboration */
.perk-card-premium.perk-collaboration:hover {
    border-color: rgba(249, 115, 22, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.18);
}
.perk-card-premium.perk-collaboration:hover h4 {
    color: #f97316;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .perks-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 650px) {
    .perks-grid-premium {
        grid-template-columns: 1fr;
    }
}

/* --- Video Testimonial --- */
.success-stories-video {
    padding: 100px 0;
    background: rgba(15, 23, 42, 0.4);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.video-mock-main {
    max-width: 800px;
    margin: 40px auto 0 auto;
    height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url('https://easy2it.com/wp-content/uploads/2024/06/white-logo.png') no-repeat center;
    background-size: 50% auto;
    background-color: #0c101d;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.video-glow-effect {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--accent-cyan);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
}

.main-play-icon {
    font-size: 64px;
    color: var(--accent-cyan);
    margin-bottom: 16px;
    z-index: 2;
    transition: var(--transition-fast);
}

.video-mock-main:hover .main-play-icon {
    transform: scale(1.1);
    color: #ffffff;
    filter: drop-shadow(0 0 12px rgba(6, 182, 212, 0.8));
}

.video-overlay-text {
    z-index: 2;
    padding: 0 40px;
}

.video-overlay-text h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.video-overlay-text p {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* --- Video Modal Overlay --- */
.video-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 6, 12, 0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 700px;
}

.btn-close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 32px;
    cursor: pointer;
}

.video-aspect-ratio {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #0f172a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.video-placeholder-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
}

.success-icon-large {
    font-size: 48px;
    color: var(--accent-cyan);
    margin-bottom: 20px;
}

.success-quote {
    font-size: 18px;
    font-style: italic;
    color: var(--text-primary);
    max-width: 500px;
    margin-bottom: 12px;
}

.quote-author {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
}

.video-indicator-bar {
    width: 180px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.video-indicator-bar .fill {
    height: 100%;
    width: 75%;
    background: var(--primary-gradient);
    animation: barfill 3s ease infinite;
}

@keyframes barfill {
    0% { width: 0%; }
    50% { width: 85%; }
    100% { width: 100%; }
}

/* --- Student Success Stories & Testimonials --- */
.success-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 100px 24px;
}

.badge-accent {
    display: inline-block;
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-cyan);
    border: 1px solid rgba(6, 182, 212, 0.3);
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.success-desc {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 28px;
}

.success-bullets-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.success-bullets-list li {
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.success-bullets-list li i {
    color: var(--success);
}

.video-container-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
}

.video-preview-header {
    background: rgba(15, 23, 42, 0.6);
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.video-dots {
    display: flex;
    gap: 5px;
}

.video-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
}

.video-title {
    font-size: 12px;
    font-family: monospace;
    color: var(--text-muted);
}

.video-mock-frame {
    height: 280px;
    background: #090e1a;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.video-play-icon {
    font-size: 48px;
    color: var(--accent-cyan);
    margin-bottom: 12px;
    z-index: 2;
    transition: var(--transition-fast);
}

.video-mock-frame:hover .video-play-icon {
    transform: scale(1.1);
}

.video-caption {
    font-size: 13px;
    color: var(--text-secondary);
    z-index: 2;
}

.video-topics-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: rgba(15, 23, 42, 0.85);
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: left;
}

.video-topics-badge strong {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

.video-topics-badge ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    margin-top: 6px;
}

.video-topics-badge li {
    font-size: 11px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.video-topics-badge li::before {
    content: '•';
    color: var(--accent-cyan);
}

/* Testimonials Grid */
.testimonials-section {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: 16px;
    position: relative;
}

.quote-icon {
    color: rgba(6, 182, 212, 0.1);
    font-size: 48px;
    position: absolute;
    top: 16px;
    left: 24px;
    pointer-events: none;
}

.testimonial-card p {
    font-size: 15px;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-author h4 {
    font-size: 14.5px;
    font-weight: 700;
    margin: 0;
}

.testimonial-author span {
    font-size: 12px;
    color: var(--text-muted);
}

/* --- Pricing Plans Section --- */
.plans-section {
    padding: 100px 0;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.plan-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-normal);
}

.plan-card.featured {
    border-color: var(--accent-cyan);
    background: rgba(6, 182, 212, 0.02);
    box-shadow: var(--shadow-neon);
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 9999px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.plan-header {
    text-align: center;
    margin-bottom: 28px;
}

.plan-header h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.plan-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 8px;
}

.plan-price .currency {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-secondary);
}

.plan-price .price-val {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 800;
    color: var(--text-primary);
}

.plan-duration {
    font-size: 13px;
    color: var(--text-muted);
}

.plan-body {
    flex-grow: 1;
    margin-bottom: 36px;
}

.advance-tagline {
    font-size: 13px;
    color: var(--accent-violet);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    text-align: center;
}

.plan-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-features-list li {
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.plan-features-list li i {
    font-size: 16px;
    margin-top: 3px;
}

.plan-features-list li.included {
    color: var(--text-secondary);
}

.plan-features-list li.included i {
    color: var(--success);
}

.plan-features-list li.excluded {
    color: var(--text-muted);
}

.plan-features-list li.excluded i {
    color: var(--error);
}

.plan-footer button {
    width: 100%;
}

/* --- Urgency Section --- */
.urgency-section {
    padding: 80px 0;
}

.urgency-wrapper-card {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.urgency-wrapper-card::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--accent-violet);
    filter: blur(100px);
    border-radius: 50%;
    opacity: 0.12;
    top: -150px;
    right: -150px;
}

.urgency-content {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.urgency-content h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
}

.urgency-desc {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 32px;
}

.urgency-alert-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.25);
    padding: 14px 20px;
    border-radius: 10px;
    color: #fdba74;
    font-size: 13.5px;
    font-weight: 500;
    margin-bottom: 40px;
    text-align: left;
}

.urgency-alert-box i {
    font-size: 18px;
}

/* --- Form active plan badge --- */
.active-plan-badge {
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.25);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 24px;
}

.active-plan-badge strong {
    color: var(--accent-cyan);
}

/* --- FAQ Accordion UI --- */
.faqs-section {
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
}

.faq-accordion-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-question-btn {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 24px;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 15.5px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none;
}

.faq-question-btn i {
    font-size: 14px;
    color: var(--text-muted);
    transition: transform var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-item.active {
    border-color: rgba(139, 92, 246, 0.25);
}

.faq-item.active .faq-question-btn i {
    transform: rotate(180deg);
    color: var(--accent-violet);
}

.faq-answer-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
}

.faq-answer-panel p {
    padding: 0 24px 20px 24px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- Wizard Form Popup Modal & Layout --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 6, 13, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
}

.apply-modal-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    width: 100%;
    max-width: 1100px;
    position: relative;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    margin: auto;
    overflow: hidden;
}

body.light-theme .apply-modal-wrapper {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
}

.apply-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 48px;
    padding: 48px;
    align-items: stretch;
}

.apply-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.apply-info h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.apply-info p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.btn-close-modal {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.btn-close-modal:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    transform: rotate(90deg);
}

.wizard-wrapper {
    position: relative;
    overflow: hidden;
}

/* Hide separate wrapper styling inside the modal overlay to prevent double boxing */
.modal-overlay .wizard-wrapper {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.wizard-header {
    margin-bottom: 32px;
}

/* Progress bar */
.progress-bar-container {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    margin-bottom: 20px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 25%;
    background: var(--primary-gradient);
    border-radius: 2px;
    transition: width var(--transition-slow);
}

/* Step indicator - Premium Pill Badges */
.steps-indicator {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.step-label {
    flex: 1;
    text-align: center;
    padding: 10px 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    transition: all var(--transition-normal);
}

.step-label.active {
    background: rgba(6, 182, 212, 0.06);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.15);
}

.step-label.completed {
    background: rgba(16, 185, 129, 0.06);
    border-color: var(--success);
    color: var(--success);
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
    animation: slideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(16px); }
    to { opacity: 1; transform: translateX(0); }
}

.wizard-step h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-desc {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 28px;
}

/* Grid checklist checkboxes for domains */
.domain-grid-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.domain-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.domain-option-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: rgba(15, 23, 42, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-fast);
    user-select: none;
}

.domain-option-inner i {
    font-size: 18px;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.domain-option-inner .option-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.domain-option input[type="checkbox"]:checked + .domain-option-inner {
    border-color: var(--accent-cyan);
    background: rgba(6, 182, 212, 0.08);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.1);
}

.domain-option input[type="checkbox"]:checked + .domain-option-inner i {
    color: var(--accent-cyan);
}

.domain-option input[type="checkbox"]:checked + .domain-option-inner .option-title {
    color: var(--text-primary);
}

.form-group {
    margin-bottom: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.col-span-3 {
    grid-column: span 3;
}

.field-label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.required {
    color: var(--error);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="url"],
input[type="date"],
select {
    width: 100%;
    background-color: var(--input-bg);
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-primary);
    border-radius: 10px;
    outline: none;
    transition: var(--transition-fast);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="url"]:focus,
input[type="date"]:focus,
select:focus {
    border-color: var(--accent-violet);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.15);
    background-color: var(--input-bg-focus);
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: var(--text-muted);
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 40px;
}

.radio-pill-group {
    display: flex;
    gap: 12px;
}

.radio-pill {
    flex: 1;
}

.radio-pill input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-pill-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(15, 23, 42, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    text-align: center;
}

.radio-pill input[type="radio"]:checked + .radio-pill-inner {
    border-color: var(--accent-violet);
    background: rgba(139, 92, 246, 0.08);
    color: var(--text-primary);
}

.wizard-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.justify-end {
    justify-content: flex-end;
}

.wizard-footer button {
    padding: 12px 24px;
    font-size: 14px;
}

/* Validation styles */
.error-msg {
    display: none;
    color: var(--error);
    font-size: 13px;
    font-weight: 600;
    margin-top: 12px;
    background: rgba(244, 63, 94, 0.05);
    border-left: 3px solid var(--error);
    padding: 8px 12px;
    border-radius: 0 6px 6px 0;
}

.input-error-tip {
    display: none;
    color: var(--error);
    font-size: 12px;
    margin-top: 4px;
}

.form-group.has-error input {
    border-color: var(--error);
    background-color: rgba(244, 63, 94, 0.02);
}

.form-group.has-error .input-error-tip {
    display: block;
}

/* --- File Upload Area --- */
.upload-area {
    border: 2px dashed var(--border-color);
    background: rgba(15, 23, 42, 0.2);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.upload-area:hover, .upload-area.dragover {
    border-color: var(--accent-cyan);
    background: rgba(6, 182, 212, 0.03);
}

.upload-icon {
    font-size: 32px;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.upload-area:hover .upload-icon {
    color: var(--accent-cyan);
}

.upload-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.upload-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.upload-subtitle {
    font-size: 12px;
    color: var(--text-muted);
}

.btn-file-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-file-select:hover {
    background: rgba(255, 255, 255, 0.08);
}

.hidden-file-input {
    display: none;
}

.file-info-badge {
    display: none;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    color: #a7f3d0;
}

.file-info-badge i {
    color: var(--success);
}

.btn-remove-file {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
    display: inline-flex;
    padding: 0 4px;
}

.btn-remove-file:hover {
    color: var(--error);
}

.divider-or {
    display: flex;
    align-items: center;
    margin: 24px 0;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.divider-or::before, .divider-or::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.divider-or span {
    padding: 0 12px;
}

.checkbox-group {
    margin-top: 16px;
}

.checkbox-container {
    display: flex;
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    font-size: 13px;
    user-select: none;
    color: var(--text-secondary);
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: rgba(15, 23, 42, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: var(--transition-fast);
}

.checkbox-container:hover input ~ .checkmark {
    border-color: var(--text-muted);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--accent-violet);
    border-color: var(--accent-violet);
}

.checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark::after {
    display: block;
}

.checkbox-container .checkmark::after {
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label {
    line-height: 1.4;
}

/* --- Success State Screen --- */
.wizard-success-state {
    display: none;
    text-align: center;
    padding: 16px 0;
    animation: popScale 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popScale {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

.success-icon-wrapper {
    margin-bottom: 24px;
    display: inline-flex;
}

.success-icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.3);
    color: var(--success);
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 24px rgba(16, 185, 129, 0.2);
}

.wizard-success-state h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}

.success-main-text {
    color: var(--text-secondary);
    font-size: 15px;
    max-width: 460px;
    margin: 0 auto 32px auto;
}

.success-info-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
    text-align: left;
    margin-bottom: 32px;
}

body.light-theme .success-info-card {
    background: rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.success-info-card h5 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #f8fafc;
}

body.light-theme .success-info-card h5 {
    color: #0f172a;
}

.success-info-card ol {
    padding-left: 20px;
    font-size: 14.5px;
    color: #cbd5e1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    line-height: 1.6;
}

body.light-theme .success-info-card ol {
    color: #334155;
}

.highlight-text {
    color: var(--accent-cyan);
    font-weight: 600;
}

.success-ref-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.success-ref-badge strong {
    color: var(--text-primary);
    font-family: monospace;
    font-size: 14px;
}

/* --- Footer Area --- */
.main-footer {
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px 0;
    background: var(--footer-bg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-primary);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-cyan);
    text-shadow: 0 0 8px rgba(6, 182, 212, 0.3);
}

.footer-logo {
    object-fit: contain;
    margin-bottom: 20px;
}

.footer-logo.logo-dark {
    height: 64px;
}

.footer-logo.logo-light {
    height: 52px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    max-width: 360px;
}

.footer-contact h4, .footer-socials h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact li {
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact li i {
    color: var(--text-muted);
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition-fast);
}

.social-icons a:hover {
    background: var(--primary-gradient);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13px;
}

/* --- Google Reviews Section --- */
.google-reviews-section {
    padding: 100px 0;
    background: rgba(15, 23, 42, 0.2);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.reviews-header-block {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    gap: 24px;
}

.reviews-header-left h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    margin-top: 8px;
}

.badge-accent {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-cyan);
    border: 1px solid rgba(6, 182, 212, 0.2);
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reviews-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.google-rating-score {
    display: flex;
    align-items: center;
    gap: 8px;
}

.google-rating-score .score-val {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
}

.google-rating-score .stars-block {
    display: flex;
    gap: 2px;
    color: #f59e0b;
    font-size: 16px;
}

.google-rating-score .count-val {
    color: var(--text-secondary);
    font-size: 14px;
}

.btn-google-maps {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.btn-google-maps:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--text-muted);
    transform: translateY(-1px);
}

.reviews-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 10px;
}

.reviews-slider-track {
    position: relative;
    width: 100%;
    min-height: 220px;
}

.review-slide-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.96) translateY(5px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.review-slide-card.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0);
    z-index: 2;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer-meta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-violet) 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
}

.reviewer-meta h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.reviewer-meta .review-date {
    font-size: 12px;
    color: var(--text-muted);
}

.card-rating {
    display: flex;
    gap: 2px;
    color: #f59e0b;
    font-size: 14px;
}

.review-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.verified-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--success);
    font-weight: 600;
}

.verified-tag i {
    font-size: 13px;
}

.slider-control-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(22, 30, 49, 0.85);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.slider-control-btn:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: #ffffff;
    box-shadow: var(--shadow-neon-violet);
}

.btn-prev-slide {
    left: -64px;
}

.btn-next-slide {
    right: -64px;
}

.slider-dots-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition-normal);
}

.slider-dot:hover {
    background: var(--text-muted);
}

.slider-dot.active {
    background: var(--accent-cyan);
    width: 20px;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(6, 182, 212, 0.4);
}

/* --- WhatsApp Floating Action Button --- */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #ffffff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition-normal);
    text-decoration: none;
    animation: wa-pulse 2s infinite;
}

.whatsapp-floating-btn:hover {
    transform: scale(1.08);
    background-color: #20ba5a;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: #ffffff;
}

.wa-tooltip {
    position: absolute;
    right: 70px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-soft);
    font-family: var(--font-heading);
}

.whatsapp-floating-btn:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(-5px);
}

@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* --- Theme Toggle Button --- */
.theme-toggle-btn {
    position: fixed;
    bottom: 102px;
    right: 30px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-soft);
    z-index: 999;
    transition: var(--transition-normal);
    cursor: pointer;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.theme-toggle-btn:hover {
    transform: scale(1.08);
    border-color: var(--accent-cyan);
    box-shadow: var(--shadow-neon);
}

.theme-toggle-btn .icon-moon {
    display: none;
}

.theme-toggle-btn .icon-sun {
    display: block;
    color: #f59e0b;
}

body.light-theme .theme-toggle-btn .icon-sun {
    display: none;
}

body.light-theme .theme-toggle-btn .icon-moon {
    display: block;
    color: var(--accent-violet);
}

.theme-tooltip {
    position: absolute;
    right: 70px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-soft);
    font-family: var(--font-heading);
}

.theme-toggle-btn:hover .theme-tooltip {
    opacity: 1;
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .theme-toggle-btn {
        bottom: 84px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    .theme-tooltip {
        display: none;
    }
}

/* --- Media Queries / Responsiveness --- */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    
    .hero-subtitle {
        margin: 0 auto 36px auto;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .reality-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        flex-direction: column;
        gap: 32px;
        padding-left: 20px;
    }
    
    .process-timeline::after {
        width: 2px;
        height: 100%;
        top: 0;
        bottom: 0;
        left: 24px;
    }
    
    .timeline-step {
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }
    
    .timeline-step p {
        margin: 0;
        max-width: 100%;
    }
    
    .step-number {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .perks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .success-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 440px;
        margin: 0 auto;
    }
    
    .apply-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .btn-prev-slide {
        left: -12px;
    }
    .btn-next-slide {
        right: -12px;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .main-header {
        position: sticky;
        top: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border-color);
        color: var(--text-primary);
        font-size: 20px;
        width: 44px;
        height: 44px;
        border-radius: 8px;
        cursor: pointer;
        transition: var(--transition-fast);
        z-index: 101;
    }
    
    .mobile-menu-toggle:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--accent-cyan);
        color: var(--accent-cyan);
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--header-bg);
        border-bottom: 1px solid var(--border-color);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        align-items: stretch;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        z-index: 99;
    }
    
    body.light-theme .nav-links {
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        text-align: center;
        padding: 10px 0;
        width: 100%;
        border-radius: 8px;
    }

    .nav-links a:not(.btn-nav-apply) {
        border: 1px solid transparent;
    }

    .nav-links a:not(.btn-nav-apply):hover {
        background: rgba(255, 255, 255, 0.03);
        border-color: rgba(255, 255, 255, 0.05);
    }

    body.light-theme .nav-links a:not(.btn-nav-apply):hover {
        background: rgba(0, 0, 0, 0.03);
        border-color: rgba(0, 0, 0, 0.05);
    }

    .btn-nav-apply {
        margin-top: 8px;
        text-align: center;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .bullets-feature-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .outcomes-grid {
        grid-template-columns: 1fr;
    }
    
    .perks-grid {
        grid-template-columns: 1fr;
    }
    
    .domain-grid-options {
        grid-template-columns: 1.0fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid-three {
        grid-template-columns: 1fr;
    }
    
    .col-span-3 {
        grid-column: span 1;
    }
    
    .wizard-wrapper {
        padding: 24px 16px;
    }
    
    .steps-indicator {
        display: none;
    }
    
    .faq-question-btn {
        padding: 16px;
        font-size: 14.5px;
    }
    
    .faq-answer-panel p {
        padding: 0 16px 16px 16px;
        font-size: 13px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .reviews-header-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .reviews-header-right {
        align-items: flex-start;
        width: 100%;
    }
    .slider-control-btn {
        display: none;
    }
    .reviews-slider-wrapper {
        padding: 0;
    }
    
    /* Floating Action Buttons Mobile Optimization */
    .whatsapp-floating-btn {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 24px;
        z-index: 999;
    }
    .wa-tooltip {
        display: none;
    }

    .theme-toggle-btn {
        bottom: 84px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 18px;
        z-index: 999;
    }
    .theme-tooltip {
        display: none;
    }

    /* Modal Apply Form Mobile Overrides */
    .modal-overlay {
        padding: 12px;
        align-items: flex-start;
    }

    .apply-modal-wrapper {
        border-radius: 16px;
        max-height: calc(100vh - 24px);
        overflow-y: auto;
        width: auto !important;
        height: auto !important;
        max-width: calc(100vw - 24px) !important;
        box-sizing: border-box;
    }

    .apply-container {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        padding: 50px 16px 20px 16px !important;
        width: auto !important;
        height: auto !important;
        box-sizing: border-box;
    }

    .apply-info {
        text-align: center;
        align-items: center;
        width: 100% !important;
        box-sizing: border-box;
    }

    .apply-info h2 {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .apply-info p {
        font-size: 13.5px;
        margin-bottom: 16px;
    }

    .apply-info .guarantee-box {
        display: none !important; /* Save major vertical space on mobile */
    }

    .apply-info .social-proof-small {
        margin-bottom: 12px;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .apply-info .active-plan-badge {
        margin-bottom: 12px;
    }

    .btn-close-modal {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .wizard-wrapper {
        width: 100% !important;
        box-sizing: border-box;
    }

    .form-group {
        margin-bottom: 16px;
        width: 100%;
    }

    .domain-grid-options {
        grid-template-columns: 1fr !important;
        gap: 8px;
        margin-bottom: 16px;
    }

    .domain-option-inner {
        padding: 10px 14px;
        gap: 10px;
    }

    .domain-option-inner i {
        font-size: 16px;
    }

    .domain-option-inner .option-title {
        font-size: 13px;
    }

    .wizard-footer {
        margin-top: 24px;
        padding-top: 16px;
        gap: 12px;
    }

    .wizard-footer button {
        flex: 1;
        padding: 12px 16px;
        font-size: 13.5px;
    }

    .wizard-footer.justify-end {
        justify-content: flex-end;
    }

    .wizard-footer.justify-end button {
        width: 100%;
        flex: none;
    }

    /* Stacking radio buttons on mobile */
    .radio-pill-group {
        flex-direction: column;
        gap: 8px;
    }

    /* Handling file info badge name overflow */
    .file-info-badge {
        max-width: 100%;
        overflow: hidden;
    }

    #file-name-txt {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: calc(100% - 40px);
    }
}

/* --- SEO Featured Snippet Section --- */
.seo-featured-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.featured-snippet-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.snippet-content h2.featured-snippet-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    margin-top: 12px;
    margin-bottom: 20px;
    color: var(--text-primary);
    line-height: 1.2;
}

.snippet-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.snippet-desc strong {
    color: var(--accent-cyan);
    font-weight: 700;
}

.geo-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.snippet-bullets h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.benefits-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefits-checklist li {
    font-size: 14.5px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.benefits-checklist i {
    color: var(--accent-cyan);
    font-size: 16px;
}

@media (max-width: 992px) {
    .featured-snippet-card {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px;
    }
}

/* --- Google Reviews Section - Light Mode Theme Overrides --- */
body.light-theme .google-reviews-section {
    background: rgba(139, 92, 246, 0.035); /* Elegant ultra-soft violet tint */
    border-color: rgba(15, 23, 42, 0.08);
}

body.light-theme .btn-google-maps {
    background: rgba(15, 23, 42, 0.03);
    border-color: rgba(15, 23, 42, 0.1);
    color: var(--text-primary);
}

body.light-theme .btn-google-maps:hover {
    background: rgba(15, 23, 42, 0.07);
    border-color: rgba(15, 23, 42, 0.25);
    color: var(--text-primary);
}

body.light-theme .slider-control-btn {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(15, 23, 42, 0.1);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.06);
}

body.light-theme .slider-control-btn:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: #ffffff;
    box-shadow: var(--shadow-neon-violet);
}

body.light-theme .slider-dot {
    background: rgba(15, 23, 42, 0.15);
}

body.light-theme .slider-dot:hover {
    background: rgba(15, 23, 42, 0.35);
}

body.light-theme .slider-dot.active {
    background: var(--accent-cyan);
}

/* --- Premium Modal Wizard Light Theme Color Combination Enhancements --- */
body.light-theme .domain-option-inner {
    background: #f1f5f9;
    border-color: rgba(15, 23, 42, 0.08);
}
body.light-theme .domain-option-inner:hover {
    background: #e2e8f0;
    border-color: rgba(15, 23, 42, 0.15);
}
body.light-theme .domain-option-inner .option-title {
    color: #334155;
}
body.light-theme .domain-option-inner i {
    color: #64748b;
}
body.light-theme .domain-option input[type="checkbox"]:checked + .domain-option-inner {
    border-color: var(--accent-cyan);
    background: rgba(6, 182, 212, 0.08);
}
body.light-theme .domain-option input[type="checkbox"]:checked + .domain-option-inner .option-title {
    color: #0f172a;
}
body.light-theme .domain-option input[type="checkbox"]:checked + .domain-option-inner i {
    color: var(--accent-cyan);
}

body.light-theme .radio-pill-inner {
    background: #f1f5f9;
    border-color: rgba(15, 23, 42, 0.08);
    color: #334155;
}
body.light-theme .radio-pill-inner:hover {
    background: #e2e8f0;
    border-color: rgba(15, 23, 42, 0.15);
}
body.light-theme .radio-pill input[type="radio"]:checked + .radio-pill-inner {
    border-color: var(--accent-violet);
    background: rgba(139, 92, 246, 0.08);
    color: var(--accent-violet);
}

/* --- Social Proof overlapping avatars list styling --- */
.social-proof-small {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    margin-bottom: 24px;
}
.avatars {
    display: flex;
    align-items: center;
}
.social-proof-small .avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-left: -8px;
    border: 2px solid var(--bg-dark);
    background: rgba(15, 23, 42, 0.4);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: var(--transition-fast);
}
.social-proof-small .avatar:first-child {
    margin-left: 0;
}
.social-proof-small .avatar.bg-blue {
    background: rgba(6, 182, 212, 0.12);
    color: var(--accent-cyan);
}
.social-proof-small .avatar.bg-purple {
    background: rgba(139, 92, 246, 0.12);
    color: var(--accent-violet);
}
.social-proof-text {
    font-size: 13.5px;
    color: var(--text-secondary);
    font-weight: 500;
}
body.light-theme .social-proof-small .avatar {
    border-color: #ffffff;
    background: #f1f5f9;
}
