/* =======================================================
   MAVAIR GLOBAL — ULTRA-PREMIUM "STITCH" UI CSS (V5)
   ======================================================= */

/* VARIABLES */
:root {
    --navy: #1e293b;
    /* Softer, SaaS navy */
    --navy-dark: #0f172a;
    --blue: #317bf2;
    --blue-hover: #2167d6;
    --blue-light: #eff6ff;
    --teal: #36e9d6;

    --white: #ffffff;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-600: #475569;
    --slate-800: #1e293b;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    --radius: 12px;
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--slate-600);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.section {
    padding: 96px 0;
}

.bg-slate-50 {
    background-color: var(--slate-50);
}

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

.bg-navy {
    background-color: var(--navy-dark);
}

.bg-blue-light {
    background-color: var(--blue-light);
}

.text-navy {
    color: var(--navy-dark);
}

.text-blue {
    color: var(--blue);
}

.text-slate {
    color: var(--slate-600);
}

.text-white {
    color: var(--white);
}

.text-teal {
    color: var(--teal);
}

.border-b {
    border-bottom: 1px solid var(--slate-200);
}

.border-t {
    border-top: 1px solid var(--slate-200);
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--navy-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.h1-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
}

.h2-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
}

.h3-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.h4-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.body-lg {
    font-size: 1.125rem;
    color: var(--slate-600);
    line-height: 1.75;
}

.body-base {
    font-size: 1rem;
    color: var(--slate-600);
    line-height: 1.6;
}

.body-sm {
    font-size: 0.875rem;
    color: var(--slate-600);
}

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

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

/* SPACING */
.mb-2 {
    margin-bottom: 8px;
}

.mb-4 {
    margin-bottom: 16px;
}

.mb-6 {
    margin-bottom: 24px;
}

.mb-8 {
    margin-bottom: 32px;
}

.mb-12 {
    margin-bottom: 48px;
}

.mb-16 {
    margin-bottom: 64px;
}

.mt-8 {
    margin-top: 32px;
}

.mt-12 {
    margin-top: 48px;
}

.py-20 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.max-w-3xl {
    max-width: 768px;
    margin: 0 auto;
}

/* LAYOUT GRIDS */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

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

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

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

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

/* COMPONENTS */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    margin-bottom: 16px;
}

.badge-blue {
    background: var(--blue-light);
    color: var(--blue);
}

.badge-teal {
    background: rgba(54, 233, 214, 0.1);
    color: #0d9488;
}

.badge-navy {
    background: var(--slate-100);
    color: var(--navy-dark);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(49, 123, 242, 0.39);
}

.btn-primary:hover {
    background: var(--blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(49, 123, 242, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--navy-dark);
    border-color: var(--slate-200);
}

.btn-outline:hover {
    background: var(--slate-50);
    border-color: var(--slate-200);
    color: var(--navy-dark);
    transform: translateY(-2px);
}

/* CARDS */
.card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    border-color: #cbd5e1;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-200);
    z-index: 1000;
    transition: var(--transition);
}

.nav-wrapper {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--navy-dark);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--slate-600);
    text-decoration: none;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--navy-dark);
}

.nav-dropdown {
    position: relative;
    padding: 28px 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    min-width: 260px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--slate-600);
    font-size: 0.95rem;
    transition: 0.2s;
}

.dropdown-menu a:hover {
    background: var(--slate-50);
    color: var(--navy-dark);
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--navy-dark);
    transition: 0.3s;
}

/* HERO SECTION */
.hero-section {
    padding: 160px 0 100px;
    background: radial-gradient(circle at top, var(--slate-50), var(--white) 80%);
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--slate-200);
    margin-top: 64px;
}

/* SNAPSHOT */
.stat-card {
    border-left: 2px solid var(--slate-200);
    padding-left: 24px;
}

.stat-card:first-child {
    border-left: none;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--slate-600);
}

/* SERVICES */
.service-icon {
    width: 48px;
    height: 48px;
    background: var(--slate-50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--blue);
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.list-check {
    list-style: none;
    margin-top: 16px;
}

.list-check li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--slate-600);
}

.list-check li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: bold;
}

