/* =========================================
   WebROIMantra V4 - Immersive 3D Experience
   ========================================= */

/* Use V3 as base structure - importing logic handled by copy/paste for standalone file */
/* [COPY OF styles_v3.css CONTENT] */

/* --- IMPORTING V1 BASE STYLES --- */
:root {
    /* Colors - Light Theme */
    --bg-dark: #f8fafc;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f5f9;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --primary: #10b981;
    --primary-glow: rgba(16, 185, 129, 0.2);
    --primary-dark: #059669;
    --accent: #f59e0b;
    --border-color: rgba(15, 23, 42, 0.08);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1200px;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.text-accent {
    color: var(--primary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--text-main) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

/* Animation Utilities */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(255, 255, 255, 0.05);
    /* Ultra subtle transparency for overlay feeling */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

/* Scrolled state (optional JS can toggle class 'scrolled' for solid bg) */
.navbar:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: -0.5px;
    font-family: var(--font-heading);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-family: var(--font-body);
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hover Underline Effect */
.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease-in-out;
}

.nav-links a:not(.btn-primary):hover::after {
    width: 100%;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--primary);
}

/* Nav Button Specifics */
.btn-nav {
    padding: 10px 24px !important;
    font-size: 0.95rem !important;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--heading-color);
}

/* --- HERO V4 (IMMERSIVE 3D) --- */
.hero-v3 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: var(--header-height);
    perspective: 1200px;
    /* Enhanced Perspective for V4 */
    z-index: 0;
    background: #000;
}

.video-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.video-bg-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

/* Floating 3D Elements */
.floating-scene {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.floating-item {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    animation: float 6s ease-in-out infinite;
    /* V4 Enhancements */
    transition: transform 0.1s linear;
    /* Smooth mouse tracking */
}

/* Position items same as V3 */
.item-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
    transform: rotate(-10deg);
}

.item-2 {
    bottom: 25%;
    right: 15%;
    animation-delay: 1.5s;
    transform: rotate(10deg);
    color: #f59e0b;
}

.item-3 {
    top: 15%;
    right: 25%;
    animation-delay: 1s;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.item-4 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2.5s;
    width: 70px;
    height: 70px;
    font-size: 2rem;
    color: #3b82f6;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.hero-container-v3 {
    position: relative;
    z-index: 4;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px !important;
    /* V4 Tilt Context */
    transform-style: preserve-3d;
}

/* Glass Card - V4 TILT READY */
.glass-card {
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    text-align: center;
    max-width: 1000px;
    /* V4 Enable 3D Transform */
    transform-style: preserve-3d;
    will-change: transform;
}

/* Typography V4 */
.text-gradient-animated {
    background: linear-gradient(to right, #BF953F 0%, #FCF6BA 25%, #b38728 50%, #FBF5B7 75%, #AA771C 100%);
    background-size: 200% auto;
    color: #fff;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.8));
    /* V4 Pop */
    transform: translateZ(50px);
}

@keyframes shine {
    to {
        background-position: -200% center;
    }
}

.mega-title {
    font-size: 5.5rem !important;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 30px !important;
    color: #ffffff !important;
    text-shadow: 0 5px 30px rgba(0, 0, 0, 0.8);
    /* V4 Depth */
    transform: translateZ(80px);
    /* Pop out more */
}

.hero-subtitle {
    color: #ffffff !important;
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    transform: translateZ(40px);
}

.hero-subtitle strong {
    color: var(--primary);
    font-weight: 700;
}

.glowing-badge {
    background: rgba(16, 185, 129, 0.2) !important;
    border: 1px solid var(--primary) !important;
    color: #fff !important;
    padding: 8px 24px !important;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
    backdrop-filter: blur(5px);
    transform: translateZ(20px);
}

.hero-cta-group {
    transform: translateZ(60px);
}

/* V4 Particles Canvas */
#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    /* Above overlay (1) but below text */
    pointer-events: none;
}

/* Hero Specific Button Overrides (High Contrast) */
.hero-cta-group .btn-glass {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid #ffffff !important;
    color: #0f172a !important;
    /* Dark Text */
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-cta-group .btn-glass:hover {
    background: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: #0f172a !important;
}

/* V4 Particles Canvas */
#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    /* Just underneath content */
    pointer-events: none;
}

