/* ==========================================================================
   Zyonpeak Consults - Premium Modern Finance & Automation Styles
   ========================================================================== */

:root {
    --primary-900: #0f172a;
    --primary-800: #1e293b;
    --primary-700: #334155;
    --primary-600: #475569;
    --primary-500: #64748b;
    --primary-400: #94a3b8;
    --primary-300: #cbd5e1;
    --primary-200: #e2e8f0;
    --primary-100: #f1f5f9;
    --primary-50: #f8fafc;
    
    --accent-600: #0891b2;
    --accent-500: #06b6d4;
    --accent-400: #22d3ee;
    --accent-300: #a5f3fc;
    
    --gold-500: #f59e0b;
    --gold-400: #fbbf24;
    
    --teal-600: #0d9488;
    --teal-500: #14b8a6;
    --teal-400: #2dd4bf;
    
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.65;
    color: var(--gray-900);
    background-color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 48px;
    box-sizing: border-box;
}

/* Section padding */
.section {
    padding: 100px 0;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: 3.5rem; letter-spacing: -0.02em; }
h2 { font-size: 2.5rem; letter-spacing: -0.01em; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

/* ========================================
   HEADER
   ======================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    z-index: 9999;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.container-fluid {
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.brand {
    display: flex;
    align-items: center;
}

.brand-img {
    height: 36px;
    width: auto;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.main-nav .nav-group {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav .nav-item {
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 10px 18px;
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
}

.main-nav .nav-item::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 18px;
    right: 18px;
    height: 2px;
    background-color: var(--accent-600);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.main-nav .nav-item:hover,
.main-nav .nav-item.active {
    color: var(--gray-900);
}

.main-nav .nav-item:hover::before,
.main-nav .nav-item.active::before {
    transform: scaleX(1);
}

.main-nav .nav-item.active {
    color: var(--accent-600);
}

/* Dropdown Toggle */
.dropdown-toggle {
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 10px 18px;
    cursor: pointer;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
    background: transparent;
    border: none;
    font-family: inherit;
}

.dropdown-toggle:hover {
    color: var(--gray-900);
}

.dropdown-toggle i {
    font-size: 0.7rem;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

/* Create invisible bridge to prevent gap */
.nav-dropdown::after {
    content: '';
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 15px;
    background: transparent;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 180px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 8px;
    z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    display: block;
}

.dropdown-menu .dropdown-item {
    display: block;
    color: #4b5563;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 10px 14px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.15s ease;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #f3f4f6;
    color: #111827;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-contact {
    background-color: var(--gray-900);
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-contact:hover {
    background-color: var(--accent-600);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #374151;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle:hover span {
    background-color: #111827;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: white;
    border-top: 1px solid var(--gray-200);
    padding: 1rem;
}

.mobile-nav a {
    padding: 14px 0;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--gray-100);
    transition: color 0.2s ease;
}

.mobile-nav a:hover {
    color: var(--accent-600);
}

.mobile-nav .mobile-contact {
    background-color: var(--gray-900);
    color: white;
    text-align: center;
    border-radius: 8px;
    margin-top: 8px;
    padding: 14px;
}

/* Mobile Dropdown */
.mobile-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e5e7eb;
    padding: 16px 24px;
    display: none;
    flex-direction: column;
    z-index: 999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
}

.mobile-nav.show {
    display: flex;
    position: absolute;
}

.mobile-nav a {
    padding: 14px 0;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #f3f4f6;
    transition: color 0.2s ease;
}

.mobile-nav a:hover {
    color: #0891b2;
}

.mobile-dropdown {
    border-bottom: 1px solid #f3f4f6;
}

.mobile-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    background: none;
    border: none;
    color: #374151;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    font-family: inherit;
}

.mobile-toggle i {
    transition: transform 0.2s ease;
    font-size: 0.75rem;
}

.mobile-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    padding-left: 12px;
    padding-bottom: 8px;
}

.mobile-menu.show {
    display: flex;
}

.mobile-menu a {
    padding: 12px 0;
    font-size: 0.9375rem;
    color: #6b7280;
}

.mobile-menu a:hover {
    color: #0891b2;
}

.mobile-contact {
    background: #111827;
    color: white !important;
    text-align: center;
    border-radius: 8px;
    margin-top: 8px;
    padding: 14px !important;
    border: none !important;
}

.mobile-contact:hover {
    background: #0891b2;
    color: white !important;
}

main {
    margin-top: 72px;
}

@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    
    .header-actions .btn-contact {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .mobile-nav.show {
        display: flex;
    }
}

