/* ============================================================ */
/* CSS VARIABLES & GLOBAL RESET
/* ============================================================ */
:root {
    --primary: #2563EB;
    --primary-light: #3B82F6;
    --primary-dark: #1D4ED8;
    --gradient-1: #2563EB;
    --gradient-2: #4F46E5;
    --gradient-3: #7C3AED;
    --gradient-main: linear-gradient(135deg, #2563EB, #4F46E5, #7C3AED);
    --gradient-hover: linear-gradient(135deg, #1D4ED8, #4338CA, #6D28D9);
    --accent-cyan: #06B6D4;
    --accent-purple: #A855F7;
    --dark: #081120;
    --dark-secondary: #0F1A2E;
    --dark-tertiary: #1A2744;
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 40px 80px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.3);
    --shadow-glow-hover: 0 0 60px rgba(37, 99, 235, 0.5);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font: 'Plus Jakarta Sans', sans-serif;
    --max-width: 1200px;
    --nav-height: 80px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    font-size: 16px;
}

body {
    font-family: var(--font);
    color: var(--dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
    position: relative;
}

/* ============================================================ */
/* TYPOGRAPHY
/* ============================================================ */
.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================================ */
/* BUTTONS
/* ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-main);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-hover);
    background: var(--gradient-hover);
}

.btn-glow {
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(37, 99, 235, 0.3); }
    50% { box-shadow: 0 0 40px rgba(37, 99, 235, 0.5); }
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #1DA851;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1rem;
}

/* ============================================================ */
/* GLASSMORPHISM
/* ============================================================ */
.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
}

/* ============================================================ */
/* NAVBAR
/* ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
}

.navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .navbar-logo {
    color: var(--dark);
}

.navbar-logo i {
    font-size: 1.6rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.navbar-menu li {
    white-space: nowrap;
}

.nav-link {
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    line-height: 1;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
    overflow: visible;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: transform 0.3s ease;
    transform-origin: center;
}

.navbar.scrolled .nav-link {
    color: var(--gray-600);
}

.nav-link:hover {
    color: var(--primary);
    background: transparent;
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
    color: var(--primary);
    font-weight: 700;
    background: transparent;
}

.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary);
    background: transparent;
}

.navbar.scrolled .nav-link.active {
    color: var(--primary);
    font-weight: 700;
    background: transparent;
}

.navbar-cta {
    padding: 12px 24px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.navbar-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .navbar-toggle span {
    background: var(--dark);
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================ */
/* HERO SECTION
/* ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--nav-height);
}

.hero-background {
    position: absolute;
    inset: 0;
    background: 
        url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?w=1920&q=80') center/cover no-repeat;
    transform: scale(1.1);
    animation: hero-zoom 20s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
    0% { transform: scale(1.1); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(8, 17, 32, 0.92) 0%,
        rgba(8, 17, 32, 0.75) 50%,
        rgba(37, 99, 235, 0.3) 100%
    );
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float-particle linear infinite;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-duration: 12s; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; top: 60%; animation-duration: 15s; animation-delay: 2s; }
.particle:nth-child(3) { left: 45%; top: 30%; animation-duration: 10s; animation-delay: 4s; }
.particle:nth-child(4) { left: 60%; top: 75%; animation-duration: 18s; animation-delay: 1s; }
.particle:nth-child(5) { left: 75%; top: 15%; animation-duration: 14s; animation-delay: 3s; }
.particle:nth-child(6) { left: 85%; top: 55%; animation-duration: 11s; animation-delay: 5s; }
.particle:nth-child(7) { left: 50%; top: 85%; animation-duration: 16s; animation-delay: 2.5s; }
.particle:nth-child(8) { left: 90%; top: 40%; animation-duration: 13s; animation-delay: 4.5s; }

@keyframes float-particle {
    0% { transform: translateY(0) scale(1); opacity: 1; }
    50% { opacity: 0.5; }
    100% { transform: translateY(-100vh) scale(0); opacity: 0; }
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: calc(100vh - var(--nav-height));
    padding: 60px 0;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--gray-200);
}

.hero-badge i {
    color: #FBBF24;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Floating Cards */
.hero-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    animation: float-card 6s ease-in-out infinite;
}

