:root {
    --primary: #0b192c;
    --primary-deep: #070f1c;
    --primary-light: #1e293b;
    --primary-50: #f1f5f9;
    --accent: #f39c12;
    --accent-deep: #e88a0a;
    --accent-hover: #d68910;
    --accent-light: #ffedd5;
    --accent-50: #fff7ed;
    --secondary-blue: #0284c7;
    --secondary-blue-deep: #0369a1;
    --secondary-blue-light: #38bdf8;
    --teal: #0d9488;
    --teal-light: #99f6e4;
    --purple: #6366f1;
    --purple-light: #c7d2fe;
    --rose: #e11d48;
    --rose-light: #fecdd3;
    --bg-light: #f8fafc;
    --bg-warm: #faf7f2;
    --bg-dark: #0a1628;
    --text-dark: #0f172a;
    --text-muted: #475569;
    --text-light: #94a3b8;
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
    --shadow: 0 10px 30px -10px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 45px -15px rgba(2, 132, 199, 0.15);
    --shadow-xl: 0 25px 60px -20px rgba(0,0,0,0.15);
    --shadow-glow: 0 8px 30px -8px rgba(243, 156, 18, 0.35);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --support-1: #e0f2fe;
    --support-2: #ecfdf5;
    --support-3: #fff7ed;
    --support-4: #fef2f2;
    --gradient-primary: linear-gradient(135deg, #0b192c 0%, #1e3a5f 100%);
    --gradient-blue: linear-gradient(135deg, #0284c7 0%, #0369a1 50%, #0c4a6e 100%);
    --gradient-accent: linear-gradient(135deg, #f39c12 0%, #f59e0b 50%, #d97706 100%);
    --gradient-mixed: linear-gradient(135deg, #0284c7 0%, #6366f1 50%, #f39c12 100%);
    --gradient-soft: linear-gradient(180deg, rgba(248,250,252,1) 0%, rgba(250,247,242,1) 100%);
    --gradient-card-1: linear-gradient(135deg, rgba(2, 132, 199, 0.1) 0%, rgba(14, 165, 233, 0.02) 100%);
    --gradient-card-2: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, rgba(20, 184, 166, 0.02) 100%);
    --gradient-card-3: linear-gradient(135deg, rgba(243, 156, 18, 0.1) 0%, rgba(245, 158, 11, 0.02) 100%);
    --gradient-card-4: linear-gradient(135deg, rgba(225, 29, 72, 0.1) 0%, rgba(244, 63, 94, 0.02) 100%);
    --border-gradient: linear-gradient(135deg, #0284c7 0%, #f39c12 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 85% 15%, rgba(2, 132, 199, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 10% 80%, rgba(243, 156, 18, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
} */

a {
    text-decoration: none;
    color: inherit;
}

/* --- Header & Navigation --- */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    z-index: 1000;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.02);
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(2, 132, 199, 0.3) 20%, rgba(243, 156, 18, 0.3) 80%, transparent 100%);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.85rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-icon {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, #0369a1 100%);
    color: var(--white);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 800;
}

.logo-text h1 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
    line-height: 1;
}

.logo-text span {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--secondary-blue);
    display: block;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 0.85rem;
    list-style: none;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.78
    rem;
    color: var(--text-muted);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-blue);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid #d6e0e8;
    border-radius: 8px;
    color: var(--primary);
    background: #fff;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 2px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    white-space: nowrap;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    opacity: 1;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--primary);
    box-shadow: 0 4px 14px -2px rgba(243, 156, 18, 0.3);
}

.btn-primary::before {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(243, 156, 18, 0.45);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline::before {
    background: var(--primary);
}

.btn-outline:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -8px rgba(11, 25, 44, 0.3);
}

.btn-whatsapp {
    background: #fff;
    color: #25d366;
    border: 2px solid #25d366;
}

.btn-whatsapp::before {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.btn-whatsapp:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -8px rgba(37, 211, 102, 0.4);
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(135deg, rgba(7, 15, 28, 0.97) 0%, rgba(15, 39, 68, 0.95) 50%, rgba(11, 25, 44, 0.97) 100%),
                url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    color: var(--white);
    padding: 5rem 2rem 7rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.2) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-decor-1,
.hero-decor-2,
.hero-decor-3 {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.hero-decor-1 {
    width: 8px;
    height: 8px;
    background: var(--accent);
    top: 15%;
    left: 8%;
    box-shadow: 0 0 20px 4px rgba(243, 156, 18, 0.4);
    animation: float 6s ease-in-out infinite;
}

.hero-decor-2 {
    width: 6px;
    height: 6px;
    background: var(--secondary-blue-light);
    top: 25%;
    right: 12%;
    box-shadow: 0 0 16px 3px rgba(56, 189, 248, 0.4);
    animation: float 8s ease-in-out infinite reverse;
}

.hero-decor-3 {
    width: 4px;
    height: 4px;
    background: var(--accent-light);
    bottom: 20%;
    left: 45%;
    box-shadow: 0 0 12px 2px rgba(255, 237, 213, 0.4);
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(2, 132, 199, 0.12);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.78rem;
    margin-bottom: 1.75rem;
    border: 1px solid rgba(56, 189, 248, 0.25);
    color: #7dd3fc;
    font-weight: 600;
    letter-spacing: 0.8px;
    position: relative;
    backdrop-filter: blur(8px);
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px 2px rgba(243, 156, 18, 0.5);
}

.hero h1 {
    font-size: 3.25rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 2.5rem;
    letter-spacing: -1.2px;
    position: relative;
}

.hero h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
    margin-top: 1.25rem;
}

.hero-accent {
    background: linear-gradient(135deg, #38bdf8 0%, #22d3ee 40%, #f39c12 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero p {
    font-size: 1.12rem;
    color: #cbd5e1;
    margin-bottom: 2.50rem;
    max-width: 540px;
    line-height: 1.7;
}

.confidentiality-note {
    color: #cbd5e1;
    font-size: 0.82rem !important;
    line-height: 1.5;
    margin: 0 !important;
    max-width: 560px;
}

.confidentiality-note i {
    color: var(--accent);
    margin-right: 6px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-buttons .btn-outline {
    border-color: rgba(255,255,255,0.25);
    color: #fff;
}

.hero-buttons .btn-outline::before {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
}

.hero-buttons .btn-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.4);
    color: #fff;
    box-shadow: 0 8px 25px -10px rgba(255,255,255,0.2);
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: #94a3b8;
    max-width: 180px;
}

.hero-feature i {
    color: var(--accent);
    font-size: 1.05rem;
    padding: 10px;
    background: rgba(243, 156, 18, 0.1);
    border-radius: 10px;
    margin-top: -2px;
}

.hero-image-wrap {
    position: relative;
    animation: heroImageFloat 8s ease-in-out infinite;
}

@keyframes heroImageFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(0.3deg); }
}

.hero-image-wrap::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: var(--gradient-mixed);
    border-radius: calc(var(--radius-lg) + 8px);
    opacity: 0.25;
    z-index: -1;
    filter: blur(20px);
}

.hero-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.15) 0%, transparent 50%, rgba(243, 156, 18, 0.15) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
    position: relative;
}

.hero-ribbon {
    position: absolute;
    left: -20px;
    bottom: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    padding: 1.25rem 1.75rem;
    border-radius: var(--radius);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 50px -15px rgba(0,0,0,0.3), 0 0 0 1px rgba(2, 132, 199, 0.1);
    z-index: 5;
    min-width: 260px;
}

.ribbon-title {
    font-size: 0.75rem;
    color: var(--secondary-blue-deep);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ribbon-title::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--gradient-accent);
    border-radius: 1px;
}

.ribbon-subtitle {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    margin-top: 4px;
    letter-spacing: -0.3px;
}

.ribbon-line {
    width: 80px;
    height: 3px;
    background: var(--gradient-accent);
    margin-top: 12px;
    border-radius: 2px;
    position: relative;
}

.ribbon-line::after {
    content: '';
    position: absolute;
    right: 0;
    top: -1px;
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
}

.hero-floating-card {
    position: absolute;
    right: -25px;
    top: 40px;
    background: rgba(11, 25, 44, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 50px -15px rgba(0,0,0,0.4);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
}

.floating-card-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.floating-card-content strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.2px;
}

.floating-card-content span {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
}

.hero-sidebar {
    display: none;
}

/* --- Content & Card Sections --- */
.section {
    padding: 5.5rem 2rem;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 3.5rem auto;
    position: relative;
}

.section-header::before {
    content: '';
    display: none;
}