/* Nav link - minimal fallback */
.nav-link {
    color: var(--gray-600);
    font-weight: 500;
    padding: 0.5rem 1rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover, 
.nav-link.active {
    color: var(--accent-600);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-600) 0%, var(--accent-500) 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(8, 145, 178, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(8, 145, 178, 0.4);
    color: white;
}

.btn-secondary {
    background-color: white;
    color: var(--gray-800);
    border: 1px solid var(--gray-300);
}

.btn-secondary:hover {
    background-color: var(--gray-50);
    border-color: var(--gray-400);
    color: var(--gray-900);
}

.btn-outline {
    background: transparent;
    color: var(--accent-600);
    border: 2px solid var(--accent-600);
}

.btn-outline:hover {
    background: var(--accent-600);
    color: white;
}

.btn-white {
    background: white;
    color: var(--gray-900);
    border: none;
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    background: var(--gray-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--gray-900);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

/* Dropdown */
.dropdown-menu {
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    box-shadow: var(--shadow-xl);
    padding: 6px;
    margin-top: 4px;
}

.dropdown-item {
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 10px 14px;
    border-radius: 6px;
    transition: all 0.15s ease;
}

.dropdown-item:hover {
    background-color: var(--gray-100);
    color: var(--gray-900);
}

.dropdown-item.active {
    color: var(--accent-600);
    background-color: rgba(8, 145, 178, 0.1);
}

/* ========================================
   HERO SECTIONS
   ======================================== */

.hero-section {
    padding: 180px 0 100px;
    background-color: var(--primary-900);
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(6, 182, 212, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 100% 0%, rgba(8, 145, 178, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(245, 158, 11, 0.05) 0%, transparent 40%);
}

.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-400);
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-400);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-section h1 {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-section h1 .highlight {
    background: linear-gradient(135deg, var(--accent-400) 0%, var(--accent-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 36px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-400);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-400);
    font-weight: 500;
    margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: heroVisualIn 1s ease forwards;
    animation-delay: 0.6s;
}

@keyframes heroVisualIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-card-main {
    position: relative;
    width: 360px;
    padding: 28px;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.hero-card-main .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.hero-card-main .card-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.hero-card-main .card-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.card-badge.positive {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.card-chart {
    display: flex;
    align-items: flex-end;
    gap: 14px;
    height: 140px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--teal-500) 0%, var(--teal-400) 100%);
    border-radius: 6px 6px 0 0;
    animation: growBar 1s ease-out forwards;
    transform-origin: bottom;
}

@keyframes growBar {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

.hero-card-secondary {
    position: absolute;
    bottom: 50px;
    right: 0;
    width: 200px;
    padding: 22px;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
    animation-delay: 1s;
}

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

.hero-card-secondary .card-title {
    font-size: 0.8125rem;
    color: var(--gray-300);
    font-weight: 500;
}

.hero-card-secondary .card-value {
    font-size: 2.25rem;
    font-weight: 800;
    color: white;
    margin: 10px 0;
    text-align: center;
    display: block;
}

.card-progress {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--teal-500), var(--accent-400));
    border-radius: 3px;
    width: 0;
    transition: width 1.5s ease-out;
}

.hero-card-floating {
    position: absolute;
    top: 50px;
    right: 30px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 4;
    animation: float 5s ease-in-out infinite;
    animation-delay: 2s;
}

.hero-card-floating i {
    font-size: 1.5rem;
    color: var(--teal-400);
}

.hero-card-floating span {
    font-size: 0.9375rem;
    font-weight: 600;
    color: white;
}

/* Page Hero */
.page-hero {
    padding: 180px 0 100px;
    background: var(--primary-900);
    position: relative;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.page-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 60% 40% at 50% -10%, rgba(6, 182, 212, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 100% 0%, rgba(8, 145, 178, 0.08) 0%, transparent 40%);
}

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

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.page-hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent-400) 0%, var(--accent-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-wrapper .page-hero-content {
    text-align: left;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 32px;
}

.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-400);
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========================================
   SECTIONS
   ======================================== */

.section {
    padding: 100px 0;
    background: white;
}

.section-light {
    background-color: var(--gray-50);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-500);
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(8, 145, 178, 0.1);
    color: var(--accent-600);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

/* ========================================
   INTRO SECTION
   ======================================== */

.intro-section {
    padding: 100px 0;
    background: var(--gray-50);
    position: relative;
}

.intro-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.intro-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.intro-header p {
    font-size: 1.125rem;
    color: var(--gray-500);
}

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

