/* ========================================
   MERT KURUMSAL İSTİHBARAT - WEBSITE CSS
   Modern Corporate Design
   ======================================== */

/* CSS Variables */
:root {
    /* Blue Neutral Palette */
    --primary-dark: #02000d;
    --primary: #07203f;
    --primary-light: #0d3a6e;
    --cream: #ebded4;
    --cream-light: #f5f0eb;
    --bronze: #d9aa90;
    --terracotta: #a65e46;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Semantic */
    --success: #10b981;
    --error: #ef4444;

    /* Typography */
    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 24px;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 18px; /* 45+ yaş için optimize */
    line-height: 1.5; /* 1.4-1.6x */
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

ul {
    list-style: none;
}

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

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

/* Typography - Accessibility Optimized (45+ yaş için) */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-dark);
    letter-spacing: 0.5px;
}

/* H1: 28-32px */
h1 { font-size: clamp(28px, 5vw, 32px); }
/* H2: 24-26px */
h2 { font-size: clamp(24px, 4vw, 26px); }
/* H3: 20-22px */
h3 { font-size: clamp(20px, 3vw, 22px); }
/* H4: 18-20px */
h4 { font-size: clamp(18px, 2.5vw, 20px); }

.highlight {
    color: var(--terracotta);
}

/* Buttons - Min 44x44 touch target, 18px font */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    min-height: 48px; /* Touch target */
    font-family: var(--font-family);
    font-size: 17px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--cream);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Section Styling */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-badge {
    display: inline-block;
    padding: 10px 18px;
    background: var(--cream);
    color: var(--terracotta);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    margin-bottom: 16px;
    font-size: clamp(24px, 4vw, 28px);
    line-height: 1.3;
}

.section-desc {
    color: var(--gray-600);
    font-size: 17px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition-base);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

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

.logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-base);
}

.logo:hover img {
    opacity: 0.85;
}

/* Text-based logo (fallback) */
.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: 2px;
}

.logo-sub {
    font-size: 10px;
    font-weight: 600;
    color: var(--terracotta);
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
}

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

.nav-links a.nav-highlight {
    color: var(--terracotta);
    font-weight: 600;
    position: relative;
}

.nav-links a.nav-highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--terracotta);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-links a.nav-highlight:hover::after {
    transform: scaleX(1);
}

.mobile-nav-links a.nav-highlight {
    color: var(--terracotta);
    font-weight: 600;
}

.btn-nav {
    padding: 10px 20px !important;
    background: var(--terracotta) !important;
    color: var(--white) !important;
    font-size: 15px;
}

.btn-nav:hover {
    background: #8a4d39 !important;
    color: var(--white) !important;
}

.btn-login {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-login i {
    font-size: 18px;
}

.btn-login:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-login-mobile {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    color: var(--gray-700);
    font-weight: 500;
}

.btn-login-mobile i {
    font-size: 20px;
}

.btn-login-mobile:hover {
    background: var(--primary);
    color: var(--white);
}

/* Login Dropdown */
.login-dropdown-container {
    position: relative;
}

.login-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 280px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.login-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.login-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 16px;
    width: 16px;
    height: 16px;
    background: var(--white);
    transform: rotate(45deg);
    border-radius: 3px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.login-form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-family: var(--font-family);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.login-form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(7, 32, 63, 0.1);
}

.login-form-group input::placeholder {
    color: var(--gray-400);
}

.login-form-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-family);
    cursor: pointer;
    transition: background 0.2s ease;
}

.login-form-btn:hover {
    background: var(--primary-light);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn i {
    font-size: 24px;
    color: var(--primary-dark);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    border-bottom: 1px solid var(--gray-200);
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-links a {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-700);
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

/* ========================================
   HERO SECTION - ALTERNATIVE (Teknolojik. Hızlı. Güvenilir.)
   ======================================== */
.hero-alt {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

/* Background */
.hero-alt-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-alt-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        #f8f6f4 0%,
        #f0ebe6 25%,
        #ebe4dd 50%,
        #f5f0eb 75%,
        #faf8f6 100%
    );
}

.hero-alt-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(7, 32, 63, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(166, 94, 70, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(7, 32, 63, 0.02) 0%, transparent 70%);
}

/* Floating Orbs */
.hero-alt-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 20s ease-in-out infinite;
}

.hero-alt-orb.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(7, 32, 63, 0.06);
    top: -100px;
    right: 10%;
    animation-delay: 0s;
}

.hero-alt-orb.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(166, 94, 70, 0.05);
    bottom: 10%;
    left: -50px;
    animation-delay: -5s;
}

.hero-alt-orb.orb-3 {
    width: 250px;
    height: 250px;
    background: rgba(217, 170, 144, 0.06);
    top: 40%;
    right: 30%;
    animation-delay: -10s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.05); }
    50% { transform: translate(-20px, 30px) scale(0.95); }
    75% { transform: translate(20px, 20px) scale(1.02); }
}

/* Grid Layout */
.hero-alt-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-alt-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 80px;
    }
}

/* Content - Left Side */
.hero-alt-content {
    max-width: 680px;
}

/* Badge */
.hero-alt-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 32px;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.1);
    transition: var(--transition-base);
}

.hero-alt-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.15);
}

.hero-alt-badge i {
    font-size: 20px;
    color: var(--success);
}

.hero-alt-badge strong {
    color: var(--success);
    font-weight: 700;
}