.section-header-left {
    text-align: left;
    max-width: 1280px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.section-header-left::before {
    display: none;
}

.section-header-left .section-header-title::before {
    content: '';
    display: block;
    width: 45px;
    height: 3px;
    background: var(--gradient-accent);
    margin-bottom: 1rem;
    border-radius: 2px;
}

.section-header h2 {
    font-size: 2.5rem;
    letter-spacing: -0.8px;
    margin-bottom: 0.75rem;
    color: var(--primary);
    font-weight: 900;
    line-height: 1.08;
    background: linear-gradient(135deg, #0b1f5b 0%, #2c5fd6 38%, #4f6ee8 52%, #f39c12 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header h1 {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 0.85rem;
    font-weight: 800;
}

.about-list {
    margin-top: 1rem;
    padding-left: 1.25rem;
    color: var(--text-muted);
}

.about-list li {
    margin-bottom: 0.55rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.section-header-tight {
    max-width: 800px;
    margin-bottom: 2rem;
}

.section-header-tight h2,
.client-strip-title,
.timeline-header h2 {
    font-size: 2.5rem;
    letter-spacing: -0.8px;
    margin-bottom: 0.75rem;
    font-weight: 900;
    line-height: 1.08;
    background: linear-gradient(135deg, #0b1f5b 0%, #2c5fd6 18%, #4f6ee8 30%, #f39c12 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.client-strip-title {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
    font-size: clamp(2rem, 3vw, 3.5rem);
}

.synergy-sub {
    margin-top: 0.5rem !important;
    font-size: 0.95rem !important;
}

.section-link {
    color: var(--secondary-blue);
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: var(--transition);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    background: rgba(2, 132, 199, 0.06);
}

.section-link:hover {
    color: var(--secondary-blue-deep);
    background: rgba(2, 132, 199, 0.12);
    transform: translateX(4px);
}

/* --- Support Cards (Who We Support) --- */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
    max-width: 1280px;
    margin: 0 auto;
}

.card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--border-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    opacity: 0;
}

.card:hover::before {
    transform: scaleX(1);
    opacity: 1;
}

.support-card {
    padding: 2.25rem 1.75rem 2rem 1.75rem;
    border: none;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.support-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-slow);
    z-index: -1;
}

.support-card:hover::after {
    opacity: 1;
    transform: scale(1.2);
}

.support-card-1 {
    background: var(--gradient-card-1), var(--support-1);
    border: 1px solid rgba(2, 132, 199, 0.12);
}
.support-card-2 {
    background: var(--gradient-card-2), var(--support-2);
    border: 1px solid rgba(13, 148, 136, 0.12);
}
.support-card-3 {
    background: var(--gradient-card-3), var(--support-3);
    border: 1px solid rgba(243, 156, 18, 0.12);
}
.support-card-4 {
    background: var(--gradient-card-4), var(--support-4);
    border: 1px solid rgba(225, 29, 72, 0.12);
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px -20px rgba(0,0,0,0.18);
}

.support-icon {
    width: 64px;
    height: 64px;
    background: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px -8px rgba(0,0,0,0.08);
    transition: var(--transition-slow);
    position: relative;
}

.support-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 18px;
    background: var(--border-gradient);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.support-card:hover .support-icon {
    transform: scale(1.08) rotate(-3deg);
}

.support-card:hover .support-icon::after {
    opacity: 1;
}

.support-card-1 .support-icon { color: var(--secondary-blue); }
.support-card-2 .support-icon { color: var(--teal); }
.support-card-3 .support-icon { color: var(--accent-deep); }
.support-card-4 .support-icon { color: var(--rose); }

.support-card-1:hover .support-icon {
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.15) 0%, rgba(2, 132, 199, 0.05) 100%);
    color:#fff !important;
}
.support-card-2:hover .support-icon {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.15) 0%, rgba(13, 148, 136, 0.05) 100%);
    color:#fff !important;
}
.support-card-3:hover .support-icon {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.2) 0%, rgba(243, 156, 18, 0.05) 100%);
    color:#fff !important;
}
.support-card-4:hover .support-icon {
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.15) 0%, rgba(225, 29, 72, 0.05) 100%);
    color:#fff !important;
}

.support-card h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    transition: var(--transition);
}

.support-card:hover h3 {
    color: var(--primary-deep);
}

.support-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 1.25rem;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(2, 132, 199, 0.1);
    color: var(--secondary-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* --- Services Section --- */
.services-section {
    background: var(--gradient-soft);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(2, 132, 199, 0.3) 25%, rgba(243, 156, 18, 0.3) 75%, transparent 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
    max-width: 1280px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 2.25rem 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: var(--transition-slow);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: var(--gradient-card-1);
    border-radius: 100% 0 0 0;
    opacity: 0;
    transition: var(--transition-slow);
    pointer-events: none;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
    width: 120px;
    height: 120px;
}

.service-card:hover {
    background: var(--white);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.1) 0%, rgba(2, 132, 199, 0.02) 100%);
    color: var(--secondary-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-slow);
    position: relative;
    border: 1px solid rgba(2, 132, 199, 0.1);
    z-index: 1;
}

.service-card:hover .service-icon {
    background: var(--gradient-blue);
    color: var(--white);
    transform: scale(1.1) rotate(-4deg);
    box-shadow: 0 12px 32px -10px rgba(2, 132, 199, 0.45);
    border-color: transparent;
}

.service-card h3 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-weight: 800;
    letter-spacing: -0.2px;
    transition: var(--transition);
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.service-card:hover h3 {
    color: var(--primary-deep);
}

.service-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* --- Statistics --- */
.stats-section {
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 40%, #0f2744 100%);
    color: var(--white);
    padding: 5.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 85%, rgba(243, 156, 18, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 85% 15%, rgba(2, 132, 199, 0.12) 0%, transparent 45%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="56" height="56" viewBox="0 0 56 56"><circle cx="28" cy="28" r="1.2" fill="%23ffffff" fill-opacity="0.04"/><rect x="10" y="10" width="1" height="1" fill="%23ffffff" fill-opacity="0.03"/></svg>');
    pointer-events: none;
}

.stats-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.stats-header {
    max-width: 1280px;
    margin: 0 auto 3rem auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.stats-header::before {
    content: '';
    display: block;
    width: 45px;
    height: 3px;
    /* background: var(--gradient-accent); */
    margin-bottom: 1rem;
    border-radius: 2px;
    position: absolute;
    top: 0;
    left: 0;
}

.stats-header > div {
    padding-top: 1.25rem;
}

.stats-header h2 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.6px;
    line-height: 1.2;
}

.stats-header p {
    color: #94a3b8;
    font-size: 1.05rem;
}

.stats-date {
    font-size: 0.82rem;
    color: #64748b;
    white-space: nowrap;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.06);
}

.stats-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 2.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
    transform: scaleX(0.3);
    transform-origin: center;
    transition: transform 0.5s ease;
    opacity: 0.6;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transition: var(--transition-slow);
}

.stat-item:hover {
    transform: translateY(-6px);
    border-color: rgba(243, 156, 18, 0.2);
    box-shadow: 0 20px 50px -20px rgba(0,0,0,0.5);
}

.stat-item:hover::before {
    transform: scaleX(1);
    opacity: 1;
}

.stat-item:hover::after {
    transform: scale(1.2);
}

.stat-item h3 {
    font-size: 3.2rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.85rem;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.stat-item h3 i {
    font-size: 2rem;
    -webkit-text-fill-color: currentColor;
}

.stat-item p {
    font-size: 0.95rem;
    color: #cbd5e1;
    font-weight: 500;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.stat-disclaimer {
    text-align: center;
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
}

/* --- Process / Approach Section --- */
.process-section {
    background: var(--bg-warm);
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(2, 132, 199, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(243, 156, 18, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.process-flow {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.process-step-flow {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    text-align: left;
    position: relative;
    border: 1px solid var(--border-color);
    transition: var(--transition-slow);
    overflow: hidden;
}

.process-step-flow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-accent);
    border-radius: 0 2px 2px 0;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step-flow::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition-slow);
}

.process-step-flow:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -18px rgba(0,0,0,0.12);
    border-color: transparent;
}

.process-step-flow:hover::before {
    height: 100%;
}

.process-step-flow:hover::after {
    opacity: 1;
    transform: scale(1.5);
}

.step-circle {
    width: 52px;
    height: 52px;
    background: var(--gradient-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.05rem;
    margin: 0 auto 1.25rem 0;
    box-shadow: 0 8px 20px -6px rgba(2, 132, 199, 0.35);
    transition: var(--transition-slow);
    position: relative;
    z-index: 1;
}

.step-circle::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--gradient-accent);
    z-index: -1;
    opacity: 0;
    transform: scale(0.9);
    transition: var(--transition-slow);
}

.process-step-flow:hover .step-circle {
    transform: scale(1.1) rotate(-6deg);
    background: var(--gradient-accent);
    box-shadow: 0 12px 28px -8px rgba(243, 156, 18, 0.5);
}

.process-step-flow:hover .step-circle::after {
    opacity: 0.2;
    transform: scale(1);
}

.process-step-flow h4 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: -0.2px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.process-step-flow:hover h4 {
    color: var(--primary-deep);
}

.process-step-flow p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

.process-arrow {
    display: none;
}

/* --- Original process styles kept for backward compat --- */
.process-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.process-step {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    text-align: center;
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    margin: 0 auto 1rem auto;
}

.process-step h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- CTA Banner --- */
.cta-banner {
    position: relative;
    padding: 5.5rem 2rem;
    overflow: hidden;
}

.cta-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(7, 15, 28, 0.96) 0%, rgba(15, 39, 68, 0.94) 50%, rgba(20, 48, 87, 0.92) 100%),
        url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.cta-bg-overlay::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.12) 0%, transparent 60%);
    border-radius: 50%;
}

.cta-bg-overlay::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -50px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.1) 0%, transparent 60%);
    border-radius: 50%;
}

.cta-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-content {
    position: relative;
}

.cta-content::before {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gradient-accent);
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.8px;
    line-height: 1.2;
}

.cta-content p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 2.25rem;
    max-width: 600px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-side {
    position: relative;
}

.cta-quote {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.4;
    opacity: 0.98;
    padding: 2rem 1.75rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    letter-spacing: -0.3px;
}

.cta-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 1rem;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(243, 156, 18, 0.2);
    line-height: 1;
    font-weight: 400;
}

/* --- Insights / Blog Section --- */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
    max-width: 1280px;
    margin: 0 auto;
}

.insight-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    position: relative;
}

.insight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.insight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -25px rgba(0,0,0,0.18);
    border-color: transparent;
}

.insight-card:hover::before {
    transform: scaleX(1);
}

.insight-img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.insight-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(11, 25, 44, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.insight-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11,25,44,0.2) 0%, transparent 50%);
    z-index: 1;
    transition: opacity 0.4s ease;
}

.insight-card:hover .insight-img {
    transform: scale(1.05);
}

.insight-card:hover .insight-img::before {
    opacity: 1;
}

.insight-category {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 5;
    background: var(--gradient-accent);
    color: var(--primary);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px -4px rgba(243, 156, 18, 0.5);
}

.insight-read-time {
    position: absolute;
    bottom: 14px;
    right: 14px;
    z-index: 5;
    background: rgba(11, 25, 44, 0.85);
    backdrop-filter: blur(8px);
    color: #cbd5e1;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255,255,255,0.1);
    opacity: 0;
    transform: translateY(8px);
    transition: var(--transition-slow);
}

.insight-card:hover .insight-read-time {
    opacity: 1;
    transform: translateY(0);
}

