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

:root {
    /* ===== VIBRANT PROFESSIONAL COLOR PALETTE ===== */
    /* Primary Navy - Deep professional tones */
    --navy-deep: #0f2847;
    --navy-primary: #1a3a5c;
    --navy-light: #2a5580;
    --navy-muted: #3d6a99;

    /* Teal Gradient - Vibrant and energetic */
    --teal-dark: #00a896;
    --teal-primary: #02c4b2;
    --teal-light: #17e8d5;
    --teal-bright: #4eeadc;

    /* Accent Colors - Adding energy */
    --accent-blue: #3b82f6;
    --accent-purple: #8b5cf6;
    --accent-coral: #f97316;

    /* Silver/Gray - Cleaner grays */
    --gray-silver: #9ca3af;
    --gray-light: #d1d5db;
    --gray-muted: #6b7280;

    /* Primary Action Colors */
    --primary-color: #02c4b2;
    --primary-light: #17e8d5;
    --primary-dark: #00a896;
    --accent-color: #1a3a5c;
    --accent-light: #2a5580;

    /* Brighter Theme - Professional but vibrant */
    --bg-dark: #0a1628;
    --bg-darker: #060d18;
    --bg-card: #101f35;
    --bg-card-hover: #162d4d;
    --bg-elevated: #1e3a5f;

    /* Text Colors - Higher contrast */
    --text-primary: #f8fafc;
    --text-secondary: #a5b4c8;
    --text-muted: #7a8fa8;
    --text-bright: #ffffff;

    /* Borders & Glass Effects - More visible */
    --border-subtle: rgba(23, 232, 213, 0.1);
    --border-color: rgba(23, 232, 213, 0.15);
    --border-hover: rgba(23, 232, 213, 0.35);
    --border-glow: rgba(2, 196, 178, 0.6);
    --glass-bg: rgba(26, 58, 92, 0.5);
    --glass-border: rgba(23, 232, 213, 0.2);

    /* Premium Shadows - More dramatic */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.45);
    --shadow-glow: 0 0 50px rgba(2, 196, 178, 0.25);
    --shadow-glow-cyan: 0 0 40px rgba(23, 232, 213, 0.2);
    --shadow-navy: 0 0 60px rgba(26, 58, 92, 0.3);

    /* Gradient Presets - More vibrant */
    --gradient-teal: linear-gradient(135deg, #00a896, #02c4b2, #17e8d5);
    --gradient-navy: linear-gradient(135deg, var(--navy-deep), var(--navy-primary));
    --gradient-premium: linear-gradient(135deg, #02c4b2, #3b82f6);
    --gradient-shine: linear-gradient(135deg, #17e8d5, #02c4b2);
    --gradient-accent: linear-gradient(135deg, #02c4b2, #8b5cf6);
    --gradient-warm: linear-gradient(135deg, #02c4b2, #f97316);

    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-dark);
    overflow-x: hidden;
}

/* Premium Background Pattern - Brighter and more dynamic */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 10% 0%, rgba(2, 196, 178, 0.12) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 10%, rgba(59, 130, 246, 0.08) 0%, transparent 35%),
        radial-gradient(ellipse at 85% 100%, rgba(139, 92, 246, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(23, 232, 213, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: backgroundShift 20s ease-in-out infinite alternate;
}

@keyframes backgroundShift {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

/* Subtle grid pattern overlay for premium feel */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(23, 232, 213, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 232, 213, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Selection Style */
::selection {
    background: var(--primary-color);
    color: white;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 58, 92, 0.08);
    transition: background 0.3s ease, box-shadow 0.3s ease, border-bottom-color 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(26, 58, 92, 0.1);
    border-bottom-color: transparent;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    min-height: 90px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 90px;
    width: auto;
    display: block;
    min-width: 150px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--teal-light);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: var(--teal-light);
}

.mobile-menu-toggle.active span {
    width: 28px;
    height: 3px;
}

/* Mobile menu overlay - hidden on desktop */
.mobile-menu-overlay {
    display: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy-primary);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.625rem 1.125rem;
    border-radius: 8px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-teal);
    border-radius: 2px;
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--teal-primary);
}

.nav-links a:hover::after {
    width: calc(100% - 2rem);
}

.nav-links a.btn-primary {
    background: var(--gradient-teal);
    color: white !important;
    padding: 0.625rem 1.5rem !important;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 20px rgba(2, 196, 178, 0.4);
}

.nav-links a.btn-primary::after {
    display: none;
}

.nav-links a.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 30px rgba(2, 196, 178, 0.5), 0 0 40px rgba(2, 196, 178, 0.2);
    filter: brightness(1.08);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 10rem 0 5rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 30%, rgba(2, 196, 178, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 35%),
        radial-gradient(circle at 60% 90%, rgba(139, 92, 246, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 30% 70%, rgba(23, 232, 213, 0.1) 0%, transparent 30%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* ===== FLOATING GEOMETRIC SHAPES ===== */
.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    opacity: 0.15;
    filter: blur(1px);
}

/* Hexagon shape */
.shape-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 8%;
    background: linear-gradient(135deg, var(--teal-primary), var(--accent-blue));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: floatRotate 20s ease-in-out infinite;
}

/* Circle shape */
.shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 5%;
    background: linear-gradient(135deg, var(--accent-purple), var(--teal-light));
    border-radius: 50%;
    animation: floatBounce 15s ease-in-out infinite;
    animation-delay: -5s;
}