/* Main Tagline */
.hero-alt-tagline {
    margin-bottom: 28px;
}

.tagline-word {
    display: block;
    position: relative;
    overflow: hidden;
}

.tagline-word .word-text {
    display: inline-block;
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--primary-dark);
    animation: slideInWord 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(100%);
}

.tagline-word[data-delay="0"] .word-text { animation-delay: 0.1s; }
.tagline-word[data-delay="1"] .word-text { animation-delay: 0.2s; }
.tagline-word[data-delay="2"] .word-text { animation-delay: 0.3s; }

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

/* Gradient text for specific words */
.tagline-word[data-delay="0"] .word-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline-word[data-delay="1"] .word-text {
    color: var(--terracotta);
}

.tagline-word[data-delay="2"] .word-text {
    color: var(--primary-dark);
}

.word-underline {
    position: absolute;
    bottom: 8px;
    left: 0;
    height: 6px;
    background: var(--bronze);
    opacity: 0.3;
    border-radius: 3px;
    width: 0;
    animation: expandUnderline 0.6s ease forwards;
}

.tagline-word[data-delay="0"] .word-underline { animation-delay: 0.5s; }
.tagline-word[data-delay="1"] .word-underline { animation-delay: 0.6s; width: 0; }
.tagline-word[data-delay="2"] .word-underline { animation-delay: 0.7s; }

@keyframes expandUnderline {
    to { width: 100%; }
}

/* Subtitle */
.hero-alt-subtitle {
    font-size: clamp(22px, 3vw, 28px);
    color: var(--gray-700);
    margin-bottom: 16px;
    line-height: 1.4;
    font-weight: 500;
}

.hero-alt-subtitle strong {
    color: var(--primary);
    font-weight: 700;
}

/* Description */
.hero-alt-desc {
    font-size: 18px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 540px;
}

/* CTA Buttons */
.hero-alt-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-ghost {
    background: transparent;
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
}

.btn-ghost:hover {
    background: var(--white);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-ghost i {
    font-size: 22px;
}

/* Inline Stats */
.hero-alt-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.hero-alt-stat {
    text-align: left;
}

.stat-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-text {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-300);
}

/* Visual - Right Side */
.hero-alt-visual {
    display: none;
}

@media (min-width: 1024px) {
    .hero-alt-visual {
        display: block;
        position: relative;
        height: 560px;
    }
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Main Circle */
.visual-main-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
}

.circle-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--primary);
}

.circle-ring.ring-outer {
    inset: -80px;
    opacity: 0.1;
    animation: rotateRing 30s linear infinite;
    border-style: dashed;
}

.circle-ring.ring-middle {
    inset: -40px;
    opacity: 0.15;
    animation: rotateRing 25s linear infinite reverse;
}

.circle-ring.ring-inner {
    inset: 0;
    opacity: 0.2;
    animation: pulseRingAlt 3s ease-in-out infinite;
}

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulseRingAlt {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.05); opacity: 0.3; }
}

.circle-core {
    position: absolute;
    inset: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 20px 60px rgba(7, 32, 63, 0.3),
        0 0 0 8px rgba(7, 32, 63, 0.1);
}

.circle-core i {
    font-size: 64px;
    color: var(--white);
}

/* Visual Cards */
.visual-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-100);
    animation: floatCardAlt 5s ease-in-out infinite;
}

.visual-card .card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: var(--radius-sm);
}

.visual-card .card-icon i {
    font-size: 20px;
    color: var(--primary);
}

.visual-card .card-content {
    display: flex;
    flex-direction: column;
}

.visual-card .card-label {
    font-size: 11px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.visual-card .card-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
}

/* Card Positions */
.visual-card.card-tech {
    top: 5%;
    left: 0;
    animation-delay: 0s;
}

.visual-card.card-speed {
    top: 15%;
    right: 0;
    animation-delay: 1s;
}

.visual-card.card-coverage {
    bottom: 15%;
    left: -10px;
    animation-delay: 2s;
}

.visual-card.card-success {
    bottom: 5%;
    right: 10%;
    animation-delay: 3s;
}

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

/* Connection Lines SVG */
.visual-connections {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.conn-line {
    stroke: url(#lineGrad);
    stroke-width: 1.5;
    stroke-dasharray: 8 4;
    animation: dashFlow 2s linear infinite;
}

@keyframes dashFlow {
    from { stroke-dashoffset: 24; }
    to { stroke-dashoffset: 0; }
}

/* Data Particles */
.data-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--terracotta);
    border-radius: 50%;
    opacity: 0;
    animation: particleMove 4s ease-in-out infinite;
}

.data-particle.particle-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.data-particle.particle-2 {
    top: 30%;
    right: 25%;
    animation-delay: 1s;
}

.data-particle.particle-3 {
    bottom: 25%;
    right: 30%;
    animation-delay: 2s;
}

.data-particle.particle-4 {
    bottom: 30%;
    left: 25%;
    animation-delay: 3s;
}

@keyframes particleMove {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0.5);
    }
    20% {
        opacity: 1;
        transform: translate(20px, -10px) scale(1);
    }
    80% {
        opacity: 1;
        transform: translate(80px, -40px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(100px, -50px) scale(0.5);
    }
}

/* Scroll Indicator */
.hero-alt-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-alt-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition-base);
}

.hero-alt-scroll a:hover {
    color: var(--primary);
}