.flagship-card {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.flagship-card h3 {
    color: var(--white);
}

.flagship-card .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.flagship-card .list-check li {
    color: rgba(255, 255, 255, 0.9);
}

.flagship-card .list-check li::before {
    color: var(--teal);
}

.flagship-card:hover {
    border-color: var(--blue-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(49, 123, 242, 0.3);
}

/* ABOUT */
.img-panel {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

/* CALL TO ACTION */
.cta-banner {
    background: var(--navy-dark);
    border-radius: 24px;
    padding: 64px;
    text-align: center;
    margin: 0 auto;
    max-width: 1000px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at bottom right, rgba(49, 123, 242, 0.3), transparent 60%);
}

.cta-content {
    position: relative;
    z-index: 10;
}

/* FORMS */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--navy-dark);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--slate-200);
    border-radius: 8px;
    background: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--navy-dark);
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(49, 123, 242, 0.15);
}

/* FOOTER EXACT V1 */
.footer {
    background: #252B63;
    color: #B8C8E8;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.f-tagline {
    font-size: 14px;
    margin-bottom: 20px;
}

.f-address {
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.f-contact span {
    color: #36E9D6;
    font-weight: 600;
    font-size: 15px;
}

.f-col-links h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.f-col-links ul {
    list-style: none;
}

.f-col-links ul li {
    margin-bottom: 12px;
}

.f-col-links ul li a {
    color: #B8C8E8;
    font-size: 14px;
    text-decoration: none;
    transition: 0.2s;
}

.f-col-links ul li a:hover {
    color: #36E9D6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
}

.fb-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #8899BB;
}

/* RESPONSIVE */
@media (max-width: 1024px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card {
        border: none;
        padding-left: 0;
        text-align: center;
        border-bottom: 1px solid var(--slate-200);
        padding-bottom: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 40px;
        align-items: flex-start;
        transition: 0.3s;
        box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.03);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-actions {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .dropdown-menu {
        position: relative;
        box-shadow: none;
        visibility: visible;
        opacity: 1;
        transform: none;
        padding: 0 0 0 16px;
        border: none;
    }

    .hero-section {
        padding-top: 120px;
    }

    .section {
        padding: 64px 0;
    }

    .cta-banner {
        padding: 40px 24px;
        border-radius: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .fb-layout {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* =======================================================
   V2 SERVICE REDESIGN STYLES
   ======================================================= */

.service-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card-v2 {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    transition: all 0.3s ease;
}

.service-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.sc-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.sc-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sc-desc {
    font-size: 1.05rem;
    color: var(--slate-600);
    margin-bottom: 24px;
    line-height: 1.6;
}

.sc-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sc-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--slate-800);
    font-weight: 500;
}

.sc-features .check {
    font-weight: bold;
}

/* Themes */
.theme-teal .sc-icon-wrap {
    background: #CCFBF1;
    color: #0F766E;
}

.theme-teal:hover::before {
    background: #0D9488;
}

.theme-teal .check {
    color: #0D9488;
}

.theme-blue .sc-icon-wrap {
    background: #DBEAFE;
    color: #1D4ED8;
}

.theme-blue:hover::before {
    background: #2563EB;
}

.theme-blue .check {
    color: #2563EB;
}

.theme-indigo .sc-icon-wrap {
    background: #E0E7FF;
    color: #4338CA;
}

.theme-indigo:hover::before {
    background: #4F46E5;
}

.theme-indigo .check {
    color: #4F46E5;
}

.theme-purple .sc-icon-wrap {
    background: #F3E8FF;
    color: #7E22CE;
}

.theme-purple:hover::before {
    background: #9333EA;
}

.theme-purple .check {
    color: #9333EA;
}

.theme-orange .sc-icon-wrap {
    background: #FFEDD5;
    color: #C2410C;
}

.theme-orange:hover::before {
    background: #EA580C;
}

.theme-orange .check {
    color: #EA580C;
}

.theme-navy.flagship {
    background: var(--navy-dark);
    border-color: var(--navy-dark);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.4);
}

.theme-navy.flagship::before {
    background: var(--teal);
}

.theme-navy.flagship .sc-icon-wrap {
    background: rgba(255, 255, 255, 0.1);
    color: var(--teal);
}

.theme-navy.flagship:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.5);
}