/* Triangle shape */
.shape-3 {
    width: 100px;
    height: 100px;
    top: 25%;
    right: 12%;
    background: linear-gradient(135deg, var(--teal-light), var(--accent-blue));
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: floatRotate 25s ease-in-out infinite reverse;
    animation-delay: -3s;
}

/* Diamond shape */
.shape-4 {
    width: 60px;
    height: 60px;
    bottom: 25%;
    right: 8%;
    background: linear-gradient(135deg, var(--accent-blue), var(--teal-primary));
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: floatBounce 18s ease-in-out infinite;
    animation-delay: -7s;
}

/* Small circle */
.shape-5 {
    width: 40px;
    height: 40px;
    top: 45%;
    left: 15%;
    background: linear-gradient(135deg, var(--teal-bright), var(--accent-purple));
    border-radius: 50%;
    animation: floatRotate 12s ease-in-out infinite;
    animation-delay: -2s;
}

/* Ring shape */
.shape-6 {
    width: 90px;
    height: 90px;
    bottom: 15%;
    left: 20%;
    border: 3px solid var(--teal-primary);
    border-radius: 50%;
    background: transparent;
    opacity: 0.2;
    animation: floatBounce 22s ease-in-out infinite;
    animation-delay: -10s;
}

@keyframes floatRotate {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-30px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translateY(-15px) rotate(180deg) scale(0.95);
    }
    75% {
        transform: translateY(-40px) rotate(270deg) scale(1.05);
    }
}

@keyframes floatBounce {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
    }
    25% {
        transform: translateY(-25px) translateX(15px) scale(1.1);
    }
    50% {
        transform: translateY(-10px) translateX(-10px) scale(0.9);
    }
    75% {
        transform: translateY(-35px) translateX(5px) scale(1.05);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: left;
    max-width: 580px;
    padding-right: 1rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(2, 196, 178, 0.15), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(2, 196, 178, 0.3);
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    color: var(--teal-light);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(2, 196, 178, 0.15);
}

.hero-badge::before {
    content: '';
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--teal-light), var(--accent-blue));
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 15px var(--teal-light), 0 0 30px rgba(2, 196, 178, 0.5);
}

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