.hero-card:nth-child(2) {
    animation-delay: 0.5s;
    margin-left: 30px;
}

.hero-card:nth-child(3) {
    animation-delay: 1s;
    margin-left: 60px;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-card-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-main);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    flex-shrink: 0;
}

.hero-card-content {
    color: var(--white);
}

.hero-card-number {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.hero-card-plus {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-light);
}

.hero-card-content p {
    font-size: 0.85rem;
    color: var(--gray-300);
    margin-top: 4px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================ */
/* CLIENT LOGO SCROLL
/* ============================================================ */
.clients {
    padding: 60px 0;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.clients-label {
    text-align: center;
    margin-bottom: 32px;
}

.clients-label span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.clients-track-wrapper {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.clients-track {
    display: flex;
    gap: 60px;
    animation: scroll-logos 30s linear infinite;
    width: max-content;
}

@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.client-logo {
    flex-shrink: 0;
    padding: 12px 32px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    cursor: default;
}

.client-logo span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-600);
    white-space: nowrap;
}

.client-logo:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

/* ============================================================ */
/* ABOUT SECTION
/* ============================================================ */
.about {
    background: var(--white);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-image-main:hover img {
    transform: scale(1.05);
}

.about-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
}

.about-image-badge i {
    font-size: 1.5rem;
    color: #FBBF24;
}

.about-image-badge span {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark);
}

.about-image-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 250px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
}

.about-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    padding: 20px 0;
}

.about-description {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-stat {
    text-align: center;
    padding: 24px 16px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.about-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.about-stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-stat-plus {
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-stat-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 8px;
    font-weight: 500;
}

/* ============================================================ */
/* SERVICES SECTION
/* ============================================================ */
.services {
    background: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient-main);
    color: var(--white);
    box-shadow: var(--shadow-glow);
    transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ============================================================ */
/* WHY CHOOSE US SECTION
/* ============================================================ */
.why-choose {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--gray-50);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
    border-color: rgba(37, 99, 235, 0.2);
}

.feature-number {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.1;
    pointer-events: none;
    user-select: none;
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 16px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-main);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ============================================================ */
/* PORTFOLIO SECTION
/* ============================================================ */
.portfolio {
    background: var(--gray-50);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray-600);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(37, 99, 235, 0.05);
}

.filter-btn.active {
    background: var(--gradient-main);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.portfolio-item:nth-child(2),
.portfolio-item:nth-child(7) {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8, 17, 32, 0.9) 0%,
        rgba(8, 17, 32, 0.4) 50%,
        rgba(8, 17, 32, 0.1) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info h3 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.portfolio-info p {
    color: var(--gray-300);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.portfolio-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gradient-main);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.portfolio-btn:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

/* ============================================================ */
/* WORK PROCESS SECTION
/* ============================================================ */
.process {
    background: var(--white);
}

.process-timeline {
    position: relative;
    padding: 40px 0;
}

.process-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gray-200);
    transform: translateY(-50%);
    border-radius: 2px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step-number {
    width: 64px;
    height: 64px;
    background: var(--white);
    border: 3px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gray-400);
    margin: 0 auto 20px;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.process-step:hover .process-step-number {
    background: var(--gradient-main);
    border-color: transparent;
    color: var(--white);
    box-shadow: var(--shadow-glow);
    transform: scale(1.1);
}

.process-step-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.process-step-content p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
    max-width: 160px;
    margin: 0 auto;
}

/* ============================================================ */
/* TEAM SECTION
/* ============================================================ */
.team {
    background: var(--dark);
    color: var(--white);
}