.intro-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.intro-card:hover {
    border-color: var(--accent-400);
    box-shadow: 0 20px 40px rgba(8, 145, 178, 0.12);
    transform: translateY(-6px);
}

.intro-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--accent-600) 0%, var(--accent-500) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(8, 145, 178, 0.25);
}

.intro-icon i {
    font-size: 1.625rem;
    color: white;
}

.intro-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.intro-card p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   VALUE SECTION
   ======================================== */

/* Why Choose Us Section */
.choose-section {
    padding: 120px 0;
    background: #fff;
}

.choose-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.choose-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #111827;
    margin: 16px 0 20px;
    letter-spacing: -0.02em;
}

.choose-header p {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.7;
}

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

.choose-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.choose-card:hover {
    border-color: #0891b2;
    box-shadow: 0 20px 40px rgba(8, 145, 178, 0.12);
    transform: translateY(-4px);
}

.choose-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0891b2, #06b6d4);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.choose-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.choose-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.choose-card p {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

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

.btn-choose {
    display: inline-block;
    background: #111827;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-choose:hover {
    background: #0891b2;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(8, 145, 178, 0.3);
}

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

@media (max-width: 640px) {
    .choose-grid {
        grid-template-columns: 1fr;
    }
    
    .choose-header h2 {
        font-size: 2rem;
    }
}

.value-section {
    padding: 100px 0;
    background: white;
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.value-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.value-content > p {
    font-size: 1.0625rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 32px;
}

.value-list {
    list-style: none;
    margin-bottom: 32px;
    padding: 0;
}

.value-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
}

.value-list li:last-child {
    border-bottom: none;
}

.value-list li i {
    width: 28px;
    height: 28px;
    background: rgba(16, 185, 129, 0.12);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    flex-shrink: 0;
}

.value-list li span {
    font-size: 1rem;
    color: var(--gray-700);
    font-weight: 500;
}

.value-visual {
    position: relative;
}

.value-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.value-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.value-overlay {
    position: absolute;
    bottom: 28px;
    right: 28px;
    background: white;
    padding: 24px 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

.overlay-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.overlay-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--accent-600);
}

.overlay-label {
    font-size: 0.8125rem;
    color: var(--gray-500);
    font-weight: 600;
}

/* ========================================
   LEADERSHIP / PARTNER PROFILE
   ======================================== */
.leadership-section .section-header {
    max-width: 760px;
}

.leadership-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 18%, rgba(8, 145, 178, 0.08), transparent 24%),
        linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.partner-profile {
    position: relative;
    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.5fr);
    gap: 72px;
    align-items: start;
    padding: 56px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 30px;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.1);
    overflow: hidden;
}

.partner-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-600), var(--primary-700), var(--accent-400));
}

.partner-portrait-wrap {
    position: relative;
    max-width: 420px;
    margin: 0 auto;
}

.partner-photo-shell {
    position: relative;
    padding: 12px;
    background: var(--primary-900);
    border-radius: 26px;
}

.partner-portrait {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5.2;
    object-fit: cover;
    object-position: center top;
    border-radius: 18px;
}

.partner-photo-overlay {
    position: absolute;
    inset: 12px;
    border-radius: 18px;
    background: linear-gradient(180deg, transparent 65%, rgba(15, 23, 42, 0.28));
    pointer-events: none;
}

.partner-experience-card {
    position: absolute;
    right: -24px;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.16);
}

.partner-experience-card strong {
    color: var(--accent-600);
    font-size: 1.9rem;
    line-height: 1;
}

.partner-experience-card span {
    color: var(--gray-600);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.partner-title-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.partner-role {
    display: inline-block;
    margin: 0;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(8, 145, 178, 0.1);
    color: var(--accent-600);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.partner-company {
    color: var(--gray-400);
    font-size: 0.82rem;
    font-weight: 600;
}

.partner-content h3 {
    margin: 0 0 22px;
    color: var(--primary-900);
    font-size: clamp(1.8rem, 2.3vw, 2.45rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.partner-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.partner-credentials span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(8, 145, 178, 0.08);
    border: 1px solid rgba(8, 145, 178, 0.16);
    border-radius: 999px;
    color: var(--primary-700);
    font-size: 0.78rem;
    font-weight: 600;
}

.partner-credentials i {
    color: var(--accent-600);
}

.partner-bio p {
    margin: 0 0 16px;
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.75;
}

.partner-bio .partner-lead {
    color: var(--gray-700);
    font-size: 1.02rem;
    line-height: 1.8;
}

.partner-expertise {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 26px 0;
    padding: 20px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
}

.partner-expertise span {
    position: relative;
    padding-left: 22px;
    color: var(--primary-800);
    font-size: 0.82rem;
    font-weight: 700;
}

.partner-expertise span::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent-600);
    font-weight: 800;
}

.partner-bio p:last-child {
    margin-bottom: 0;
}

/* ========================================
   STATS SECTION
   ======================================== */

.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-800) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(8, 145, 178, 0.15) 0%, transparent 50%);
}

