/* ============================================
   PT CAKRAWALA - Premium Company Profile
   LIGHT THEME with Blue & Dark Accents
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Colors - Light Theme */
    --primary: #0B3B8F;
    --primary-dark: #072B6B;
    --primary-light: #1A56C4;
    --primary-lighter: #E8F0FE;
    --secondary: #00B8D9;
    --secondary-light: #33D6F0;
    --secondary-bg: rgba(0, 184, 217, 0.06);
    --accent-white: #FFFFFF;
    --accent-silver: #94A3B8;

    /* Light backgrounds */
    --bg-body: #F8FAFC;
    --bg-white: #FFFFFF;
    --bg-light: #F1F5F9;
    --bg-light-2: #E8EDF4;
    --bg-card: #FFFFFF;
    --bg-card-hover: #FAFBFF;

    /* Dark accent backgrounds (hero, footer, special sections) */
    --bg-dark: #040B1A;
    --bg-dark-2: #0A1628;
    --bg-dark-3: #0F1D35;

    /* Text colors */
    --text-heading: #0F172A;
    --text-body: #334155;
    --text-muted: #94A3B8;
    --text-light: #CBD5E1;

    /* On dark surfaces */
    --text-on-dark: #FFFFFF;
    --text-on-dark-secondary: rgba(255, 255, 255, 0.7);
    --text-on-dark-muted: rgba(255, 255, 255, 0.45);

    /* Borders */
    --border-light: #E2E8F0;
    --border-medium: #CBD5E1;
    --border-blue: rgba(11, 59, 143, 0.12);
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(0, 184, 217, 0.3);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00B8D9, #0B3B8F);
    --gradient-primary-soft: linear-gradient(135deg, #E0F7FA, #E8F0FE);
    --gradient-hero: linear-gradient(180deg, #040B1A 0%, #0A1628 50%, #0F1D35 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    --gradient-card: linear-gradient(180deg, #FFFFFF, #F8FAFC);
    --gradient-section: linear-gradient(180deg, #F8FAFC, #F1F5F9);

    /* Typography */
    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --fs-display: clamp(2.5rem, 5.5vw, 5rem);
    --fs-h1: clamp(2rem, 4vw, 3.5rem);
    --fs-h2: clamp(1.75rem, 3.5vw, 3rem);
    --fs-h3: clamp(1.15rem, 2vw, 1.5rem);
    --fs-body: 1rem;
    --fs-small: 0.875rem;
    --fs-xs: 0.75rem;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;

    /* Layout */
    --container-max: 1280px;
    --container-wide: 1440px;
    --nav-height: 80px;

    /* Effects */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.1);
    --shadow-blue: 0 8px 30px rgba(11, 59, 143, 0.12);
    --shadow-glow: 0 0 30px rgba(0, 184, 217, 0.15);
    --shadow-card: 0 2px 20px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.03);
    --shadow-card-hover: 0 12px 40px rgba(11, 59, 143, 0.1), 0 0 0 1px rgba(11, 59, 143, 0.06);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    font-size: var(--fs-body);
    color: var(--text-body);
    background: var(--bg-body);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul, ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

::selection {
    background: rgba(0, 184, 217, 0.2);
    color: var(--primary-dark);
}

/* --- Container --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* --- Utility --- */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   PRELOADER (Dark)
   ============================================ */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
    position: relative;
}

.preloader-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 2px solid transparent;
}

.preloader-ring:nth-child(1) {
    width: 120px;
    height: 120px;
    margin: -60px 0 0 -60px;
    border-top-color: var(--secondary);
    animation: preloaderSpin 1.2s linear infinite;
}

.preloader-ring:nth-child(2) {
    width: 90px;
    height: 90px;
    margin: -45px 0 0 -45px;
    border-right-color: var(--primary-light);
    animation: preloaderSpin 1.6s linear infinite reverse;
}

.preloader-ring:nth-child(3) {
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    border-bottom-color: var(--secondary-light);
    animation: preloaderSpin 1s linear infinite;
}

@keyframes preloaderSpin {
    to { transform: rotate(360deg); }
}

.preloader-logo {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 80px;
}

.preloader-c {
    color: var(--secondary);
}

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

.preloader-tagline {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: var(--fs-xs);
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ============================================
   NAVIGATION (Light / Frosted)
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--nav-height);
    transition: var(--transition-base);
}