.hero-alt-scroll i {
    font-size: 20px;
    animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(8px); }
    60% { transform: translateY(4px); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-alt {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-alt-tagline .word-text {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .hero-alt-subtitle {
        font-size: 20px;
    }

    .hero-alt-desc {
        font-size: 16px;
    }

    .hero-alt-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .hero-alt-stat {
        flex: 1;
        min-width: 100px;
    }

    .stat-value {
        font-size: 28px;
    }

    .hero-alt-cta {
        flex-direction: column;
    }

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

    .hero-alt-scroll {
        display: none;
    }
}

/* ========================================
   HERO SECTION (Original - kept for reference)
   ======================================== */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
}

.hero > .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

/* Hero Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

@media (min-width: 1400px) {
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 80px;
    }
}

/* Hero Visual - Right Side */
.hero-visual {
    display: none;
}

@media (min-width: 1024px) {
    .hero-visual {
        display: block;
        position: relative;
        height: 500px;
    }
}

@media (min-width: 1400px) {
    .hero-visual {
        height: 560px;
    }
}

.hero-visual-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Central Visual Element */
.hero-visual-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
}

.visual-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0.15;
}

.visual-ring.ring-1 {
    inset: 0;
    animation: pulseRingHero 3s ease-out infinite;
}

.visual-ring.ring-2 {
    inset: -40px;
    animation: pulseRingHero 3s ease-out infinite 0.5s;
}

.visual-ring.ring-3 {
    inset: -80px;
    animation: pulseRingHero 3s ease-out infinite 1s;
}

@keyframes pulseRingHero {
    0% { transform: scale(1); opacity: 0.2; }
    50% { opacity: 0.1; }
    100% { transform: scale(1.15); opacity: 0; }
}

.visual-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(7, 32, 63, 0.3);
}

.visual-icon i {
    font-size: 48px;
    color: var(--white);
}

/* Feature Cards - Floating */
.hero-feature-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
    animation: floatCard 4s ease-in-out infinite;
}

.hero-feature-card i {
    font-size: 24px;
    color: var(--primary);
}

.hero-feature-card.card-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.hero-feature-card.card-2 {
    top: 25%;
    right: 0;
    animation-delay: 0.5s;
}

.hero-feature-card.card-3 {
    bottom: 20%;
    left: 0;
    animation-delay: 1s;
}

.hero-feature-card.card-4 {
    bottom: 10%;
    right: 10%;
    animation-delay: 1.5s;
}

.hero-feature-card.card-5 {
    top: 45%;
    right: 5%;
    animation-delay: 2s;
}

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

/* Prevent card-5 animation override */
.hero-feature-card.card-5 {
    animation-name: floatCardAlt;
}

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

/* Stats Badges - Floating */
.hero-stat-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--primary);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    animation: floatBadge 5s ease-in-out infinite;
}

.hero-stat-badge i {
    font-size: 18px;
    color: var(--bronze);
}

.hero-stat-badge.badge-1 {
    bottom: 35%;
    right: 5%;
    animation-delay: 0.3s;
}

.hero-stat-badge.badge-2 {
    top: 55%;
    left: 10%;
    animation-delay: 0.8s;
}

.hero-stat-badge.badge-3 {
    top: 15%;
    right: 25%;
    animation-delay: 1.2s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.02); }
}

/* Connection Lines - Animated */
.connection-line {
    position: absolute;
    background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
    height: 2px;
    transform-origin: left center;
    opacity: 0.3;
    animation: pulseLine 2s ease-in-out infinite;
}

.connection-line.line-1 {
    width: 120px;
    top: 30%;
    left: 100%;
    transform: rotate(-30deg);
    animation-delay: 0s;
}

.connection-line.line-2 {
    width: 100px;
    top: 70%;
    left: 100%;
    transform: rotate(30deg);
    animation-delay: 0.5s;
}

.connection-line.line-3 {
    width: 110px;
    top: 30%;
    right: 100%;
    left: auto;
    transform: rotate(150deg);
    transform-origin: right center;
    background: linear-gradient(270deg, var(--primary) 0%, transparent 100%);
    animation-delay: 1s;
}

.connection-line.line-4 {
    width: 90px;
    top: 70%;
    right: 100%;
    left: auto;
    transform: rotate(-150deg);
    transform-origin: right center;
    background: linear-gradient(270deg, var(--primary) 0%, transparent 100%);
    animation-delay: 1.5s;
}

@keyframes pulseLine {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.5; }
}

/* Tech Dots - Floating particles */
.tech-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--terracotta);
    border-radius: 50%;
    opacity: 0.6;
    animation: floatDot 6s ease-in-out infinite;
}

.tech-dot.dot-1 {
    top: 5%;
    left: 30%;
    animation-delay: 0s;
}

.tech-dot.dot-2 {
    top: 40%;
    left: 5%;
    width: 6px;
    height: 6px;
    animation-delay: 1s;
}

.tech-dot.dot-3 {
    bottom: 15%;
    right: 30%;
    width: 10px;
    height: 10px;
    animation-delay: 2s;
}

.tech-dot.dot-4 {
    top: 60%;
    right: 15%;
    width: 5px;
    height: 5px;
    animation-delay: 3s;
}

.tech-dot.dot-5 {
    bottom: 30%;
    left: 25%;
    width: 7px;
    height: 7px;
    animation-delay: 4s;
}

@keyframes floatDot {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(10px, -15px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translate(-5px, -25px) scale(1);
        opacity: 0.6;
    }
    75% {
        transform: translate(15px, -10px) scale(0.8);
        opacity: 0.5;
    }
}