.stats-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.stats-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.stats-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(8, 145, 178, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 1.375rem;
    color: var(--accent-400);
}

.stat-card .stat-value {
    font-size: 2.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-card .stat-description {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.testimonials-header {
    max-width: 680px;
    margin: 0 auto 56px;
    text-align: center;
}

.testimonials-header h2 {
    margin: 14px 0 12px;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-900);
    letter-spacing: -0.02em;
}

.testimonials-header p {
    margin: 0;
    font-size: 1.125rem;
    color: var(--gray-500);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    padding: 8px 4px 28px;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc((100% - 48px) / 3);
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 32px;
    scroll-snap-align: start;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-200);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.1);
}

.testimonial-quote-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 22px;
    border-radius: 12px;
    background: rgba(8, 145, 178, 0.1);
    color: var(--accent-600);
    font-size: 1.05rem;
}

.testimonial-card blockquote { flex: 1; margin: 0 0 28px; }
.testimonial-card blockquote p { margin: 0; color: var(--gray-700); font-size: 1rem; line-height: 1.75; }

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 74px;
    padding-top: 22px;
    border-top: 1px solid var(--gray-100);
}

.testimonial-avatar {
    flex: 0 0 48px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-800), var(--accent-600));
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
    text-align: center;
}

.testimonial-author > div { min-width: 0; }
.testimonial-author cite, .testimonial-author div > span { display: block; }
.testimonial-author cite { margin-bottom: 3px; color: var(--primary-900); font-size: 0.9375rem; font-style: normal; font-weight: 700; }
.testimonial-author div > span { color: var(--gray-500); font-size: 0.8125rem; line-height: 1.4; overflow-wrap: anywhere; }

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 12px;
}

.testimonials-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonial-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: var(--gray-300);
    transition: width 0.25s ease, background 0.25s ease;
}

.testimonial-dot.active {
    width: 30px;
    background: var(--accent-600);
}

.testimonials-arrows {
    display: flex;
    gap: 10px;
}

.testimonial-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    background: white;
    color: var(--primary-900);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
    border-color: var(--accent-600);
    background: var(--accent-600);
    color: white;
    transform: translateY(-2px);
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    padding: 100px 0;
    background: var(--primary-900);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(6, 182, 212, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(245, 158, 11, 0.06) 0%, transparent 30%);
}

.cta-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
}

.cta-content h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
    background-color: #111827;
    padding: 48px 0 0;
    color: #9ca3af;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.25fr 2fr;
    gap: 56px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: block;
    margin-bottom: 12px;
}

.footer-logo img {
    height: 32px;
    width: auto;
}

.footer-tagline {
    color: #22d3ee;
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.footer-desc {
    font-size: 0.875rem;
    line-height: 1.55;
    margin-bottom: 16px;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: all 0.2s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: #0891b2;
    color: white;
    border-color: #0891b2;
}

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

.footer-col h4 {
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
    line-height: 1.45;
}

.footer-col ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-col ul li {
    font-size: 0.875rem;
}

.site-footer .footer-bottom {
    padding: 16px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    margin: 0;
}

@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding-top: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
    }
    
    .footer-links .footer-col:last-child {
        grid-column: span 2;
    }
}

/* Old Footer (keep for compatibility) */
.footer {
    background-color: var(--primary-900);
    color: white;
    padding: 80px 0 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-section h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.9;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.25rem;
}

.footer-logo-img {
    height: 48px;
    width: auto;
}

.footer-logo h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0;
}

.tagline {
    color: var(--accent-400);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
}

.footer-section p {
    color: var(--gray-400);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.875rem;
}