.insight-body {
    padding: 1.75rem 1.5rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

.insight-body h4 {
    font-size: 1.05rem;
    color: var(--primary);
    font-weight: 800;
    line-height: 1.5;
    transition: var(--transition);
    letter-spacing: -0.1px;
}

.insight-card:hover .insight-body h4 {
    color: var(--secondary-blue-deep);
}

.insight-date {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-light);
}

.insight-date i {
    color: var(--accent);
    font-size: 0.85rem;
}

/* --- Training Section --- */
.training-section {
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.04) 0%, rgba(243, 156, 18, 0.04) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* --- Synergy Section --- */
.synergy-section {
    background: var(--white);
}

.synergy-container {
    max-width: 1280px;
    margin: 0 auto 3rem auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.synergy-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 20px 50px -20px rgba(0,0,0,0.15);
}

.synergy-content h3 {
    font-size: 1.2rem;
    color: var(--secondary-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.synergy-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.synergy-features li {
    display: flex;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    align-items: flex-start;
}

.synergy-features li i {
    color: var(--accent);
    margin-top: 4px;
    flex-shrink: 0;
}

.synergy-notice {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.notice-block {
    background: linear-gradient(135deg, var(--primary) 0%, #132d4e 100%);
    color: #fff;
    padding: 2rem;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.notice-block::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(2, 132, 199, 0.15);
}

.notice-block h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.notice-block p {
    font-size: 0.88rem;
    color: #cbd5e1;
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

/* --- Team Section --- */
.team-section {
    background: var(--bg-light);
}

.carousel-wrap {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.carousel-btn {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(21, 48, 84, 0.12);
    background: rgba(255,255,255,0.9);
    color: #1b2d5d;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 8px 20px -14px rgba(15, 23, 42, 0.25);
    z-index: 2;
}

.carousel-btn:hover {
    background: var(--secondary-blue);
    color: #fff;
    border-color: var(--secondary-blue);
}

.team-carousel,
.testimonial-carousel,
.partners-carousel {
    flex: 1;
    display: flex;
    gap: 1.5rem;
    overflow: hidden;
    scroll-behavior: smooth;
}

.team-card {
    flex: 0 0 calc((100% - 3rem) / 3);
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px -15px rgba(0,0,0,0.1);
    border-color: var(--secondary-blue);
}

.team-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.25rem auto;
    border: 4px solid var(--support-1);
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h4 {
    font-size: 1.05rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.team-role {
    font-size: 0.85rem;
    color: var(--secondary-blue);
    font-weight: 500;
    margin-bottom: 1rem;
}

/* --- Testimonial Section --- */
.testimonial-section {
    background: #f3f5f3;
    border-top: 1px solid rgba(17, 24, 39, 0.06);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.testimonial-carousel {
    flex: 1;
    display: flex;
    gap: 1.3rem;
    overflow: hidden;
    scroll-behavior: smooth;
    min-width: 0;
}

.testimonial-card {
    flex: 0 0 calc((100% - 1.3rem) / 2);
    min-height: 260px;
    background: rgba(255, 255, 255, 0.28);
    padding: 1.7rem 1.6rem 1.4rem;
    border-radius: 14px;
    position: relative;
    border: 1px solid rgba(76, 96, 121, 0.18);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote-mark {
    color: #4a5aae;
    font-size: 2.4rem;
    opacity: 0.7;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.testimonial-text {
    font-size: 0.98rem;
    color: #1f2d48;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-style: normal;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(76, 96, 121, 0.18);
}

.testimonial-author strong {
    color: #1d2b57;
    font-size: 0.96rem;
    font-weight: 700;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: #4b5f7f;
    line-height: 1.5;
}

.client-strip-section {
    background: #f3f4f6;
    padding: 2.5rem 0 3rem;
}

.client-strip-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.client-strip-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #2a3f8f;
    font-size: 2.5rem;
    letter-spacing: -0.8px;
    font-weight: 900;
    line-height: 1.1;
}

.client-strip-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.client-strip-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    overflow: hidden;
    flex: 1;
    min-height: 120px;
}

.client-logo {
    flex: 0 0 180px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.client-logo img {
    max-width: 100%;
    max-height: 92px;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(15, 23, 42, 0.08));
}

.client-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px -18px rgba(15, 23, 42, 0.3);
}

.client-strip-control {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(42, 63, 143, 0.2);
    background: rgba(255, 255, 255, 0.7);
    color: #2a3f8f;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 8px 18px -12px rgba(15, 23, 42, 0.35);
    flex-shrink: 0;
}

.client-strip-control:hover {
    background: #2a3f8f;
    color: #fff;
    transform: translateY(-1px);
}

/* --- Partners Section --- */
.partners-section {
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.partners-carousel {
    padding: 1rem 0;
}

.partner-logo {
    flex: 0 0 calc((100% - 6rem) / 5);
    height: 90px;
    background: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.partner-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
    border-color: var(--secondary-blue);
}

.partner-logo span {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

/* --- Newsletter Section --- */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary) 0%, #0f2744 100%);
    padding: 3rem 2rem;
}

.newsletter-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.newsletter-container h3 {
    font-size: 1.15rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.newsletter-container h3 i {
    font-size: 1.4rem;
}

.newsletter-container p {
    color: #94a3b8;
    font-size: 0.92rem;
    max-width: 480px;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    min-width: 380px;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: #64748b;
}

.newsletter-form input:focus {
    border-color: var(--secondary-blue);
    background: rgba(255,255,255,0.08);
}

/* --- Footer --- */
.footer {
    background: linear-gradient(180deg, var(--primary-deep) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 5rem 2rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(2, 132, 199, 0.4) 20%, rgba(243, 156, 18, 0.5) 50%, rgba(2, 132, 199, 0.4) 80%, transparent 100%);
}

.footer::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr 1.3fr;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.footer-col h4 {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.2px;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-accent);
    border-radius: 1px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: #cbd5e1;
    font-size: 0.88rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.footer-col a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
    display: inline-block;
    margin-right: 0;
}

.footer-col a:hover {
    color: var(--white);
    padding-left: 6px;
}

.footer-col a:hover::before {
    width: 12px;
    margin-right: 6px;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.06);
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
}

.footer-socials a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-blue);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
}

.footer-socials a i {
    position: relative;
    z-index: 1;
}

.footer-socials a:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow: 0 12px 28px -10px rgba(2, 132, 199, 0.5);
}

.footer-socials a:hover::before {
    opacity: 1;
}

.footer-contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-contact-form input,
.footer-contact-form textarea {
    padding: 0.65rem 0.9rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: #fff;
    font-size: 0.85rem;
    outline: none;
    transition: var(--transition);
    resize: vertical;
    font-family: inherit;
}

.footer-contact-form input::placeholder,
.footer-contact-form textarea::placeholder {
    color: #64748b;
}

.footer-contact-form input:focus,
.footer-contact-form textarea:focus {
    border-color: rgba(2, 132, 199, 0.4);
    background: rgba(255,255,255,0.06);
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.08);
}

.footer-contact-form button {
    align-self: flex-start;
    margin-top: 0.25rem;
}

.footer-map {
    width: 100%;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid rgba(255,255,255,0.08);
}

.footer-map img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.location-list {
    list-style: none;
}

.location-list li {
    margin-bottom: 0.65rem;
}

.location-list a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #cbd5e1;
    font-size: 0.88rem;
    transition: var(--transition);
}

.location-list a:hover {
    color: var(--white);
    padding-left: 4px;
}

.location-list a i {
    color: var(--accent);
    margin-top: 3px;
    flex-shrink: 0;
    transition: var(--transition);
}

.location-list a:hover i {
    transform: scale(1.15);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1.75rem 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-bottom-inner p {
    font-size: 0.85rem;
    color: #64748b;
    text-align: left;
}

.footer-bottom-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
}

.footer-bottom-nav a {
    color: #94a3b8;
    font-size: 0.84rem;
    font-weight: 500;
    transition: var(--transition);
}

.footer-bottom-nav a:hover {
    color: var(--accent);
}

.footer-bottom-right {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-bottom-right span {
    font-size: 0.72rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #475569;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    background: rgba(255,255,255,0.03);
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.04);
}

.form-notice {
    margin-top: 1.25rem;
    padding: 0.85rem 1rem;
    background: #fff7ed;
    border-left: 3px solid var(--accent);
    color: var(--text-muted);
    font-size: 0.84rem;
}

.form-notice i {
    color: var(--accent-hover);
    margin-right: 0.35rem;
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.consent input {
    margin-top: 0.2rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: white;
    width: 58px;
    height: 58px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

/* Mobile Responsiveness */
@media (max-width: 1100px) {
    .nav-container { gap: 1rem; }
    .nav-links { gap: 1rem; }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .process-flow {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-floating-card {
        right: 15px;
        top: 20px;
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-image { height: 380px; }
    .hero-floating-card {
        right: 20px;
        top: 20px;
        min-width: auto;
        padding: 0.8rem 1rem;
    }
    .floating-card-icon {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }
    .floating-card-content strong {
        font-size: 0.9rem;
    }
    .floating-card-content span {
        font-size: 0.7rem;
    }
    .synergy-container {
        grid-template-columns: 1fr;
    }
    .cta-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .cta-side { text-align: center; }
    .cta-content p { margin-left: auto; margin-right: auto; }
    .cta-buttons { justify-content: center; }
    .cta-content::before { margin-left: auto; margin-right: auto; }
    .team-card { flex: 0 0 calc((100% - 1.5rem) / 2); }
    .testimonial-card { flex: 0 0 100%; }
    .partner-logo { flex: 0 0 calc((100% - 3rem) / 3); }
    .process-arrow { display: none; }
}

@media (max-width: 768px) {
    .section { padding: 3.5rem 1.25rem; }
    .hero { padding: 3.5rem 1.25rem 4rem 1.25rem; }
    .nav-container {
        position: relative;
        min-height: 64px;
        padding: .6rem 1rem;
        gap: .75rem;
    }
    .logoimg .logo img { width: 132px; height: auto; }
    .nav-toggle { display: inline-block; margin-left: auto; }
    .nav-container > .btn { display: none; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        z-index: 1001;
        flex-direction: column;
        align-items: stretch;
        gap: .2rem;
        margin: 0;
        padding: .75rem 1rem 1rem;
        background: rgba(255, 255, 255, .98);
        border-bottom: 1px solid #dce6ed;
        box-shadow: 0 14px 22px -16px rgba(15, 23, 42, .45);
    }
    .nav-links.is-open { display: flex; }
    .header .nav-links a {
        display: block;
        padding: .75rem .85rem;
        border-radius: 7px;
        font-size: .94rem !important;
    }
    .header .nav-links a:hover,
    .header .nav-links a.active { background: #edf7fc; }
    .hero h1 { font-size: 2rem; letter-spacing: -0.6px; }
    .hero h1::after { width: 60px; height: 3px; }
    .hero-features { gap: 1rem; }
    .hero-image { height: 320px; }
    .hero-ribbon {
        left: -10px;
        bottom: 30px;
        padding: 1rem 1.25rem;
        min-width: 220px;
    }
    .ribbon-subtitle { font-size: 1rem; }
    .section-header-left {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .newsletter-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .newsletter-form { min-width: 100%; width: 100%; }
    .newsletter-form { flex-direction: column; }
    .stats-header { flex-direction: column; align-items: flex-start; }
    .team-card { flex: 0 0 100%; }
    .partner-logo { flex: 0 0 calc((100% - 1.5rem) / 2); }
    .section-header h2 { font-size: 1.7rem; }
    .services-grid, .insights-grid { grid-template-columns: 1fr; }
    .cta-content h2 { font-size: 1.6rem; }
    .process-flow { 
        gap: 1rem; 
        grid-template-columns: 1fr;
    }
    .process-step-flow { padding: 1.5rem 1.25rem; }
    .step-circle {
        width: 44px;
        height: 44px;
        font-size: 0.95rem;
    }
    .footer-bottom-inner { 
        gap: 0.75rem;
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    .footer-bottom-inner p { text-align: center; }
    .stat-item {
        padding: 1.75rem 1.25rem;
    }
    .stat-item h3 {
        font-size: 2.5rem;
    }
    .hero-decor-1, .hero-decor-2, .hero-decor-3 {
        display: none;
    }
}

@media (max-width: 480px) {
    .section { padding-left: 1rem; padding-right: 1rem; }
    .footer { padding: 3.25rem 1.25rem 0; }
    .footer-grid { gap: 1.75rem; margin-bottom: 2.5rem;        padding: 0px; }
    .footer-bottom-nav { gap: .65rem 1rem; }
    .footer-bottom-nav a { font-size: .78rem; }
    .footer-col a, .footer p, .disclaimer { overflow-wrap: anywhere; }
    .whatsapp-float { right: 16px; bottom: 16px; }
}

.logoimg img{
  height:auto;
}

.gradient-text {
    background: linear-gradient(135deg, #0284c7 0%, #6366f1 50%, #f39c12 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== New Approach Timeline Section ===== */
.approach-timeline-section {
    background: linear-gradient(180deg, #faf7f2 0%, #fff 50%, #faf7f2 100%);
    position: relative;
    overflow: hidden;
}

.approach-timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(2, 132, 199, 0.2) 20%, rgba(243, 156, 18, 0.25) 50%, rgba(2, 132, 199, 0.2) 80%, transparent 100%);
}

.timeline-header {
    max-width: 620px;
    margin-bottom: 4rem;
}

.timeline-header::before {
    display: none;
}

.timeline-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--secondary-blue);
    background: rgba(2, 132, 199, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(2, 132, 199, 0.15);
    margin-bottom: 1.25rem;
}

.timeline-eyebrow i {
    color: var(--accent);
    font-size: 0.6rem;
}

.timeline-header h2 {
    font-size: 2.5rem;
    letter-spacing: -0.8px;
    margin-bottom: 0.75rem;
}

.timeline-header p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.timeline-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    padding: 1rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: repeating-linear-gradient(
        to bottom,
        rgba(2, 132, 199, 0.25) 0px,
        rgba(2, 132, 199, 0.25) 6px,
        transparent 6px,
        transparent 12px
    );
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-row {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-left .timeline-step-card {
    grid-column: 1;
    margin-right: 1rem;
}

.timeline-left .timeline-node {
    grid-column: 2;
    justify-self: center;
}

.timeline-right .timeline-node {
    grid-column: 2;
    justify-self: center;
}

.timeline-right .timeline-step-card {
    grid-column: 3;
    margin-left: 1rem;
}

.timeline-node {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(2, 132, 199, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--secondary-blue);
    box-shadow: 0 6px 20px -6px rgba(2, 132, 199, 0.25);
    position: relative;
    z-index: 2;
    transition: var(--transition-slow);
}

.timeline-node::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(243, 156, 18, 0.08);
    z-index: -1;
}

.timeline-node-final {
    background: linear-gradient(135deg, #f39c12 0%, #d97706 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 25px -6px rgba(243, 156, 18, 0.5);
    font-size: 1.1rem;
    width: 56px;
    height: 56px;
}

.timeline-node-final::after {
    background: rgba(243, 156, 18, 0.15);
}

.timeline-step-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.75rem 1.75rem 1.5rem 1.75rem;
    box-shadow: 0 12px 35px -15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    transition: var(--transition-slow);
    z-index: 1;
    overflow: hidden;
}

.timeline-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.timeline-left .timeline-step-card::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    width: 16px;
    height: 16px;
    background: #fff;
    border-right: 1px solid rgba(226, 232, 240, 0.8);
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    transform: translateY(-50%) rotate(45deg);
}

.timeline-right .timeline-step-card::after {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    width: 16px;
    height: 16px;
    background: #fff;
    border-left: 1px solid rgba(226, 232, 240, 0.8);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transform: translateY(-50%) rotate(45deg);
}

.timeline-step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 55px -20px rgba(0, 0, 0, 0.15);
}

.timeline-step-card:hover::before {
    opacity: 1;
}

.phase-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1rem;
}

.phase-1 { background: rgba(2, 132, 199, 0.08); color: #0369a1; }
.phase-2 { background: rgba(13, 148, 136, 0.08); color: #0f766e; }
.phase-3 { background: rgba(243, 156, 18, 0.1); color: #b45309; }
.phase-4 { background: rgba(225, 29, 72, 0.08); color: #be123c; }
.phase-5 { background: rgba(99, 102, 241, 0.1); color: #4f46e5; }
.phase-final { background: rgba(243, 156, 18, 0.12); color: #b45309; }

.step-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.75rem;
}

.step-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: var(--transition-slow);
}

.icon-1 { background: rgba(2, 132, 199, 0.1); color: #0284c7; }
.icon-2 { background: rgba(13, 148, 136, 0.1); color: #0d9488; }
.icon-3 { background: rgba(243, 156, 18, 0.12); color: #d97706; }
.icon-4 { background: rgba(225, 29, 72, 0.1); color: #e11d48; }
.icon-5 { background: rgba(99, 102, 241, 0.1); color: #6366f1; }
.icon-final { background: rgba(243, 156, 18, 0.15); color: #d97706; }

.timeline-step-card:hover .step-card-icon {
    transform: scale(1.08) rotate(-4deg);
}

.step-card-header h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.2px;
    margin: 0;
}

.timeline-step-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.tag {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: 0.2px;
}

.tag-1 { background: rgba(2, 132, 199, 0.06); color: #0369a1; }
.tag-2 { background: rgba(13, 148, 136, 0.06); color: #0f766e; }
.tag-3 { background: rgba(243, 156, 18, 0.08); color: #b45309; }
.tag-4 { background: rgba(225, 29, 72, 0.06); color: #be123c; }
.tag-5 { background: rgba(99, 102, 241, 0.08); color: #4f46e5; }
.tag-final { background: rgba(243, 156, 18, 0.1); color: #b45309; }

.card-final {
    background: linear-gradient(135deg, #fffbeb 0%, #fff 50%, #fff7ed 100%);
    border-color: rgba(243, 156, 18, 0.2);
}

.card-final::before {
    background: linear-gradient(90deg, #f39c12, #d97706);
}

/* ===== New CTA Section ===== */
.cta-section-new {
    background: linear-gradient(135deg, #071226 0%, #0f2744 40%, #132d4e 100%);
    padding: 5.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-bg-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.cta-shape-1 {
    position: absolute;
    top: -40px;
    left: -30px;
    width: 180px;
    height: 120px;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.12), transparent);
    border-radius: 0 0 60% 0;
}

.cta-shape-1::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.08), transparent);
    border-radius: 0 0 60% 0;
    clip-path: polygon(0 0, 50% 0, 0 50%);
}

.cta-shape-2 {
    position: absolute;
    bottom: -50px;
    right: 10%;
    width: 260px;
    height: 260px;
    border: 2px solid rgba(2, 132, 199, 0.12);
    border-radius: 50%;
}

.cta-shape-2::before {
    content: '';
    position: absolute;
    inset: 30px;
    border: 1px solid rgba(243, 156, 18, 0.08);
    border-radius: 50%;
}

.cta-pattern-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
    z-index: 0;
}

.cta-container-new {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.08);
    padding: 5px 14px;
    border-radius: 50px;
    border: 1px solid rgba(245, 158, 11, 0.18);
    margin-bottom: 1.5rem;
}

.cta-eyebrow i {
    font-size: 0.85rem;
}

.cta-content-new h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.8px;
    margin-bottom: 1rem;
}

.cta-accent {
    color: #f59e0b;
    display: inline-block;
    position: relative;
}

.cta-content-new p {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 2rem;
}

.cta-buttons-new {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #0f172a;
    padding: 0.85rem 1.6rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 6px 20px -4px rgba(245, 158, 11, 0.5);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px -6px rgba(245, 158, 11, 0.55);
}

.btn-cta-whatsapp {
    background: #fff;
    color: #16a34a;
    padding: 0.85rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid #16a34a;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-cta-whatsapp:hover {
    background: #16a34a;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px -8px rgba(22, 163, 74, 0.45);
}

.cta-trust-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #cbd5e1;
    font-size: 0.78rem;
    font-weight: 600;
}

.trust-badge i {
    color: #f59e0b;
    font-size: 0.9rem;
}

.cta-visual-new {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 380px;
}

.floating-card-stack {
    position: relative;
    width: 100%;
    max-width: 320px;
    height: 400px;
}

.card-stack {
    position: absolute;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.5);
}

.card-stack-back {
    width: 260px;
    height: 340px;
    left: 10px;
    top: 30px;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.8), rgba(15, 39, 68, 0.9));
    transform: rotate(-7deg);
    z-index: 1;
}

.card-stack-middle {
    width: 260px;
    height: 340px;
    right: 10px;
    top: 15px;
    background: linear-gradient(135deg, rgba(15, 39, 68, 0.7), rgba(7, 15, 28, 0.85));
    transform: rotate(5deg);
    z-index: 2;
}

.card-stack-front {
    width: 270px;
    height: 360px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 3;
    background: linear-gradient(180deg, #fef9c3 0%, #fff 60%, #fef3c7 100%);
    border: 1px solid rgba(243, 156, 18, 0.15);
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.card-start-badge {
    position: absolute;
    top: 12px;
    right: -4px;
    background: #e11d48;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 4px 0 0 4px;
    box-shadow: -4px 4px 12px -4px rgba(225, 29, 72, 0.4);
}

.card-icon-wrap {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.card-icon-main {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 12px 30px -8px rgba(245, 158, 11, 0.5);
    position: relative;
}

.card-icon-wrap::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 26px;
    background: rgba(245, 158, 11, 0.12);
    z-index: -1;
}

.card-quote-text {
    text-align: center;
    font-size: 1rem;
    color: #334155;
    line-height: 1.5;
    margin-bottom: 1.75rem;
}

.card-quote-text strong {
    color: #0f172a;
    font-weight: 800;
}

.card-progress-dots {
    display: flex;
    gap: 6px;
    margin-bottom: 1rem;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #cbd5e1;
}

.dot-active {
    width: 18px;
    border-radius: 3px;
    background: #0284c7;
}

.card-brand {
    margin-top: auto;
    font-size: 0.7rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

/* ===== New Insights Section ===== */
.insights-new-section {
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
    position: relative;
    padding-top: 3rem;
}

.insights-header-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn-insights-view-all {
    background: #e0f2fe;
    color: #0284c7;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.7rem 1.4rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-insights-view-all:hover {
    background: #0284c7;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -8px rgba(2, 132, 199, 0.4);
}

.insights-4col-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.insight-simple-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 40px -18px rgba(2, 132, 199, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.insight-simple-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px -20px rgba(2, 132, 199, 0.2);
    border-color: transparent;
}

.insight-simple-img {
    height: 210px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 18px 18px 0 0;
    overflow: hidden;
}

.insight-simple-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.08) 100%);
    pointer-events: none;
}

.insight-tag-bar {
    position: absolute;
    top: 20px;
    left: 16px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 7px 18px;
    border-radius: 10px;
    z-index: 2;
    box-shadow: 0 6px 16px -6px rgba(217, 119, 6, 0.5);
}

.insight-read-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.1);
}

.insight-read-badge i {
    font-size: 0.7rem;
}

.insight-simple-body {
    padding: 1.5rem 1.4rem 1.6rem 1.4rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.insight-simple-body h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    transition: color 0.3s ease;
}

.insight-simple-card:hover .insight-simple-body h4 {
    color: #0284c7;
}

.insight-simple-date {
    margin-top: auto;
    font-size: 0.88rem;
    color: #94a3b8;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.insight-simple-date i {
    color: #f59e0b;
}

/* ===== Insights carousel ===== */
.insights-carousel-viewport {
    overflow: hidden;
    padding-bottom: 1rem;
}

.insights-4col-grid {
    display: flex;
    gap: 1.75rem;
    max-width: none;
    margin: 0;
    transition: transform .45s ease;
}

.insights-4col-grid .insight-simple-card {
    flex: 0 0 calc((100% - 5.25rem) / 4);
}

.insights-carousel-controls {
    display: flex;
    gap: .65rem;
}

.insights-slider-control {
    width: 42px;
    height: 42px;
    border: 1px solid #dbe4ec;
    border-radius: 50%;
    color: #0b192c;
    background: #fff;
    cursor: pointer;
    transition: all .25s ease;
}

.insights-slider-control:hover {
    color: #fff;
    background: #0284c7;
    border-color: #0284c7;
}
@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1280px;
    }
}
/* ===== Footer Overrides ===== */
.footer {
    background: linear-gradient(180deg, #050c18 0%, #071226 100%);
    padding: 4.5rem 1rem 0 1rem;
}

.footer::before {
    background: linear-gradient(90deg, transparent 0%, rgba(243, 156, 18, 0.3) 20%, rgba(243, 156, 18, 0.4) 50%, rgba(243, 156, 18, 0.3) 80%, transparent 100%);
}

/* ===== Responsive for new sections ===== */
@media (max-width: 1024px) {
    .timeline-container {
        max-width: 700px;
    }
    .timeline-line {
        left: 32px;
        transform: none;
    }
    .timeline-row {
        grid-template-columns: 64px 1fr;
    }
    .timeline-left .timeline-step-card,
    .timeline-right .timeline-step-card {
        grid-column: 2;
        margin: 0 0 0 1rem;
    }
    .timeline-left .timeline-node,
    .timeline-right .timeline-node {
        grid-column: 1;
    }
    .timeline-left .timeline-step-card::after,
    .timeline-right .timeline-step-card::after {
        left: -8px;
        right: auto;
        border-left: 1px solid rgba(226, 232, 240, 0.8);
        border-bottom: 1px solid rgba(226, 232, 240, 0.8);
        border-right: none;
        border-top: none;
        transform: translateY(-50%) rotate(45deg);
    }
    .cta-container-new {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .cta-content-new p { margin-left: auto; margin-right: auto; }
    .cta-buttons-new, .cta-trust-row { justify-content: center; }
    .floating-card-stack { margin: 0 auto; }
    .insights-4col-grid {
        grid-template-columns: 1fr 1fr;
    }
    .insights-4col-grid .insight-simple-card {
        flex-basis: calc((100% - 1.75rem) / 2);
    }
    .insight-simple-img { height: 200px; }
}

@media (max-width: 768px) {
    .timeline-header h2 { font-size: 1.9rem; }
    .cta-section-new { padding: 3.5rem 1.25rem; }
    .cta-content-new h2 { font-size: 2rem; }
    .floating-card-stack { max-width: 260px; height: 340px; }
    .card-stack-back, .card-stack-middle { width: 210px; height: 280px; }
    .card-stack-front { width: 220px; height: 300px; padding: 1.25rem; }
    .card-icon-main { width: 60px; height: 60px; font-size: 1.4rem; }
    .card-quote-text { font-size: 0.9rem; }
    .insights-header-new { flex-direction: column; align-items: flex-start; }
    .insights-header-new h2 { font-size: 2rem !important; }
    .insights-4col-grid { gap: 1.25rem; }
    .insights-4col-grid .insight-simple-card { flex-basis: 100%; }
    .insight-simple-img { height: 220px; }
    .insight-simple-body h4 { font-size: 1.05rem; }
    .timeline-node { width: 44px; height: 44px; font-size: 0.78rem; }
    .timeline-node-final { width: 48px; height: 48px; font-size: 1rem; }
    .timeline-step-card { padding: 1.25rem; }
    .step-card-header h3 { font-size: 1.02rem; }
}

/* ===== Homepage technology and Why IP EVER sections ===== */
.tech-areas-section {
    padding: 4rem 2rem 4.5rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.tech-areas-section .container-narrow {
    max-width: 1180px;
}

.tech-areas-section .section-header {
    margin-bottom: 1.75rem;
}

.tech-areas-section .section-header h2,
.why-section .section-header h2 {
        font-size: 2.5rem;
    letter-spacing: -0.8px;
    margin-bottom: 0.75rem;
}

.tech-areas-row {
    padding: 1.35rem 1.5rem;
    color: var(--primary);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.9;
}

.tech-slider {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.tech-slider-viewport {
    min-width: 0;
    overflow: hidden;
    flex: 1;
    padding: .35rem .15rem .7rem;
}

.tech-slider-track {
    display: flex;
    gap: 1rem;
    transition: transform .4s ease;
}

.tech-area-card {
    flex: 0 0 calc((100% - 3rem) / 4);
    min-height: 150px;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.tech-area-card:hover {
    transform: translateY(-5px);
    border-color: rgba(2, 132, 199, .3);
    box-shadow: var(--shadow-lg);
}

.tech-area-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: .85rem;
    border-radius: 14px;
    color: var(--secondary-blue);
    background: rgba(2, 132, 199, .1);
    font-size: 1.35rem;
}

.tech-area-card h3 {
    margin: 0;
    color: var(--primary);
    font-size: .95rem;
    line-height: 1.35;
}

.tech-slider-control {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--primary);
    background: #fff;
    cursor: pointer;
    transition: var(--transition);
}

.tech-slider-control:hover {
    color: #fff;
    background: var(--secondary-blue);
    border-color: var(--secondary-blue);
}

.why-section {
    padding: 4.5rem 2rem 5rem;
    background: #ffffff;
}

.why-section .container-narrow {
    max-width: 1180px;
}

.why-section .section-header {
    margin-bottom: 2rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.why-card {
    min-height: 220px;
    padding: 1.6rem 1.45rem;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(2, 132, 199, 0.2);
}

.why-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 12px;
    color: var(--secondary-blue);
    background: rgba(2, 132, 199, 0.1);
    font-size: 1.25rem;
}

.why-card h4 {
    margin: 0 0 .65rem;
    color: var(--primary);
    font-size: 1.05rem;
    line-height: 1.35;
}

.why-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: .88rem;
    line-height: 1.65;
}

/* ===== Patent Services page ===== */
.services-page-hero {
    padding: 1.4rem 0 4.8rem;
    color: #fff;
    background: linear-gradient(115deg, rgba(7, 20, 38, .98), rgba(15, 52, 80, .94));
}

.services-breadcrumb {
    display: flex;
    align-items: center;
    gap: .55rem;
    /* margin-bottom: 4rem; */
    width: fit-content;
    padding: .55rem .8rem;
    color: #b8ccda;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 5px;
    font-size: .85rem;
    margin:2rem auto 2rem auto;
}

.services-breadcrumb a:hover { color: #fff; }
.services-breadcrumb span:last-child { color: #fff; font-weight: 700; }

.services-page-heading { max-width: 720px; margin: 0 auto; text-align: center; }
.services-eyebrow { color: #f2a900; font-size: .75rem; font-weight: 800; letter-spacing: 1.6px; }
.services-page-heading h1 { margin: .9rem 0 1rem; color: #fff; font-size: clamp(2.3rem, 5vw, 4rem); line-height: 1.1; }
.services-page-heading p {  margin: 0; color: #d2e0e8; font-size: 1.12rem; line-height: 1.75; }

.services-page-content { padding-top: 4.8rem; padding-bottom: 2.5rem; background: #f8fafc; }
.services-page-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.4rem; }
.services-page-card { min-height: 420px; padding: 0 1.8rem 1.8rem; background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; box-shadow: 0 12px 34px -20px rgba(16,42,67,.25); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; overflow: hidden; }
.services-page-card:hover { transform: translateY(-6px); border-color: rgba(2,132,199,.3); box-shadow: 0 22px 42px -20px rgba(2,132,199,.25); }
.services-page-image { width: calc(100% + 3.6rem); height: 160px; margin: 0 -1.8rem 1.5rem; display: block; object-fit: cover; }
.services-page-icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 1.35rem; border-radius: 14px; color: #0284c7; background: #e0f2fe; font-size: 1.35rem; }
.services-page-card h2 { min-height: 54px; margin: 0 0 .8rem; color: #102a43; font-size: 1.14rem; line-height: 1.35; }
.services-page-card p { margin: 0; color: #5f7182; font-size: .94rem; line-height: 1.7; }
.services-page-cta { padding: 4rem 0; color: #fff; text-align: center; background: linear-gradient(115deg, #102a43, #0b1f33); }
.services-page-cta h2 { margin: 0 0 1.4rem; font-size: 2.15rem; }

/* ===== Researchers & Institutions page ===== */
.researchers-page-hero { padding-bottom: 5.5rem; }
.researchers-page-hero .services-page-heading { max-width: 820px; }
.researchers-page-content { padding-top: 4.5rem; padding-bottom: 5rem; background: #f8fafc; }
.researcher-intro { max-width: 720px; margin-bottom: 2rem; }
.researcher-intro h2 { margin: .65rem 0 0; color: #102a43; font-size: clamp(1.8rem, 3vw, 2.55rem); line-height: 1.2; }
.researcher-support-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.researcher-support-card { padding: 2rem; background: #fff; border: 1px solid #dce6ed; border-top: 4px solid #0284c7; border-radius: 14px; box-shadow: 0 18px 42px -24px rgba(16,42,67,.28); }
.researcher-support-card.institution-card { border-top-color: #0d9488; }
.researcher-card-heading { display: flex; align-items: center; gap: 1rem; padding-bottom: 1.35rem; border-bottom: 1px solid #e8eef2; }
.researcher-card-heading h2 { margin: 0; color: #102a43; font-size: 1.35rem; line-height: 1.3; }
.researcher-card-icon { width: 58px; height: 58px; flex: 0 0 58px; display: grid; place-items: center; border-radius: 15px; color: #0284c7; background: #e0f2fe; font-size: 1.45rem; }
.institution-card .researcher-card-icon { color: #087f8c; background: #dff6f3; }
.researcher-service-list { list-style: none; padding: 1.35rem 0 1.5rem; margin: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem 1rem; }
.researcher-service-list li { position: relative; padding-left: 1.2rem; color: #52697a; font-size: .95rem; }
.researcher-service-list li::before { content: '✓'; position: absolute; left: 0; color: #0284c7; font-weight: 800; }
.institution-card .researcher-service-list li::before { color: #087f8c; }
.researcher-card-link { display: inline-flex; align-items: center; gap: .55rem; color: #0284c7; font-size: .88rem; font-weight: 800; text-transform: uppercase; letter-spacing: .35px; }
.researcher-card-link:hover { color: #102a43; }
.researcher-card-link i { transition: transform .2s ease; }
.researcher-card-link:hover i { transform: translateX(4px); }
.researcher-callout-section { padding: 4.5rem 0; background: #fff; }
.researcher-callout { display: flex; align-items: center; justify-content: space-between; gap: 2.5rem; padding: 2.5rem; background: linear-gradient(120deg, #fff8e6, #fffdf6); border: 1px solid #f2d58a; border-left: 5px solid #f2a900; border-radius: 12px; }
.researcher-callout h2 { margin: .55rem 0 .7rem; color: #102a43; font-size: clamp(1.65rem, 3vw, 2.25rem); }
.researcher-callout p { max-width: 650px; margin: 0; color: #5f7182; font-size: 1rem; }
.researcher-callout-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .75rem; min-width: 310px; }
.btn-outline-dark { border: 1px solid #102a43; color: #102a43; background: transparent; }
.btn-outline-dark:hover { color: #fff; background: #102a43; }

/* ===== Additional audience, transfer, training, insights, About and Contact pages ===== */
.audience-page-hero { padding-bottom: 5.2rem; }
.audience-page-content { background: #f8fafc; padding-top: 4.8rem; padding-bottom: 5.2rem; }
.audience-panel-grid, .transfer-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.audience-panel { padding: 2.2rem; background: #fff; border: 1px solid #dce6ed; border-top: 4px solid #f2a900; border-radius: 14px; box-shadow: 0 18px 42px -24px rgba(16,42,67,.28); }
.industry-panel { border-top-color: #087f8c; }
.audience-panel-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 1.1rem; border-radius: 15px; color: #f2a900; background: #fff3cf; font-size: 1.45rem; }
.industry-panel .audience-panel-icon { color: #087f8c; background: #dff6f3; }
.audience-panel h2 { margin: 0; color: #102a43; font-size: 1.45rem; }
.services-page-cta p { max-width: 680px; margin: 0 auto 1.4rem; color: #d2e0e8; }
.transfer-card-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.transfer-card { min-height: 275px; padding: 1.8rem; }
.training-programme-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.2rem; }
.training-programme { min-height: 170px; padding: 1.5rem; display: flex; flex-direction: column; justify-content: space-between; background: #fff; border: 1px solid #dce6ed; border-radius: 12px; box-shadow: 0 12px 34px -20px rgba(16,42,67,.25); }
.training-programme i { color: #087f8c; font-size: 1.6rem; }
.training-programme h2 { margin: 1.4rem 0 0; color: #102a43; font-size: 1.05rem; line-height: 1.35; }
.training-formats { margin-top: 3rem; padding: 2rem; text-align: center; background: #eef7f8; border: 1px solid #c9e8e7; border-radius: 12px; }
.training-formats p { margin: .8rem 0 1.3rem; color: #52697a; font-weight: 700; }
.training-invention { padding: 3.6rem 0; text-align: center; background: #fff8e6; border-top: 1px solid #f2d58a; }
.training-invention h2 { margin: 0 0 1.2rem; color: #102a43; }
.insights-page-content { background: #f8fafc; }
.insights-page-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.insights-page-card { overflow: hidden; display: flex; flex-direction: column; background: #fff; border: 1px solid #dce6ed; border-radius: 14px; box-shadow: 0 12px 34px -20px rgba(16,42,67,.25); }
.insights-page-card img { width: 100%; height: 190px; object-fit: cover; }
.insights-page-card > *:not(img) { margin-left: 1.4rem; margin-right: 1.4rem; }
.insights-page-card span { margin-top: 1.25rem; color: #087f8c; font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .4px; }
.insights-page-card h2 { min-height: 62px; margin-top: .65rem; color: #102a43; font-size: 1.2rem; line-height: 1.4; }
.insights-page-card p { margin-top: auto; margin-bottom: .4rem; color: #5f7182; }
.insights-page-card a { margin-bottom: 1.4rem; color: #0284c7; font-weight: 800; }
.about-page-content { background: #f8fafc; }
.about-practice { padding: 2.2rem; margin-bottom: 2.5rem; background: #fff; border-left: 5px solid #087f8c; border-radius: 10px; box-shadow: 0 12px 34px -20px rgba(16,42,67,.25); }
.about-practice h2 { margin: .6rem 0 0; color: #102a43; font-size: clamp(1.5rem, 3vw, 2.2rem); }
.about-leadership { display: grid; grid-template-columns: 1fr .75fr; gap: 3rem; align-items: center; padding: 2.5rem; background: #fff; border: 1px solid #dce6ed; border-radius: 14px; }
.about-leadership h2 { margin: .7rem 0 .5rem; color: #102a43; font-size: 2rem; }
.about-leadership p { color: #5f7182; line-height: 1.75; }
.about-leadership .about-role { color: #087f8c; font-weight: 700; }
.about-leadership img { width: 100%; max-height: 430px; object-fit: contain; border-radius: 12px; }

/* ===== About: Team profiles ===== */
.about-team-section { margin-top: 3.5rem; }
.about-team-intro { max-width: 820px; margin: 0 auto 3rem; text-align: center; }
.about-team-intro h2 {
    max-width: 680px;
    margin: .65rem auto 1rem;
    color: #102a43;
    font-size: clamp(1.85rem, 3.3vw, 2.65rem);
    line-height: 1.2;
}
.about-team-intro p { margin: 0; color: #52697a; font-size: 1rem; line-height: 1.8; }
.team-row-heading {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 3rem 0 1.35rem;
    color: #102a43;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
}
.team-row-heading::after { content: ''; height: 1px; flex: 1; background: #dce6ed; }
.team-profile-grid { display: grid; gap: 1.5rem; }
.team-profile-grid-leadership { grid-template-columns: 1fr; }
.team-profile-grid-team { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.team-profile-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border: 1px solid #dce6ed;
    border-top: 4px solid #087f8c;
    border-radius: 14px;
    box-shadow: 0 14px 36px -24px rgba(16, 42, 67, .35);
    transition: transform .25s ease, box-shadow .25s ease;
}
.team-profile-card:hover { transform: translateY(-5px); box-shadow: 0 22px 42px -24px rgba(8, 127, 140, .38); }
.team-profile-card-featured {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
    align-items: stretch;
}
.team-profile-card-featured .team-profile-content { grid-column: 1; grid-row: 1; padding: 2.5rem; }
.team-profile-card-featured .team-profile-image {
    grid-column: 2;
    grid-row: 1;
    height: 400px;
    padding: 1.25rem;
}
.team-profile-image {
    width: 100%;
    /* height: 240px; */
    display: block;
    padding: 1rem;
    object-fit: contain;
    object-position: center top;
    /* background: #eef5f7; */
}
.team-profile-content { display: flex; flex: 1; flex-direction: column; padding: 1.5rem; }
.team-profile-content h3 { margin: 0 0 .55rem; color: #102a43; font-size: 1.22rem; line-height: 1.35; }
.team-profile-content h3 span { display: block; font-size: .92rem; font-weight: 600; }
.team-profile-role { min-height: 42px; margin: 0 0 1rem; color: #087f8c; font-size: .9rem; font-weight: 800; line-height: 1.45; }
.team-profile-content > p:not(.team-profile-role) { margin: 0; color: #52697a; font-size: .93rem; line-height: 1.72; }
.team-profile-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    align-self: flex-start;
    margin-top: auto;
    padding: .75rem 0 0;
    color: #087f8c;
    font-size: .88rem;
    font-weight: 800;
}
.team-profile-link:hover { color: #102a43; }
.team-collaboration-callout {
    display: grid;
    grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
    gap: 2.5rem;
    align-items: center;
    margin-top: 4rem;
    padding: 1.25rem;
    color: #fff;
    background: linear-gradient(118deg, #071226, #0b3945);
    border-radius: 16px;
    box-shadow: 0 20px 46px -24px rgba(7, 18, 38, .55);
}
.team-collaboration-callout img { width: 100%; height: 270px; object-fit: cover; border-radius: 10px; }
.team-collaboration-callout h2 { margin: .65rem 0 .85rem; color: #fff; font-size: clamp(1.65rem, 3vw, 2.35rem); line-height: 1.2; }
.team-collaboration-callout p { max-width: 620px; margin: 0 0 1.4rem; color: #d2e0e8; line-height: 1.75; }

@media (max-width: 1000px) {
    .team-profile-grid-team { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .team-profile-grid-team .team-profile-card:last-child { grid-column: 1 / -1; }
    .team-collaboration-callout { grid-template-columns: 1fr; gap: 1.5rem; }
    .team-collaboration-callout img { height: 230px; }
    .team-profile-card-featured { grid-template-columns: minmax(0, 1fr) minmax(240px, .8fr); }
}

@media (max-width: 650px) {
    .about-team-section { margin-top: 2.5rem; }
    .about-team-intro { margin-bottom: 2.25rem; text-align: left; }
    .team-row-heading { margin-top: 2.25rem; }
    .team-profile-grid-leadership, .team-profile-grid-team { grid-template-columns: 1fr; }
    .team-profile-grid-team .team-profile-card:last-child { grid-column: auto; }
    .team-profile-card-featured { display: flex; flex-direction: column; }
    .team-profile-card-featured .team-profile-content { order: 2; padding: 1.3rem; }
    .team-profile-card-featured .team-profile-image { order: 1; height: 260px; padding: 1rem; }
    .team-profile-image { height: 230px; }
    .team-profile-content { padding: 1.3rem; }
    .team-profile-role { min-height: auto; }
    .team-collaboration-callout { margin-top: 2.75rem; padding: 1rem; }
    .team-collaboration-callout img { height: 195px; }
}
.contact-page-content { background: #f8fafc; }
.contact-choice-section { margin-bottom: 2rem; }
.contact-choice-section h2 { margin: 0 0 .9rem; color: #102a43; font-size: 1.2rem; }
.contact-submit { width: 100%; margin-top: 1.5rem; justify-content: center; }
.contact-assurance { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; color: #5f7182; font-size: .9rem; }
.contact-assurance a { color: #087f8c; font-weight: 700; }
.contact-assurance span { padding-left: 1rem; border-left: 1px solid #bdcdd6; }

/* ===== Contact page form design ===== */
@media (min-width: 1100px) {
    .contact-page .nav-container { gap: 1rem; }
    .contact-page .nav-links { gap: .85rem; flex-wrap: nowrap; }
    .contact-page .nav-links a { font-size: .78rem; }
    .contact-page .nav-container > .btn { padding: .72rem 1rem; font-size: .76rem; }
}

.contact-page .contact-page-hero { padding-bottom: 4.5rem; }
.contact-page {
    background: #e2eadb;
}

.contact-page .contact-page-content {
    padding: 2rem 0 5rem;
    background: #e2eadb;
}

.contact-page .form-container {
    max-width: 1220px;
    width: min(90%, 1200px);
    margin: 0 auto;
    padding: 1.4rem 1.8rem 1.8rem;
    background: #ffffff;
    border: 1px solid rgba(13, 25, 47, 0.12);
    border-radius: 12px;
    box-shadow: 0 12px 30px -24px rgba(13, 25, 47, 0.25);
}

.contact-page .contact-choice-section {
    padding-bottom: 1.2rem;
    margin-bottom: 1.4rem;
    border-bottom: none;
}

.contact-page .contact-choice-section h2 {
    font-size: 2.2rem;
    font-weight: 400;
    color: #1d2b57;
    margin: 0 0 1rem;
    letter-spacing: -0.04em;
    line-height: 1.2;
}

.contact-page .choice-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.4rem;
    align-items: center;
    justify-content: flex-start;
    max-width: 100%;
}

.contact-page .choice-grid label {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    min-height: auto;
    padding: 0;
    color: #1d2b57;
    background: transparent;
    border: none;
    border-radius: 0;
    font-size: 1.05rem;
    cursor: pointer;
    transition: none;
}

.contact-page .choice-grid label:has(input:checked) {
    color: #1d2b57;
    background: transparent;
    border: none;
}

.contact-page .choice-grid input {
    width: 18px;
    height: 18px;
    accent-color: #1d2b57;
    margin: 0;
}

.contact-page .form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem 1.5rem;
    max-width: 100%;
    width: min(100%, 1200px);
    margin: 0.75rem auto 0;
}

.contact-page .form-group {
    min-width: 0;
}

.contact-page .form-group.full {
    grid-column: 1 / -1;
}

.contact-page .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1d2b57;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

.contact-page input:not([type="radio"]):not([type="checkbox"]),
.contact-page select,
.contact-page textarea {
    width: 100%;
    padding: .8rem .9rem;
    color: #19324a;
    background: rgba(255,255,255,0.35);
    border: 1px solid rgba(60, 78, 105, 0.7);
    border-radius: 5px;
    font: inherit;
    box-shadow: inset 0 1px 2px rgba(15,23,42,0.03);
}

.contact-page input:focus,
.contact-page select:focus,
.contact-page textarea:focus {
    outline: none;
    border-color: rgba(28, 54, 111, 0.8);
    box-shadow: 0 0 0 3px rgba(28, 54, 111, 0.08);
}

.contact-page .form-notice {
    margin: 0 0 .75rem;
    padding: .8rem 0.9rem;
    color: #4b5563;
    background: transparent;
    border-left: 3px solid #f4a623;
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-page .consent {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    margin-top: 1.3rem;
    color: #5f7182;
    font-size: .84rem;
}

.contact-page .consent input {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    margin-top: .15rem;
    accent-color: #1d2b57;
}

.contact-page .contact-submit {
    margin-top: 1.2rem;
    min-height: 46px;
    width: auto;
    justify-content: center;
    padding: 0.8rem 1.8rem;
}

.contact-page .captcha-check {
    max-width: 310px;
    margin-top: 1.3rem;
}

.contact-page .captcha-check label {
    display: block;
    margin-bottom: .5rem;
    color: #1d2b57;
    font-weight: 600;
}

.contact-page .captcha-check input {
    width: 120px;
}

.contact-page .honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-page .form-message {
    margin-bottom: 1.25rem;
    padding: .9rem 1rem;
    border-radius: 6px;
    font-weight: 600;
}

.contact-page .form-message.success {
    color: #166534;
    background: #dcfce7;
    border: 1px solid #86efac;
}

.contact-page .form-message.error {
    color: #991b1b;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.contact-page .contact-assurance {
    justify-content: center;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(78, 96, 121, 0.25);
    margin-top: 1.5rem;
}

@media (max-width: 700px) {
    .contact-page .contact-page-content { padding: 3rem 0rem 4rem; }
    .contact-page .form-container {         padding: .7rem;
        width: min(100%, 1200px); }
    .contact-page .form-grid { grid-template-columns: 1fr; }
    .contact-page .form-group.full { grid-column: auto; }
    .contact-page .choice-grid { display: grid; grid-template-columns: 1fr; }
    .contact-page .choice-grid label { width: 100%; }
}

@media (min-width: 1200px) {
    .contact-page .form-container {
        width: 100%;
        max-width: 900px;
    }
}

@media (max-width: 1000px) {
    .transfer-card-grid, .training-programme-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .insights-page-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
    .audience-panel-grid, .transfer-card-grid, .training-programme-grid, .insights-page-grid, .about-leadership { grid-template-columns: 1fr; }
    .audience-panel { padding: 1.5rem; }
    .about-leadership { padding: 1.5rem; gap: 1.5rem; }
    .contact-assurance { flex-direction: column; gap: .6rem; }
    .contact-assurance span { padding-left: 0; border-left: 0; }
}

@media (max-width: 900px) {
    .researcher-callout { align-items: flex-start; flex-direction: column; }
    .researcher-callout-actions { justify-content: flex-start; min-width: 0; }
}

@media (max-width: 600px) {
    html, body {
        max-width: 100%;
        overflow-x: hidden;
        overflow-x: clip;
    }

    .researcher-support-grid { grid-template-columns: 1fr; }
    .researcher-support-card { padding: 1.4rem; }
    .researcher-card-heading h2 { font-size: 1.15rem; }
    .researcher-service-list { grid-template-columns: 1fr; }
    .researcher-callout { padding: 1.5rem; }
    .researcher-callout-actions { flex-direction: column; align-items: stretch; width: 100%; }
    .researcher-callout-actions .btn { width: 100%; }
}

@media (max-width: 900px) {
    .services-page-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
    .services-page-hero { padding-bottom: 3.5rem; }
    .services-breadcrumb { margin-bottom: 2.8rem; }
    .services-page-heading p { font-size: 1rem; }
    .services-page-content { padding-top: 3.5rem; }
    .services-page-grid { grid-template-columns: 1fr; }
    .services-page-card { min-height: auto; }
    .services-page-image { height: 180px; }
}

@media (max-width: 900px) {
    .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .tech-area-card { flex-basis: calc((100% - 1rem) / 2); }
}

@media (max-width: 600px) {
    .tech-areas-section,
    .why-section { padding-left: 1.25rem; padding-right: 1.25rem; }
    .tech-areas-section .section-header h2,
    .why-section .section-header h2 { font-size: 1.9rem; }
    .tech-areas-row { padding: 1.1rem 1rem; font-size: .92rem; }
    .tech-slider { gap: .45rem; }
    .tech-area-card { flex-basis: 100%; min-height: 135px; }
    .tech-slider-control { flex-basis: 36px; width: 36px; height: 36px; }
    .why-grid { grid-template-columns: 1fr; }
    .why-card { min-height: auto; }
}


ul{
    padding-left:0rem !important;
    margin-bottom:0rem !important;
}
.nav-links a{
    font-size: .83rem !important;
}
/* ===== Training page refinement ===== */
@media (min-width: 1100px) {
    .training-page .nav-container { gap: 1rem; }
    .training-page .nav-links { gap: .85rem; flex-wrap: nowrap; }
    .training-page .nav-links a { font-size: .78rem; }
    .training-page .nav-container > .btn { padding: .72rem 1rem; font-size: .76rem; }
}

.training-page .services-page-hero {
    padding-bottom: 4.6rem;
    background: linear-gradient(118deg, rgba(7, 20, 38, .98), rgba(8, 92, 103, .93));
}

.training-page .services-page-heading h1 { max-width: 700px; }
.training-page .services-page-heading p { max-width: 650px; }
.training-page .services-page-content { padding-top: 4.2rem; background: #f4f8fa; }
.training-page .training-programme-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.training-page .training-programme {
    flex: 0 0 calc((100% - 3rem) / 4);
    min-height: 220px;
    padding: 0;
    text-align: center;
    border-radius: 10px;
    border-top: 3px solid #087f8c;
    box-shadow: 0 10px 25px -18px rgba(16,42,67,.35);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.training-page .training-programme > img {
    width: 100%;
    height: 135px;
    display: block;
    object-fit: cover;
    border-radius: 7px 7px 0 0;
}
.training-page .training-programme-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.1rem 1.2rem;
}
.training-page .training-programme:hover {
    transform: translateY(-5px);
    border-top-color: #f2a900;
    box-shadow: 0 20px 35px -18px rgba(8,127,140,.28);
}
.training-page .training-programme i { color: #087f8c; font-size: 1.4rem; }
.training-page .training-programme h2 { margin-top: 0rem; font-size: 1rem; }
.training-page .training-formats {
    margin-top: 2.2rem;
    padding: 1.8rem 2rem 2rem;
    background: #eaf6f7;
    border: 1px solid #c5e6e6;
    border-radius: 10px;
}
.training-page .training-formats p { margin: .7rem 0 1.1rem; font-size: 1rem; }
.training-page .training-invention {
    padding: 3.2rem 0;
    background: linear-gradient(120deg, #fff8e6, #fffdf6);
}
.training-page .training-invention h2 { font-size: clamp(1.55rem, 3vw, 2.2rem); }

@media (max-width: 1000px) {
    .training-page .training-programme { flex-basis: calc((100% - 1rem) / 2); }
}

@media (max-width: 600px) {
    .training-page .nav-links { gap: .7rem 1rem; }
    .training-page .training-programme { flex-basis: 100%; }
    .training-page .training-programme { min-height: 255px; }
    .training-page .training-programme > img { height: 125px; }
    .training-page .training-formats { padding: 1.4rem 1rem; }
    .training-page .training-formats p { line-height: 1.8; }
}

    /* Keep the shared desktop navbar on one line across every page. */
    @media (min-width: 1001px) {
        .nav-container {
            max-width: 1320px;
            gap: .75rem;
            padding-left: 1rem;
            padding-right: 1rem;
        }
        .logoimg .logo img { width: 140px; }
        .nav-links {
            min-width: 0;
            gap: .9rem;
            flex-wrap: nowrap;
        }
        .nav-links li { flex: 0 0 auto; }
        .nav-links a { font-size: .71rem; }
        .nav-container > .btn {
            padding: .68rem .85rem;
            font-size: .71rem;
        }
    }

    .disclaimer {
        line-height: 1.5;
    color: #94a3b8;
    font-size: 15px !important;
    }

    .about-leadership i{
        color: #fff;
        background-color: #0284c7;
        padding: 0.5rem;
        border-radius: 5px;
    }

/* ===== Phone-first homepage refinement ===== */
@media (max-width: 600px) {
    .hero {
        padding: 2.75rem 0.25rem 3.25rem;
    }

    .hero-container { gap: 2.25rem; }

    .hero h1 {
        font-size: clamp(2rem, 10vw, 2.45rem);
        margin-bottom: 1.35rem;
        letter-spacing: -0.8px;
    }

    .hero h1::after { margin-top: .9rem; }

    .hero p {
        margin-bottom: 1.5rem;
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr;
        gap: .75rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons .btn {
        width: 100%;
        min-height: 48px;
        justify-content: center;
    }

    .hero-features {
        display: grid;
        grid-template-columns: 1fr;
        gap: .75rem;
        padding-top: 1.25rem;
    }

    .hero-feature {
        max-width: none;
        align-items: center;
        font-size: .84rem;
    }

    .hero-feature i { padding: 8px; }

    .hero-image-wrap { animation: none; }
    .hero-image { height: 230px; border-radius: 16px; }
    .hero-floating-card, .hero-ribbon { display: none; }

    .section { padding: 3rem 1.25rem; }

    .section-header,
    .section-header-left {
        margin-bottom: 1.75rem !important;
    }

    .section-header-left {
        align-items: flex-start;
        gap: 1rem;
    }

    .section-header h2,
    .section-header-tight h2,
    .timeline-header h2,
    .client-strip-title {
        font-size: 1.5rem !important;
        line-height: 1.15;
        text-align: left;
    }

    .section-header p { font-size: .95rem; }
    .section-link { padding: .55rem .75rem; font-size: .86rem; white-space: normal; }

    .grid-4,
    .services-grid,
    .why-grid {
        gap: .85rem;
    }

    .support-card,
    .service-card,
    .why-card {
        min-height: 0;
        padding: 1rem;
        display: grid;
        grid-template-columns: 48px minmax(0, 1fr);
        column-gap: .85rem;
        align-items: start;
    }

    .support-icon,
    .service-icon,
    .why-icon {
        grid-row: 1 / span 2;
        width: 48px;
        height: 48px;
        margin: 0;
        border-radius: 12px;
        font-size: 1.2rem;
    }

    .support-card h3,
    .service-card h3,
    .why-card h4 {
        margin: .1rem 0 .3rem;
        font-size: .98rem;
        line-height: 1.3;
    }

    .support-card p,
    .service-card p,
    .why-card p {
        margin: 0;
        font-size: .82rem;
        line-height: 1.5;
    }

    .tech-areas-section,
    .why-section { padding-top: 3rem; padding-bottom: 3rem; }

    .tech-area-card { min-height: 120px; }

    .stats-section { padding: 3.25rem 1.25rem; }
    .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
    .stat-item { padding: 1.25rem .6rem; border-radius: 12px; }
    .stat-item h3 { margin-bottom: .45rem; font-size: 2.15rem; }
    .stat-item p { font-size: .76rem; }

    .approach-timeline-section { padding-top: 3rem; padding-bottom: 2.25rem; }
    .timeline-container { max-width: 100%; }
    .timeline-line { left: 50%; transform: translateX(-50%); }
    .timeline-row {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: .65rem;
        margin-bottom: 1rem;
    }
    .timeline-left .timeline-step-card,
    .timeline-right .timeline-step-card {
        width: 100%;
        margin: 0;
    }
    .timeline-left .timeline-node,
    .timeline-right .timeline-node {
        order: -1;
        align-self: center;
    }
    .timeline-left .timeline-step-card::after,
    .timeline-right .timeline-step-card::after { display: none; }
    .timeline-step-card { padding: 1rem; }
    .timeline-step-card p { font-size: .83rem; line-height: 1.5; }

    .cta-section-new { padding: 3.25rem 1.25rem; }
    .testimonial-card { min-height: 0; padding: 1.25rem; }
    .testimonial-text { font-size: .9rem; line-height: 1.65; }
    .client-strip-section { padding: 2.5rem 0; overflow: hidden; }

    .client-strip-container {
        padding-right: 1.25rem;
        padding-left: 1.25rem;
        overflow: hidden;
    }

    .client-strip-title { overflow-wrap: anywhere; }

    .client-strip-carousel {
        flex-wrap: wrap;
        justify-content: center;
        gap: .75rem;
    }

    .client-strip-track {
        order: 1;
        flex: 0 0 100%;
        width: 100%;
        min-width: 0;
        min-height: 96px;
        gap: .75rem;
    }

    .client-logo {
        flex: 0 0 calc((100% - .75rem) / 2);
        height: 96px;
    }

    .client-logo img { max-height: 70px; }

    .client-strip-control {
        order: 2;
        width: 42px;
        height: 42px;
    }

    /* Keep testimonial controls below the card so they never squeeze its text. */
    .testimonial-section .carousel-wrap {
        flex-wrap: wrap;
        justify-content: center;
        gap: .75rem;
    }

    .testimonial-section .testimonial-carousel {
        order: 1;
        flex: 0 0 100%;
        width: 100%;
    }

    .testimonial-section .carousel-btn {
        order: 2;
        width: 44px;
        height: 44px;
    }
}
