:root {
    /* Color Palette - Premium SaaS Theme */
    --primary: #2B6AFF; /* Royal Blue */
    --primary-light: #4E8BFF;
    --primary-dark: #1A4BD3;
    --accent: #FF6B6B; /* Coral/Orange for CTAs */
    --accent-hover: #FF5252;
    --secondary: #6366F1; /* Indigo */
    
    --text-main: #111827;
    --text-muted: #4B5563;
    --text-light: #9CA3AF;
    
    --bg-main: #FFFFFF;
    --bg-soft: #F9FAFB;
    --bg-accent: #EEF2FF;
    
    --border: #E5E7EB;
    --white: #FFFFFF;
    
    /* Spacing & Sizing */
    --container-width: 1200px;
    --header-height: 80px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
}


a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--bg-accent);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-padding {
    padding: 100px 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(43, 106, 255, 0.39);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(43, 106, 255, 0.23);
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
}

.btn-accent:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
}

.btn-ghost:hover {
    background: var(--bg-soft);
    border-color: var(--text-light);
}

/* ═══════════════════════════════════════════
   PREMIUM NAV — GWC Header
═══════════════════════════════════════════ */

/* Base bar */
.gwc-navbar {
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 1050;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scrolled state — added via JS */
.gwc-navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06);
    border-bottom-color: transparent;
}

/* Container height */
.gwc-nav-container {
    height: 76px;
    display: flex;
    align-items: center;
}

/* Logo */
.gwc-logo { padding: 0; margin-right: 2rem; flex-shrink: 0; }
.gwc-logo-img { height: 62px; width: auto; display: block; }

/* Nav link list */
.gwc-nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Individual link */
.gwc-link {
    position: relative;
    display: inline-block;
    padding: 10px 16px !important;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #475467 !important;
    letter-spacing: -0.01em;
    white-space: nowrap;
    transition: color 0.25s ease;
}

/* Animated underline */
.gwc-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.gwc-link:hover,
.gwc-link:focus { color: var(--primary) !important; }
.gwc-link:hover::after { transform: scaleX(1); }

/* Hide BS caret and use our own tiny icon */
.gwc-link.dropdown-toggle::after {
    display: none;
}
.gwc-link.dropdown-toggle {
    padding-right: 20px !important;
}
.gwc-link.dropdown-toggle::before {
    content: '›';
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 1.1rem;
    line-height: 1;
    transition: transform 0.25s ease, color 0.2s;
    color: #888;
}
.gwc-has-mega.show .gwc-link.dropdown-toggle::before {
    transform: translateY(-50%) rotate(-90deg);
    color: var(--primary);
}

/* ── Mega Dropdown ── */
.gwc-mega-menu {
    min-width: 680px;
    padding: 24px;
    border: 1px solid #EAECF0;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.04);
    background: #fff;
    margin-top: 10px !important;
    animation: dropFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes dropFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.gwc-mega-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}

.gwc-mega-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
    color: inherit;
    border: 1px solid transparent;
}

.gwc-mega-item:hover {
    background: #F8FAFC;
    transform: translateY(-2px);
    border-color: #E2E8F0;
    text-decoration: none;
    box-shadow: 0 8px 16px rgba(0,0,0,0.03);
}

.gwc-mega-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: rgba(43, 106, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.gwc-mega-item:hover .gwc-mega-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 6px 14px rgba(43,106,255,0.25);
}

.gwc-mega-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 2px;
}

.gwc-mega-text strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.2;
    transition: color 0.2s ease;
}

.gwc-mega-item:hover .gwc-mega-text strong {
    color: var(--primary);
}

.gwc-mega-text small {
    font-size: 0.85rem;
    color: #64748B;
    line-height: 1.5;
}

/* ── CTA Button ── */
.gwc-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--primary);
    color: #fff !important;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    border-radius: 9999px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 14px rgba(43, 106, 255, 0.25);
}

/* Shimmer sweep on hover */
.gwc-cta-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -75%;
    width: 50%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.22), transparent);
    transition: left 0.5s ease;
}

.gwc-cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(43, 106, 255, 0.35);
    text-decoration: none;
}

.gwc-cta-btn:hover::before { left: 125%; }

.gwc-cta-btn .bi-arrow-right {
    transition: transform 0.2s ease;
}
.gwc-cta-btn:hover .bi-arrow-right {
    transform: translateX(3px);
}