.footer-section ul a {
    color: var(--gray-400);
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.footer-section ul a i {
    font-size: 0.625rem;
    color: var(--accent-500);
    transition: all 0.2s ease;
}

.footer-section ul a:hover {
    color: white;
}

.footer-section ul a:hover i {
    transform: translateX(4px);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 1rem;
}

.contact-info i {
    color: var(--accent-400);
    margin-top: 4px;
    width: 18px;
    flex-shrink: 0;
}

.contact-info a {
    text-decoration: none;
    color: var(--gray-400);
    transition: color 0.2s ease;
}

.contact-info a:hover {
    color: var(--accent-400);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all 0.2s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--accent-600);
    color: white;
    border-color: var(--accent-600);
    transform: translateY(-2px);
}

.footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* ========================================
   CARDS & COMPONENTS
   ======================================== */

.card-custom {
    background-color: white;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.card-custom:hover {
    border-color: var(--accent-400);
    box-shadow: 0 16px 40px rgba(8, 145, 178, 0.1);
    transform: translateY(-4px);
}

.card-icon-custom {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-600), var(--accent-500));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

/* Service Cards */
.service-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--accent-400);
    box-shadow: 0 20px 40px rgba(8, 145, 178, 0.12);
    transform: translateY(-6px);
}

.service-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-600), var(--accent-500));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.service-card-link {
    color: var(--accent-600);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9375rem;
}

.service-card-link:hover {
    color: var(--accent-700);
}

.service-card-link i {
    transition: transform 0.2s ease;
}

.service-card-link:hover i {
    transform: translateX(4px);
}

/* ========================================
   FORMS
   ======================================== */

.contact-form-card {
    background-color: white;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-xl);
}

.contact-form .row {
    margin-bottom: 0;
}

.contact-form .row + .row {
    margin-top: 1.25rem;
}

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

.contact-form .btn-primary {
    width: 100%;
    margin-top: 0.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.625rem;
    font-weight: 600;
    color: var(--gray-800);
    font-size: 0.9375rem;
}

.form-control, .form-select {
    padding: 14px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background-color: white;
    width: 100%;
}

.form-control:focus, .form-select:focus {
    outline: none;
    border-color: var(--accent-600);
    box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.1);
}

.form-control::placeholder {
    color: var(--gray-400);
}

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

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

/* Contact Info Card */
.contact-info-card {
    background-color: white;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--gray-200);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-600), var(--accent-500));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.contact-info-item a, .contact-info-item p {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 0;
    text-decoration: none;
}

.contact-info-item a:hover {
    color: var(--accent-600);
}

/* Alerts */
.alert-custom {
    padding: 1rem 1.25rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
}

.alert-success-custom {
    background-color: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error-custom {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ========================================
   ADDITIONAL COMPONENTS
   ======================================== */

.faq-item {
    background-color: white;
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid var(--gray-200);
    transition: all 0.2s ease;
}

.faq-item:hover {
    border-color: var(--gray-300);
    box-shadow: var(--shadow-md);
}

.faq-item h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.faq-item p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Case Study Cards */
.case-study-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.case-study-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gray-200);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.case-study-tag {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(8, 145, 178, 0.1);
    color: var(--accent-600);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.case-results-card {
    background: linear-gradient(135deg, var(--primary-900), var(--primary-800));
    border-radius: 16px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
}

.case-results-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.case-results-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-results-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.625rem 0;
    color: var(--gray-300);
    font-size: 0.9375rem;
}

.case-results-list li i {
    color: var(--accent-400);
    font-size: 0.875rem;
}

.case-stat-card {
    display: flex;
    gap: 1rem;
}

.case-stat {
    flex: 1;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 1.25rem;
    text-align: center;
}

.case-stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-600);
    line-height: 1;
}

.case-stat-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 600;
    margin-top: 4px;
}

/* Industry Cards */
.industry-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.industry-card:hover {
    border-color: var(--accent-400);
    box-shadow: 0 20px 40px rgba(8, 145, 178, 0.12);
    transform: translateY(-6px);
}

.industry-card-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--accent-600), var(--accent-500));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.625rem;
}

.industry-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.industry-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.65;
    margin: 0;
}

/* Mission/Vision Cards */
.mission-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.mission-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--accent-600), var(--accent-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.625rem;
}

/* Approach Cards */
.approach-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.approach-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.approach-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gray-200);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.approach-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-600), var(--accent-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.375rem;
}

/* Value Cards */
.value-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-600), var(--accent-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.375rem;
}

/* Founder Styles */
.founder-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.founder-image-wrapper {
    position: relative;
    max-width: 420px;
    margin: 0 auto;
}

.founder-image-frame {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.founder-image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.founder-image-accent {
    position: absolute;
    top: 24px;
    right: -24px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-600);
    border-radius: 24px;
    z-index: -1;
}