.hero-title {
    font-size: clamp(2.75rem, 5.5vw, 4.25rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    background: linear-gradient(135deg, #4eeadc, #17e8d5, #02c4b2, #3b82f6);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
    filter: drop-shadow(0 0 30px rgba(2, 196, 178, 0.5));
    display: inline;
}

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

.hero-tagline {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.hero-tagline::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 120px;
    height: 4px;
    background: var(--gradient-teal);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(2, 196, 178, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.4;
    margin-bottom: 2.5rem;
    margin-top: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    position: relative;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    color: var(--text-secondary);
}

/* Individual word styling */
.subtitle-word {
    position: relative;
    display: inline-block;
    animation: wordFadeIn 0.6s ease-out forwards;
    animation-delay: calc(var(--i) * 0.12s + 0.3s);
    opacity: 0;
    transform: translateY(8px);
}

/* Emphasize "Best" and "outcome" */
.subtitle-word:first-child,
.subtitle-word:last-of-type {
    color: var(--teal-primary);
    font-weight: 600;
}

@keyframes wordFadeIn {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Decorative dot separator */
.subtitle-line {
    display: none;
}

@keyframes lineAppear {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-light {
    background: var(--gradient-teal);
    color: white;
    box-shadow: 0 4px 25px rgba(2, 196, 178, 0.4), 0 0 40px rgba(2, 196, 178, 0.2);
}

.btn-light::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #17e8d5, #3b82f6);
    opacity: 0;
    transition: var(--transition);
}

.btn-light:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(2, 196, 178, 0.5), 0 0 60px rgba(2, 196, 178, 0.3);
}

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

.btn-light span {
    position: relative;
    z-index: 1;
}

.btn-outline {
    background: rgba(26, 58, 92, 0.4);
    color: var(--text-primary);
    border: 1px solid rgba(23, 232, 213, 0.25);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: linear-gradient(135deg, rgba(2, 196, 178, 0.2), rgba(59, 130, 246, 0.15));
    border-color: var(--teal-primary);
    color: var(--teal-light);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 30px rgba(2, 196, 178, 0.25);
}

/* Hero Image Styles */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 0;
}

/* Floating particles around image */
.hero-image-wrapper::before,
.hero-image-wrapper::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.hero-image-wrapper::before {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(2, 196, 178, 0.4), transparent 70%);
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.hero-image-wrapper::after {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.35), transparent 70%);
    bottom: 15%;
    left: -3%;
    animation-delay: -3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.8;
    }
}

.hero-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(23, 232, 213, 0.2),
        0 0 80px rgba(2, 196, 178, 0.15);
    transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: heroImageEntry 1s cubic-bezier(0.4, 0, 0.2, 1) forwards,
               heroFloat 10s ease-in-out 1s infinite;
    max-width: 700px;
}

@keyframes heroImageEntry {
    from {
        opacity: 0;
        transform: perspective(1200px) rotateY(-8deg) rotateX(3deg) translateY(30px);
    }
    to {
        opacity: 1;
        transform: perspective(1200px) rotateY(-3deg) rotateX(1deg) translateY(0);
    }
}

@keyframes heroFloat {
    0%, 100% {
        transform: perspective(1200px) rotateY(-3deg) rotateX(1deg) translateY(0);
    }
    50% {
        transform: perspective(1200px) rotateY(-2deg) rotateX(0.5deg) translateY(-8px);
    }
}

.hero-image-container:hover {
    transform: perspective(1200px) rotateY(0deg) rotateX(0deg) scale(1.02);
    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(23, 232, 213, 0.25),
        0 0 60px rgba(2, 196, 178, 0.2);
    animation-play-state: paused;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(59, 169, 159, 0.1) 0%,
        transparent 40%,
        transparent 60%,
        rgba(26, 58, 92, 0.12) 100%
    );
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.hero-image-container:hover .hero-image-overlay {
    opacity: 0.5;
}

/* Animated gradient border */
.hero-image-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(
        45deg,
        var(--teal-dark),
        var(--teal-primary),
        var(--teal-light),
        var(--teal-bright),
        var(--teal-light),
        var(--teal-primary),
        var(--teal-dark)
    );
    background-size: 300% 300%;
    border-radius: 26px;
    z-index: -1;
    opacity: 0.35;
    animation: gradientBorder 8s ease infinite;
}

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

