/* GrowThozhil Solutions — Design System v2 */
:root {
    --navy: #1B1464;
    --navy-dark: #110E40;
    --navy-light: #2A1F8A;
    --blue: #1E3A8A;
    --blue-500: #3B82F6;
    --blue-400: #60A5FA;
    --blue-100: #DBEAFE;
    --blue-50: #EFF6FF;
    --red: #E63946;
    --green: #00A651;
    --sky: #0072BC;
    --yellow: #FFC20E;
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(27, 20, 100, 0.08);
    --shadow-lg: 0 12px 40px rgba(27, 20, 100, 0.12);
    --shadow-xl: 0 20px 60px rgba(27, 20, 100, 0.18);
    --transition-fast: 0.2s ease;
    --transition-base: 0.35s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none
}

body.default-cursor,
body.default-cursor * {
    cursor: auto !important
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.25
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
    cursor: none
}

img {
    max-width: 100%;
    display: block
}

ul {
    list-style: none
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

/* Custom Cursor */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--navy);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform .15s ease, opacity .15s ease;
    mix-blend-mode: difference
}

.cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(27, 20, 100, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform .08s ease, width .3s ease, height .3s ease, border-color .3s ease;
    transform: translate(-50%, -50%)
}

.cursor-ring.hover {
    width: 60px;
    height: 60px;
    border-color: var(--red);
    background: rgba(230, 57, 70, 0.06)
}

.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(27, 20, 100, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%)
}

/* Cursor Trail Particles */
.trail-particle {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    opacity: 0;
    animation: trail-fade .8s ease forwards
}

@keyframes trail-fade {
    0% {
        opacity: .6;
        transform: scale(1)
    }

    100% {
        opacity: 0;
        transform: scale(0)
    }
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--navy), var(--sky), var(--blue-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

/* Stripe Bar */
.stripe-bar {
    display: flex;
    width: 100%;
    height: 5px
}

.stripe {
    flex: 1;
    height: 100%
}

.stripe--red {
    background: var(--red)
}

.stripe--green {
    background: var(--green)
}

.stripe--sky {
    background: var(--sky)
}

.stripe--yellow {
    background: var(--yellow)
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: none;
    transition: var(--transition-base);
    white-space: nowrap
}

.btn--primary {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(27, 20, 100, 0.3)
}

.btn--primary:hover {
    box-shadow: 0 6px 25px rgba(27, 20, 100, 0.45);
    transform: translateY(-2px)
}

.btn--outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy)
}

.btn--outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px)
}

.btn--large {
    padding: 16px 36px;
    font-size: 16px
}

.btn--white {
    background: var(--white);
    color: var(--navy);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1)
}

.btn--white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15)
}

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5)
}

.btn--outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-2px)
}

.btn--glass {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px)
}

.btn--glass:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px)
}

.btn--full {
    width: 100%;
    justify-content: center
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--navy);
    background: rgba(27, 20, 100, 0.06);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 16px
}

.section-label--light {
    color: var(--yellow);
    background: rgba(255, 194, 14, 0.12)
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 16px
}

.section-title--light {
    color: var(--white)
}

.section-subtitle {
    font-size: 17px;
    color: var(--gray-500);
    line-height: 1.7
}

.section-subtitle--light {
    color: rgba(255, 255, 255, 0.7)
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 8px 0;
    transition: var(--transition-base);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(27, 20, 100, 0.06);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 12px
}

.header__logo-img {
    height: 46px;
    width: auto
}

.header.scrolled .header__logo-img {
    height: 40px
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1
}

.logo-text--light {
    color: var(--white)
}

.logo-highlight {
    color: var(--sky)
}

.logo-sub {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray-400);
    display: block;
    margin-top: -2px
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 2px
}

.nav__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast)
}

.nav__link:hover,
.nav__link.active {
    color: var(--navy);
    background: rgba(27, 20, 100, 0.04)
}

.nav__dropdown {
    position: relative
}

.dropdown__menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 200px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-base);
    z-index: 100
}

.nav__dropdown:hover .dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.dropdown__menu li a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: var(--radius-sm)
}

.dropdown__menu li a:hover {
    color: var(--navy);
    background: rgba(27, 20, 100, 0.04)
}

.header__cta {
    flex-shrink: 0
}