.team .section-badge {
    background: rgba(255, 255, 255, 0.08);
    color: var(--gray-300);
    border-color: rgba(255, 255, 255, 0.1);
}

.team .section-title {
    color: var(--white);
}

.team .section-description {
    color: var(--gray-400);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.team-card {
    background: var(--dark-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--dark-tertiary);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.team-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(8, 17, 32, 0.9), transparent);
    display: flex;
    gap: 12px;
    justify-content: center;
    transform: translateY(100%);
    transition: var(--transition);
}

.team-card:hover .team-social {
    transform: translateY(0);
}

.team-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    font-size: 0.95rem;
}

.team-social a:hover {
    background: var(--gradient-main);
    transform: translateY(-3px);
}

.team-info {
    padding: 24px;
    text-align: center;
}

.team-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.team-info p {
    font-size: 0.9rem;
    color: var(--gray-400);
}

/* ============================================================ */
/* TESTIMONIALS SECTION
/* ============================================================ */
.testimonials {
    background: var(--gray-50);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
    min-width: 100%;
    padding: 0 60px;
}

.testimonial-company {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.testimonial-company i {
    font-size: 2rem;
    color: var(--primary);
}

.testimonial-company span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #FBBF24;
    font-size: 1.1rem;
}

.testimonial-content {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.testimonial-content p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.testimonial-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    width: 36px;
    border-radius: 6px;
}

.testimonial-dot:hover {
    border-color: var(--primary);
}

/* ============================================================ */
/* FAQ SECTION
/* ============================================================ */
.faq {
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    border: 1px solid var(--gray-100);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(37, 99, 235, 0.2);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    gap: 16px;
}

.faq-question h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    flex: 1;
}

.faq-icon {
    width: 36px;
    height: 36px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--primary);
    font-size: 0.9rem;
}

.faq-item.active .faq-icon {
    background: var(--gradient-main);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 28px 24px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.8;
}