/* When over dark hero section */
.navbar:not(.scrolled) {
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    z-index: 101;
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-on-dark);
    transition: var(--transition-base);
}

.navbar.scrolled .logo-text {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    font-size: var(--fs-small);
    font-weight: 500;
    color: var(--text-on-dark-secondary);
    position: relative;
    padding: 4px 0;
    transition: var(--transition-base);
}

.navbar.scrolled .nav-link {
    color: var(--text-body);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-on-dark);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--primary);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    font-size: var(--fs-small);
    font-weight: 600;
    color: white;
    transition: var(--transition-base);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 101;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-on-dark);
    border-radius: 2px;
    transition: var(--transition-base);
}

.navbar.scrolled .nav-toggle span {
    background: var(--text-heading);
}

.nav-toggle.active span {
    background: var(--text-on-dark) !important;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION (Stays DARK — premium contrast)
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: calc(var(--nav-height) + var(--space-xl)) var(--space-lg) var(--space-xl);
    background: var(--gradient-hero);
    color: var(--text-on-dark);
}

#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(0, 184, 217, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(11, 59, 143, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 100%, rgba(4, 11, 26, 0.9) 0%, transparent 40%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0, 184, 217, 0.1);
    border: 1px solid rgba(0, 184, 217, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: 500;
    color: var(--secondary);
    letter-spacing: 0.5px;
    margin-bottom: var(--space-lg);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50%;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-size: var(--fs-display);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: var(--space-lg);
    color: var(--text-on-dark);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-on-dark-secondary);
    max-width: 650px;
    margin: 0 auto var(--space-xl);
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-size: var(--fs-body);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 184, 217, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 184, 217, 0.35);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: var(--transition-base);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--secondary);
    background: rgba(0, 184, 217, 0.1);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Glass Cards (Hero) */
.hero-glass-cards {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.glass-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    font-size: var(--fs-small);
    font-weight: 500;
    color: var(--text-on-dark-secondary);
    transition: var(--transition-base);
    animation: glassCardFloat 3s ease-in-out infinite;
}

.glass-card:nth-child(2) { animation-delay: 0.5s; }
.glass-card:nth-child(3) { animation-delay: 1s; }
.glass-card:nth-child(4) { animation-delay: 1.5s; }

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

.glass-card:hover {
    border-color: rgba(0, 184, 217, 0.3);
    background: rgba(0, 184, 217, 0.08);
}

.glass-card-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

.glass-card-icon svg {
    width: 22px;
    height: 22px;
}

/* Hero Stats */
.hero-stats {
    position: relative;
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    margin-top: var(--space-2xl);
    padding: var(--space-xl) var(--space-lg);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 140px;
}

.stat-number {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--secondary);
    display: inline;
}

.stat-suffix {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--secondary);
}

.stat-label {
    display: block;
    font-size: var(--fs-xs);
    color: var(--text-on-dark-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--secondary), transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
    50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    50.01% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

.hero-scroll-indicator span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-on-dark-muted);
}

/* ============================================
   SECTIONS COMMON (Light Theme)
   ============================================ */
.section {
    position: relative;
    padding: var(--space-3xl) 0;
    overflow: hidden;
}

.section-header {
    margin-bottom: var(--space-2xl);
}

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: var(--space-md);
}

.label-line {
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-title {
    font-size: var(--fs-h2);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: var(--space-md);
    color: var(--text-heading);
}

.section-description {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: var(--text-body);
    max-width: 600px;
    line-height: 1.7;
}

.section-header.center .section-description {
    margin: 0 auto;
}

/* ============================================
   ABOUT SECTION (Light)
   ============================================ */
.about-section {
    background: var(--bg-body);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.about-visual {
    position: relative;
}

.about-globe-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(11, 59, 143, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}

#globeCanvas {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.globe-overlay-card {
    position: absolute;
    bottom: 20px;
    right: -10px;
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: var(--space-lg);
    animation: floatCard 4s ease-in-out infinite;
}

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

.globe-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.globe-stat-label {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.vm-card {
    padding: var(--space-lg);
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.vm-card:hover {
    border-color: rgba(0, 184, 217, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.vm-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-lighter);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    color: var(--primary);
}

.vm-icon svg {
    width: 24px;
    height: 24px;
}

.vm-card h3 {
    font-size: var(--fs-h3);
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--text-heading);
}

.vm-card p {
    font-size: var(--fs-small);
    color: var(--text-body);
    line-height: 1.6;
}

.about-timeline {
    width: 100%;
    max-width: var(--container-max);
    margin-top: var(--space-3xl);
}

/* Timeline */
.timeline-heading {
    font-size: var(--fs-h3);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--text-heading);
}

.timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: var(--space-md);
    padding: 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 5px;
    height: 2px;
    background: linear-gradient(to right, var(--secondary), var(--primary));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    flex: 1;
    padding-top: var(--space-lg);
    padding-left: 0;
    padding-bottom: 0;
    text-align: center;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--bg-body);
    border: 2px solid var(--secondary);
    border-radius: 50%;
    z-index: 1;
    transition: var(--transition-base);
}