.header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: none;
    padding: 8px;
    z-index: 1001
}

.header__hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: var(--transition-base)
}

.header__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.header__hamburger.active span:nth-child(2) {
    opacity: 0
}

.header__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, #0d0a30 0%, var(--navy) 40%, var(--navy-dark) 100%);
    padding: 120px 0 80px;
    overflow: hidden
}

.hero__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

.hero__particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: particle-float linear infinite
}

@keyframes particle-float {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0)
    }

    10% {
        opacity: .5
    }

    90% {
        opacity: .3
    }

    100% {
        opacity: 0;
        transform: translateY(-100px) scale(1)
    }
}

.hero>.stripe-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    z-index: 2
}

.hero__inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 3
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--yellow);
    background: rgba(255, 194, 14, 0.1);
    border: 1px solid rgba(255, 194, 14, 0.2);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    animation: badge-pulse 3s ease-in-out infinite
}

@keyframes badge-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 rgba(255, 194, 14, 0)
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 194, 14, 0.15)
    }
}

.hero__title {
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 24px;
    color: var(--white)
}

.hero__title .gradient-text {
    background: linear-gradient(135deg, var(--yellow), var(--red), var(--sky));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.hero__subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.hero__actions .btn--primary {
    background: linear-gradient(135deg, var(--red), #c0293a);
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.3)
}

.hero__actions .btn--primary:hover {
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.45)
}

/* Hero Visual */
.hero__visual {
    position: relative
}

.hero__illustration {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto
}

.hero__main-visual {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3))
}

.hero__main-visual svg {
    width: 100%;
    height: auto
}

.hero__card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    z-index: 2;
    animation: card-float 6s ease-in-out infinite
}

.hero__card-icon {
    font-size: 22px
}

.hero__card--1 {
    top: 5%;
    left: -10%;
    animation-delay: 0s
}

.hero__card--2 {
    top: 20%;
    right: -5%;
    animation-delay: 1.5s
}

.hero__card--3 {
    bottom: 30%;
    left: -15%;
    animation-delay: 3s
}

.hero__card--4 {
    bottom: 10%;
    right: -10%;
    animation-delay: 4.5s
}

@keyframes card-float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

.hero__wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 4
}

.hero__wave svg {
    width: 100%;
    height: 80px;
    display: block
}

/* Magnetic element effect */
.magnetic {
    transition: transform .3s cubic-bezier(.25, .46, .45, .94)
}

/* ===== PARTNERS BANNER ===== */
.partners-banner {
    padding: 60px 0;
    background: var(--white)
}

.partners-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: linear-gradient(135deg, rgba(27, 20, 100, 0.03), rgba(0, 114, 188, 0.04));
    border: 1px solid rgba(27, 20, 100, 0.08);
    border-radius: var(--radius-xl);
    padding: 40px 50px
}

.partners-banner__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 8px
}

.partners-banner__text h2 {
    font-size: 26px;
    margin-bottom: 8px;
    color: var(--navy)
}

.partners-banner__text p {
    font-size: 15px;
    color: var(--gray-500);
    max-width: 500px
}

.partners-banner__logos {
    display: flex;
    gap: 24px;
    flex-shrink: 0;
    align-items: center
}

.partner-logo {
    height: 44px;
    width: auto;
    opacity: .85;
    transition: var(--transition-base)
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.05)
}

/* ===== PRODUCTS SECTION ===== */
.products {
    padding: 100px 0;
    background: var(--gray-50)
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.products__grid--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin: 0 auto
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--sky));
    opacity: 0;
    transition: var(--transition-base)
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent
}

.product-card:hover::before {
    opacity: 1
}

.product-card__icon-wrap {
    width: 72px;
    height: 72px;
    margin-bottom: 20px
}

.product-card__icon {
    width: 100%;
    height: 100%
}

.product-card__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--navy)
}

.product-card__desc {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 20px;
    line-height: 1.7
}

.product-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    transition: var(--transition-fast)
}

.product-card__link:hover {
    color: var(--red);
    gap: 12px
}