.hero-image-container:hover::before {
    opacity: 0.6;
}

/* Subtle shine effect */
.hero-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.08),
        transparent
    );
    transform: skewX(-25deg);
    animation: shine 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shine {
    0%, 100% {
        left: -100%;
    }
    50%, 55% {
        left: 150%;
    }
}

/* Decorative glow beneath image */
.hero-image-wrapper > .hero-image-container + .hero-glow {
    position: absolute;
    bottom: -40px;
    left: 10%;
    right: 10%;
    height: 80px;
    background: radial-gradient(ellipse, rgba(59, 169, 159, 0.25), transparent);
    filter: blur(25px);
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scaleX(1);
    }
    50% {
        opacity: 0.9;
        transform: scaleX(1.05);
    }
}

/* ===== SECTIONS COMMON ===== */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--teal-light);
    margin-bottom: 1rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(2, 196, 178, 0.15), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(2, 196, 178, 0.25);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(2, 196, 178, 0.1);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-highlight {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
}

/* ===== WHAT WE DO SECTION ===== */
.what-we-do {
    background: transparent;
    position: relative;
}

.what-we-do::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.what-we-do-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.what-we-do-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--bg-card), rgba(2, 196, 178, 0.03));
    border-radius: 14px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    flex: 1;
    min-width: 0;
}

.what-we-do-item:hover {
    border-color: var(--border-glow);
    transform: translateX(8px);
    box-shadow: var(--shadow-glow), 0 10px 40px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, var(--bg-card-hover), rgba(2, 196, 178, 0.08));
}

.what-we-do-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(2, 196, 178, 0.15), rgba(59, 130, 246, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-light);
    flex-shrink: 0;
    border: 1px solid rgba(2, 196, 178, 0.2);
    transition: var(--transition);
}

.what-we-do-item:hover .what-we-do-icon {
    background: var(--gradient-teal);
    color: white;
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 10px 35px rgba(2, 196, 178, 0.5);
    border-color: transparent;
}

.what-we-do-item span {
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.5;
}

.what-we-do-summary {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    padding: 2rem;
    background: linear-gradient(135deg, var(--bg-card), rgba(2, 196, 178, 0.05));
    border-radius: 16px;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1), 0 0 30px rgba(2, 196, 178, 0.08);
}

@media (max-width: 1200px) {
    .what-we-do-grid {
        flex-direction: column;
    }

    .what-we-do-item:hover {
        transform: translateX(4px);
    }
}

/* ===== SERVICES SECTION ===== */
.services {
    background: transparent;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

/* Services Accordion Layout */
.services-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-accordion-card {
    background: linear-gradient(135deg, var(--bg-card), rgba(2, 196, 178, 0.02));
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}

.service-accordion-card:hover {
    border-color: rgba(2, 196, 178, 0.35);
    box-shadow: var(--shadow-glow);
}

.service-accordion-card.expanded {
    border-color: rgba(2, 196, 178, 0.5);
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.25),
        var(--shadow-glow),
        0 0 30px rgba(2, 196, 178, 0.1);
    background: linear-gradient(135deg, var(--bg-card-hover), rgba(2, 196, 178, 0.05));
}

.service-accordion-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.service-accordion-header:hover {
    background: rgba(59, 169, 159, 0.05);
}

.service-accordion-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, rgba(2, 196, 178, 0.15), rgba(59, 130, 246, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-light);
    border: 1px solid rgba(2, 196, 178, 0.2);
    transition: var(--transition);
}

.service-accordion-card.expanded .service-accordion-icon,
.service-accordion-header:hover .service-accordion-icon {
    background: var(--gradient-teal);
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(2, 196, 178, 0.5);
    transform: scale(1.05);
}

.service-accordion-title-wrapper {
    flex: 1;
    min-width: 0;
}

.service-accordion-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
}

.service-accordion-subtitle {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.service-accordion-toggle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 169, 159, 0.08);
    border-radius: 10px;
    color: var(--teal-light);
    transition: var(--transition);
}