/* ── Custom Hamburger ── */
.gwc-toggler {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 4px;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    cursor: pointer;
}

.gwc-bar {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: #111827;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}
.gwc-bar:nth-child(1) { width: 24px; }
.gwc-bar:nth-child(2) { width: 18px; }
.gwc-bar:nth-child(3) { width: 24px; }

/* X state when open */
.gwc-toggler[aria-expanded="true"] .gwc-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    width: 24px;
}
.gwc-toggler[aria-expanded="true"] .gwc-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.gwc-toggler[aria-expanded="true"] .gwc-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    width: 24px;
}

/* ── Mobile collapsed nav ── */
@media (max-width: 991px) {
    .gwc-nav-container { height: 68px; }
    #mainNav {
        padding: 16px 0 20px;
        border-top: 1px solid #EAECF0;
        margin-top: 8px;
    }
    .gwc-link {
        padding: 10px 4px !important;
        border-bottom: 1px solid #F3F4F6;
    }
    .gwc-link::after { display: none; }
    .gwc-mega-menu { min-width: 100%; border-radius: 12px; }
    .gwc-mega-inner { grid-template-columns: 1fr; }
    .gwc-cta-btn { margin-top: 16px; width: 100%; justify-content: center; }
}



/* Advanced Hero SaaS */
.hero-saas {
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    background: var(--white);
}

/* Creative Hero Styles */
.creative-hero {
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-bg-anim {
    position: absolute;
    inset: -5%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    animation: kenBurns 25s infinite alternate ease-in-out;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 10, 30, 0.85) 0%, rgba(5, 10, 30, 0.6) 100%);
    z-index: 1;
}

.flare {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    opacity: 0.5;
    animation: floatFlare 15s infinite alternate ease-in-out;
}

.flare-1 {
    width: 600px; height: 600px;
    background: var(--primary);
    top: -200px; left: -100px;
}

.flare-2 {
    width: 500px; height: 500px;
    background: var(--accent);
    bottom: -100px; right: 10%;
    animation-delay: -5s;
}

@keyframes floatFlare {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

.creative-hero .hero-grid {
    z-index: 2;
}

/* Floating Glass Card */
.floating-glass-card {
    position: absolute;
    left: 8%;
    top: 35%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 24px;
    color: white;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    z-index: 3;
    animation: floatVertical 6s infinite alternate ease-in-out;
    display: flex;
    align-items: center;
    gap: 16px;
}

@keyframes floatVertical {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

.glass-icon {
    width: 48px; height: 48px;
    background: rgba(43, 106, 255, 0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
}

.glass-text h4 { font-size: 1.5rem; margin-bottom: 4px; color: white; }
.glass-text p { font-size: 0.875rem; color: rgba(255,255,255,0.7); margin: 0; }

@media (max-width: 991px) {
    .floating-glass-card { display: none; }
}

.hero-grid {
    position: relative;
    z-index: 1;
}

.title-line { 
    overflow: hidden;
    padding-top: 10px;
    margin-top: -10px;
    padding-bottom: 10px;
    margin-bottom: -10px;
}

.hero-title {
    font-size: clamp(2rem, 3.9vw, 2.9rem);
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--text-main);
    letter-spacing: -0.03em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--white) 0%, #A0B2FF 50%, var(--white) 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradientFlow 4s linear infinite;
}

@keyframes gradientFlow {
    to { background-position: 200% center; }
}

.hover-glow {
    filter: drop-shadow(0 0 10px rgba(160, 178, 255, 0.4));
}

.text-gradient {
    color: var(--primary);
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-desc {
    font-size: clamp(1.125rem, 2vw, 1rem);
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 580px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
}

/* ── Hero Form Card — Premium Redesign ── */
.hero-form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 0;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.35),
        0 12px 32px rgba(0, 0, 0, 0.18),
        0 0 0 1px rgba(255,255,255,0.08);
    overflow: hidden;
    position: relative;
}


.hero-form-header {
    padding: 28px 32px 0;
    margin-bottom: 20px;
}

.hero-form-header h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 5px;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.hero-form-header p {
    font-size: 0.85rem;
    color: #6B7280;
    margin: 0;
    line-height: 1.5;
}

.hero-form {
    padding: 0 32px 28px;
}