/* ===== ZOHO SECTION ===== */
.zoho {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(160deg, var(--navy-dark), var(--navy) 50%, #1a1060);
    overflow: hidden
}

.zoho__wave-top,
.zoho__wave-bottom {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1
}

.zoho__wave-top {
    top: -1px
}

.zoho__wave-bottom {
    bottom: -1px
}

.zoho__wave-top svg,
.zoho__wave-bottom svg {
    width: 100%;
    height: 80px;
    display: block
}

.zoho__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 2
}

.zoho-card {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition-base);
    overflow: hidden
}

.zoho-card__glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 114, 188, 0.12) 0%, transparent 70%);
    top: -50px;
    right: -50px;
    transition: var(--transition-slow)
}

.zoho-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2)
}

.zoho-card:hover .zoho-card__glow {
    transform: scale(1.5)
}

.zoho-card--featured {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
    transform: scale(1.02)
}

.zoho-card--featured:hover {
    transform: scale(1.02) translateY(-8px)
}

.zoho-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--navy-dark);
    background: var(--yellow);
    padding: 4px 14px;
    border-radius: var(--radius-full)
}

.zoho-card__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px
}

.zoho-card__icon svg {
    width: 100%;
    height: 100%
}

.zoho-card__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px
}

.zoho-card__desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 20px
}

.zoho-card__features {
    margin-bottom: 24px
}

.zoho-card__features li {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    padding: 6px 0 6px 20px;
    position: relative
}

.zoho-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700
}

/* =====/* MOBILITY & PROCESS */
.mobility {
    padding: 100px 0;
    background: #FFF;
}

.mobility__header-layout {
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .mobility__header-layout {
        flex-direction: column-reverse;
        text-align: center;
    }

    .mobility__header-layout .section-header {
        text-align: center !important;
    }

    .mobility__header-visual {
        margin-top: 20px;
    }
}

.mobility__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.mobility-card {
    position: relative;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition-base);
    overflow: hidden
}

.mobility-card__number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: rgba(27, 20, 100, 0.06);
    line-height: 1;
    transition: var(--transition-base)
}

.mobility-card:hover .mobility-card__number {
    color: rgba(27, 20, 100, 0.12)
}

.mobility-card__icon {
    font-size: 36px;
    margin-bottom: 16px
}

.mobility-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--navy)
}

.mobility-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7
}

.mobility-card:hover {
    transform: translateY(-6px);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-color: rgba(27, 20, 100, 0.12)
}

/* ===== VALUE PROP ===== */
.value-prop {
    padding: 80px 0;
    background: rgba(27, 20, 100, 0.02)
}

.value-prop__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px
}

.value-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition-base)
}

.value-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(27, 20, 100, 0.1)
}

.value-item__icon {
    font-size: 40px;
    margin-bottom: 16px
}

.value-item h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--navy)
}

.value-item p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6
}

/* ===== PROCESS ===== */
.process {
    padding: 100px 0;
    background: var(--white)
}

.process__timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto
}

.process__line {
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, rgba(27, 20, 100, 0.1), var(--navy), var(--green));
    border-radius: 2px
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 28px 0;
    position: relative
}

.process-step__number {
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(27, 20, 100, 0.25);
    position: relative;
    z-index: 1
}

.process-step__content {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    flex: 1;
    transition: var(--transition-base)
}

.process-step:hover .process-step__content {
    box-shadow: var(--shadow-md);
    border-color: rgba(27, 20, 100, 0.1)
}

.process-step__content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--navy)
}

.process-step__content p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7
}

/* ===== STATS ===== */
.stats {
    padding: 70px 0;
    background: linear-gradient(160deg, var(--navy-dark), var(--navy));
    position: relative;
    overflow: hidden
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center
}

.stat-item {
    color: var(--white)
}

.stat-item__number {
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 56px);
    font-weight: 800;
    line-height: 1;
    display: inline
}

.stat-item__plus {
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: var(--yellow);
    display: inline
}

.stat-item__label {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 0;
    background: var(--gray-50)
}

.testimonials__carousel {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    position: relative
}

.testimonials__track {
    display: flex;
    transition: transform .5s cubic-bezier(.25, .46, .45, .94)
}

.testimonial-card {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box
}

.testimonial-card__inner {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200)
}

.testimonial-card__stars {
    font-size: 20px;
    color: var(--yellow);
    letter-spacing: 2px;
    margin-bottom: 16px
}

.testimonial-card__quote {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 16px
}