.service-accordion-toggle svg {
    transition: var(--transition);
}

.service-accordion-card.expanded .service-accordion-toggle svg {
    transform: rotate(180deg);
}

.service-accordion-card.expanded .service-accordion-toggle {
    background: var(--gradient-teal);
    color: white;
}

/* Accordion Content */
.service-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-accordion-card.expanded .service-accordion-content {
    max-height: 600px;
}

.service-accordion-body {
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    margin-top: 0;
}

.service-detail-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.service-detail-story {
    background: linear-gradient(135deg, rgba(2, 196, 178, 0.12), rgba(59, 130, 246, 0.08));
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--teal-primary);
    box-shadow: 0 4px 20px rgba(2, 196, 178, 0.08);
}

.service-detail-story h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--teal-light);
    margin-bottom: 0.75rem;
}

.service-detail-story p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* ===== ABOUT SECTION ===== */
.about {
    background: transparent;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.about-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, var(--bg-card), rgba(2, 196, 178, 0.03));
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2, 196, 178, 0.1), rgba(59, 130, 246, 0.06));
    opacity: 0;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(2, 196, 178, 0.4);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.25),
        var(--shadow-glow);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #17e8d5, #02c4b2, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 40px rgba(2, 196, 178, 0.3);
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: transparent;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-wrapper-centered {
    display: block;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--bg-card), rgba(2, 196, 178, 0.03));
    border-radius: 14px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: rgba(2, 196, 178, 0.4);
    transform: translateX(8px);
    box-shadow: var(--shadow-glow), 0 10px 30px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, var(--bg-card-hover), rgba(2, 196, 178, 0.08));
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(2, 196, 178, 0.15), rgba(59, 130, 246, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-light);
    flex-shrink: 0;
    border: 1px solid rgba(2, 196, 178, 0.2);
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: var(--gradient-teal);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(2, 196, 178, 0.4);
    transform: scale(1.05);
}

.contact-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
    color: var(--text-primary);
}

.contact-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.contact-form {
    background: linear-gradient(135deg, var(--bg-card), rgba(2, 196, 178, 0.03));
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-teal);
    border-radius: 16px 16px 0 0;
    opacity: 0.9;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-primary);
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal-primary);
    box-shadow: 0 0 0 3px rgba(59, 169, 159, 0.15);
    background: rgba(18, 35, 56, 0.8);
}

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

.contact-form .btn-primary {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-teal);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(2, 196, 178, 0.4), 0 0 30px rgba(2, 196, 178, 0.15);
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 35px rgba(2, 196, 178, 0.55), 0 0 50px rgba(2, 196, 178, 0.25);
    filter: brightness(1.08);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-darker) 100%);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-teal);
    opacity: 0.8;
    box-shadow: 0 0 20px rgba(2, 196, 178, 0.3);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.footer-col h4 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
    color: var(--teal-light);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--teal-light);
    transform: translateX(4px);
}