/* Story Stats */
.story-stat-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.story-stat-card:hover {
    box-shadow: var(--shadow-md);
}

.story-stat-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--accent-600), var(--accent-500));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.25rem;
}

.story-stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--accent-600);
    line-height: 1;
}

.story-stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 600;
    margin-top: 4px;
}

/* Philosophy Cards */
.philosophy-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.philosophy-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.philosophy-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-600), var(--accent-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.375rem;
}

/* Expertise Cards */
.expertise-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    padding: 1.75rem;
    display: flex;
    gap: 1.25rem;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-300);
}

.expertise-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--accent-600), var(--accent-500));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Commitment Card */
.commitment-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 2.5rem;
}

.commitment-card-header {
    font-size: 2rem;
    color: var(--accent-600);
    margin-bottom: 1rem;
}

.commitment-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Results Stats */
.result-stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.result-stat-icon {
    width: 52px;
    height: 52px;
    background: rgba(8, 145, 178, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--accent-400);
    font-size: 1.25rem;
}

.result-stat-value {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.result-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Impact Cards */
.impact-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.impact-card:hover {
    box-shadow: var(--shadow-lg);
}

.impact-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gray-200);
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* Journey Cards */
.journey-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.journey-card:hover {
    box-shadow: var(--shadow-lg);
}

.journey-header {
    margin-bottom: 1rem;
}

.journey-label {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.journey-before .journey-label {
    background: #fef2f2;
    color: #991b1b;
}

.journey-during .journey-label {
    background: #fef3c7;
    color: #92400e;
}

.journey-after .journey-label {
    background: #d1fae5;
    color: #065f46;
}

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

.journey-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.625rem 0;
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.journey-list li i {
    width: 20px;
    text-align: center;
}

.journey-before .journey-list li i {
    color: #ef4444;
}

.journey-during .journey-list li i {
    color: #f59e0b;
}

.journey-after .journey-list li i {
    color: #10b981;
}

/* Theme Cards */
.theme-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.theme-card:hover {
    box-shadow: var(--shadow-lg);
}

.theme-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gray-200);
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* Service Detail Grid */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-grid.service-detail-reverse {
    direction: rtl;
}

.service-detail-grid.service-detail-reverse > * {
    direction: ltr;
}

.service-detail-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 16px;
}

.service-detail-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-detail-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.625rem 0;
    color: var(--gray-600);
    font-size: 1rem;
}

.service-detail-list li i {
    color: var(--success);
    font-size: 0.875rem;
}

.service-detail-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    box-shadow: var(--shadow-lg);
}

.detail-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--accent-600), var(--accent-500));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-detail-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.service-detail-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.detail-card-stats {
    display: flex;
    gap: 1rem;
}

.detail-stat {
    flex: 1;
    background: var(--gray-50);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
}

.detail-stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-600);
    line-height: 1;
}

.detail-stat-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 600;
    margin-top: 4px;
}

.custom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.custom-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0.875rem 0;
}

.custom-feature i {
    color: var(--success);
    font-size: 1rem;
}

/* Challenge Cards */
.challenges-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 2rem;
}

.challenges-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--gray-900);
}

.challenges-card-header i {
    color: var(--accent-600);
}

/* Solution Items */
.solution-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.solution-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gray-300);
}

.solution-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--accent-600), var(--accent-500));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Why Choose Cards */
.why-choose-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.why-choose-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.why-choose-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-600), var(--accent-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.375rem;
}

/* Benefits Card */
.benefits-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 2rem;
}

.benefits-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
}

.benefits-card-header i {
    color: var(--gold-500);
}