.testimonial-card__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--sky));
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.testimonial-card__author h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px
}

.testimonial-card__author span {
    font-size: 13px;
    color: var(--gray-400)
}

.testimonials__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px
}

.testimonials__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    background: var(--white);
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    color: var(--gray-500)
}

.testimonials__btn:hover {
    border-color: var(--navy);
    color: var(--navy)
}

.testimonials__dots {
    display: flex;
    gap: 8px
}

.testimonials__dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: none;
    transition: var(--transition-fast)
}

.testimonials__dots .dot.active {
    background: var(--navy);
    width: 28px;
    border-radius: 5px
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: var(--white)
}

.cta-section__inner {
    text-align: center;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    position: relative;
    overflow: hidden
}

.cta-section__inner::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    top: -100px;
    right: -50px
}

.cta-section__inner::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    bottom: -80px;
    left: -40px
}

.cta-section__inner h2 {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1
}

.cta-section__inner p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 600px;
    margin: 0 auto 32px;
    position: relative;
    z-index: 1
}

.cta-section__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1
}

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    background: var(--gray-50)
}

.contact__grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 40px;
    align-items: start
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200)
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--gray-800);
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    outline: none
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(27, 20, 100, 0.08);
    background: var(--white)
}

.form-group textarea {
    resize: vertical;
    min-height: 100px
}

.contact-form>.form-group {
    margin-bottom: 20px
}

.contact-info {
    position: sticky;
    top: 100px
}

.contact-info__card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: 28px
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 16px
}

.contact-info__icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(27, 20, 100, 0.04);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center
}

.contact-info__item h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--navy)
}

.contact-info__item p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.5
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-dark);
    padding-top: 0
}

.footer>.stripe-bar {
    margin-bottom: 60px
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06)
}

.footer__desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px
}

.footer__social {
    display: flex;
    gap: 12px;
    margin-top: 20px
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast)
}

.social-link:hover {
    background: var(--navy-light);
    color: var(--white);
    transform: translateY(-3px)
}

.footer__links h3,
.footer__contact h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px
}

.footer__links ul li {
    margin-bottom: 10px
}

.footer__links ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    transition: var(--transition-fast)
}

.footer__links ul li a:hover {
    color: var(--yellow);
    padding-left: 4px
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px
}

.footer__contact-item span {
    font-size: 18px;
    flex-shrink: 0
}

.footer__contact-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 12px
}

.footer__bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35)
}

.footer__partner-note strong {
    color: rgba(255, 255, 255, 0.6)
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
    border: none;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(27, 20, 100, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-base);
    z-index: 900
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(27, 20, 100, 0.4)
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1)
}

.reveal--right {
    transform: translateX(40px)
}

.reveal--left {
    transform: translateX(-40px)
}

.reveal--scale {
    transform: scale(0.9)
}

.reveal.active {
    opacity: 1;
    transform: translate(0) scale(1)
}

.products__grid .reveal:nth-child(2) {
    transition-delay: .1s
}

.products__grid .reveal:nth-child(3) {
    transition-delay: .2s
}

.products__grid .reveal:nth-child(4) {
    transition-delay: .3s
}

.zoho__grid .reveal:nth-child(2) {
    transition-delay: .1s
}

.zoho__grid .reveal:nth-child(3) {
    transition-delay: .2s
}

.mobility__grid .reveal:nth-child(2) {
    transition-delay: .08s
}

.mobility__grid .reveal:nth-child(3) {
    transition-delay: .14s
}

.mobility__grid .reveal:nth-child(4) {
    transition-delay: .2s
}

.mobility__grid .reveal:nth-child(5) {
    transition-delay: .26s
}

.mobility__grid .reveal:nth-child(6) {
    transition-delay: .32s
}

/* ===== SUB-PAGE HERO ===== */
.page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(160deg, var(--navy-dark), var(--navy));
    position: relative;
    overflow: hidden
}

.page-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto
}

.page-hero .stripe-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0
}

.page-hero__breadcrumb {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px
}

.page-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.6)
}

.page-hero__breadcrumb a:hover {
    color: var(--yellow)
}

.page-hero__title {
    font-size: clamp(32px, 5vw, 50px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px
}

.page-hero__subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 32px
}

.page-hero__wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 3
}

.page-hero__wave svg {
    width: 100%;
    height: 60px;
    display: block
}