.footer-registration {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.footer-registration p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-contact li:last-child {
    margin-bottom: 0;
}

.footer-contact svg {
    flex-shrink: 0;
    color: var(--teal-light);
    margin-top: 0.25rem;
}

.footer-contact span {
    color: var(--text-secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-bottom a {
    color: var(--teal-primary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--teal-light);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--teal-dark), var(--navy-primary));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--teal-primary), var(--teal-dark));
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

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

    .hero-tagline::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrapper {
        justify-content: center;
        padding-right: 0;
    }

    .hero-image-container {
        max-width: 600px;
        margin: 0 auto;
        animation: heroImageEntryTablet 1s cubic-bezier(0.4, 0, 0.2, 1) forwards,
                   heroFloatTablet 8s ease-in-out 1s infinite;
    }

    @keyframes heroImageEntryTablet {
        from {
            opacity: 0;
            transform: scale(0.9) translateY(30px);
        }
        to {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
    }

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

    .hero-image-container:hover {
        transform: scale(1.02);
        animation-play-state: paused;
    }

    .hero-image-wrapper::before,
    .hero-image-wrapper::after {
        display: none;
    }

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

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

@media (max-width: 900px) {
    .nav-wrapper {
        position: relative;
    }

    .mobile-menu-toggle {
        display: flex;
        position: fixed;
        right: 16px;
        top: 8px;
        transform: none;
        margin-left: 0;
        z-index: 10002;
        background: var(--bg-dark);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 10px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    }

    .mobile-menu-toggle:hover {
        border-color: var(--teal-primary);
        box-shadow: 0 4px 25px rgba(2, 196, 178, 0.3);
    }

    .mobile-menu-toggle.active {
        background: var(--bg-dark);
        border-color: var(--teal-primary);
    }

    /* Hide desktop nav-links on tablet/mobile */
    .nav-links {
        display: none !important;
    }

    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: #0a1628;
        z-index: 10001;
        transform: translateY(-100%);
        visibility: hidden;
        transition: transform 0.3s ease, visibility 0.3s ease;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }

    .mobile-menu-overlay.active {
        transform: translateY(0);
        visibility: visible;
    }

    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        padding: 60px 1.5rem 1.5rem;
        list-style: none;
    }

    .mobile-nav-links li {
        width: 100%;
        max-width: 300px;
    }

    .mobile-nav-links a {
        display: block;
        padding: 0.875rem 1.5rem;
        text-align: center;
        font-size: 1.125rem;
        color: var(--text-primary);
        border-radius: 10px;
        transition: var(--transition-fast);
        text-decoration: none;
    }

    .mobile-nav-links a:hover {
        background: rgba(2, 196, 178, 0.15);
        color: var(--teal-light);
    }

    /* Mobile menu Contact button styling */
    .mobile-nav-links a.btn-primary {
        margin-top: 0.5rem;
        background: var(--gradient-teal);
        color: white !important;
        padding: 0.875rem 2rem !important;
        border-radius: 10px;
        font-weight: 600;
        box-shadow: 0 4px 20px rgba(2, 196, 178, 0.4);
    }

    .mobile-nav-links a.btn-primary:hover {
        background: var(--gradient-teal);
        transform: scale(1.02);
        box-shadow: 0 8px 30px rgba(2, 196, 178, 0.5);
    }

    .hero {
        min-height: auto;
        padding: 11rem 0 3rem;
    }

    /* Hero badge - ensure visibility on mobile */
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.5rem;
        display: inline-flex;
        max-width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-badge span {
        white-space: normal;
        line-height: 1.4;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .hero-tagline {
        font-size: 2.25rem;
        margin-bottom: 1.25rem;
    }

    .hero-tagline::after {
        width: 90px;
        height: 3px;
        bottom: -6px;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        margin-top: 1.25rem;
        margin-bottom: 1.5rem;
        gap: 0.3rem;
        justify-content: center;
    }

    /* Show hero image on mobile - scaled down */
    .hero-image-wrapper {
        display: flex;
        margin-top: 1rem;
    }

    .hero-image-container {
        max-width: 100%;
        transform: none;
        animation: none;
    }

    .hero-image-container:hover {
        transform: none;
    }

    .hero-image {
        max-width: 100%;
        border-radius: 16px;
    }

    .hero-shapes {
        display: none;
    }

    /* Service accordion mobile styles */
    .service-accordion-header {
        padding: 1.25rem;
        gap: 1rem;
    }

    .service-accordion-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

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

    .service-accordion-title {
        font-size: 1.0625rem;
    }

    .service-accordion-subtitle {
        font-size: 0.875rem;
    }

    .service-accordion-toggle {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .service-accordion-body {
        padding: 0 1.25rem 1.25rem;
        padding-top: 1.25rem;
    }

    .service-detail-description {
        font-size: 0.9375rem;
    }

    .service-detail-story {
        padding: 1.25rem;
    }

    .service-detail-story h4 {
        font-size: 0.9375rem;
    }

    .service-detail-story p {
        font-size: 0.875rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

    .footer-contact li {
        justify-content: center;
        text-align: left;
    }

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

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

    .hero {
        padding: 10rem 0 2.5rem;
    }

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

    .hero-tagline {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .hero-tagline::after {
        width: 70px;
        height: 3px;
        bottom: -5px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-top: 1rem;
        margin-bottom: 1.25rem;
        gap: 0.25rem;
    }

    .subtitle-word {
        animation-delay: calc(var(--i) * 0.1s + 0.3s);
    }

    .hero-buttons {
        flex-direction: column;
    }

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

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

    .stat-number {
        font-size: 2.25rem;
    }

    section {
        padding: 4rem 0;
    }
}

/* ===== ABOUT PAGE STYLES ===== */
.about-hero {
    padding: 10rem 0 4rem;
    background: transparent;
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 40%, rgba(59, 169, 159, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 75% 60%, rgba(79, 195, 220, 0.06) 0%, transparent 35%);
}

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

.about-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-hero-subtitle {
    font-size: 1.1875rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-content {
    padding: 4rem 0;
}

.about-block {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.about-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.9;
    text-align: center;
}

.about-section-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-section-card {
    background: linear-gradient(135deg, var(--bg-card), rgba(2, 196, 178, 0.03));
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    transition: var(--transition);
}

.about-section-card:hover {
    border-color: rgba(2, 196, 178, 0.4);
    box-shadow: var(--shadow-glow), 0 15px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-6px);
    background: linear-gradient(135deg, var(--bg-card-hover), rgba(2, 196, 178, 0.08));
}

.about-section-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(2, 196, 178, 0.15), rgba(59, 130, 246, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-light);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(2, 196, 178, 0.2);
    transition: var(--transition);
}

.about-section-card:hover .about-section-icon {
    background: var(--gradient-teal);
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(2, 196, 178, 0.5);
    transform: scale(1.08) rotate(-3deg);
}

.about-section-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.about-section-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

.about-section-card p.mt-1 {
    margin-top: 1rem;
}

/* Why Work With Us Section */
.why-work-section {
    background: linear-gradient(135deg, var(--bg-card), rgba(2, 196, 178, 0.05));
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 40px rgba(2, 196, 178, 0.08);
}

.why-work-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.why-work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.why-work-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, var(--bg-dark), rgba(2, 196, 178, 0.03));
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: left;
    transition: var(--transition);
}