/* Large Screen Adjustments */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 52px;
    }

    .hero-subtitle {
        font-size: 20px;
        max-width: 540px;
    }
}

@media (min-width: 1600px) {
    .hero-title {
        font-size: 58px;
    }

    .hero-subtitle {
        font-size: 22px;
        max-width: 600px;
    }

    .hero-visual {
        height: 600px;
    }

    .hero-visual-center {
        width: 200px;
        height: 200px;
    }

    .visual-icon {
        width: 120px;
        height: 120px;
        border-radius: 28px;
    }

    .visual-icon i {
        font-size: 56px;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(235,222,212,0.95) 0%, rgba(255,255,255,0.92) 50%, rgba(235,222,212,0.94) 100%),
        url('/images/Lwa644ecNb0Q3i7PN8tvu.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(7,32,63,0.05) 0%, transparent 70%);
    z-index: -1;
}

.hero-content {
    max-width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.hero-badge i {
    font-size: 18px;
    color: var(--success);
}

.hero-title {
    margin-bottom: 24px;
    font-size: clamp(36px, 6vw, 52px);
    line-height: 1.15;
    letter-spacing: -0.5px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray-600);
    margin-bottom: 36px;
    max-width: 640px;
    line-height: 1.6;
}

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

.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

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

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 14px;
    color: var(--gray-500);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    animation: bounce 2s infinite;
}

.hero-scroll i {
    font-size: 24px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ========================================
   ABOUT US (Biz Kimiz)
   ======================================== */
.about-us {
    padding: var(--section-padding);
    background: var(--white);
}

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

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 80px;
    }
}

.about-content .section-header {
    text-align: left;
    margin-bottom: 32px;
}

.about-lead {
    font-size: 20px;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 20px;
}

.about-lead strong {
    color: var(--primary);
    font-weight: 600;
}

.about-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-500);
    margin-bottom: 40px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-feature .feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-gray) 100%);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.about-feature .feature-icon i {
    font-size: 24px;
    color: var(--primary);
}

.about-feature .feature-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.about-feature .feature-text p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.5;
}

/* About Stats Card */
.about-visual {
    display: flex;
    justify-content: center;
}

.about-stats-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(7, 32, 63, 0.25);
}

.stats-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 28px;
}

.stats-card-header i {
    font-size: 28px;
    color: var(--bronze);
}

.stats-card-header span {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.stats-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.stats-card-item {
    text-align: center;
}

.stats-card-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.stats-card-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

@media (max-width: 768px) {
    .about-lead {
        font-size: 18px;
    }

    .about-text {
        font-size: 16px;
    }

    .about-stats-card {
        padding: 32px 24px;
    }

    .stats-card-value {
        font-size: 28px;
    }
}

/* ========================================
   MISSION STATEMENT
   ======================================== */
.mission-statement {
    padding: 80px 0;
    background: linear-gradient(135deg,
        #f8f6f4 0%,
        #f0ebe6 25%,
        #ebe4dd 50%,
        #f5f0eb 75%,
        #faf8f6 100%
    );
    position: relative;
    overflow: hidden;
}

.mission-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(7, 32, 63, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(166, 94, 70, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(7, 32, 63, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

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

.mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(7, 32, 63, 0.1);
}

.mission-icon i {
    font-size: 40px;
    color: var(--terracotta);
}

.mission-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 28px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.mission-title span {
    color: var(--terracotta);
}

.mission-text {
    font-size: 22px;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.mission-text strong {
    color: var(--primary);
    font-weight: 600;
}

.mission-subtext {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: 40px;
}

.mission-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: var(--white);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(7, 32, 63, 0.08);
    border: 1px solid var(--gray-100);
}

.mission-badge i {
    font-size: 24px;
    color: var(--primary);
}

.mission-badge span {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-dark);
}

@media (max-width: 768px) {
    .mission-statement {
        padding: 60px 0;
    }

    .mission-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 24px;
    }

    .mission-icon i {
        font-size: 32px;
    }

    .mission-text {
        font-size: 18px;
    }

    .mission-subtext {
        font-size: 16px;
    }

    .mission-badge {
        flex-direction: column;
        gap: 8px;
        padding: 16px 24px;
        text-align: center;
    }

    .mission-badge span {
        font-size: 14px;
    }
}

/* ========================================
   TRUST BAND
   ======================================== */
.trust-band {
    padding: 60px 0 50px;
    background: var(--primary-dark);
    overflow: hidden;
}

.trust-title {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 36px;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.trust-title span {
    color: var(--bronze);
}

.trust-cta {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    margin-top: 48px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Logo Carousel */
.logo-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 12px 0;
    margin-bottom: 16px;
}

.logo-carousel:last-of-type {
    margin-bottom: 0;
}

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

.logo-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--primary-dark), transparent);
}

.logo-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--primary-dark), transparent);
}

.logo-track {
    display: flex;
    gap: 24px;
    animation: scrollLeft 35s linear infinite;
    width: max-content;
}

.logo-carousel.reverse .logo-track {
    animation: scrollRight 40s linear infinite;
}

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

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

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

.client-logo {
    flex-shrink: 0;
    padding: 24px 32px;
    background: rgba(255,255,255,0.95);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    min-height: 90px;
}

.client-logo img {
    height: 55px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    opacity: 0.9;
    transition: var(--transition-base);
    filter: grayscale(15%);
}