.hf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hf-group {
    margin-bottom: 13px;
}

.hf-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hf-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.hf-input-wrap > i:first-child {
    position: absolute;
    left: 13px;
    color: #9CA3AF;
    font-size: 0.9rem;
    pointer-events: none;
    z-index: 1;
    transition: color 0.2s ease;
}

.hf-input-wrap input,
.hf-input-wrap select {
    width: 100%;
    padding: 10px 13px 10px 36px;
    background: #F9FAFB;
    border: 1.5px solid #E5E7EB;
    border-radius: 10px;
    color: #111827;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.hf-input-wrap input::placeholder {
    color: #C2C8D2;
    font-weight: 400;
}

.hf-input-wrap select {
    color: #6B7280;
    cursor: pointer;
}

.hf-input-wrap select.selected {
    color: #111827;
}

.hf-input-wrap select option {
    background: #ffffff;
    color: #111827;
}

.hf-input-wrap input:focus,
.hf-input-wrap select:focus {
    border-color: #2B6AFF;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(43, 106, 255, 0.12);
}

.hf-input-wrap:focus-within > i:first-child {
    color: #2B6AFF;
}

.hf-select-wrap .hf-arrow {
    position: absolute;
    right: 13px;
    color: #9CA3AF;
    font-size: 0.72rem;
    pointer-events: none;
    transition: transform 0.2s ease;
}

.hf-select-wrap select:focus ~ .hf-arrow {
    transform: rotate(180deg);
    color: #2B6AFF;
}

/* Divider */
.hf-divider {
    height: 1px;
    background: #F3F4F6;
    margin: 6px 0 16px;
}

.hf-submit {
    width: 100%;
    padding: 13px 20px;
    background: linear-gradient(135deg, #2B6AFF 0%, #4E8BFF 100%);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 20px rgba(43, 106, 255, 0.45);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

/* Shimmer on button */
.hf-submit::after {
    content: '';
    position: absolute;
    top: 0; left: -80%;
    width: 60%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.22), transparent);
    transition: left 0.55s ease;
}

.hf-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(43, 106, 255, 0.5);
}

.hf-submit:hover::after {
    left: 130%;
}

.hf-submit:active {
    transform: translateY(0);
}

.hf-note {
    text-align: center;
    font-size: 0.76rem;
    color: #9CA3AF;
    margin-top: 10px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.hf-note i {
    color: #10b981;
    font-size: 0.85rem;
}

@media (max-width: 991px) {
    .hero-form-card {
        margin-top: 20px;
    }
    .hero-form-header {
        padding: 24px 24px 0;
    }
    .hero-form {
        padding: 0 24px 24px;
    }
    .hf-row {
        grid-template-columns: 1fr;
    }
}

/* Premium Button Hover */
.btn-primary {
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease, background-color 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(43, 106, 255, 0.3);
}

.btn-ghost {
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    background: rgba(43, 106, 255, 0.05);
    color: var(--primary);
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.9375rem;
    color: var(--text-main);
    font-weight: 500;
}

.avatars { display: flex; margin-right: -10px; }
.avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -12px;
    box-shadow: var(--shadow-sm);
}

/* Hero Image Banner */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 4px solid var(--white);
    background: var(--bg-soft);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.03);
}

/* ── Logo Cloud ── */
.logo-cloud {
    padding: 52px 0;
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.logo-cloud-label {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.logo-cloud-label::before,
.logo-cloud-label::after {
    content: '';
    display: block;
    height: 1px;
    width: 48px;
    background: var(--border);
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    user-select: none;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 12px;
    min-width: 100%;
    animation: scrollX 35s linear infinite;
}

@keyframes scrollX {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-100% - 12px)); }
}

.marquee-content:hover {
    animation-play-state: paused;
}

.logo-grid {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 9999px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: -0.01em;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    cursor: default;
}

.brand-logo:hover {
    color: var(--primary);
    border-color: rgba(43,106,255,0.35);
    box-shadow: 0 4px 12px rgba(43,106,255,0.1);
    transform: translateY(-2px);
}

.brand-logo i {
    font-size: 0.78rem;
    color: var(--text-light);
    transition: color 0.2s ease;
}

.brand-logo:hover i {
    color: var(--primary);
}