/* ============================================================ */
/* CTA SECTION
/* ============================================================ */
.cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(8, 17, 32, 0.92) 0%,
        rgba(37, 99, 235, 0.4) 100%
    );
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 720px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.15rem;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================ */
/* CONTACT SECTION
/* ============================================================ */
.contact {
    background: var(--gray-50);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-placeholder {
    height: 100%;
    min-height: 500px;
    background: var(--white);
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.map-placeholder > i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.map-placeholder h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.map-placeholder p {
    color: var(--gray-500);
    margin-bottom: 24px;
}

.map-embed {
    flex: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 300px;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(0.2);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group label i {
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--gray-50);
    color: var(--dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================================ */
/* FOOTER
/* ============================================================ */
.footer {
    background: var(--dark);
    color: var(--gray-400);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo i {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    background: var(--dark-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition);
    font-size: 1rem;
}

.social-link:hover {
    background: var(--gradient-main);
    color: var(--white);
    transform: translateY(-3px);
}

.footer h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    font-size: 0.92rem;
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.92rem;
}

.footer-contact ul li i {
    color: var(--primary);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact ul li a {
    color: var(--gray-400);
}

.footer-contact ul li a:hover {
    color: var(--primary);
}

.footer-newsletter {
    margin-top: 32px;
}

.newsletter-input {
    display: flex;
    background: var(--dark-tertiary);
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid var(--dark-tertiary);
    transition: var(--transition);
}

.newsletter-input:focus-within {
    border-color: var(--primary);
}

.newsletter-input input {
    flex: 1;
    padding: 14px 20px;
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-family: var(--font);
    font-size: 0.9rem;
}

.newsletter-input input::placeholder {
    color: var(--gray-500);
}

.newsletter-input button {
    width: 50px;
    background: var(--gradient-main);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
}

.newsletter-input button:hover {
    background: var(--gradient-hover);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-divider {
    height: 1px;
    background: var(--dark-tertiary);
    margin-bottom: 24px;
}

.footer-bottom p {
    font-size: 0.85rem;
}

/* ============================================================ */
/* SCROLL ANIMATIONS
/* ============================================================ */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Floating Animation */
.floating {
    animation: floating 6s ease-in-out infinite;
}

.floating:nth-child(2) { animation-delay: 1s; }
.floating:nth-child(3) { animation-delay: 2s; }

@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* ============================================================ */
/* RESPONSIVE - TABLET
/* ============================================================ */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-description {
        margin: 0 auto 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-cards {
        flex-direction: row;
        gap: 16px;
    }
    
    .hero-card:nth-child(2),
    .hero-card:nth-child(3) {
        margin-left: 0;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-image-secondary {
        right: 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-item:nth-child(2),
    .portfolio-item:nth-child(7) {
        grid-column: span 2;
    }
    
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================================ */
/* RESPONSIVE - PHONE
/* ============================================================ */
@media (max-width: 768px) {
    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 8px;
        transition: var(--transition);
        z-index: -1;
    }
    
    .navbar-menu.active {
        right: 0;
    }
    
    .navbar-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .navbar-cta {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-card {
        width: 100%;
        max-width: 300px;
    }
    
    .clients {
        padding: 40px 0;
    }
    
    .client-logo {
        padding: 10px 20px;
    }
    
    .client-logo span {
        font-size: 0.95rem;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-number {
        font-size: 3.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-item:nth-child(2),
    .portfolio-item:nth-child(7) {
        grid-column: span 1;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-line {
        display: none;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-image {
        height: 250px;
    }
    
    .testimonial-card {
        padding: 0 20px;
    }
    
    .testimonial-content {
        padding: 24px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .about-image-secondary {
        width: 140px;
        height: 180px;
        bottom: -20px;
    }
    
    .about-image-main img {
        height: 300px;
    }
    
    .map-placeholder {
        min-height: 350px;
    }
    
    .map-embed {
        min-height: 200px;
    }
}

/* ============================================================ */
/* PROGRAM PAGE - HERO
/* ============================================================ */
.program-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--nav-height);
}

.program-hero-bg {
    position: absolute;
    inset: 0;
    background: 
        url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=1920&q=80') center/cover no-repeat;
    transform: scale(1.1);
    animation: hero-zoom 20s ease-in-out infinite alternate;
}

.program-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(8, 17, 32, 0.95) 0%,
        rgba(8, 17, 32, 0.8) 40%,
        rgba(37, 99, 235, 0.4) 100%
    );
}

.program-hero .hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
}

.program-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.program-hero .hero-description {
    font-size: 1.1rem;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 640px;
}

/* ============================================================ */
/* PROGRAM PAGE - CONSULTANT SERVICES (Section 1)
/* ============================================================ */
.consultant-services {
    background: var(--gray-50);
}

.consultant-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.consultant-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.consultant-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.consultant-card:hover::before {
    transform: scaleX(1);
}

.consultant-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.consultant-card-icon {
    width: 72px;
    height: 72px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.consultant-card:hover .consultant-card-icon {
    background: var(--gradient-main);
    color: var(--white);
    box-shadow: var(--shadow-glow);
    transform: scale(1.1) rotate(-5deg);
}

.consultant-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.consultant-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ============================================================ */
/* PROGRAM PAGE - ISSUE MONITORING (Section 2)
/* ============================================================ */
.issue-monitoring {
    background: var(--white);
}

.issue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.issue-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.issue-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-main);
    opacity: 0;
    transition: var(--transition);
}

.issue-card:hover::after {
    opacity: 1;
}

.issue-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.issue-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.issue-card-header i {
    font-size: 1.6rem;
    color: var(--primary);
    width: 48px;
    height: 48px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.issue-card:hover .issue-card-header i {
    background: var(--gradient-main);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.issue-card-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
}

.issue-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 16px;
}

.issue-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.issue-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(37, 99, 235, 0.06);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(37, 99, 235, 0.12);
    transition: var(--transition);
}

.issue-tag:hover {
    background: var(--gradient-main);
    color: var(--white);
    border-color: transparent;
}

/* ============================================================ */
/* PROGRAM PAGE - METHOD TIMELINE (Section 3)
/* ============================================================ */
.method-section {
    background: var(--gray-50);
}

.method-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.method-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--accent-purple));
    transform: translateX(-50%);
    border-radius: 2px;
}

.method-step {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.method-step:last-child {
    margin-bottom: 0;
}

.method-step:nth-child(odd) {
    flex-direction: row;
}

.method-step:nth-child(even) {
    flex-direction: row-reverse;
}

.method-step-content {
    width: calc(50% - 50px);
    background: var(--white);
    padding: 28px 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.method-step-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.2);
}

.method-step-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: var(--shadow-glow);
    z-index: 2;
    border: 4px solid var(--white);
}

.method-step-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.method-step-content p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.method-arrow {
    text-align: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin: -30px 0;
    position: relative;
    z-index: 1;
}

/* ============================================================ */
/* PROGRAM PAGE - OUTPUT SECTION (Section 4)
/* ============================================================ */
.output-section {
    background: var(--white);
}

.output-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.output-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.output-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    background: var(--white);
}

.output-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.output-card:hover .output-card-icon {
    background: var(--gradient-main);
    color: var(--white);
    box-shadow: var(--shadow-glow);
    transform: scale(1.1);
}

.output-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
}

/* ============================================================ */
/* PROGRAM PAGE - WHY CHOOSE MINI (Section 5)
/* ============================================================ */
.choose-mini {
    background: var(--gray-50);
}

.choose-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.choose-mini-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.choose-mini-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.2);
}