.timeline-item:hover .timeline-dot {
    background: var(--secondary);
    box-shadow: 0 0 12px rgba(0, 184, 217, 0.5);
}

.timeline-year {
    font-size: var(--fs-small);
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: var(--fs-small);
    color: var(--text-body);
    padding: 0 8px;
}

@media (max-width: 768px) {
    .timeline {
        flex-direction: column;
        padding-left: 20px;
    }
    .timeline::before {
        left: 5px;
        top: 8px;
        bottom: 8px;
        width: 2px;
        height: auto;
        background: linear-gradient(to bottom, var(--secondary), var(--primary));
    }
    .timeline-item {
        padding-top: 0;
        padding-left: var(--space-md);
        padding-bottom: var(--space-md);
        text-align: left;
    }
    .timeline-dot {
        left: -19px;
        top: 6px;
        transform: none;
    }
    .timeline-year {
        margin-bottom: 2px;
    }
    .timeline-content p {
        padding: 0;
    }
}

/* ============================================
   SERVICES SECTION (Subtle gradient bg)
   ============================================ */
.services-section {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.service-card {
    position: relative;
    padding: var(--space-xl);
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: default;
    box-shadow: var(--shadow-card);
}

.service-card-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 184, 217, 0.06), transparent 70%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover .service-card-bg {
    opacity: 1;
}

.service-card:hover {
    border-color: rgba(0, 184, 217, 0.25);
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.service-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(11, 59, 143, 0.04);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
    transition: var(--transition-base);
}

.service-card:hover .service-number {
    color: rgba(0, 184, 217, 0.08);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-lighter);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    color: var(--primary);
    transition: var(--transition-base);
}

.service-card:hover .service-icon {
    background: rgba(0, 184, 217, 0.12);
    color: var(--secondary);
    transform: scale(1.05);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-size: var(--fs-h3);
    font-weight: 700;
    margin-bottom: var(--space-xs);
    position: relative;
    color: var(--text-heading);
}

.service-card p {
    font-size: var(--fs-small);
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: var(--space-md);
    position: relative;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--fs-small);
    font-weight: 600;
    color: var(--primary);
    position: relative;
    transition: var(--transition-base);
}

.service-link:hover {
    gap: 10px;
    color: var(--secondary);
}

/* ============================================
   PRODUCTS SECTION (Light)
   ============================================ */
.products-section {
    background: var(--bg-body);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.product-card {
    perspective: 800px;
}

.product-card-inner {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-smooth);
    transform-style: preserve-3d;
    box-shadow: var(--shadow-card);
}

.product-card:hover .product-card-inner {
    border-color: rgba(11, 59, 143, 0.15);
    transform: translateY(-8px) rotateX(2deg);
    box-shadow: var(--shadow-card-hover);
}

.product-visual {
    position: relative;
    padding: var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--primary-lighter), rgba(232, 240, 254, 0.3));
    min-height: 180px;
}

.product-3d-element {
    width: 120px;
    height: 120px;
    animation: productFloat 4s ease-in-out infinite;
    transition: var(--transition-smooth);
}

.product-card:hover .product-3d-element {
    transform: scale(1.1) rotateY(10deg);
}

@keyframes productFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(3deg); }
}

.product-card:nth-child(2) .product-3d-element { animation-delay: 0.5s; }
.product-card:nth-child(3) .product-3d-element { animation-delay: 1s; }
.product-card:nth-child(4) .product-3d-element { animation-delay: 1.5s; }
.product-card:nth-child(5) .product-3d-element { animation-delay: 2s; }
.product-card:nth-child(6) .product-3d-element { animation-delay: 2.5s; }