.client-logo:hover {
    background: rgba(255,255,255,1);
    border-color: var(--bronze);
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.client-logo:hover img {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* ========================================
   PROBLEM SOLUTION
   ======================================== */
.problem-solution {
    padding: var(--section-padding);
    background: var(--white);
}

.ps-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.ps-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    padding: 40px;
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.ps-card.problem {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
}

.ps-card.solution {
    background: var(--primary);
    color: var(--white);
}

.ps-card.solution h3,
.ps-card.solution li {
    color: var(--white);
}

.ps-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.ps-card.problem .ps-icon {
    background: var(--error);
    color: var(--white);
}

.ps-card.solution .ps-icon {
    background: var(--success);
    color: var(--white);
}

.ps-icon i {
    font-size: 28px;
}

.ps-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.ps-card ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ps-card li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 15px;
    line-height: 1.5;
}

.ps-card.problem li::before {
    content: '✗';
    color: var(--error);
    font-weight: 600;
}

.ps-card.solution li::before {
    content: '✓';
    color: var(--success);
    font-weight: 600;
}

.ps-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ps-arrow i {
    font-size: 40px;
    color: var(--gray-300);
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    padding: 80px 0;
    background: var(--primary-dark);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.stat-card .stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
}

.stat-card .stat-icon i {
    font-size: 24px;
    color: var(--bronze);
}

.stat-card .stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-card .stat-label {
    font-size: 14px;
    color: var(--gray-400);
}

/* ========================================
   WHY US SECTION
   ======================================== */
.why-us {
    padding: var(--section-padding);
    background: var(--cream-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.why-card {
    position: relative;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.why-card.featured {
    background: var(--primary);
    color: var(--white);
}

.why-card.featured h3,
.why-card.featured p {
    color: var(--white);
}

.why-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    padding: 8px 16px;
    background: var(--terracotta);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
}

.why-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.why-card.featured .why-icon {
    background: rgba(255,255,255,0.15);
}

.why-icon i {
    font-size: 32px;
    color: var(--primary);
}

.why-card.featured .why-icon i {
    color: var(--white);
}

.why-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.why-card p {
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.7;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.why-features i {
    font-size: 18px;
    color: var(--success);
}

.why-card.featured .why-features li {
    color: var(--cream);
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    padding: var(--section-padding);
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    padding: 32px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
}

.service-card:hover {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

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

.service-icon i {
    font-size: 28px;
    color: var(--white);
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

.service-card ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-card li {
    font-size: 14px;
    color: var(--gray-600);
    padding-left: 16px;
    position: relative;
}

.service-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--terracotta);
    border-radius: 50%;
}

/* ========================================
   TECHNOLOGY SECTION
   ======================================== */
.technology {
    position: relative;
    padding: 100px 0 120px;
    background: var(--primary-dark);
    overflow: hidden;
}

.tech-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.tech-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tech-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2,0,13,0.94) 0%, rgba(7,32,63,0.92) 100%);
}

.technology .container {
    position: relative;
    z-index: 1;
    max-width: 1300px;
}

.tech-header {
    text-align: center;
    margin-bottom: 50px;
}

.technology .section-badge {
    background: rgba(217, 170, 144, 0.2);
    color: var(--bronze);
    border: 1px solid rgba(217, 170, 144, 0.35);
    font-size: 14px;
    padding: 10px 24px;
}

.technology .section-title {
    color: var(--white);
    font-size: clamp(36px, 5vw, 48px);
    margin-top: 20px;
}

.tech-desc {
    font-size: 20px;
    color: rgba(255,255,255,0.75);
    max-width: 700px;
    margin: 24px auto 0;
    line-height: 1.8;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.tech-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 44px 36px;
    text-align: left;
    transition: var(--transition-base);
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.tech-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--bronze);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.tech-card-icon {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217, 170, 144, 0.18);
    border: 1px solid rgba(217, 170, 144, 0.3);
    border-radius: 18px;
}

.tech-card-icon i {
    font-size: 32px;
    color: var(--bronze);
}

.tech-card-content {
    flex: 1;
}

.tech-card h3 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.tech-card p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 991px) {
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 600px;
    }
}

@media (max-width: 640px) {
    .technology {
        padding: 80px 0 100px;
    }

    .tech-card {
        padding: 28px 24px;
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .tech-card-icon {
        margin: 0 auto;
    }

    .tech-card h3 {
        font-size: 20px;
    }

    .tech-card p {
        font-size: 15px;
    }
}

/* ========================================
   PROCESS SECTION - Animated Timeline
   ======================================== */
.process {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--cream-light) 0%, var(--white) 100%);
    overflow: hidden;
}

.process-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

/* Animated connecting line */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg,
        var(--gray-200) 0%,
        var(--primary) 50%,
        var(--gray-200) 100%);
    background-size: 200% 100%;
    animation: flowLine 3s ease-in-out infinite;
    z-index: 0;
}

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

/* Pulsing dots on line */
.process-timeline::after {
    content: '';
    position: absolute;
    top: 22px;
    left: 10%;
    width: 14px;
    height: 14px;
    background: var(--terracotta);
    border-radius: 50%;
    animation: moveDot 4s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(166, 94, 70, 0.6);
    z-index: 1;
}

@keyframes moveDot {
    0% { left: 10%; opacity: 1; }
    100% { left: 85%; opacity: 0.3; }
}