.choose-mini-card i {
    width: 64px;
    height: 64px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.6rem;
    color: var(--primary);
    transition: var(--transition);
}

.choose-mini-card:hover i {
    background: var(--gradient-main);
    color: var(--white);
    box-shadow: var(--shadow-glow);
    transform: scale(1.1) rotate(-5deg);
}

.choose-mini-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
}

/* ============================================================ */
/* PROGRAM CTA
/* ============================================================ */
.program-cta {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.program-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.program-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1), transparent);
    border-radius: 50%;
    pointer-events: none;
}

/* ============================================================ */
/* RESPONSIVE - PROGRAM PAGE TABLET
/* ============================================================ */
@media (max-width: 1024px) {
    .program-hero .hero-title {
        font-size: 2.6rem;
    }

    .consultant-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .issue-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .output-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .choose-mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .method-step-content {
        width: calc(50% - 40px);
    }
}

/* ============================================================ */
/* RESPONSIVE - PROGRAM PAGE PHONE
/* ============================================================ */
@media (max-width: 768px) {
    .program-hero {
        min-height: 70vh;
    }

    .program-hero .hero-title {
        font-size: 2rem;
    }

    .program-hero .hero-description {
        font-size: 1rem;
    }

    .consultant-grid {
        grid-template-columns: 1fr;
    }

    .issue-grid {
        grid-template-columns: 1fr;
    }

    .output-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .choose-mini-grid {
        grid-template-columns: 1fr;
    }

    .method-timeline::before {
        left: 20px;
    }

    .method-step,
    .method-step:nth-child(even) {
        flex-direction: row !important;
        padding-left: 60px;
    }

    .method-step-content {
        width: 100%;
    }

    .method-step-number {
        left: 20px;
        top: 50%;
        transform: translate(0, -50%);
        width: 44px;
        height: 44px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .program-hero .hero-title {
        font-size: 1.6rem;
    }

    .program-hero .hero-buttons {
        flex-direction: column;
    }

    .program-hero .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .output-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================ */
/* RESPONSIVE - SMALL PHONE
/* ============================================================ */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stat-number {
        font-size: 1.6rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer {
        padding: 60px 0 0;
    }
    
    .portfolio-filter {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