/* ── Services Panel — Premium Redesign ── */
.svc-panel {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

/* Left Nav */
.svc-nav {
    background: var(--bg-soft);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    padding: 12px;
    gap: 4px;
}

.svc-nav-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: 12px;
    background: transparent;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.svc-nav-btn:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.svc-nav-btn.active {
    background: var(--white);
    box-shadow: 0 2px 12px rgba(43,106,255,0.10);
}

.svc-nav-btn.active .svc-nav-icon {
    background: var(--primary);
    color: #fff;
}

.svc-nav-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg-accent);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}

.svc-nav-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.svc-nav-text strong {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
}

.svc-nav-text small {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.3;
}

.svc-nav-arrow {
    font-size: 0.75rem;
    color: var(--text-light);
    opacity: 0;
    transition: opacity 0.2s, color 0.2s;
}

.svc-nav-btn.active .svc-nav-arrow,
.svc-nav-btn:hover .svc-nav-arrow {
    opacity: 1;
    color: var(--primary);
}

/* Right Content */
.svc-content {
    padding: 60px 50px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.svc-pane { display: none; }
.svc-pane.active {
    display: flex;
    flex-direction: column;
    animation: svcFadeIn 0.35s ease;
}

.svc-pane.aria-v-center {
    justify-content: center;
    min-height: 100%;
}

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

/* Pane Top: icon badge + heading */
.svc-pane-top {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}

.svc-pane-badge {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(43,106,255,0.25);
}

.svc-pane-top h3 {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 6px;
    letter-spacing: -0.03em;
}

.svc-pane-top p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Stats Row */
.svc-stats {
    display: flex;
    gap: 0;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 28px;
}

.svc-stat {
    flex: 1;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-right: 1px solid var(--border);
}

.svc-stat:last-child { border-right: none; }

.svc-stat strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.04em;
    line-height: 1;
}

.svc-stat span {
    font-size: 0.76rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Feature Pills */
.svc-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 28px;
}

.svc-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-main);
    font-weight: 500;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 9px 14px;
}

.svc-feature i {
    color: var(--primary);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* CTA Link */
.svc-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    background: var(--primary);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 14px rgba(43,106,255,0.3);
    letter-spacing: 0.01em;
}

.svc-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(43,106,255,0.35);
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .svc-panel {
        grid-template-columns: 1fr;
    }
    .svc-nav {
        flex-direction: column;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 16px;
        gap: 8px;
    }
    .svc-nav-btn {
        width: 100%;
        padding: 12px 16px;
    }
    .svc-nav-arrow { display: block; }
    .svc-content { padding: 32px 24px; }
    .svc-features { grid-template-columns: 1fr; }
    .svc-pane-top { 
        flex-direction: column; 
        align-items: flex-start;
        gap: 16px;
    }
}

/* ── Process / How It Works ── */
.process-section {
    background: var(--white);
    position: relative;
}

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

/* Optional connecting line behind cards on desktop */
@media (min-width: 992px) {
    .process-grid::before {
        content: '';
        position: absolute;
        top: 40px;
        left: 50px;
        right: 50px;
        height: 2px;
        background: linear-gradient(90deg, rgba(43,106,255,0.1) 0%, rgba(43,106,255,0.5) 50%, rgba(43,106,255,0.1) 100%);
        z-index: 0;
    }
}

.process-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(43,106,255,0.3);
}

.process-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--bg-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    border: 2px solid var(--white);
    box-shadow: 0 10px 30px rgba(43,106,255,0.1);
    transition: background 0.3s ease, color 0.3s ease;
}

.process-card:hover .process-icon-wrapper {
    background: var(--primary);
    color: #fff;
}

.process-icon-wrapper i {
    font-size: 2rem;
    color: var(--primary);
    transition: color 0.3s ease;
}

.process-card:hover .process-icon-wrapper i {
    color: #fff;
}

.process-step-num {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-dark);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.process-card h3 {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 12px;
}

.process-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .process-grid::before { display: none; }
}