.process-step {
    flex: 1;
    min-width: 140px;
    max-width: 180px;
    text-align: center;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: stepFadeIn 0.6s ease forwards;
}

/* Staggered animation for each step */
.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }
.process-step:nth-child(5) { animation-delay: 0.5s; }
.process-step:nth-child(6) { animation-delay: 0.6s; }

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

.step-number {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--primary);
    font-size: 22px;
    font-weight: 800;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid var(--primary);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(7, 32, 63, 0.1);
}

/* Pulse ring animation */
.step-number::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0;
    animation: pulseRing 2s ease-out infinite;
}

.process-step:nth-child(1) .step-number::before { animation-delay: 0s; }
.process-step:nth-child(2) .step-number::before { animation-delay: 0.3s; }
.process-step:nth-child(3) .step-number::before { animation-delay: 0.6s; }
.process-step:nth-child(4) .step-number::before { animation-delay: 0.9s; }
.process-step:nth-child(5) .step-number::before { animation-delay: 1.2s; }
.process-step:nth-child(6) .step-number::before { animation-delay: 1.5s; }

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

.process-step:hover .step-number {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(7, 32, 63, 0.25);
}

.step-content {
    padding: 0 8px;
}

.step-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--primary-dark);
    transition: color 0.3s ease;
}

.process-step:hover .step-content h3 {
    color: var(--terracotta);
}

.step-content p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.5;
}

/* Connecting arrows between steps (desktop) */
.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 26px;
    right: -20px;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2307203f'%3E%3Cpath d='M13.172 12l-4.95-4.95 1.414-1.414L16 12l-6.364 6.364-1.414-1.414z'/%3E%3C/svg%3E") center/contain no-repeat;
    opacity: 0.4;
    animation: arrowPulse 1.5s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { opacity: 0.3; transform: translateX(0); }
    50% { opacity: 0.7; transform: translateX(3px); }
}

.process-line {
    display: none;
}

/* Zigzag Layout */
.process-timeline.zigzag {
    align-items: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Hide straight line for zigzag */
.process-timeline.zigzag::before {
    display: none;
}

.process-timeline.zigzag::after {
    display: none;
}

/* SVG Zigzag Line */
.process-timeline.zigzag {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath d='M 0 70 Q 80 70 125 30 Q 170 -10 250 30 Q 330 70 375 70 Q 420 70 500 30 Q 580 -10 625 30 Q 670 70 750 70 Q 830 70 875 30 Q 920 -10 1000 30' stroke='%23e5e7eb' stroke-width='3' fill='none' stroke-linecap='round' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center 50%;
    background-size: 100% 80px;
}

/* Animated gradient overlay for zigzag line */
.process-timeline.zigzag .zigzag-line {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='grad' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' style='stop-color:%23a65e46;stop-opacity:0'/%3E%3Cstop offset='50%25' style='stop-color:%23a65e46;stop-opacity:1'/%3E%3Cstop offset='100%25' style='stop-color:%23a65e46;stop-opacity:0'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M 0 70 Q 80 70 125 30 Q 170 -10 250 30 Q 330 70 375 70 Q 420 70 500 30 Q 580 -10 625 30 Q 670 70 750 70 Q 830 70 875 30 Q 920 -10 1000 30' stroke='url(%23grad)' stroke-width='4' fill='none' stroke-linecap='round' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center 50%;
    background-size: 200% 80px;
    animation: flowZigzag 3s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes flowZigzag {
    0% { background-position: 100% center; }
    50% { background-position: 0% center; }
    100% { background-position: 100% center; }
}

/* Moving dot on zigzag path - travels horizontally */
.process-timeline.zigzag .zigzag-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--terracotta);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(166, 94, 70, 0.6), 0 0 40px rgba(166, 94, 70, 0.3);
    z-index: 2;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation: travelDot 4s ease-in-out infinite;
}

.process-timeline.zigzag .zigzag-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid var(--terracotta);
    border-radius: 50%;
    opacity: 0.5;
    animation: pulseDotRing 1.5s ease-out infinite;
}

@keyframes travelDot {
    0% { left: 0%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

@keyframes pulseDotRing {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(2); opacity: 0; }
}

.process-timeline.zigzag .process-step:nth-child(odd) {
    transform: translateY(-40px);
    animation: stepFadeInUp 0.6s ease forwards;
}

.process-timeline.zigzag .process-step:nth-child(even) {
    transform: translateY(40px);
    animation: stepFadeInDown 0.6s ease forwards;
}

@keyframes stepFadeInUp {
    from {
        opacity: 0;
        transform: translateY(-60px);
    }
    to {
        opacity: 1;
        transform: translateY(-40px);
    }
}

@keyframes stepFadeInDown {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(40px);
    }
}

/* Hover adjustment for zigzag */
.process-timeline.zigzag .process-step:nth-child(odd):hover {
    transform: translateY(-45px);
}

.process-timeline.zigzag .process-step:nth-child(even):hover {
    transform: translateY(35px);
}

/* Adjust arrows for zigzag */
.process-timeline.zigzag .process-step:nth-child(odd):not(:last-child)::after {
    top: auto;
    bottom: -30px;
    right: 50%;
    transform: translateX(50%) rotate(45deg);
}

.process-timeline.zigzag .process-step:nth-child(even):not(:last-child)::after {
    top: -30px;
    right: 50%;
    transform: translateX(50%) rotate(-45deg);
}

/* Process CTA */
.process-cta {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--gray-200);
}

.process-cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 40px 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.process-cta-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

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