.why-work-item:hover {
    border-color: rgba(2, 196, 178, 0.4);
    transform: translateX(6px);
    box-shadow: 0 8px 25px rgba(2, 196, 178, 0.15);
    background: linear-gradient(135deg, var(--bg-card), rgba(2, 196, 178, 0.08));
}

.why-work-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--gradient-teal);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 6px 20px rgba(2, 196, 178, 0.35);
    transition: var(--transition);
}

.why-work-item:hover .why-work-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(2, 196, 178, 0.5);
}

.why-work-item span {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.why-work-summary {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    font-style: italic;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* Partners Section */
.partners-section {
    padding: 5rem 0;
    background: transparent;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.partners-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
    padding: 1rem 0;
}

.partners-carousel::before,
.partners-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.partners-carousel::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-dark), transparent);
}

.partners-carousel::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg-dark), transparent);
}

.partners-track {
    display: flex;
    gap: 4rem;
    animation: scroll 30s linear infinite;
    width: max-content;
}

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

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

.partner-logo {
    flex-shrink: 0;
    width: 180px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-card), rgba(2, 196, 178, 0.03));
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    transition: var(--transition);
}

.partner-logo:hover {
    border-color: rgba(2, 196, 178, 0.4);
    box-shadow: var(--shadow-glow), 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: scale(1.08);
    background: linear-gradient(135deg, var(--bg-card-hover), rgba(2, 196, 178, 0.08));
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: var(--transition);
}

.partner-logo:hover img {
    filter: none;
    opacity: 1;
}