@media (max-width: 768px) {
    .process-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ── Testimonials — Clean Light Redesign ── */
.testi-section {
    padding: 100px 0;
    background: var(--bg-soft);
    position: relative;
}

.testi-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.testi-stars {
    color: #F59E0B;
    font-size: 1.3rem;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.testi-stars span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

/* Swiper Container */
.testi-swiper {
    padding-bottom: 50px; /* Space for pagination */
    margin-bottom: 20px;
    overflow: hidden;
}

.testi-card {
    height: auto; /* Swiper will handle height matching if set up right, but auto is safe */
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Swiper Pagination Styling */
.swiper-pagination-bullet {
    background: var(--border);
    opacity: 1;
    transition: all 0.3s ease;
    width: 10px;
    height: 10px;
}
.swiper-pagination-bullet-active {
    background: var(--primary);
    width: 24px;
    border-radius: 10px;
}

.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testi-quote-icon {
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--bg-accent);
    line-height: 1;
    position: absolute;
    top: 20px; left: 30px;
    pointer-events: none;
    z-index: 0;
}

.testi-stars-sm {
    color: #F59E0B;
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testi-card p {
    font-size: 1.1rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.testi-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
}

.testi-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.testi-author-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.testi-author-info strong {
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 700;
}

.testi-author-info span {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Bottom Stats Strip */
.testi-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.testi-stat {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    border-right: 1px solid var(--border);
}

.testi-stat:last-child {
    border-right: none;
}

.testi-stat strong {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.03em;
}

.testi-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

@media (max-width: 991px) {
    .testi-grid { grid-template-columns: 1fr; }
    .testi-stats { grid-template-columns: 1fr 1fr; }
    .testi-stat:nth-child(2) { border-right: none; }
    .testi-stat:nth-child(1), .testi-stat:nth-child(2) { border-bottom: 1px solid var(--border); }
}

@media (max-width: 576px) {
    .testi-stats { grid-template-columns: 1fr; }
    .testi-stat { border-right: none; border-bottom: 1px solid var(--border); }
    .testi-stat:last-child { border-bottom: none; }
}



/* ── Pricing Section ── */
.pricing-section {
    position: relative;
    border-bottom: 1px solid var(--border);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(43,106,255,0.3);
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--primary);
    box-shadow: 0 20px 40px rgba(43,106,255,0.15);
    z-index: 1;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(43,106,255,0.3);
}

.pricing-header {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 8px;
}

.pricing-header p {
    font-size: 0.95rem;
    color: var(--text-muted);
    min-height: 48px;
}

.pricing-price {
    margin-top: 24px;
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: var(--text-main);
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
}

.pricing-price .period {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-main);
    font-size: 0.95rem;
}

.pricing-features li i {
    color: #10B981;
    font-size: 1.1rem;
}

.pricing-features li.disabled {
    color: var(--text-light);
}

.pricing-features li.disabled i {
    color: var(--border);
}

@media (max-width: 991px) {
    .pricing-grid { grid-template-columns: 1fr; gap: 40px; }
    .pricing-card.popular { transform: none; box-shadow: var(--shadow-lg); }
    .pricing-card.popular:hover { transform: translateY(-8px); }
    .pricing-header p { min-height: auto; }
}

/* ═══════════════════════════════════════════
   PREMIUM CTA — Mission Control Redesign
   Featuring: Mesh Gradients & Glassmorphism
   ═══════════════════════════════════════════ */

.premium-cta {
    position: relative;
    padding: 140px 0;
    background: #0F172A; /* Brand deep slate */
    overflow: hidden;
    color: #fff;
}

/* Mesh Background Animation */
.cta-mesh-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: 
        radial-gradient(at 0% 0%, rgba(43,106,255,0.1) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(99,102,241,0.1) 0px, transparent 50%),
        radial-gradient(at 50% 100%, rgba(30,64,175,0.1) 0px, transparent 50%);
    opacity: 0.6;
}

.cta-blobs {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

.cta-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    animation: blobFloat 25s infinite alternate ease-in-out;
}

.blob-1 { width: 500px; height: 500px; background: var(--primary); top: -200px; right: -100px; animation-delay: 0s; }
.blob-2 { width: 400px; height: 400px; background: var(--secondary); bottom: -100px; left: -50px; animation-delay: -5s; }
.blob-3 { width: 300px; height: 300px; background: var(--primary-dark); top: 30%; left: 5%; animation-delay: -10s; }


@keyframes blobFloat {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(40px, 40px) scale(1.1); }
}

/* Typography & Layout */
.cta-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 99px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 24px;
}