.process-cta-content > i {
    font-size: 56px;
    color: var(--bronze);
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

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

.process-cta-text {
    flex: 1;
}

.process-cta-text h3 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.4;
}

.process-cta-text p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.process-cta .btn-primary {
    background: var(--white);
    color: var(--primary);
    flex-shrink: 0;
    padding: 16px 28px;
}

.process-cta .btn-primary:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

/* ========================================
   REFERENCES SECTION
   ======================================== */
.references {
    padding: 100px 0 140px;
    background:
        linear-gradient(rgba(245,239,233,0.82), rgba(245,239,233,0.82)),
        url('/images/Q1oKbEQNL4rUZeYgAi8Iy.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.references .container {
    max-width: 1400px;
}

.ref-categories {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.ref-category h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary);
}

.ref-category h3 i {
    font-size: 24px;
}

.ref-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.ref-card {
    background: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
}

.ref-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.ref-company {
    font-weight: 600;
    margin-bottom: 4px;
}

.ref-since {
    font-size: 13px;
    color: var(--terracotta);
}

.ref-cta {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.ref-cta p {
    color: var(--gray-500);
    font-style: italic;
}

/* ========================================
   FOUNDER SECTION
   ======================================== */
.founder {
    padding: var(--section-padding);
    background: var(--white);
}

.founder-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.founder-image {
    position: sticky;
    top: 120px;
}

.founder-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-placeholder i {
    font-size: 80px;
    color: var(--gray-300);
}

.founder-text h2 {
    font-size: 32px;
    margin-bottom: 8px;
}

.founder-title {
    font-size: 18px;
    color: var(--terracotta);
    font-weight: 600;
    margin-bottom: 8px;
}

.founder-exp {
    color: var(--gray-500);
    margin-bottom: 32px;
}

.founder-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.founder-detail h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--primary);
}

.founder-detail ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.founder-detail li {
    font-size: 14px;
    color: var(--gray-600);
    padding-left: 16px;
    position: relative;
}

.founder-detail li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--bronze);
    border-radius: 50%;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 100px 0;
    background: var(--primary-dark);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

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

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

.cta-buttons .btn-primary {
    background: var(--terracotta);
}

.cta-buttons .btn-primary:hover {
    background: var(--bronze);
}

.cta-buttons .btn-secondary {
    border-color: var(--gray-600);
    color: var(--white);
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--primary-dark);
    color: var(--gray-400);
    padding: 60px 0 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo img {
    height: 50px;
    filter: brightness(0) invert(1);
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand .footer-tagline {
    color: var(--bronze);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 12px;
}

.footer h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 24px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--gray-400);
}

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

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    font-size: 14px;
}

.footer-contact i {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--terracotta);
}