/* Feature Grid for sub-pages */
.features {
    padding: 100px 0;
    background: var(--white)
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.feature-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition-base)
}

.feature-card:hover {
    background: var(--white);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(27, 20, 100, 0.1)
}

.feature-card__icon {
    font-size: 36px;
    margin-bottom: 16px
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--navy)
}

.feature-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7
}

.features__grid--two {
    grid-template-columns: repeat(2, 1fr)
}

/* Detail Section (alternating) */
.detail-section {
    padding: 80px 0
}

.detail-section:nth-child(even) {
    background: var(--gray-50)
}

.detail-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.detail-section:nth-child(even) .detail-section__inner {
    direction: rtl
}

.detail-section:nth-child(even) .detail-section__inner>* {
    direction: ltr
}

.detail-section__content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--navy)
}

.detail-section__content p {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 24px
}

.detail-section__visual {
    display: flex;
    align-items: center;
    justify-content: center
}

.detail-section__visual svg {
    width: 100%;
    max-width: 400px;
    height: auto
}

/* Tilt card effect */
.tilt-card {
    transition: transform .4s ease
}

/* Nav overlay mobile */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base)
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible
}

/* Page enter */
@keyframes page-enter {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

body {
    animation: page-enter .6s ease-out
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px
    }

    .hero__subtitle {
        margin: 0 auto 36px
    }

    .hero__actions {
        justify-content: center
    }

    .hero__visual {
        max-width: 400px;
        margin: 0 auto
    }

    .hero__card--1 {
        left: 0
    }

    .hero__card--3 {
        left: 0
    }

    .products__grid,
    .features__grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .zoho__grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .zoho-card:last-child {
        grid-column: 1/-1;
        max-width: 400px;
        margin: 0 auto
    }

    .mobility__grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .value-prop__grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px
    }

    .contact__grid {
        grid-template-columns: 1fr
    }

    .footer__grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .detail-section__inner {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .detail-section:nth-child(even) .detail-section__inner {
        direction: ltr
    }
}

@media(max-width:768px) {
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        padding: 80px 32px 40px;
        transition: var(--transition-base);
        z-index: 999;
        overflow-y: auto
    }

    .header__nav.open {
        right: 0
    }

    .nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0
    }

    .nav__link {
        padding: 14px 16px;
        font-size: 16px;
        border-bottom: 1px solid var(--gray-100)
    }

    .dropdown__menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 20px;
        display: none
    }

    .nav__dropdown.open .dropdown__menu {
        display: block
    }

    .header__cta {
        display: none
    }

    .header__hamburger {
        display: flex
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px
    }

    .hero__title {
        font-size: clamp(28px, 7vw, 42px)
    }

    .hero__card {
        display: none
    }

    .partners-banner__inner {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px
    }

    .products__grid,
    .zoho__grid,
    .mobility__grid,
    .features__grid {
        grid-template-columns: 1fr
    }

    .products__grid--two {
        grid-template-columns: 1fr
    }

    .zoho-card--featured {
        transform: none
    }

    .zoho-card--featured:hover {
        transform: translateY(-8px)
    }

    .value-prop__grid {
        grid-template-columns: 1fr
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px
    }

    .process__line {
        left: 24px
    }

    .process-step__number {
        width: 50px;
        height: 50px;
        font-size: 20px
    }

    .process-step__content {
        padding: 20px 24px
    }

    .process-step {
        gap: 20px
    }

    .contact-form__row {
        grid-template-columns: 1fr
    }

    .contact-form {
        padding: 28px 24px
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center
    }

    .cta-section__inner {
        padding: 40px 24px
    }

    .cursor-dot,
    .cursor-ring,
    .cursor-glow {
        display: none !important
    }

    body,
    a,
    .btn,
    .testimonials__btn,
    .testimonials__dots .dot,
    .back-to-top,
    .header__hamburger {
        cursor: auto !important
    }

    .page-hero {
        padding: 110px 0 60px
    }
}

@media(max-width:480px) {
    .hero__actions {
        flex-direction: column;
        align-items: center
    }

    .btn--large {
        padding: 14px 28px;
        font-size: 15px
    }

    .partners-banner__logos {
        flex-direction: column;
        align-items: center
    }
}