/* Section Tag Override */
.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 16px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .hero-wrapper,
    .value-grid,
    .founder-hero-grid,
    .service-detail-grid,
    .custom-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-visual {
        order: -1;
        height: 400px;
    }
    
    .intro-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-section h1,
    .page-hero h1 {
        font-size: 2.75rem;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        display: none !important;
    }
    
    .navbar .container > div:first-child {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .container {
        padding: 0 20px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .hero-section {
        padding: 150px 0 80px;
    }
    
    .hero-section h1,
    .page-hero h1 {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 32px;
    }
    
    .hero-actions,
    .cta-actions {
        flex-direction: column;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-lg {
        padding: 14px 28px;
    }
    
    .navbar-collapse {
        background: white;
        padding: 1rem;
        margin-top: 0;
    }
    
    .navbar-collapse .nav-link {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--gray-100);
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .hero-section h1,
    .page-hero h1 {
        font-size: 1.875rem;
    }
    
    .stat-number,
    .stat-card .stat-value {
        font-size: 1.75rem;
    }
    
    .intro-card,
    .service-card,
    .industry-card,
    .mission-card,
    .approach-card,
    .value-card {
        padding: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */

/* Base animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fade animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
}

/* Scale animations */
.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Slide animations */
.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays for grid items */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Hero section animations */
.hero-content > * {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero cards floating animation */
.hero-card-main {
    animation: heroFloat 6s ease-in-out infinite;
}

.hero-card-secondary {
    animation: heroFloat 4s ease-in-out infinite;
    animation-delay: 1s;
}

.hero-card-floating {
    animation: heroFloat 5s ease-in-out infinite;
    animation-delay: 2s;
}

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

/* Card hover animations */
.card-custom,
.service-card,
.industry-card,
.intro-card,
.mission-card,
.approach-card,
.value-card,
.faq-item {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.card-custom:hover,
.service-card:hover,
.industry-card:hover,
.intro-card:hover,
.mission-card:hover,
.approach-card:hover,
.value-card:hover {
    transform: translateY(-8px);
}

/* Button pulse animation */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

/* Stats counter animation */
.stat-card,
.result-stat-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat-card.visible,
.result-stat-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section reveal animation */
.section {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.section.visible {
    opacity: 1;
}

/* Page hero entrance */
.page-hero {
    opacity: 0;
    animation: pageHeroIn 1s ease forwards;
}

@keyframes pageHeroIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gradient pulse background for hero */
.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(8, 145, 178, 0.15) 0%, transparent 70%);
    animation: gradientPulse 4s ease-in-out infinite;
}

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

/* Badge pulse */
.badge-dot {
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.7);
    }
    50% { 
        transform: scale(1.2); 
        box-shadow: 0 0 0 8px rgba(34, 211, 238, 0);
    }
}

/* Chart bar animation */
.chart-bar {
    animation: barGrow 1s ease-out forwards;
    transform-origin: bottom;
}

@keyframes barGrow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

/* Progress fill animation */
.progress-fill {
    animation: progressFill 1.5s ease-out forwards;
}

@keyframes progressFill {
    from { width: 0; }
}

/* Text reveal animation */
h1, h2, h3 {
    opacity: 0;
    transform: translateY(20px);
    animation: textReveal 0.8s ease forwards;
}

h1 { animation-delay: 0.2s; }
h2 { animation-delay: 0.1s; }
h3 { animation-delay: 0.1s; }

@keyframes textReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer reveal */
.footer {
    opacity: 0;
    animation: footerReveal 1s ease forwards;
    animation-delay: 0.3s;
}

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

/* Social links hover */
.social-links a {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-4px) scale(1.1);
}

/* Input focus animation */
.form-control,
.form-select {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    animation: focusPulse 0.3s ease;
}

@keyframes focusPulse {
    0% { box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.1); }
    50% { box-shadow: 0 0 0 6px rgba(8, 145, 178, 0.2); }
    100% { box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.1); }
}

/* Intro icon rotation on hover */
.intro-icon {
    transition: transform 0.4s ease;
}

.intro-card:hover .intro-icon {
    transform: rotate(10deg) scale(1.1);
}

/* Service card icon animation */
.service-card-icon {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover .service-card-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(8, 145, 178, 0.4);
}

/* CTA section animation */
.cta-section::before {
    animation: ctaGradient 6s ease-in-out infinite;
}

@keyframes ctaGradient {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Contact info item animation */
.contact-info-item {
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-info-item:hover {
    background-color: var(--gray-50);
    transform: translateX(8px);
}

/* Scroll indicator for hero */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s ease-in-out infinite;
}

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

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* ========================================
   COMPREHENSIVE MOBILE STYLES
   ======================================== */

/* Base mobile styles */
@media (max-width: 768px) {
    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    body {
        font-size: 15px;
        line-height: 1.6;
    }
    
    /* Container */
    .container {
        padding: 0 20px;
    }
    
    /* Sections */
    .section {
        padding: 60px 0;
    }
    
    /* Hero Sections */
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .page-hero {
        padding: 120px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 1.75rem;
    }
    
    /* Hero Grid */
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        order: -1;
        height: 280px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 24px;
    }
    
    /* Grids */
    .intro-grid,
    .stats-grid,
    .choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Cards */
    .intro-card,
    .service-card,
    .industry-card,
    .choose-card,
    .stat-card {
        padding: 24px 20px;
    }
    
/* Hero Visual Cards - Desktop */
.hero-card-secondary {
    position: absolute;
    bottom: 50px;
    right: 0;
    width: 200px;
    padding: 22px;
    z-index: 3;
}

.hero-card-floating {
    position: absolute;
}

/* Hero Visual - Mobile Stack */
.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    height: auto;
    padding: 20px 0;
}