/* About CTA Section */
.about-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(59, 169, 159, 0.08), rgba(26, 58, 92, 0.12));
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.about-cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.about-cta-content p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* About CTA on index page */
.about-cta {
    text-align: center;
    margin-bottom: 3rem;
}

/* Nav active state */
.nav-links a.active {
    color: var(--teal-primary);
}

.nav-links a.active::after {
    width: calc(100% - 2rem);
}

/* Responsive styles for about page */
@media (max-width: 768px) {
    .about-hero {
        padding: 8rem 0 3rem;
    }

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

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

    .why-work-section {
        padding: 2rem;
    }

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

    .partners-track {
        gap: 2rem;
    }

    /* Partners carousel mobile - reduce fade edges */
    .partners-carousel::before,
    .partners-carousel::after {
        width: 50px;
    }
}

/* Additional mobile refinements for smaller screens */
@media (max-width: 480px) {
    /* Hero badge smaller screens */
    .hero-badge {
        font-size: 0.6875rem;
        padding: 0.4rem 0.75rem;
        gap: 0.5rem;
    }

    .hero-badge::before {
        width: 8px;
        height: 8px;
        flex-shrink: 0;
    }

    /* Hero image on small mobile */
    .hero-image-wrapper {
        margin-top: 0.75rem;
    }

    .hero-image-container {
        border-radius: 12px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }

    /* Partners section smaller screens */
    .partner-logo {
        width: 120px;
        height: 60px;
        padding: 0.75rem 1rem;
    }

    .partners-track {
        gap: 1.5rem;
    }

    .partners-carousel::before,
    .partners-carousel::after {
        width: 30px;
    }

    /* Section headers on mobile */
    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-label {
        font-size: 0.6875rem;
        padding: 0.4rem 1rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
.animate-delay-6 { animation-delay: 0.6s; }

/* Intersection Observer Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== ENHANCED SCROLL REVEAL ANIMATIONS ===== */
.scroll-reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.scroll-reveal.revealed {
    opacity: 1;
}

/* Fade Up Animation */
.reveal-fade-up {
    transform: translateY(60px);
}

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

/* Fade Down Animation */
.reveal-fade-down {
    transform: translateY(-60px);
}

.reveal-fade-down.revealed {
    transform: translateY(0);
}

/* Fade Right Animation */
.reveal-fade-right {
    transform: translateX(-60px);
}

.reveal-fade-right.revealed {
    transform: translateX(0);
}

/* Fade Left Animation */
.reveal-fade-left {
    transform: translateX(60px);
}

.reveal-fade-left.revealed {
    transform: translateX(0);
}

/* Zoom Animation */
.reveal-zoom {
    transform: scale(0.8);
}

.reveal-zoom.revealed {
    transform: scale(1);
}

/* Rotate Animation */
.reveal-rotate {
    transform: rotate(-5deg) scale(0.9);
}

.reveal-rotate.revealed {
    transform: rotate(0) scale(1);
}

/* Flip Animation */
.reveal-flip {
    transform: perspective(1000px) rotateX(-30deg);
    transform-origin: top center;
}

.reveal-flip.revealed {
    transform: perspective(1000px) rotateX(0);
}

/* Blur Animation */
.reveal-blur {
    filter: blur(10px);
    transform: scale(1.05);
}

.reveal-blur.revealed {
    filter: blur(0);
    transform: scale(1);
}

/* Slide and Fade Animation */
.reveal-slide-fade {
    transform: translateY(40px) scale(0.95);
}

.reveal-slide-fade.revealed {
    transform: translateY(0) scale(1);
}

/* Stagger children animation helper */
.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-children.revealed > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.revealed > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.revealed > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.revealed > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.revealed > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.revealed > *:nth-child(6) { transition-delay: 0.6s; }

.stagger-children.revealed > * {
    opacity: 1;
    transform: translateY(0);
}

/* Image Loading State */
.hero-image {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-image.loaded {
    opacity: 1;
}