@media (max-width: 768px) {
    .service-card-v2 {
        padding: 32px 24px;
    }

    .nav-menu-v2 {
        position: fixed;
        top: 84px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 84px);
        background: var(--white);
        flex-direction: column;
        padding: 40px;
        align-items: flex-start;
        transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.03);
    }

    .nav-menu-v2.active {
        left: 0;
    }

    .nav-dropdown-v2 {
        padding: 16px 0;
    }

    .mega-menu {
        position: relative;
        box-shadow: none;
        visibility: visible;
        opacity: 1;
        transform: none;
        padding: 16px 0 0 16px;
        border: none;
        width: 100%;
        left: 0;
    }

    .mega-grid {
        grid-template-columns: 1fr;
    }
}

/* =======================================================
   V2 NAVBAR STYLES
   ======================================================= */
.navbar-v2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 84px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-v2.scrolled {
    height: 72px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.1);
}

.nav-wrapper-v2 {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-wrapper-v2:hover svg {
    transform: scale(1.05) rotate(5deg);
}

.logo-title-v2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--navy-dark);
    letter-spacing: -0.02em;
}

.nav-menu-v2 {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link-v2 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--slate-600);
    text-decoration: none;
    position: relative;
    padding: 8px 0;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.nav-link-v2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link-v2:hover {
    color: var(--navy-dark);
}

.nav-link-v2:hover::after {
    width: 100%;
}

/* Mega Menu */
.nav-dropdown-v2 {
    position: relative;
    padding: 32px 0;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: var(--white);
    border: 1px solid var(--slate-200);
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
    border-radius: 20px;
    width: 640px;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dropdown-v2:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.mega-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.mega-item:hover {
    background: var(--slate-50);
}

.mi-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.mi-title {
    font-weight: 600;
    color: var(--navy-dark);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.mi-desc {
    font-size: 0.85rem;
    color: var(--slate-600);
    line-height: 1.4;
}

.mega-footer {
    border-top: 1px solid var(--slate-200);
    padding-top: 20px;
    text-align: center;
}

.mf-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--navy-dark);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1;
    transition: color 0.2s ease;
}

.mf-link:hover {
    color: var(--blue);
}

/* Glowing Button CTA */
.btn-glow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), #0EA5E9);
    border-radius: 99px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px -5px rgba(49, 123, 242, 0.4);
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    transition: 0.5s;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(49, 123, 242, 0.5);
    color: var(--white);
}

.btn-glow:hover::before {
    left: 150%;
}

/* =======================================================
   V3 CALL TO ACTION REDESIGN
   ======================================================= */
.cta-section-v2 {
    padding: 120px 0;
    position: relative;
    background: var(--white);
    overflow: hidden;
}

.cta-banner-v2 {
    position: relative;
    background: linear-gradient(135deg, var(--navy-dark) 0%, #1e293b 100%);
    border-radius: 32px;
    padding: 80px 48px;
    text-align: center;
    margin: 0 auto;
    max-width: 1080px;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.5);
    overflow: hidden;
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-banner-v2::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(49, 123, 242, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(54, 233, 214, 0.15) 0%, transparent 50%);
    z-index: 1;
    animation: rotateGradient 20s linear infinite;
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(rgba(255,255,255,0.8) 1px, transparent 1px);
    background-size: 24px 24px;
    z-index: 1;
}