.hero-card-main,
.hero-card-secondary,
.hero-card-floating {
    position: relative !important;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    bottom: auto !important;
    right: auto !important;
    top: auto !important;
}

.hero-card-secondary {
    margin-top: 12px;
}

.hero-card-floating {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
    
    .hero-card-secondary {
        width: 140px;
        padding: 14px;
        position: relative;
        bottom: auto;
        right: auto;
    }
    
    .hero-card-floating {
        padding: 12px 16px;
        right: auto;
        top: auto;
        position: relative;
    }
    
    .hero-visual {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .hero-card-main {
        width: 100%;
        max-width: 280px;
        padding: 20px;
    }
    
    .card-chart {
        height: 100px;
        gap: 8px;
    }
    
    .hero-card-secondary .card-value {
        font-size: 1.75rem;
    }
    
    .hero-card-floating {
        display: flex;
        align-items: center;
        gap: 8px;
        justify-content: center;
    }
    
    /* CTA */
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    /* Stats */
    .stats-section {
        padding: 60px 0;
    }
    
    .stats-header {
        margin-bottom: 40px;
    }
    
    .stats-header h2 {
        font-size: 1.75rem;
    }
    
    /* Footer */
    .site-footer {
        padding: 48px 0 0;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-desc {
        max-width: 100%;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    /* Header */
    .header-inner {
        height: 64px;
    }
    
    .brand-img {
        height: 28px;
    }
    
    .main-nav {
        display: none;
    }
    
    .header-actions .btn-contact {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .mobile-nav.show {
        display: flex;
    }
    
    /* Forms */
    .contact-form-card {
        padding: 24px 20px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    /* Case Studies */
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .service-detail-grid.service-detail-reverse {
        direction: ltr;
    }
    
    /* Value props */
    .value-content h2 {
        font-size: 1.75rem;
    }
    
    .value-overlay {
        bottom: 16px;
        right: 16px;
        padding: 16px 20px;
    }
    
    /* Buttons */
    .btn {
        padding: 12px 20px;
        font-size: 0.9375rem;
    }
    
    .btn-lg {
        padding: 14px 24px;
    }
}

@media (max-width: 1024px) {
    .partner-profile {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 44px;
    }

    .partner-portrait-wrap {
        width: min(100%, 380px);
    }
}

@media (max-width: 768px) {
    .partner-profile {
        gap: 40px;
        padding: 28px;
        border-radius: 22px;
    }

    .partner-experience-card {
        right: -10px;
        bottom: 20px;
    }

    .partner-content h3 {
        font-size: 1.65rem;
    }

    .partner-credentials {
        align-items: flex-start;
        flex-direction: column;
    }

    .partner-title-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    
    .container {
        padding: 0 16px;
    }

    .partner-profile {
        padding: 20px;
    }

    .partner-experience-card {
        right: 10px;
        bottom: 10px;
        padding: 12px 14px;
    }

    .partner-experience-card strong {
        font-size: 1.5rem;
    }

    .partner-expertise {
        grid-template-columns: 1fr;
    }
    
    .hero-section h1 {
        font-size: 1.5rem;
    }
    
    .stat-number,
    .stat-card .stat-value {
        font-size: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }
    
    .hero-wrapper {
        gap: 40px;
    }
    
    .intro-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card {
        flex-basis: calc((100% - 24px) / 2);
    }
    
    .choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .value-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 72px 0;
    }

    .testimonials-header {
        margin-bottom: 36px;
    }

    .testimonials-header h2 {
        font-size: 2rem;
    }

    .testimonial-card {
        flex-basis: 100%;
        padding: 26px;
    }

    .testimonials-controls {
        margin-top: 4px;
    }

    .testimonial-arrow {
        width: 42px;
        height: 42px;
    }
}

/* Large tablets and small laptops */
@media (max-width: 1200px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-stats {
        justify-content: center;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .nav-item,
    .nav-link,
    .dropdown-item,
    .btn {
        min-height: 44px;
    }
    
    .dropdown-toggle {
        padding: 12px 18px;
    }
    
    .dropdown-menu {
        min-width: 200px;
    }
}

/* Respect user preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