.cta-headline {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.cta-subline {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

.cta-perks {
    display: flex;
    gap: 32px;
}

.cta-perk {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-perk i {
    color: #10B981;
    font-size: 1.4rem;
}

.cta-perk span {
    font-weight: 500;
    color: rgba(255,255,255,0.8);
}

/* Partnership Engine (Glass Panel) */
.cta-engine-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.cta-engine-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

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

.panel-header h4 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #fff;
}

.panel-header p {
    color: rgba(255,255,255,0.5);
}

.cta-field {
    margin-bottom: 24px;
}

.cta-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.input-icon-wrap {
    position: relative;
}

.input-icon-wrap i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.3);
    font-size: 1.2rem;
}

.input-icon-wrap input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 16px 20px 16px 52px;
    color: #fff;
    outline: none;
    transition: all 0.3s ease;
}

.input-icon-wrap input:focus {
    background: rgba(255,255,255,0.08);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(43,106,255,0.15);
}

.cta-trust-v2 {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
}

.cta-trust-v2 span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 991px) {
    .premium-cta { padding: 80px 0; }
    .cta-headline { font-size: 2.8rem; }
    .cta-engine-panel { padding: 32px; margin-top: 40px; }
    .cta-perks { flex-direction: column; gap: 16px; }
}

@media (max-width: 576px) {
    .cta-headline { font-size: 2.2rem; }
    .cta-trust-v2 { flex-direction: column; gap: 12px; align-items: center; }
}

/* ── Premium Light Footer (Theme Aligned) ── */
.footer-saas {
    background: #ffffff;
    color: var(--text-main);
    padding: 80px 0 0;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.footer-mesh-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: 
        radial-gradient(circle at 100% 100%, rgba(43, 106, 255, 0.05) 0%, transparent 40%), 
        radial-gradient(circle at 0% 0%, rgba(139, 92, 246, 0.03) 0%, transparent 30%);
    pointer-events: none;
    z-index: 0;
}