.social-link i {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.follower-count {
    font-size: 13px;
    margin-top: 12px;
}

.footer-bottom {
    padding-top: 24px;
    text-align: center;
    font-size: 14px;
}

/* ========================================
   FLOATING ELEMENTS
   ======================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
    z-index: 100;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

.floating-whatsapp svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 12px 24px;
    z-index: 100;
}

.mobile-bottom-bar {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mobile-bar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
}

.mobile-bar-btn.whatsapp {
    background: #25D366;
}

.mobile-bar-btn i {
    width: 20px;
    height: 20px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .logo-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
    }

    .tech-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .tech-visual {
        order: -1;
    }

    .founder-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-image {
        position: static;
        max-width: 300px;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .technology {
        padding: 70px 0 80px;
    }

    .process {
        padding: 70px 0;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .trust-title {
        font-size: 15px;
        padding: 0 16px;
    }

    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .client-logo {
        font-size: 14px;
        padding: 14px 10px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .hero-stat {
        flex: 1;
        min-width: 100px;
    }

    .ps-grid {
        flex-direction: column;
    }

    .ps-card {
        max-width: 100%;
    }

    .ps-arrow {
        transform: rotate(90deg);
    }

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

    .process-timeline {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .process-timeline::before {
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 3px;
        height: 100%;
        transform: translateX(-50%);
        background: linear-gradient(180deg,
            var(--gray-200) 0%,
            var(--primary) 50%,
            var(--gray-200) 100%);
        background-size: 100% 200%;
        animation: flowLineVertical 3s ease-in-out infinite;
    }

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

    .process-timeline::after {
        top: 5%;
        left: 50%;
        transform: translateX(-50%);
        animation: moveDotVertical 4s ease-in-out infinite;
    }

    @keyframes moveDotVertical {
        0% { top: 5%; opacity: 1; }
        100% { top: 90%; opacity: 0.3; }
    }

    .process-step {
        width: 100%;
        max-width: 300px;
        background: var(--white);
        padding: 24px;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .process-step:not(:last-child)::after {
        display: none;
    }

    /* Zigzag mobile - disable zigzag */
    .process-timeline.zigzag {
        background-image: none;
    }

    .process-timeline.zigzag .zigzag-line,
    .process-timeline.zigzag .zigzag-dot {
        display: none;
    }

    .process-timeline.zigzag .process-step:nth-child(odd),
    .process-timeline.zigzag .process-step:nth-child(even) {
        transform: translateY(0);
        animation: stepFadeIn 0.6s ease forwards;
    }

    .process-timeline.zigzag .process-step:nth-child(odd):hover,
    .process-timeline.zigzag .process-step:nth-child(even):hover {
        transform: translateY(-4px);
    }

    /* Process CTA mobile */
    .process-cta {
        margin-top: 48px;
        padding-top: 40px;
    }

    .process-cta-content {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 24px;
    }

    .process-cta-content > i {
        font-size: 48px;
    }

    .process-cta-text h3 {
        font-size: 18px;
    }

    .process-cta-text p {
        font-size: 14px;
    }

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

    .founder-details {
        grid-template-columns: 1fr;
    }

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

    .floating-whatsapp {
        display: none;
    }

    .mobile-bottom-bar {
        display: grid;
    }

    body {
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

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

    .cta-buttons .btn {
        width: 100%;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ========================================
   FORM PAGES (Şüpheli Araç, Plaka Sorgula)
   ======================================== */

/* Page Hero - Compact */
.page-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Form Section */
.form-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.form-intro {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-200);
}

.form-intro p {
    color: var(--gray-600);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.form-intro p:last-child {
    margin-bottom: 0;
}

.form-intro a {
    color: var(--terracotta);
    font-weight: 600;
}

.form-intro a:hover {
    text-decoration: underline;
}

.form-intro strong {
    color: var(--primary-dark);
}

/* Form Elements */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-size: 17px;
    font-family: var(--font-family);
    color: var(--gray-800);
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(7, 32, 63, 0.1);
}

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

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

.form-hint {
    display: block;
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 8px;
}

.form-hint strong {
    color: var(--primary-dark);
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 18px 32px;
    font-size: 18px;
    background: var(--terracotta);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-submit:hover {
    background: #8a4d39;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-submit i {
    font-size: 20px;
}

/* Alerts */
.alert {
    padding: 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--success);
}

.alert-success .alert-icon {
    color: var(--success);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 2px solid #f59e0b;
}

.alert-warning .alert-icon {
    color: #f59e0b;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid var(--error);
}

.alert-error .alert-icon {
    color: var(--error);
}

.alert-content {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.alert-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.alert-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.alert-text p {
    color: var(--gray-600);
    font-size: 16px;
    margin-bottom: 8px;
}

.alert-text p:last-child {
    margin-bottom: 0;
}

.alert-text a {
    color: var(--terracotta);
    font-weight: 600;
}

/* Results Table */
.results-section {
    margin-bottom: 32px;
}

.results-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.results-table thead {
    background: var(--primary);
}

.results-table th {
    padding: 16px 20px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.results-table tbody tr {
    border-bottom: 1px solid var(--gray-100);
    transition: var(--transition-fast);
}

.results-table tbody tr:last-child {
    border-bottom: none;
}

.results-table tbody tr:hover {
    background: var(--gray-50);
}

.results-table td {
    padding: 16px 20px;
    font-size: 16px;
    color: var(--gray-700);
}

.results-table .plate-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    font-family: monospace;
    letter-spacing: 1px;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
}

.badge-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.badge-warning {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

/* Contact Info Box */
.contact-box {
    background: var(--cream-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-top: 32px;
}

.contact-box h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.contact-box-items {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.contact-box-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-box-item i {
    font-size: 20px;
    color: var(--terracotta);
}

.contact-box-item a {
    color: var(--primary);
    font-weight: 600;
}

.contact-box-item a:hover {
    color: var(--terracotta);
}

/* Sidebar Navigation (for form pages) */
.form-page-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
}

.form-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.sidebar-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--cream);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition-base);
}

.sidebar-nav-item i {
    font-size: 20px;
}

.sidebar-nav-item:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.sidebar-nav-item.active {
    background: var(--primary);
    color: var(--white);
}

/* Responsive Form Pages */
@media (max-width: 992px) {
    .form-page-grid {
        grid-template-columns: 1fr;
    }

    .form-sidebar {
        position: relative;
        top: 0;
    }

    .sidebar-nav {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sidebar-nav-item {
        flex: 1;
        min-width: 200px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 40px;
    }

    .form-card {
        padding: 32px 24px;
    }

    .form-page-grid {
        gap: 32px;
    }

    .contact-box-items {
        flex-direction: column;
        gap: 16px;
    }

    .results-table th,
    .results-table td {
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .sidebar-nav {
        flex-direction: column;
    }

    .sidebar-nav-item {
        min-width: 100%;
    }
}

/* ========================================
   ONLINE SERVICES SECTION
   ======================================== */
.online-services {
    padding: var(--section-padding);
    background: var(--cream-light);
}

.online-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.online-service-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    text-decoration: none;
    border: 2px solid transparent;
}

.online-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--terracotta);
}

.online-service-card .service-card-icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
}

.online-service-card .service-card-icon i {
    font-size: 32px;
    color: var(--white);
}

.online-service-card .service-card-content {
    flex: 1;
}

.online-service-card .service-card-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.online-service-card .service-card-content p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

.online-service-card .service-card-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: 50%;
    transition: var(--transition-base);
}

.online-service-card .service-card-arrow i {
    font-size: 20px;
    color: var(--terracotta);
    transition: var(--transition-base);
}

.online-service-card:hover .service-card-arrow {
    background: var(--terracotta);
}

.online-service-card:hover .service-card-arrow i {
    color: var(--white);
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .online-services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .online-service-card {
        padding: 24px;
    }

    .online-service-card .service-card-icon {
        width: 60px;
        height: 60px;
    }

    .online-service-card .service-card-icon i {
        font-size: 28px;
    }

    .online-service-card .service-card-content h3 {
        font-size: 18px;
    }
}