.product-info {
    padding: var(--space-lg);
}

.product-info h3 {
    font-size: var(--fs-h3);
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--text-heading);
}

.product-info > p {
    font-size: var(--fs-small);
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.product-features li {
    padding: 4px 12px;
    background: var(--primary-lighter);
    border: 1px solid rgba(11, 59, 143, 0.1);
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    color: var(--primary);
    font-weight: 500;
}

/* ============================================
   WHY CHOOSE US (Dark accent section)
   ============================================ */
.why-section {
    background: var(--bg-dark);
    color: var(--text-on-dark);
}

.why-section .section-title {
    color: var(--text-on-dark);
}

.why-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.why-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.04;
}

.why-circle-1 {
    width: 600px;
    height: 600px;
    border: 1px solid var(--secondary);
    top: -200px;
    right: -200px;
}

.why-circle-2 {
    width: 400px;
    height: 400px;
    border: 1px solid var(--primary-light);
    bottom: -100px;
    left: -100px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.why-card {
    position: relative;
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.why-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 25px rgba(0, 184, 217, 0.08);
    background: rgba(255, 255, 255, 0.06);
}

.why-card-icon {
    position: relative;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--secondary);
}

.icon-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(0, 184, 217, 0.1);
    transition: var(--transition-base);
}

.why-card:hover .icon-ring {
    transform: scale(1.15);
    background: rgba(0, 184, 217, 0.15);
}

.why-card-icon svg {
    width: 26px;
    height: 26px;
    position: relative;
    z-index: 1;
}

.why-card h3 {
    font-size: var(--fs-h3);
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--text-on-dark);
}

.why-card p {
    font-size: var(--fs-small);
    color: var(--text-on-dark-secondary);
    line-height: 1.7;
}

.why-card-number {
    position: absolute;
    bottom: 15px;
    right: 20px;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    transition: var(--transition-base);
}

.why-card:hover .why-card-number {
    color: rgba(0, 184, 217, 0.06);
}

/* ============================================
   PARTNERS SECTION (Light)
   ============================================ */
.partners-section {
    background: var(--bg-light);
}

.partners-categories {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.partner-tab {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: var(--fs-small);
    font-weight: 500;
    color: var(--text-body);
    border: 1px solid var(--border-light);
    background: var(--bg-white);
    transition: var(--transition-base);
    cursor: pointer;
}

.partner-tab:hover {
    border-color: rgba(11, 59, 143, 0.2);
    color: var(--primary);
}

.partner-tab.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.partners-scroll-container {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.partners-track {
    display: flex;
    gap: var(--space-md);
    animation: partnersScroll 30s linear infinite;
    width: max-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes partnersScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-logo-card {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.partner-logo-card:hover {
    border-color: rgba(11, 59, 143, 0.15);
    box-shadow: var(--shadow-blue);
}

.partner-logo-placeholder {
    text-align: center;
    color: var(--text-muted);
}

.partner-logo-placeholder svg {
    width: 32px;
    height: 32px;
    margin: 0 auto 6px;
    opacity: 0.35;
}

.partner-logo-placeholder span {
    font-size: var(--fs-xs);
    font-weight: 600;
    display: block;
    color: var(--text-body);
}

/* ============================================
   TESTIMONIALS SECTION (Light with soft bg)
   ============================================ */
.testimonials-section {
    background: var(--bg-body);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
    flex: 0 0 100%;
    padding: var(--space-xl);
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.testimonial-quote {
    color: rgba(11, 59, 143, 0.12);
    margin-bottom: var(--space-md);
}

.testimonial-quote svg {
    width: 36px;
    height: 36px;
}

.testimonial-text {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--fs-small);
    color: white;
}

.author-info h4 {
    font-size: var(--fs-body);
    font-weight: 700;
    text-align: left;
    color: var(--text-heading);
}

.author-info p {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    text-align: left;
}

.testimonial-rating {
    color: #F59E0B;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.slider-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    color: var(--text-muted);
    transition: var(--transition-base);
    background: var(--bg-white);
}

.slider-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow-blue);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-medium);
    cursor: pointer;
    transition: var(--transition-base);
}

.dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* ============================================
   CONTACT SECTION (Light)
   ============================================ */
.contact-section {
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-lighter);
    border-radius: var(--radius-md);
    color: var(--primary);
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 22px;
    height: 22px;
}