/* Impact Bar */
.impact-bar {
    background: #0f172a;
    padding: 30px 0;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
}

.impact-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    align-items: center;
}

.impact-item {
    text-align: center;
}

.impact-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
}

.impact-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.impact-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .impact-grid {
        flex-direction: column;
        gap: 30px;
    }

    .impact-divider {
        width: 40px;
        height: 1px;
    }
}

/* REST OF V1 STYLES */
/* Trust Bar */
.trust-bar {
    background: var(--bg-card);
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-label {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.logo-item {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-muted);
    opacity: 0.5;
    white-space: nowrap;
    padding: 0 50px;
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% / 3));
    }
}

.logo-track:hover {
    animation-play-state: paused;
}

/* Sections General */
.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Problem Section ("Premium Tech" - Light Theme) --- */
.section-problem {
    background: #f1f5f9;
    /* Slate 100 */
    padding: 100px 0;
    color: #0f172a;
    position: relative;
    overflow: hidden;
}

/* Tech Grid Pattern Background */
.section-problem::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image:
        linear-gradient(#e2e8f0 1px, transparent 1px),
        linear-gradient(90deg, #e2e8f0 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center top;
    opacity: 0.5;
    z-index: 0;
    mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

/* Premium Glass Card */
.problem-card {
    background: rgba(255, 255, 255, 0.85);
    /* Milky Glass */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    padding: 50px 30px;
    border-radius: 24px;

    /* Layered Borders for Depth */
    border: 1px solid #ffffff;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 20px 40px -10px rgba(15, 23, 42, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    /* Inner Highlight */

    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Hover: Pop & Warning Tint */
.problem-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: #ffffff;
    box-shadow:
        0 25px 50px -12px rgba(15, 23, 42, 0.15),
        0 0 0 1px rgba(239, 68, 68, 0.2);
    /* Red Border Rim */
}

/* Decorative Gradient Blotches inside card */
.problem-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(239, 68, 68, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.problem-card:hover::after {
    opacity: 1;
}

/* Icon - Floating Gradient */
.problem-icon {
    width: 72px;
    height: 72px;
    /* Gradient Mesh Icon Container */
    background: linear-gradient(135deg, #ffffff 0%, #fee2e2 100%);
    color: #ef4444;
    border-radius: 20px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;

    /* 3D shadow for icon */
    box-shadow:
        0 10px 20px -5px rgba(239, 68, 68, 0.2),
        0 4px 6px -2px rgba(239, 68, 68, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 1);

    transition: all 0.4s ease;
    border: 1px solid #fee2e2;
}

.problem-card:hover .problem-icon {
    transform: scale(1.1) rotate(-5deg);
    background: #ef4444;
    color: white;
    border-color: #ef4444;
    box-shadow: 0 15px 30px -5px rgba(239, 68, 68, 0.4);
}

/* Typography Overrides */
.section-problem .section-title {
    color: #0f172a;
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: none;
    font-weight: 800;
}

.section-problem .section-subtitle {
    color: #475569;
    /* Slate 600 - Darker/Crisper */
    font-size: 1.25rem;
    max-width: 700px;
    text-shadow: none;
    font-weight: 500;
}

.problem-card h3 {
    color: #0f172a;
    margin-bottom: 16px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.problem-card p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* --- "Service Deck" Layout (Interactive) --- */
.section-services {
    background: #f8fafc;
    /* Light Slate BG */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.services-deck-container {
    display: flex;
    max-width: 1100px;
    margin: 50px auto 0;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 60px -10px rgba(15, 23, 42, 0.08);
    /* Premium Shadow */
    border: 1px solid #e2e8f0;
    overflow: hidden;
    min-height: 500px;
    /* Force height */
}

/* Left: Menu */
.services-menu {
    flex: 0 0 350px;
    background: #f8fafc;
    /* Slightly darker */
    padding: 30px;
    border-right: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.deck-item {
    padding: 16px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    border: 1px solid transparent;
}

.deck-item:hover {
    background: rgba(255, 255, 255, 0.5);
}

.deck-item.active {
    background: #ffffff;
    box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.05);
    border-color: #e2e8f0;
}

.deck-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 4px;
    background: #10b981;
    /* Emerald Accent */
    border-radius: 0 4px 4px 0;
}

.deck-icon-small {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    border: 1px solid #e2e8f0;
    font-size: 1rem;
    transition: 0.2s;
}

.deck-item.active .deck-icon-small {
    background: #ecfdf5;
    color: #059669;
    border-color: #a7f3d0;
}

.deck-label h4 {
    margin: 0;
    font-size: 1rem;
    color: #0f172a;
    font-weight: 600;
}

.deck-label span {
    font-size: 0.8rem;
    color: #64748b;
}

.deck-arrow {
    margin-left: auto;
    color: #94a3b8;
    font-size: 0.8rem;
    opacity: 0;
    transition: 0.2s;
}

.deck-item.active .deck-arrow {
    opacity: 1;
    color: #10b981;
}


/* Right: Stage (Bold & Noticeable) */
.services-stage {
    flex: 1;
    padding: 60px;
    position: relative;
    /* Distinct Background Color to make it a "Focus Box" */
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-left: 1px solid #bbf7d0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-panel {
    display: none;
    /* Hidden by default */
    animation: slideFade 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-panel.active {
    display: block;
}

@keyframes slideFade {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.panel-icon-large {
    width: 90px;
    /* Larger */
    height: 90px;
    background: #ffffff;
    color: #059669;
    border-radius: 24px;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    /* Deep Shadow for 3D Pop */
    box-shadow:
        0 20px 40px -10px rgba(16, 185, 129, 0.2),
        0 0 0 1px rgba(16, 185, 129, 0.1);
}

.service-panel h3 {
    font-size: 2.75rem;
    /* Huge Title */
    background: linear-gradient(to right, #0f172a, #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.panel-lead {
    font-size: 1.35rem;
    /* Larger, readable text */
    color: #475569;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 550px;
    font-weight: 500;
}

.panel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.panel-tags span {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 1rem;
    color: #0f172a;
    font-weight: 600;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    transition: 0.2s;
}

.panel-tags span:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #10b981;
}

.panel-tags span i {
    color: #10b981;
    margin-right: 10px;
}

/* Mobile Responsive For Deck */
@media (max-width: 900px) {
    .services-deck-container {
        flex-direction: column;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        border: none;
    }

    .services-menu {
        flex: none;
        background: transparent;
        border: none;
        padding: 0 20px;
        margin-bottom: 30px;
        overflow-x: auto;
        flex-direction: row;
        width: 100%;
        gap: 10px;
    }

    .deck-item {
        background: white;
        min-width: 250px;
        border: 1px solid #e2e8f0;
    }

    .services-stage {
        padding: 20px;
        background: white;
        border-radius: 20px;
        margin: 0 20px;
        border: 1px solid #e2e8f0;
    }
}

/* Audience Section */
.section-audience {}

.audience-split {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.audience-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.agent-block {
    direction: rtl;
}

.agent-block .audience-content {
    direction: ltr;
}

.audience-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.audience-content h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.audience-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.audience-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.audience-features li i {
    color: var(--accent);
}

.audience-image {
    height: 400px;
    background: var(--bg-card);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.img-placeholder {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1.2rem;
    opacity: 0.5;
}

/* Testimonials - Premium Redesign */
.section-testimonials {
    background: #f8fafc;
    /* Very light slate bg */
    padding: 100px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(16, 185, 129, 0.1);
    /* Slight primary tint */
}

/* Watermark Quote Icon */
.quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.05;
    pointer-events: none;
    transition: 0.3s;
}

.testimonial-card:hover .quote-icon {
    transform: rotate(-10deg) scale(1.1);
    opacity: 0.1;
}

.testimonial-card .stars {
    color: #fbbf24;
    /* Amber 400 */
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.client-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--heading-color);
    display: flex;
    align-items: center;
    gap: 6px;
}

.verified-badge {
    color: #3b82f6;
    /* Blue tick for trust */
    font-size: 0.9em;
}

.client-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Process Section - Premium Redesign */
.section-process {
    background: linear-gradient(to bottom, var(--bg-dark) 0%, #fff 100%);
    padding: 120px 0;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    max-width: 1200px;
    margin: 50px auto 0;
}

/* The Connector Line */
.step-line {
    flex: 0 0 100px;
    height: 4px;
    background: linear-gradient(to right, #e2e8f0 0%, var(--primary) 50%, #e2e8f0 100%);
    margin-top: 60px;
    /* Align with icon center roughly */
    border-radius: 4px;
    opacity: 0.5;
}

.step-item {
    flex: 1;
    position: relative;
}

/* The Card */
.step-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.05);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.step-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.2);
}

/* Number Badge (01, 02) */
.step-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(15, 23, 42, 0.03);
    font-family: var(--font-heading);
    line-height: 1;
    transition: 0.3s;
}

.step-card:hover .step-badge {
    color: rgba(16, 185, 129, 0.1);
    transform: scale(1.1);
}

/* Main Icon */
.step-icon {
    width: 80px;
    height: 80px;
    /* Gradient Background */
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    box-shadow: inset 0 0 0 1px rgba(16, 185, 129, 0.2);
    transition: 0.5s ease;
}

.step-card:hover .step-icon {
    background: var(--primary);
    color: white;
    transform: rotateY(180deg);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.4);
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Footer / CTA */
.footer {
    background: #020617;
    padding: 80px 0 30px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Background Mesh Gradient for Footer (Subtle) */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-box {
    /* Frosted Aurora Effect */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px 40px;
    border-radius: 24px;
    margin-bottom: 80px;

    /* Bright, crisp borders */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 1px solid rgba(16, 185, 129, 0.5);
    /* Emerald Top Highlight */
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);

    box-shadow:
        0 30px 60px -15px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
    /* Inner Glow */

    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
}

/* Aurora Glow behind the box */
.cta-box::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 20%;
    width: 60%;
    height: 140%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 60%);
    transform: skewX(-20deg);
    pointer-events: none;
    z-index: -1;
    filter: blur(40px);
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: white;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-form {
    max-width: 650px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    text-align: left;
}

/* On mobile, stack them */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 16px;
    }
}

.form-group {
    margin-bottom: 16px;
}

.form-group input {
    width: 100%;
    padding: 18px 24px;
    border-radius: 12px;

    /* Light "Paper" Input Style */
    background: #ffffff;
    border: 1px solid #cbd5e1;

    color: #0f172a;
    /* Dark Text for readability */
    font-size: 1.05rem;
    font-weight: 500;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.form-group input:focus {
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-card);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.btn-block {
    width: 100%;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.social-links a:hover {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-container-v3 {
        max-width: 100%;
        padding: 0 1.5rem;
    }

    /* Fix Typography Sizing */
    .mega-title {
        font-size: 2.8rem !important;
        margin-bottom: 20px !important;
    }

    /* Fix overlapping text */
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0;
    }

    /* Hide floating icons on mobile for cleaner view */
    .floating-item {
        display: none !important;
    }

    /* Ensure Header is Visible */
    .logo {
        color: #ffffff !important;
        position: relative;
        z-index: 1001;
    }

    .mobile-menu-btn {
        display: block;
        color: #ffffff !important;
        z-index: 1001;
    }

    .audience-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .agent-block {
        direction: ltr;
    }

    .audience-image {
        order: -1;
        height: 300px;
    }

    .process-steps {
        flex-direction: column;
        gap: 30px;
    }

    .step-line {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-v3 .hero-title {
        font-size: 2.5rem;
    }

    /* Stack buttons nicely on mobile */
    .hero-v3 .hero-cta-group {
        display: flex !important;
        /* Force Flexbox */
        flex-direction: column;
        gap: 10px !important;
        /* Tighter Gap */
        width: 100%;
        padding: 0 35px;
    }

    .hero-v3 .hero-cta-group .btn {
        width: 100%;
        justify-content: center;
        /* SLEEK COMPACT SIZING */
        padding: 11px 18px !important;
        font-size: 0.95rem !important;
        box-sizing: border-box;
        min-height: 48px;
        margin-bottom: 0px;
        /* Reset margins */
    }

    /* Fallback spacer for first button if gap fails */
    .hero-v3 .hero-cta-group .btn:first-child {
        margin-bottom: 10px;
    }

    .hero-v3 .hero-cta-group .btn {
        width: 100%;
        justify-content: center;
        /* SLEEK COMPACT SIZING */
        padding: 11px 18px !important;
        font-size: 0.95rem !important;
        box-sizing: border-box;
        min-height: 48px;
    }
}