.cta-content-v2 {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--teal);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.cta-title span {
    background: linear-gradient(135deg, var(--teal), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-desc {
    font-size: 1.15rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--teal);
    color: var(--navy-dark);
    padding: 16px 36px;
    border-radius: 99px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px -5px rgba(54, 233, 214, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    transform: skewX(-20deg);
    transition: 0.5s;
}

.cta-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 35px -10px rgba(54, 233, 214, 0.6);
    color: var(--navy-dark);
}

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

@media (max-width: 768px) {
    .cta-banner-v2 { padding: 56px 24px; border-radius: 24px; }
}

/* =======================================================
   V3 HERO SECTION REDESIGN
   ======================================================= */
.hero-section-v2 {
    position: relative;
    padding: 180px 0 120px;
    background: #0f172a;
    overflow: hidden;
    color: var(--white);
}

.hero-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    opacity: 0.6;
    animation: driftGlow 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: rgba(49, 123, 242, 0.15);
    top: -200px;
    left: -100px;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: rgba(54, 233, 214, 0.15);
    bottom: -150px;
    right: -100px;
    animation-delay: -10s;
}

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

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: 
        linear-gradient(to right, #ffffff 1px, transparent 1px),
        linear-gradient(to bottom, #ffffff 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.hero-grid-v2 {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-text-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge-v2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    background: rgba(54, 233, 214, 0.1);
    border: 1px solid rgba(54, 233, 214, 0.2);
    border-radius: 99px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 32px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(54, 233, 214, 0.7);
    animation: pulseTeal 2s infinite;
}

@keyframes pulseTeal {
    0% { box-shadow: 0 0 0 0 rgba(54, 233, 214, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(54, 233, 214, 0); }
    100% { box-shadow: 0 0 0 0 rgba(54, 233, 214, 0); }
}

.hero-title-v2 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.text-gradient-blue {
    background: linear-gradient(135deg, #60a5fa, #3b82f6, #36e9d6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc-v2 {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-actions-v2 {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
}

.btn-outline-v2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 99px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.btn-outline-v2:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero-trust-metrics {
    display: flex;
    gap: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    width: 100%;
}

.trust-item h4 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.trust-item span {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.hero-visual-block {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    z-index: 5;
}

.hero-image-v2 {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 5;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover .hero-image-v2 {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.floating-ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.ring-1 {
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-color: rgba(49, 123, 242, 0.2);
}

.ring-2 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-style: dashed;
    border-color: rgba(54, 233, 214, 0.3);
    animation: spinRotate 40s linear infinite;
}

@keyframes spinRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-glass-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 10;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-glass-card:hover {
    transform: translateY(-5px) scale(1.05);
}

.glass-card-1 {
    top: 15%;
    left: -40px;
    animation: floatY 6s ease-in-out infinite;
}

.glass-card-2 {
    bottom: 10%;
    right: -30px;
    animation: floatY 7s ease-in-out infinite reverse;
}

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

.gc-icon {
    width: 48px;
    height: 48px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gc-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 2px;
}

.gc-subtitle {
    font-size: 0.8rem;
    color: #94a3b8;
}

@media (max-width: 1024px) {
    .hero-grid-v2 { grid-template-columns: 1fr; gap: 80px; }
    .hero-text-block { align-items: center; text-align: center; }
    .hero-desc-v2 { max-width: 100%; }
    .hero-trust-metrics { justify-content: center; text-align: center; }
    .hero-visual-block { justify-content: center; }
    .glass-card-1 { left: -10px; }
    .glass-card-2 { right: -10px; }
}
@media (max-width: 768px) {
    .hero-section-v2 { padding: 140px 0 80px; }
    .hero-actions-v2 { flex-direction: column; width: 100%; }
    .hero-trust-metrics { gap: 32px; flex-wrap: wrap; }
    .glass-card-1, .glass-card-2 { display: none; }
}

/* =======================================================
   V3 CASE STUDIES REDESIGN
   ======================================================= */
.cs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.cs-card {
    position: relative;
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
    border: 1px solid var(--slate-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
}

.cs-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 6px;
    background: linear-gradient(90deg, var(--blue), var(--teal));
    z-index: 10;
    transition: height 0.3s ease;
}

.cs-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
    border-color: rgba(49, 123, 242, 0.2);
}

.cs-card:hover::before {
    height: 8px;
}

.cs-header-graphic {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(49,123,242,0.08) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: -1;
    transition: transform 0.6s ease;
}

.cs-card:hover .cs-header-graphic {
    transform: scale(1.5);
}

.cs-content {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.cs-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.cs-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy-dark);
}

.cs-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--slate-600);
}

.cs-location svg {
    color: var(--blue);
}

.cs-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.cs-card:hover .cs-title {
    color: var(--blue);
}

.cs-desc {
    color: var(--slate-600);
    line-height: 1.7;
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.cs-footer {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--slate-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cs-result {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0d9488;
    font-weight: 600;
    font-size: 0.95rem;
}

.cs-result-icon {
    width: 32px;
    height: 32px;
    background: rgba(13, 148, 136, 0.1);
    color: #0d9488;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.cs-card:hover .cs-link {
    gap: 12px;
}

@media (max-width: 900px) {
    .cs-grid { grid-template-columns: 1fr; }
    .cs-content { padding: 32px 24px; }
}