.contact-item h4 {
    font-size: var(--fs-small);
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--text-heading);
}

.contact-item p {
    font-size: var(--fs-small);
    color: var(--text-body);
}

.whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: #25D366;
    border-radius: var(--radius-full);
    font-weight: 600;
    color: white;
    transition: var(--transition-base);
}

.whatsapp-cta:hover {
    background: #1EBB57;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-cta svg {
    width: 22px;
    height: 22px;
}

/* Contact Form */
.contact-form-wrapper {
    position: relative;
}

.contact-form {
    padding: var(--space-xl);
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: var(--fs-h3);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--text-heading);
}

.form-group {
    position: relative;
    margin-bottom: var(--space-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-heading);
    outline: none;
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11, 59, 143, 0.08);
    background: var(--bg-white);
}

.form-group label {
    position: absolute;
    left: 16px;
    top: 14px;
    font-size: var(--fs-small);
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition-base);
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -8px;
    left: 12px;
    font-size: var(--fs-xs);
    color: var(--primary);
    background: var(--bg-white);
    padding: 0 6px;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group select + label {
    top: -8px;
    left: 12px;
    font-size: var(--fs-xs);
    color: var(--primary);
    background: var(--bg-white);
    padding: 0 6px;
}

.form-group select option {
    background: var(--bg-white);
    color: var(--text-heading);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   FOOTER (Stays DARK — anchors the design)
   ============================================ */
.footer {
    position: relative;
    padding: var(--space-3xl) 0 var(--space-lg);
    background: var(--bg-dark);
    color: var(--text-on-dark);
    border-top: none;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 1px;
    background: var(--gradient-primary);
    box-shadow: 0 0 60px 20px rgba(0, 184, 217, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand .nav-logo {
    margin-bottom: var(--space-md);
}

.footer .logo-text {
    color: var(--text-on-dark);
}

.footer-desc {
    font-size: var(--fs-small);
    color: var(--text-on-dark-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-on-dark-muted);
    transition: var(--transition-base);
}

.social-link:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    background: rgba(0, 184, 217, 0.1);
}

.social-link svg {
    width: 16px;
    height: 16px;
}

.footer-links h4 {
    font-size: var(--fs-small);
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-on-dark);
}

.footer-links li {
    margin-bottom: var(--space-xs);
}

.footer-links a {
    font-size: var(--fs-small);
    color: var(--text-on-dark-muted);
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    font-size: var(--fs-xs);
    color: var(--text-on-dark-muted);
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-bottom-links a {
    font-size: var(--fs-xs);
    color: var(--text-on-dark-muted);
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    border-radius: 50%;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: var(--transition-base);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.wa-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: waPulse 2s infinite;
}

@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .about-visual {
        max-width: 400px;
        margin: 0 auto;
    }

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

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

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

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

@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
        --space-3xl: 5rem;
    }

    /* Disable containment on navbar when mobile menu is open */
    .navbar:has(.nav-links.open) {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;
        border-bottom: none !important;
    }

    .navbar:has(.nav-links.open) .logo-text {
        color: var(--text-on-dark) !important;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(4, 11, 26, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-lg);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-base);
        z-index: 100;
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-links .nav-link {
        font-size: 1.25rem;
        color: var(--text-on-dark-secondary) !important;
        text-align: center;
        width: 100%;
        display: block;
        padding: 12px 0;
    }

    .nav-links.open .nav-link:hover,
    .nav-links.open .nav-link.active {
        color: var(--text-on-dark) !important;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hero-glass-cards {
        flex-direction: column;
        align-items: center;
    }

    .glass-card {
        width: 100%;
        max-width: 300px;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .stat-divider {
        width: 50px;
        height: 1px;
    }

    .about-vision-mission {
        grid-template-columns: 1fr;
    }

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

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .hero-title {
        font-size: 2rem;
    }

    .partner-logo-card {
        width: 150px;
        height: 80px;
    }
}

/* --- Scrollbar (light) --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: rgba(11, 59, 143, 0.15);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(11, 59, 143, 0.3);
}

/* ============================================
   SUBPAGE STYLES
   ============================================ */
.subpage-hero {
    padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-2xl);
    background: var(--gradient-hero);
    color: var(--text-on-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.subpage-hero .hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(0, 184, 217, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.subpage-hero h1 {
    font-size: var(--fs-h1);
    font-weight: 800;
    margin-bottom: var(--space-sm);
    letter-spacing: -1px;
}

.subpage-breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--fs-small);
    color: var(--text-on-dark-secondary);
}

.subpage-breadcrumbs a {
    transition: var(--transition-fast);
}

.subpage-breadcrumbs a:hover {
    color: var(--secondary);
}

.subpage-breadcrumbs span {
    color: var(--text-on-dark-muted);
}

/* ============================================
   ORGANIZATIONAL CHART & COMPANY PROFILE
   ============================================ */
.company-profile-section {
    background: var(--bg-body);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.profile-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
}

.profile-card h3 {
    font-size: var(--fs-h2);
    font-weight: 800;
    margin-bottom: var(--space-md);
    color: var(--text-heading);
}

.profile-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: var(--space-md);
}

.org-chart-section {
    background: var(--bg-light);
    padding: var(--space-3xl) 0;
}

.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
    width: 100%;
}