.footer-top-border {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    opacity: 0.8;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-brand p {
    color: var(--text-muted);
}

.contact-card {
    background: rgba(43, 106, 255, 0.02);
    border: 1px solid rgba(43, 106, 255, 0.06);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-card:hover {
    background: #fff;
    border-color: rgba(43, 106, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(43, 106, 255, 0.08);
}

.contact-card .contact-icon {
    width: 44px; height: 44px;
    background: #fff;
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: var(--primary);
    color: #fff;
}

.footer-links h4 {
    margin-bottom: 24px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-main);
}

.footer-links a {
    display: block;
    margin-bottom: 12px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-links a:hover, .footer-links a:focus {
    color: var(--primary);
    transform: translateX(4px);
    text-decoration: none;
}

.footer-socials .social-link {
    width: 40px; height: 40px;
    background: var(--bg-soft);
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.footer-socials .social-link:hover {
    background: var(--primary);
    color: #fff !important;
    border-color: var(--primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(43, 106, 255, 0.2);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 30px 0;
    margin-top: 60px;
}

.transition-all {
    transition: all 0.3s ease;
}

/* Value Proposition Section */
.value-prop-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.value-prop-section .cta-glow {
    position: absolute;
    top: -20%; left: -10%;
    width: 60%; height: 60%;
    background: radial-gradient(circle, rgba(59,130,246,0.3) 0%, transparent 70%);
    z-index: 0;
}

.vp-stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 32px;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    margin-top: 20px;
}

.vp-stat-card h4 {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(to right, #fff, #93c5fd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vp-list-container {
    background: rgba(15, 23, 42, 0.6);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

.vp-list-container h3 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 1.75rem;
    font-weight: 700;
}

.vp-list-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.vp-list-item:hover {
    transform: translateX(5px);
}

.vp-list-item:last-child {
    margin-bottom: 0;
}

.vp-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.vp-text-wrap {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    padding-top: 6px;
}

@media (max-width: 991px) {
    .vp-stat-card { width: 100%; }
    .vp-list-container { padding: 30px; }
}

/* Intro Section Enhancement */
.intro-section {
    background-image: url('../images/intro-section-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.88);
    z-index: 0;
}

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

.secure-funding-card {
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    border-radius: 24px;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 30px 60px -12px rgba(37, 99, 235, 0.25);
    min-height: 380px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.secure-funding-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 40px 80px -15px rgba(37, 99, 235, 0.35);
}

.secure-funding-card h2 {
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .secure-funding-card {
        margin-top: 40px;
        min-height: 300px;
    }
    .secure-funding-card h2 {
        font-size: 2.5rem;
    }
}

/* Latest News Section Enhancement */
.news-section {
    background-image: url('../images/latest-news-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.92);
    z-index: 0;
}

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

/* ═══════════════════════════════════════════
   PREMIUM MODAL — Partnership Engine v2.0
   Cockpit Edition: 2-Column Immersive Design
   ═══════════════════════════════════════════ */

.engine-modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    overflow-y: auto;
    overflow-x: hidden; /* Prevent horizontal scroll */
    scrollbar-width: none; /* Firefox hide */
    -ms-overflow-style: none; /* IE/Edge hide */
}

.engine-modal-overlay::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Brave hide */
}

.engine-modal-overlay.active {
    display: flex;
    opacity: 1;
}

/* Internal Background Decorators (Modal) */
.modal-blobs {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
}
.m-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}
.m-blob-1 { width: 600px; height: 600px; background: var(--primary); top: -100px; right: -100px; }
.m-blob-2 { width: 400px; height: 400px; background: var(--secondary); bottom: -50px; left: -50px; }

.modal-grid-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.engine-modal-container {
    position: relative;
    width: 100%;
    max-width: 880px; /* Reduced from 1000px */
    z-index: 10;
}

.modal-cockpit-frame {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0,0,0,0.8);
    max-height: 90vh; /* Safety height guard */
    display: flex;
    flex-direction: column;
}
.modal-cockpit-frame > .row { flex: 1; min-height: 0; }
.modal-cockpit-frame .col-lg-5, .modal-cockpit-frame .col-lg-7 { 
    height: 100%; 
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
}

.modal-cockpit-frame .col-lg-5::-webkit-scrollbar,
.modal-cockpit-frame .col-lg-7::-webkit-scrollbar {
    display: none;
}

/* Left Panel: The Mission */
.cockpit-mission-panel {
    background: linear-gradient(180deg, rgba(43, 106, 255, 0.1) 0%, rgba(15, 23, 42, 0) 100%);
    border-right: 1px solid rgba(255,255,255,0.05);
    height: 100%;
    padding: 40px 30px; /* Reduced from 60px 40px */
    display: flex;
    flex-direction: column;
}

.cockpit-mission-panel h3 { color: #ffffff !important; margin: 0; opacity: 1 !important; }
.cockpit-mission-panel p { margin-bottom: 0; color: rgba(255,255,255,0.7) !important; }

.transmission-status {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--primary-light);
    margin-bottom: 25px; /* Reduced from 40px */
}

.pulse-dot {
    width: 8px; height: 8px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10B981;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

.cockpit-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
}

.cockpit-stats { display: flex; gap: 30px; margin-top: 30px !important; }
.c-stat-val { font-size: 1.35rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 4px; }
.c-stat-label { font-size: 0.7rem; color: rgba(255,255,255,0.4); }

.mission-perks { display: flex; flex-direction: column; gap: 10px; margin-top: 30px !important; }
.m-perk { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.7); font-size: 0.8rem; }
.m-perk i { color: var(--primary); }

.cockpit-footer { margin-top: auto; padding-top: 15px; }

/* Right Panel: The Activation */
.cockpit-form-panel {
    padding: 30px 45px 50px 45px; /* Added 50px bottom padding for button safety */
    background: rgba(15, 23, 42, 0.4);
}

.cockpit-form-panel h4 { color: #ffffff !important; margin: 0; opacity: 1 !important; }
.cockpit-form-panel p { color: rgba(255,255,255,0.5) !important; }

.g-glow {
    position: relative;
    box-shadow: 0 0 20px rgba(43, 106, 255, 0.3);
    transition: all 0.3s ease;
}
.g-glow:hover {
    box-shadow: 0 0 40px rgba(43, 106, 255, 0.5);
    transform: translateY(-2px);
}

/* Form Field Redesign (Premium Cockpit) */
.form-group-v2 { 
    margin-bottom: 0px; /* Extreme compression as requested */
    position: relative;
}

.form-group-v2 label { 
    display: block; 
    font-size: 0.7rem; 
    font-weight: 800; 
    color: rgba(255,255,255,0.4); 
    text-transform: uppercase; 
    margin-bottom: 6px; /* Reduced from 10px */
    padding-left: 2px;
    letter-spacing: 0.1em;
}

.form-group-v2 input, 
.form-group-v2 select, 
.form-group-v2 textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 16px; /* Reduced from 16px 20px */
    color: #fff;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    appearance: none;
    -webkit-appearance: none;
}

.form-group-v2 input::placeholder,
.form-group-v2 textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.form-group-v2 select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='rgba(255,255,255,0.3)' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 14px;
    cursor: pointer;
}

.form-group-v2 input:focus, 
.form-group-v2 select:focus, 
.form-group-v2 textarea:focus {
    background: rgba(43, 106, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 
        0 0 0 4px rgba(43, 106, 255, 0.15),
        inset 0 0 15px rgba(43, 106, 255, 0.1);
    transform: translateY(-2px);
}

.form-group-v2 select option {
    background: #0F172A;
    color: #fff;
}

.modal-close-btn {
    position: absolute;
    top: -60px; right: 0;
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

/* Entrance Animation via JS */
.reveal-field { opacity: 0; transform: translateY(15px); }

@media (max-width: 991px) {
    .engine-modal-overlay {
        align-items: flex-start; /* Start from top on mobile/small screens */
        padding: 40px 15px;
    }
    .cockpit-form-panel { padding: 40px 24px; }
    .modal-close-btn { top: 20px; right: 20px; z-index: 20; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE OVERRIDES — Header & Footer
   ═══════════════════════════════════════════ */

@media (max-width: 991px) {
    /* Header Fixes */
    .gwc-logo-img { height: 56px; } /* Increased from 48px */
    .gwc-nav-container { height: 80px; } /* Increased from 72px */
    
    #mainNav {
        padding: 24px;
        background: #ffffff;
        border-radius: 0 0 24px 24px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        margin-top: 0;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        text-align: left;
    }

    .gwc-nav-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        width: 100%;
        margin-bottom: 0;
    }

    .gwc-link {
        width: 100%;
        font-size: 1.15rem !important;
        padding: 16px 0 !important;
        border-bottom: 1px solid rgba(0,0,0,0.06);
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        color: #111827 !important; /* Force dark color */
    }

    .gwc-link::after {
        display: none !important;
    }

    /* Icon for dropdowns on mobile */
    .gwc-link.dropdown-toggle::before {
        content: "\F282" !important; /* bi-chevron-right */
        font-family: "bootstrap-icons" !important;
        position: static !important;
        transform: rotate(90deg) !important;
        margin-left: auto;
        font-size: 1.1rem;
        color: #9CA3AF;
        order: 2;
    }
    
    .gwc-has-mega.show .gwc-link.dropdown-toggle::before {
        transform: rotate(-90deg) !important;
        color: var(--primary);
    }

    .gwc-mega-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        border: none;
        box-shadow: none;
        background: #F9FAFB;
        padding: 8px 12px;
        margin: 5px 0 15px !important;
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
        display: none;
        border-radius: 16px;
    }

    .gwc-mega-menu.show {
        display: block;
    }

    .gwc-mega-item {
        padding: 12px 15px;
        border-bottom: 1px solid rgba(0,0,0,0.03);
        background: #fff;
        margin-bottom: 6px;
        border-radius: 12px;
    }

    .gwc-mega-item:last-child {
        margin-bottom: 0;
        border-bottom: none;
    }


    .gwc-cta-btn {
        width: 100%;
        justify-content: center;
        margin-top: 20px;
        padding: 14px;
        font-size: 1rem;
    }



    /* Footer Fixes */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: left; /* Changed from center for consistency */
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* Changed from center */
    }

    .footer-brand img {
        height: 60px !important; /* Larger footer logo for mobile */
        margin-bottom: 24px !important;
    }

    .footer-links h4 {
        margin-bottom: 16px;
        font-size: 0.95rem;
        color: var(--text-main);
    }

    .footer-links a {
        padding: 4px 0;
        margin-bottom: 4px;
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
        gap: 12px;
        text-align: left;
    }

    .footer-bottom {
        text-align: left;
        padding-top: 32px;
        padding-bottom: 32px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr; /* 2 columns for links on medium mobile */
        gap: 32px;
    }
    .footer-brand {
        grid-column: span 2; /* Brand takes full width */
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Back to 1 column on very small screens */
    }
    .footer-brand {
        grid-column: span 1;
    }
}