.org-level {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    width: 100%;
    position: relative;
}

.org-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    min-width: 240px;
    max-width: 300px;
    position: relative;
    transition: var(--transition-base);
    z-index: 2;
}

.org-card:hover {
    transform: translateY(-4px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-card-hover);
}

.org-card.board-member {
    background: linear-gradient(180deg, var(--bg-white), var(--primary-lighter));
    border: 2px solid var(--primary-light);
}

.org-card.board-member.primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(11, 59, 143, 0.2);
}

.org-card.board-member.primary .org-role {
    color: var(--secondary-light);
}

.org-card.board-member.primary .org-name {
    color: white;
}

.org-role {
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
    margin-bottom: 4px;
}

.org-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-heading);
}

.org-connector-vertical {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--secondary), var(--primary));
    position: relative;
    z-index: 1;
}

.org-sub-team {
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    position: relative;
    padding-top: var(--space-sm);
    border-top: 1px dashed var(--border-medium);
}

.org-card.sub-card {
    background: var(--bg-light);
    min-width: 200px;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
}

.org-card.sub-card .org-role {
    font-size: 10px;
    color: var(--text-body);
}

.org-card.sub-card .org-name {
    font-size: var(--fs-small);
}

@media (max-width: 992px) {
    .org-level {
        flex-direction: column;
        align-items: center;
        gap: var(--space-lg);
    }
    
    .org-sub-team {
        align-items: center;
    }
}

/* ============================================
   LEGALITY SECTION
   ============================================ */
.legality-section {
    background: var(--bg-white);
    padding: var(--space-3xl) 0;
}

.legality-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.legality-card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.legality-card:hover {
    transform: translateY(-6px);
    border-color: rgba(11, 59, 143, 0.15);
    box-shadow: var(--shadow-card-hover);
}

.legality-preview-container {
    position: relative;
    height: 220px;
    background: #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.legality-document-blur {
    width: 100%;
    height: 100%;
    filter: blur(8px);
    opacity: 0.5;
    padding: var(--space-md);
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doc-mockup {
    width: 120px;
    height: 160px;
    border: 1px solid #CBD5E1;
    background: white;
    padding: 15px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    position: relative;
}

.doc-line {
    height: 6px;
    background: #E2E8F0;
    margin-bottom: 8px;
    border-radius: 3px;
}

.doc-line.header {
    height: 10px;
    background: #94A3B8;
    margin-bottom: 15px;
}

.doc-line.long { width: 100%; }
.doc-line.medium { width: 75%; }
.doc-line.short { width: 50%; }

.doc-stamp {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid rgba(0, 184, 217, 0.4);
    background: rgba(0, 184, 217, 0.1);
}

.legality-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 11, 26, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
    transition: var(--transition-base);
}

.legality-card:hover .legality-overlay {
    background: rgba(4, 11, 26, 0.5);
}

.legality-info {
    padding: var(--space-md);
    background: var(--bg-white);
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.legality-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 4px;
}

.legality-info p {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    line-height: 1.4;
}

.btn-sm {
    padding: 8px 16px;
    font-size: var(--fs-xs);
}

@media (max-width: 1200px) {
    .legality-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .legality-grid {
        grid-template-columns: 1fr;
    }
}

.product-img {
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

