/**
 * Reklab - Ana Stil Dosyası
 * Modern, dönüşüm odaklı ajans tasarımı
 */

/* =============================================
   CSS DEĞİŞKENLERİ
============================================= */
:root {
    /* Renkler */
    --primary: #194D25;
    --primary-dark: #0F3318;
    --primary-light: #2A6B38;
    --button-color: #FFE433;
    --button-dark: #E6CD2E;

    --bg-light: #EDEDED;
    --bg-white: #FFFFFF;
    --bg-dark: #1a1a2e;

    --text-dark: #222222;
    --text-body: #555555;
    --text-muted: #888888;
    --text-white: #FFFFFF;

    --border-color: #E0E0E0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 8px 30px rgba(76, 212, 54, 0.3);

    /* Tipografi */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.25rem;
    --fs-2xl: 1.5rem;
    --fs-3xl: 2rem;
    --fs-4xl: 2.5rem;
    --fs-5xl: 3.5rem;
    --fs-6xl: 4.5rem;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Container */
    --container-max: 1200px;
    --container-padding: 1.5rem;

    /* Header */
    --header-height: 80px;
}

/* =============================================
   RESET & BASE
============================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    line-height: 1.6;
    color: var(--text-body);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* =============================================
   TİPOGRAFİ
============================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

h1 {
    font-size: var(--fs-5xl);
}

h2 {
    font-size: var(--fs-4xl);
}

h3 {
    font-size: var(--fs-3xl);
}

h4 {
    font-size: var(--fs-2xl);
}

h5 {
    font-size: var(--fs-xl);
}

h6 {
    font-size: var(--fs-lg);
}

p {
    margin-bottom: var(--space-md);
}

.text-gradient {
    color: var(--primary);
}

.text-primary {
    color: var(--primary);
}

.text-muted {
    color: var(--text-muted);
}

.text-center {
    text-align: center;
}

.text-uppercase {
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* =============================================
   LAYOUT
============================================= */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--space-5xl) 0;
}

.section-sm {
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-label {
    display: inline-block;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background: rgba(76, 212, 54, 0.1);
    border-radius: var(--radius-full);
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-desc {
    font-size: var(--fs-lg);
    color: var(--text-muted);
}

/* Grid */
.grid {
    display: grid;
    gap: var(--space-xl);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Flex */
.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gap-sm {
    gap: var(--space-sm);
}

.gap-md {
    gap: var(--space-md);
}

.gap-lg {
    gap: var(--space-lg);
}

/* =============================================
   HEADER
============================================= */
.header {
    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(--border-color);
    transition: all var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--text-dark);
}

.logo-icon {
    font-size: var(--fs-2xl);
}

.logo-text {
    color: var(--primary);
    font-weight: 800;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-weight: 500;
    color: var(--text-body);
    position: relative;
    padding: var(--space-xs) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px;
}

.nav-toggle span {
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition-base);
}

/* =============================================
   BUTONLAR
============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-body);
    font-size: var(--fs-base);
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
}

.btn-sm {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--fs-sm);
    border-radius: var(--radius-md);
}

.btn-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--fs-lg);
}

.btn-primary {
    background: var(--primary);
    color: var(--text-white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(76, 212, 54, 0.4);
}

.btn-secondary {
    background: var(--button-color);
    color: var(--text-dark);
    font-weight: 700;
}

.btn-secondary:hover {
    background: var(--button-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(76, 212, 54, 0.05);
}

.btn-white {
    background: var(--bg-white);
    color: var(--text-dark);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* =============================================
   KARTLAR
============================================= */
.card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(76, 212, 54, 0.1);
    border-radius: var(--radius-lg);
    font-size: var(--fs-2xl);
    margin-bottom: var(--space-lg);
    transition: all var(--transition-base);
}

.card:hover .card-icon {
    background: var(--button-color);
    transform: scale(1.1);
}

.card-title {
    font-size: var(--fs-xl);
    margin-bottom: var(--space-sm);
}

.card-text {
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

/* =============================================
   HERO SEKSİYONU
============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(76, 212, 54, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(76, 212, 54, 0.1);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: var(--space-lg);
}

.hero-label::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: var(--fs-6xl);
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.hero-highlight {
    color: var(--button-color);
}

.hero-desc {
    font-size: var(--fs-xl);
    color: var(--text-muted);
    margin-bottom: var(--space-2xl);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
}

.hero-image {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.hero-float-card {
    position: absolute;
    background: var(--bg-white);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.hero-float-card.card-1 {
    top: 10%;
    right: -20px;
    animation: float 3s ease-in-out infinite;
}

.hero-float-card.card-2 {
    bottom: 15%;
    left: -20px;
    animation: float 3s ease-in-out infinite 0.5s;
}

.hero-float-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--button-color);
    border-radius: var(--radius-md);
    font-size: var(--fs-xl);
}

.hero-float-text strong {
    display: block;
    font-size: var(--fs-lg);
    color: var(--text-dark);
}

.hero-float-text span {
    font-size: var(--fs-sm);
    color: var(--text-muted);
}

/* =============================================
   HERO DARK - LABORATORY THEME
============================================= */
.hero.hero-dark {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0d0d0d 100%);
    position: relative;
    overflow: hidden;
}

.hero.hero-dark::before {
    background: radial-gradient(circle at 30% 50%, rgba(76, 212, 54, 0.1) 0%, transparent 50%);
}

.hero.hero-dark .hero-title {
    color: #ffffff;
}

.hero.hero-dark .hero-desc {
    color: rgba(255, 255, 255, 0.7);
}

.hero.hero-dark .hero-label {
    background: rgba(76, 212, 54, 0.15);
    color: #4CD436;
}

.hero.hero-dark .hero-float-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero.hero-dark .hero-float-icon {
    background: rgba(76, 212, 54, 0.2);
}

.hero.hero-dark .hero-float-text strong {
    color: #ffffff;
}

.hero.hero-dark .hero-float-text span {
    color: rgba(255, 255, 255, 0.6);
}

/* Outline Light Button for Dark Hero */
.btn-outline-light {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

/* Laboratory Background */
.lab-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

/* Lab Grid - Daha Belirgin */
.lab-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(76, 212, 54, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(76, 212, 54, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* Glowing Orbs - Daha Büyük ve Parlak */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(76, 212, 54, 0.25);
    top: 5%;
    right: 10%;
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: rgba(25, 77, 37, 0.35);
    bottom: 10%;
    left: 5%;
    animation: orbFloat 10s ease-in-out infinite reverse;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: rgba(76, 212, 54, 0.2);
    top: 40%;
    left: 40%;
    animation: orbFloat 6s ease-in-out infinite;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.15);
    }
}

/* Molecules - Daha Büyük Atomlar */
.molecule {
    position: absolute;
    display: flex;
    align-items: center;
    z-index: 2;
}

.molecule-1 {
    top: 25%;
    left: 10%;
    animation: moleculeFloat1 15s ease-in-out infinite;
}

.molecule-2 {
    top: 55%;
    right: 15%;
    animation: moleculeFloat2 18s ease-in-out infinite;
}

.molecule-3 {
    bottom: 20%;
    left: 25%;
    animation: moleculeFloat3 20s ease-in-out infinite;
}

.atom {
    width: 24px;
    height: 24px;
    background: #4CD436;
    border-radius: 50%;
    box-shadow:
        0 0 20px rgba(76, 212, 54, 0.8),
        0 0 40px rgba(76, 212, 54, 0.4),
        0 0 60px rgba(76, 212, 54, 0.2);
    position: relative;
}

.atom::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.atom-small {
    width: 16px;
    height: 16px;
    background: rgba(76, 212, 54, 0.8);
    box-shadow:
        0 0 15px rgba(76, 212, 54, 0.6),
        0 0 30px rgba(76, 212, 54, 0.3);
}

.atom-small::after {
    width: 5px;
    height: 5px;
    top: 2px;
    left: 2px;
}

.bond {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, rgba(76, 212, 54, 0.8), rgba(76, 212, 54, 0.3));
    border-radius: 2px;
}

@keyframes moleculeFloat1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, -30px) rotate(10deg);
    }

    50% {
        transform: translate(40px, 0) rotate(0deg);
    }

    75% {
        transform: translate(20px, 30px) rotate(-10deg);
    }
}

@keyframes moleculeFloat2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(45deg);
    }

    25% {
        transform: translate(-30px, 20px) rotate(60deg);
    }

    50% {
        transform: translate(-60px, 0) rotate(45deg);
    }

    75% {
        transform: translate(-30px, -20px) rotate(30deg);
    }
}

@keyframes moleculeFloat3 {

    0%,
    100% {
        transform: translate(0, 0) rotate(-30deg);
    }

    33% {
        transform: translate(30px, -40px) rotate(-15deg);
    }

    66% {
        transform: translate(60px, 20px) rotate(-45deg);
    }
}

/* Bubbles - Daha Görünür */
.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%,
            rgba(255, 255, 255, 0.4),
            rgba(76, 212, 54, 0.2) 50%,
            rgba(76, 212, 54, 0.1));
    border: 2px solid rgba(76, 212, 54, 0.4);
    box-shadow:
        inset 0 -5px 10px rgba(76, 212, 54, 0.1),
        0 0 15px rgba(76, 212, 54, 0.2);
    animation: bubbleRise linear infinite;
}

.bubble-1 {
    width: 30px;
    height: 30px;
    left: 8%;
    animation-duration: 10s;
    animation-delay: 0s;
}

.bubble-2 {
    width: 20px;
    height: 20px;
    left: 22%;
    animation-duration: 12s;
    animation-delay: -2s;
}

.bubble-3 {
    width: 35px;
    height: 35px;
    left: 65%;
    animation-duration: 14s;
    animation-delay: -4s;
}

.bubble-4 {
    width: 18px;
    height: 18px;
    left: 80%;
    animation-duration: 11s;
    animation-delay: -1s;
}

.bubble-5 {
    width: 25px;
    height: 25px;
    left: 45%;
    animation-duration: 13s;
    animation-delay: -3s;
}

.bubble-6 {
    width: 22px;
    height: 22px;
    left: 35%;
    animation-duration: 9s;
    animation-delay: -5s;
}

@keyframes bubbleRise {
    0% {
        bottom: -60px;
        opacity: 0;
        transform: translateX(0) scale(0.3);
    }

    10% {
        opacity: 0.8;
        transform: translateX(15px) scale(1);
    }

    30% {
        transform: translateX(-20px) scale(1);
    }

    50% {
        transform: translateX(15px) scale(1);
    }

    70% {
        transform: translateX(-15px) scale(1);
    }

    90% {
        opacity: 0.8;
        transform: translateX(10px) scale(1);
    }

    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(0) scale(0.3);
    }
}

/* DNA Helix - Daha Belirgin */
.dna-helix {
    position: absolute;
    right: 8%;
    top: 15%;
    width: 80px;
    height: 400px;
    perspective: 500px;
}

.dna-strand {
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg,
            transparent 0px,
            transparent 15px,
            rgba(76, 212, 54, 0.5) 15px,
            rgba(76, 212, 54, 0.5) 18px,
            transparent 18px,
            transparent 25px);
    animation: dnaRotate 6s linear infinite;
    transform-style: preserve-3d;
}

.dna-strand:nth-child(2) {
    animation-delay: -3s;
    background: repeating-linear-gradient(0deg,
            transparent 0px,
            transparent 15px,
            rgba(76, 212, 54, 0.3) 15px,
            rgba(76, 212, 54, 0.3) 18px,
            transparent 18px,
            transparent 25px);
}

@keyframes dnaRotate {
    0% {
        transform: rotateY(0deg) translateX(-20px);
    }

    50% {
        transform: rotateY(180deg) translateX(20px);
    }

    100% {
        transform: rotateY(360deg) translateX(-20px);
    }
}

/* Lab Flask */
.lab-flask {
    position: absolute;
    right: 50px;
    bottom: 50px;
    width: 150px;
    height: 180px;
    opacity: 0.8;
    animation: flaskFloat 4s ease-in-out infinite;
}

.flask-svg {
    width: 100%;
    height: 100%;
}

@keyframes flaskFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive adjustments for dark hero */
@media (max-width: 768px) {
    .molecule {
        transform: scale(0.7);
    }

    .molecule-1 {
        left: 5%;
        top: 15%;
    }

    .molecule-2 {
        right: 5%;
        top: 70%;
    }

    .molecule-3 {
        display: none;
    }

    .dna-helix {
        width: 40px;
        height: 200px;
        right: 3%;
        opacity: 0.3;
    }

    .lab-flask {
        width: 100px;
        height: 120px;
        right: 20px;
        bottom: 20px;
        opacity: 0.6;
    }

    .glow-orb {
        opacity: 0.15;
    }

    .bubble {
        transform: scale(0.8);
    }

    .lab-grid {
        background-size: 40px 40px;
    }
}

/* =============================================
   İSTATİSTİKLER
============================================= */
.stats {
    background: var(--bg-dark);
    color: var(--text-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.stat-item {
    text-align: center;
    padding: var(--space-lg);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: var(--fs-5xl);
    font-weight: 800;
    color: var(--button-color);
    margin-bottom: var(--space-sm);
}

.stat-label {
    font-size: var(--fs-base);
    color: rgba(255, 255, 255, 0.7);
}

/* =============================================
   HİZMETLER
============================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(76, 212, 54, 0.1);
    border-radius: var(--radius-xl);
    font-size: 2.5rem;
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--button-color);
    transform: rotate(-5deg) scale(1.1);
}

.service-title {
    font-size: var(--fs-xl);
    margin-bottom: var(--space-md);
}

.service-desc {
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

/* =============================================
   REFERANSLAR
============================================= */
.references-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.reference-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.reference-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.reference-card:hover img {
    transform: scale(1.1);
}

.reference-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-xl);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.reference-card:hover .reference-overlay {
    opacity: 1;
}

.reference-title {
    color: var(--text-white);
    font-size: var(--fs-xl);
    margin-bottom: var(--space-xs);
}

.reference-category {
    color: var(--secondary-start);
    font-size: var(--fs-sm);
}

.reference-client {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--fs-xs);
    margin-top: var(--space-xs);
}

.reference-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-3xl);
    color: var(--text-muted);
    background: var(--bg-light);
    border-radius: var(--radius-xl);
}

/* =============================================
   PARTNERS CAROUSEL
============================================= */
.partners-section {
    background: var(--bg-light);
    padding: var(--space-2xl) 0;
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.partners-title {
    text-align: center;
    font-size: var(--fs-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: var(--space-lg);
    font-weight: 600;
}

.partners-carousel {
    width: 100%;
    overflow: hidden;
    cursor: grab;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.partners-carousel:active {
    cursor: grabbing;
}

.partners-carousel.dragging {
    cursor: grabbing;
}

.partners-carousel.dragging .partners-track {
    animation-play-state: paused;
}

.partners-track {
    display: flex;
    align-items: center;
    gap: var(--space-3xl);
    animation: partnersScroll 30s linear infinite;
    width: max-content;
    padding: var(--space-sm) 0;
}

@keyframes partnersScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partner-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 90px;
    padding: var(--space-sm);
    transition: transform 0.2s ease;
}

.partner-item:hover {
    transform: translateY(-2px);
}

.partner-logo {
    width: 100%;
    height: 60px;
    object-fit: contain;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partner-item:hover .partner-logo {
    opacity: 0.85;
    filter: grayscale(0%);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .partners-section {
        padding: var(--space-xl) 0;
    }

    .partners-track {
        gap: var(--space-xl);
        animation-duration: 20s;
    }

    .partner-item {
        width: 120px;
        height: 60px;
        padding: var(--space-xs);
    }

    .partner-logo {
        height: 40px;
    }
}

/* =============================================
   BLOG
============================================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.blog-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: var(--space-xl);
}

.blog-category {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.blog-title {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-sm);
    transition: color var(--transition-fast);
}

.blog-card:hover .blog-title {
    color: var(--primary);
}

.blog-excerpt {
    color: var(--text-muted);
    font-size: var(--fs-sm);
    margin-bottom: var(--space-md);
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: var(--fs-sm);
    color: var(--text-muted);
}

.blog-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-3xl);
    color: var(--text-muted);
    background: var(--bg-white);
    border-radius: var(--radius-xl);
}

/* =============================================
   TESTIMONIAL SLIDER
============================================= */
.testimonial-slider {
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-item {
    min-width: 100%;
    flex-shrink: 0;
}

/* Testimonial Avatar Styles */
.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-avatar svg {
    width: 32px;
    height: 32px;
}

.testimonial-avatar.male {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.testimonial-avatar.female {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.testimonial-dots .dot {
    transition: background 0.3s ease;
}

.testimonial-dots .dot:hover {
    transform: scale(1.2);
}

/* =============================================
   CTA SEKSİYONU
============================================= */
.cta {
    background: var(--button-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    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.1'%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.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: var(--fs-4xl);
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

.cta-desc {
    font-size: var(--fs-lg);
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* =============================================
   İLETİŞİM
============================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-4xl);
}

.contact-info h3 {
    margin-bottom: var(--space-xl);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(76, 212, 54, 0.1);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.contact-item h5 {
    margin-bottom: var(--space-xs);
}

.contact-item p,
.contact-item a {
    color: var(--text-muted);
}

.contact-item a:hover {
    color: var(--primary);
}

/* Form */
.contact-form {
    background: var(--bg-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: var(--fs-base);
    transition: all var(--transition-fast);
    background: var(--bg-white);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(76, 212, 54, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

/* Alert Messages */
.alert {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    font-weight: 500;
}

.alert-success {
    background: rgba(76, 212, 54, 0.1);
    color: var(--primary-dark);
    border: 1px solid var(--primary);
}

.alert-error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid #dc3545;
}

/* =============================================
   FOOTER
============================================= */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding-top: var(--space-5xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.footer-about {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--fs-sm);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-white);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--button-color);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.footer-title {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-lg);
    color: var(--text-white);
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--fs-sm);
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: var(--space-sm);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--fs-sm);
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    stroke: var(--primary);
}

.footer-contact a:hover {
    color: var(--primary);
}

/* Newsletter */
.newsletter {
    margin-top: var(--space-xl);
}

.newsletter h5 {
    font-size: var(--fs-sm);
    color: var(--text-white);
    margin-bottom: var(--space-md);
}

.newsletter-form {
    display: flex;
    gap: var(--space-sm);
}

.newsletter-form input {
    flex: 1;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    font-size: var(--fs-sm);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-xl) 0;
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-xl);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* =============================================
   PAGE HEADERS (İç Sayfalar)
============================================= */
.page-header {
    padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-4xl);
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    text-align: center;
}

.page-header-content {
    max-width: 700px;
    margin: 0 auto;
}

.page-title {
    font-size: var(--fs-5xl);
    margin-bottom: var(--space-md);
}

.page-desc {
    font-size: var(--fs-lg);
    color: var(--text-muted);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    font-size: var(--fs-sm);
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--primary);
}

/* =============================================
   ABOUT PAGE
============================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* =============================================
   WHY REKLAB - LAB SCENE ANIMATION
============================================= */
.why-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lab-scene {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 400px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.lab-scene-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(25, 77, 37, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(25, 77, 37, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

.lab-main-flask {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 240px;
    z-index: 2;
}

.main-flask-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 30px rgba(76, 212, 54, 0.2));
}

/* Floating Data Points */
.lab-data-point {
    position: absolute;
    background: var(--bg-white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    z-index: 3;
    border: 1px solid rgba(25, 77, 37, 0.1);
}

.lab-data-point .data-value {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--primary);
}

.lab-data-point .data-label {
    font-size: var(--fs-xs);
    color: var(--text-muted);
}

.data-1 {
    top: 15%;
    right: 10%;
    animation: dataFloat 4s ease-in-out infinite;
}

.data-2 {
    bottom: 25%;
    left: 8%;
    animation: dataFloat 4s ease-in-out infinite 1s;
}

.data-3 {
    bottom: 10%;
    right: 15%;
    animation: dataFloat 4s ease-in-out infinite 2s;
}

@keyframes dataFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Orbiting Molecules */
.lab-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(25, 77, 37, 0.15);
    border-radius: 50%;
    animation: orbitSpin 20s linear infinite;
}

.orbit-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(76, 212, 54, 0.5);
}

.dot-1 {
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
}

.dot-2 {
    bottom: 25%;
    left: -6px;
}

.dot-3 {
    bottom: 25%;
    right: -6px;
}

@keyframes orbitSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Glow Effect */
.lab-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(76, 212, 54, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes glowPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .lab-scene {
        max-width: 100%;
        height: 300px;
    }

    .lab-main-flask {
        width: 140px;
        height: 180px;
    }

    .lab-orbit {
        width: 220px;
        height: 220px;
    }

    .lab-data-point {
        padding: var(--space-xs) var(--space-sm);
    }

    .lab-data-point .data-value {
        font-size: var(--fs-base);
    }
}

/* =============================================
   ABOUT PAGE LAB ANIMATION
============================================= */
.about-visual {
    width: 100%;
    max-width: 500px;
    height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-lab-scene {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 77, 37, 0.03) 0%, rgba(76, 212, 54, 0.05) 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.about-lab-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(25, 77, 37, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(25, 77, 37, 0.05) 1px, transparent 1px);
    background-size: 25px 25px;
}

.about-lab-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.about-flask-svg {
    width: 150px;
    height: 190px;
}

/* DNA Helix */
.about-dna-helix {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 200px;
}

.dna-svg {
    width: 100%;
    height: 100%;
}

/* Floating animation for DNA */
.about-dna-helix {
    animation: dnaFloat 4s ease-in-out infinite;
}

@keyframes dnaFloat {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-50%) translateX(5px);
    }
}

/* Floating Molecules */
.about-molecule {
    position: absolute;
    display: flex;
    align-items: center;
    animation: moleculeFloat 6s ease-in-out infinite;
}

.about-molecule.mol-1 {
    top: 20%;
    right: 15%;
}

.about-molecule.mol-2 {
    bottom: 25%;
    right: 10%;
    animation-delay: -3s;
}

.mol-atom {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary-start) 100%);
    box-shadow: 0 0 8px rgba(76, 212, 54, 0.4);
}

.mol-atom.small {
    width: 8px;
    height: 8px;
}

.mol-bond {
    width: 18px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary-start) 100%);
    margin: 0 2px;
}

.mol-bond.h {
    transform: rotate(45deg);
}

@keyframes moleculeFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(10deg);
    }
}

/* Stat Bubbles */
.about-stat-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-md);
    padding: var(--space-xs) var(--space-sm);
    box-shadow: 0 3px 15px rgba(25, 77, 37, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bubbleFloat 5s ease-in-out infinite;
    z-index: 10;
}

.about-stat-bubble .stat-value {
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--primary);
}

.about-stat-bubble .stat-label {
    font-size: 10px;
    color: var(--text-muted);
}

.about-stat-bubble.stat-1 {
    top: 10%;
    right: 20%;
    animation-delay: 0s;
}

.about-stat-bubble.stat-2 {
    bottom: 15%;
    left: 10%;
    animation-delay: -1.5s;
}

.about-stat-bubble.stat-3 {
    top: 25%;
    left: 5%;
    animation-delay: -3s;
}

@keyframes bubbleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Pulse Ring */
.about-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 140px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: pulseExpand 3s ease-out infinite;
}

@keyframes pulseExpand {
    0% {
        width: 80px;
        height: 80px;
        opacity: 0.5;
    }

    100% {
        width: 180px;
        height: 180px;
        opacity: 0;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .about-visual {
        max-width: 420px;
        height: 380px;
    }

    .about-flask-svg {
        width: 130px;
        height: 165px;
    }

    .about-dna-helix {
        width: 50px;
        height: 170px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-visual {
        max-width: 100%;
        height: 320px;
        margin-bottom: var(--space-xl);
    }

    .about-lab-scene {
        height: 100%;
    }

    .about-flask-svg {
        width: 110px;
        height: 140px;
    }

    .about-stat-bubble {
        padding: 6px 10px;
    }

    .about-stat-bubble .stat-value {
        font-size: var(--fs-base);
    }

    .about-dna-helix {
        width: 45px;
        height: 140px;
        left: 12px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .about-visual {
        height: 280px;
    }

    .about-flask-svg {
        width: 90px;
        height: 115px;
    }

    .about-dna-helix {
        display: none;
    }

    .about-molecule {
        display: none;
    }

    .about-stat-bubble.stat-3 {
        display: none;
    }
}

/* =============================================
   SOCIAL MEDIA LAB ANIMATION
============================================= */
.social-lab-visual {
    width: 100%;
    max-width: 480px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-lab-scene {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.03) 0%, rgba(24, 119, 242, 0.03) 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.social-lab-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(25, 77, 37, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(25, 77, 37, 0.04) 1px, transparent 1px);
    background-size: 25px 25px;
}

.social-lab-flask {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.social-flask-svg {
    width: 140px;
    height: 195px;
}

/* Social Icon Bubbles */
.social-icon-bubble {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: socialFloat 4s ease-in-out infinite;
    z-index: 10;
}

.social-icon-bubble svg {
    width: 24px;
    height: 24px;
}

.social-icon-bubble.instagram {
    top: 12%;
    right: 18%;
    background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
    color: white;
    animation-delay: 0s;
}

.social-icon-bubble.tiktok {
    top: 35%;
    right: 8%;
    background: #000;
    color: white;
    animation-delay: -1s;
}

.social-icon-bubble.facebook {
    bottom: 30%;
    left: 8%;
    background: #1877F2;
    color: white;
    animation-delay: -2s;
}

.social-icon-bubble.linkedin {
    top: 18%;
    left: 12%;
    background: #0A66C2;
    color: white;
    animation-delay: -3s;
}

@keyframes socialFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

/* Social Metrics */
.social-metric {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-md);
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    animation: metricPop 3s ease-in-out infinite;
    z-index: 10;
}

.social-metric .metric-icon {
    font-size: 14px;
}

.social-metric .metric-value {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
}

.social-metric.like-metric {
    bottom: 15%;
    right: 15%;
    animation-delay: 0s;
}

.social-metric.comment-metric {
    bottom: 35%;
    right: 5%;
    animation-delay: -1s;
}

.social-metric.share-metric {
    bottom: 12%;
    left: 15%;
    animation-delay: -2s;
}

@keyframes metricPop {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.9;
    }
}

/* Social Pulse Ring */
.social-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 140px;
    border: 1px solid rgba(225, 48, 108, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: socialPulse 3s ease-out infinite;
}

@keyframes socialPulse {
    0% {
        width: 100px;
        height: 100px;
        opacity: 0.5;
        border-color: rgba(225, 48, 108, 0.5);
    }

    50% {
        border-color: rgba(24, 119, 242, 0.3);
    }

    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
        border-color: rgba(24, 119, 242, 0.1);
    }
}

/* Social Lab Responsive - Tablet */
@media (max-width: 1024px) {
    .social-lab-visual {
        max-width: 400px;
        height: 360px;
    }

    .social-flask-svg {
        width: 120px;
        height: 168px;
    }

    .social-icon-bubble {
        width: 42px;
        height: 42px;
    }

    .social-icon-bubble svg {
        width: 20px;
        height: 20px;
    }
}

/* Social Lab Responsive - Mobile */
@media (max-width: 768px) {
    .social-lab-visual {
        max-width: 100%;
        height: 320px;
        margin-bottom: var(--space-xl);
    }

    .social-flask-svg {
        width: 100px;
        height: 140px;
    }

    .social-icon-bubble {
        width: 36px;
        height: 36px;
    }

    .social-icon-bubble svg {
        width: 16px;
        height: 16px;
    }

    .social-metric {
        padding: 6px 10px;
    }

    .social-metric .metric-value {
        font-size: 11px;
    }
}

/* Social Lab Responsive - Small Mobile */
@media (max-width: 480px) {
    .social-lab-visual {
        height: 280px;
    }

    .social-icon-bubble.linkedin {
        display: none;
    }

    .social-metric.share-metric {
        display: none;
    }
}

/* =============================================
   WEB DESIGN LAB ANIMATION
============================================= */
.web-lab-visual {
    width: 100%;
    max-width: 480px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.web-lab-scene {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 77, 37, 0.03) 0%, rgba(76, 212, 54, 0.05) 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.web-lab-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(25, 77, 37, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(25, 77, 37, 0.04) 1px, transparent 1px);
    background-size: 25px 25px;
}

/* Web Lab Flask */
.web-lab-flask {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.web-flask-svg {
    width: 160px;
    height: 210px;
}

/* Mini Browser Window */
.web-browser-mini {
    position: absolute;
    top: 8%;
    right: 12%;
    width: 130px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    z-index: 10;
    animation: socialFloat 4s ease-in-out infinite;
}

.browser-mini-header {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 6px 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #ddd;
}

.browser-mini-content {
    padding: 8px;
}

.browser-skeleton-line {
    height: 5px;
    background: linear-gradient(90deg, #e8e8e8 0%, var(--primary) 50%, #e8e8e8 100%);
    background-size: 200% 100%;
    border-radius: 2px;
    margin-bottom: 5px;
    animation: skeletonShimmer 2s ease-in-out infinite;
}

.browser-skeleton-line.short {
    width: 60%;
}

@keyframes skeletonShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Web Molecules */
.web-molecule {
    position: absolute;
    display: flex;
    align-items: center;
    animation: moleculeFloat 6s ease-in-out infinite;
    z-index: 8;
}

.web-molecule.mol-1 {
    bottom: 20%;
    right: 12%;
    animation-delay: -1s;
}

.web-molecule.mol-2 {
    top: 30%;
    left: 8%;
    animation-delay: -3s;
}

.browser-header {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #ddd;
}

.browser-dots {
    display: flex;
    gap: 5px;
}

.browser-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.browser-dots .dot.red {
    background: #ff5f56;
}

.browser-dots .dot.yellow {
    background: #ffbd2e;
}

.browser-dots .dot.green {
    background: #27ca40;
}

.browser-url {
    flex: 1;
    background: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 9px;
    color: #666;
}

.browser-content {
    padding: 12px;
    min-height: 120px;
}

.browser-hero {
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary-start) 100%);
    border-radius: 4px;
    margin-bottom: 10px;
    animation: heroShimmer 2s ease-in-out infinite;
}

@keyframes heroShimmer {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.browser-line {
    height: 6px;
    background: #e8e8e8;
    border-radius: 3px;
    margin-bottom: 6px;
    animation: lineLoad 1.5s ease-in-out infinite;
}

.browser-line.line-1 {
    width: 100%;
    animation-delay: 0s;
}

.browser-line.line-2 {
    width: 85%;
    animation-delay: 0.2s;
}

.browser-line.line-3 {
    width: 70%;
    animation-delay: 0.4s;
}

@keyframes lineLoad {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.browser-cards {
    display: flex;
    gap: 6px;
    margin-top: 10px;
}

.mini-card {
    flex: 1;
    height: 25px;
    background: linear-gradient(135deg, rgba(25, 77, 37, 0.1) 0%, rgba(76, 212, 54, 0.1) 100%);
    border-radius: 3px;
    animation: cardPulse 2s ease-in-out infinite;
}

.mini-card:nth-child(2) {
    animation-delay: 0.3s;
}

.mini-card:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes cardPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }
}

/* Code Bubble */
.web-code-bubble {
    position: absolute;
    top: 15%;
    left: 10%;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: socialFloat 4s ease-in-out infinite;
    z-index: 10;
}

.web-code-bubble svg {
    width: 22px;
    height: 22px;
    stroke: #4CD436;
}

/* Device Bubbles */
.web-device-bubble {
    position: absolute;
    width: 42px;
    height: 42px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    animation: socialFloat 4s ease-in-out infinite;
    z-index: 10;
}

.web-device-bubble svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
}

.web-device-bubble.desktop {
    top: 12%;
    right: 15%;
    animation-delay: -1s;
}

.web-device-bubble.mobile {
    bottom: 25%;
    right: 10%;
    animation-delay: -2s;
}

/* Web Metrics */
.web-metric {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-md);
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    animation: metricPop 3s ease-in-out infinite;
    z-index: 10;
}

.web-metric .metric-icon {
    font-size: 14px;
}

.web-metric .metric-value {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
}

.web-metric.speed-metric {
    bottom: 15%;
    left: 12%;
    animation-delay: 0s;
}

.web-metric.seo-metric {
    top: 30%;
    right: 5%;
    animation-delay: -1s;
}

.web-metric.mobile-metric {
    bottom: 40%;
    left: 5%;
    animation-delay: -2s;
}

/* Web Pulse Ring */
.web-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 140px;
    border: 1px solid rgba(25, 77, 37, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: pulseExpand 3s ease-out infinite;
}

/* Web Lab Responsive - Tablet */
@media (max-width: 1024px) {
    .web-lab-visual {
        max-width: 400px;
        height: 360px;
    }

    .web-browser-window {
        width: 170px;
    }

    .web-code-bubble,
    .web-device-bubble {
        width: 38px;
        height: 38px;
    }
}

/* Web Lab Responsive - Mobile */
@media (max-width: 768px) {
    .web-lab-visual {
        max-width: 100%;
        height: 320px;
        margin-bottom: var(--space-xl);
    }

    .web-browser-window {
        width: 150px;
    }

    .browser-content {
        padding: 10px;
        min-height: 100px;
    }

    .web-code-bubble,
    .web-device-bubble {
        width: 34px;
        height: 34px;
    }

    .web-metric {
        padding: 6px 10px;
    }

    .web-metric .metric-value {
        font-size: 10px;
    }
}

/* Web Lab Responsive - Small Mobile */
@media (max-width: 480px) {
    .web-lab-visual {
        height: 280px;
    }

    .web-browser-window {
        width: 130px;
    }

    .web-device-bubble.mobile {
        display: none;
    }

    .web-metric.mobile-metric {
        display: none;
    }
}

/* =============================================
   ADS MANAGEMENT LAB ANIMATION
============================================= */
.ads-lab-visual {
    width: 100%;
    max-width: 480px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ads-lab-scene {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 77, 37, 0.03) 0%, rgba(76, 212, 54, 0.05) 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.ads-lab-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(25, 77, 37, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(25, 77, 37, 0.04) 1px, transparent 1px);
    background-size: 25px 25px;
}

/* A/B Test Tubes */
.ads-test-tubes {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.ads-tubes-svg {
    width: 220px;
    height: 200px;
}

/* Lab Pulse */
.ads-lab-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(25, 77, 37, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: labPulse 3s ease-out infinite;
}

@keyframes labPulse {
    0% {
        width: 60px;
        height: 60px;
        opacity: 0.5;
    }

    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

/* Dashboard Panel */
.ads-dashboard-panel {
    position: absolute;
    top: 8%;
    right: 8%;
    width: 110px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 10;
    animation: socialFloat 4s ease-in-out infinite;
}

.dashboard-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary-start) 100%);
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dashboard-dot {
    width: 6px;
    height: 6px;
    background: #4CD436;
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.dashboard-title {
    font-size: 9px;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
}

.dashboard-chart {
    padding: 10px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 4px;
    height: 50px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--secondary-start) 0%, var(--primary) 100%);
    border-radius: 2px;
    animation: barGrow 2s ease-in-out infinite;
}

.chart-bar:nth-child(1) {
    animation-delay: 0s;
}

.chart-bar:nth-child(2) {
    animation-delay: 0.2s;
}

.chart-bar:nth-child(3) {
    animation-delay: 0.4s;
}

.chart-bar:nth-child(4) {
    animation-delay: 0.6s;
}

.chart-bar:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes barGrow {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(0.7);
    }
}

/* Radar Pulse */
.ads-radar-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(25, 77, 37, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: radarPulse 2s ease-out infinite;
}

@keyframes radarPulse {
    0% {
        width: 40px;
        height: 40px;
        opacity: 0.6;
    }

    100% {
        width: 180px;
        height: 180px;
        opacity: 0;
    }
}

/* Platform Bubbles */
.ads-platform-bubble {
    position: absolute;
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    animation: socialFloat 4s ease-in-out infinite;
    z-index: 10;
}

.ads-platform-bubble svg {
    width: 26px;
    height: 26px;
}

.ads-platform-bubble.google {
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.ads-platform-bubble.meta {
    top: 35%;
    right: 8%;
    animation-delay: -1s;
}

.ads-platform-bubble.youtube {
    bottom: 25%;
    right: 12%;
    animation-delay: -2s;
}

.ads-platform-bubble.linkedin-ads {
    top: 18%;
    left: 10%;
    animation-delay: -3s;
}

/* Ads Metrics */
.ads-metric {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-md);
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    animation: metricPop 3s ease-in-out infinite;
    z-index: 10;
}

.ads-metric .metric-icon {
    font-size: 14px;
}

.ads-metric .metric-value {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
}

.ads-metric.roas-metric {
    bottom: 12%;
    left: 10%;
    animation-delay: 0s;
}

.ads-metric.ctr-metric {
    bottom: 35%;
    left: 5%;
    animation-delay: -1s;
}

.ads-metric.conv-metric {
    bottom: 58%;
    left: 8%;
    animation-delay: -2s;
}

/* Ads Pulse Ring */
.ads-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 140px;
    border: 1px solid rgba(66, 133, 244, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: adsPulse 3s ease-out infinite;
}

@keyframes adsPulse {
    0% {
        width: 100px;
        height: 100px;
        opacity: 0.5;
        border-color: rgba(66, 133, 244, 0.5);
    }

    50% {
        border-color: rgba(234, 67, 53, 0.3);
    }

    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
        border-color: rgba(251, 188, 5, 0.1);
    }
}

/* Ads Lab Responsive - Tablet */
@media (max-width: 1024px) {
    .ads-lab-visual {
        max-width: 400px;
        height: 360px;
    }

    .ads-target-svg {
        width: 170px;
        height: 170px;
    }

    .ads-dashboard-panel {
        width: 95px;
    }

    .ads-platform-bubble {
        width: 42px;
        height: 42px;
    }

    .ads-platform-bubble svg {
        width: 22px;
        height: 22px;
    }
}

/* Ads Lab Responsive - Mobile */
@media (max-width: 768px) {
    .ads-lab-visual {
        max-width: 100%;
        height: 320px;
        margin-bottom: var(--space-xl);
    }

    .ads-tubes-svg {
        width: 180px;
        height: 160px;
    }

    .ads-platform-bubble {
        width: 36px;
        height: 36px;
    }

    .ads-platform-bubble svg {
        width: 18px;
        height: 18px;
    }

    .ads-metric {
        padding: 6px 10px;
    }

    .ads-metric .metric-value {
        font-size: 10px;
    }
}

/* Ads Lab Responsive - Small Mobile */
@media (max-width: 480px) {
    .ads-lab-visual {
        height: 280px;
    }

    .ads-tubes-svg {
        width: 150px;
        height: 140px;
    }

    .ads-metric.conv-metric {
        display: none;
    }
}

/* =============================================
   BRAND MANAGEMENT LAB ANIMATION
============================================= */
.brand-lab-visual {
    width: 100%;
    max-width: 480px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-lab-scene {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 77, 37, 0.03) 0%, rgba(76, 212, 54, 0.05) 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.brand-lab-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(25, 77, 37, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(25, 77, 37, 0.04) 1px, transparent 1px);
    background-size: 25px 25px;
}

/* Petri Dish */
.brand-petri-dish {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.brand-petri-svg {
    width: 220px;
    height: 220px;
}

/* Color Card */
.brand-color-card {
    position: absolute;
    top: 8%;
    right: 10%;
    background: white;
    border-radius: 8px;
    padding: 8px;
    display: flex;
    gap: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: socialFloat 4s ease-in-out infinite;
    z-index: 10;
}

.color-swatch {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

/* Brand Element Bubbles */
.brand-element-bubble {
    position: absolute;
    width: 42px;
    height: 42px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    animation: socialFloat 4s ease-in-out infinite;
    z-index: 10;
}

.brand-element-bubble svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
}

.brand-element-bubble.logo-icon {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.brand-element-bubble.typo-icon {
    bottom: 30%;
    right: 8%;
    animation-delay: -1s;
}

.brand-element-bubble.palette-icon {
    bottom: 12%;
    left: 12%;
    animation-delay: -2s;
}

/* Brand Metrics */
.brand-metric {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-md);
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    animation: metricPop 3s ease-in-out infinite;
    z-index: 10;
}

.brand-metric .metric-icon {
    font-size: 14px;
}

.brand-metric .metric-value {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
}

.brand-metric.consistency-metric {
    bottom: 15%;
    right: 10%;
    animation-delay: 0s;
}

.brand-metric.identity-metric {
    top: 25%;
    left: 5%;
    animation-delay: -1.5s;
}

/* Brand Lab Pulse */
.brand-lab-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(25, 77, 37, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: labPulse 3s ease-out infinite;
}

/* Brand Lab Responsive - Tablet */
@media (max-width: 1024px) {
    .brand-lab-visual {
        max-width: 400px;
        height: 360px;
    }

    .brand-petri-svg {
        width: 180px;
        height: 180px;
    }

    .brand-element-bubble {
        width: 38px;
        height: 38px;
    }
}

/* Brand Lab Responsive - Mobile */
@media (max-width: 768px) {
    .brand-lab-visual {
        max-width: 100%;
        height: 320px;
        margin-bottom: var(--space-xl);
    }

    .brand-petri-svg {
        width: 160px;
        height: 160px;
    }

    .brand-element-bubble {
        width: 34px;
        height: 34px;
    }

    .brand-metric {
        padding: 6px 10px;
    }

    .brand-metric .metric-value {
        font-size: 10px;
    }

    .color-swatch {
        width: 20px;
        height: 20px;
    }
}

/* Brand Lab Responsive - Small Mobile */
@media (max-width: 480px) {
    .brand-lab-visual {
        height: 280px;
    }

    .brand-petri-svg {
        width: 140px;
        height: 140px;
    }

    .brand-color-card {
        display: none;
    }

    .brand-element-bubble.palette-icon {
        display: none;
    }
}

/* =============================================
   SOFTWARE LAB ANIMATION
============================================= */
.software-lab-visual {
    width: 100%;
    max-width: 480px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.software-lab-scene {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 77, 37, 0.03) 0%, rgba(76, 212, 54, 0.05) 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.software-lab-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(25, 77, 37, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(25, 77, 37, 0.04) 1px, transparent 1px);
    background-size: 25px 25px;
}

/* Beaker */
.software-beaker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.software-beaker-svg {
    width: 180px;
    height: 230px;
}

/* Terminal Window */
.software-terminal {
    position: absolute;
    top: 8%;
    right: 8%;
    width: 130px;
    background: #1e1e1e;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: socialFloat 4s ease-in-out infinite;
    z-index: 10;
}

.terminal-header {
    background: #333;
    padding: 6px 10px;
    display: flex;
    gap: 5px;
}

.terminal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.terminal-dot.red {
    background: #ff5f56;
}

.terminal-dot.yellow {
    background: #ffbd2e;
}

.terminal-dot.green {
    background: #27c93f;
}

.terminal-body {
    padding: 8px 10px;
}

.terminal-line {
    font-family: 'Courier New', monospace;
    font-size: 8px;
    color: #888;
    margin-bottom: 3px;
}

.terminal-line.success {
    color: #4CD436;
}

/* Tech Bubbles */
.software-tech-bubble {
    position: absolute;
    width: 42px;
    height: 42px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    animation: socialFloat 4s ease-in-out infinite;
    z-index: 10;
}

.software-tech-bubble svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
}

.software-tech-bubble.web-icon {
    top: 20%;
    left: 8%;
    animation-delay: 0s;
}

.software-tech-bubble.mobile-icon {
    bottom: 25%;
    right: 8%;
    animation-delay: -1s;
}

.software-tech-bubble.db-icon {
    bottom: 10%;
    left: 12%;
    animation-delay: -2s;
}

/* Software Metrics */
.software-metric {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-md);
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    animation: metricPop 3s ease-in-out infinite;
    z-index: 10;
}

.software-metric .metric-icon {
    font-size: 14px;
}

.software-metric .metric-value {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
}

.software-metric.lines-metric {
    top: 18%;
    right: 45%;
    animation-delay: 0s;
}

.software-metric.deploy-metric {
    bottom: 12%;
    right: 30%;
    animation-delay: -1.5s;
}

/* Software Lab Pulse */
.software-lab-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(25, 77, 37, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: labPulse 3s ease-out infinite;
}

/* Software Lab Responsive - Tablet */
@media (max-width: 1024px) {
    .software-lab-visual {
        max-width: 400px;
        height: 360px;
    }

    .software-beaker-svg {
        width: 150px;
        height: 190px;
    }

    .software-terminal {
        width: 110px;
    }

    .software-tech-bubble {
        width: 38px;
        height: 38px;
    }
}

/* Software Lab Responsive - Mobile */
@media (max-width: 768px) {
    .software-lab-visual {
        max-width: 100%;
        height: 320px;
        margin-bottom: var(--space-xl);
    }

    .software-beaker-svg {
        width: 130px;
        height: 165px;
    }

    .software-terminal {
        width: 95px;
        top: 5%;
        right: 5%;
    }

    .terminal-line {
        font-size: 7px;
    }

    .software-tech-bubble {
        width: 34px;
        height: 34px;
    }

    .software-metric {
        padding: 6px 10px;
    }

    .software-metric .metric-value {
        font-size: 10px;
    }
}

/* Software Lab Responsive - Small Mobile */
@media (max-width: 480px) {
    .software-lab-visual {
        height: 280px;
    }

    .software-beaker-svg {
        width: 110px;
        height: 140px;
    }

    .software-terminal {
        display: none;
    }

    .software-tech-bubble.db-icon {
        display: none;
    }

    .software-metric.deploy-metric {
        display: none;
    }
}

.about-content h3 {
    margin-bottom: var(--space-lg);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.about-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.about-feature svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
}

.value-card {
    background: var(--bg-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

/* =============================================
   TEAM
============================================= */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.team-card {
    text-align: center;
}

.team-image {
    width: 150px;
    height: 150px;
    margin: 0 auto var(--space-lg);
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--bg-white);
    box-shadow: var(--shadow-md);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-xs);
}

.team-role {
    color: var(--primary);
    font-size: var(--fs-sm);
}

/* =============================================
   UTILITIES
============================================= */
.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: var(--space-sm);
}

.mb-2 {
    margin-bottom: var(--space-md);
}

.mb-3 {
    margin-bottom: var(--space-lg);
}

.mb-4 {
    margin-bottom: var(--space-xl);
}

.mb-5 {
    margin-bottom: var(--space-2xl);
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: var(--space-sm);
}

.mt-2 {
    margin-top: var(--space-md);
}

.mt-3 {
    margin-top: var(--space-lg);
}

.mt-4 {
    margin-top: var(--space-xl);
}

.mt-5 {
    margin-top: var(--space-2xl);
}

.py-section {
    padding: var(--space-5xl) 0;
}

.bg-white {
    background: var(--bg-white);
}

.bg-light {
    background: var(--bg-light);
}

.bg-dark {
    background: var(--bg-dark);
    color: var(--text-white);
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--button-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    z-index: 99;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.scroll-top svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-dark);
}

/* =============================================
   WIZARD FORM
============================================= */
.wizard-progress {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-3xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--space-md);
}

.wizard-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: var(--space-xl);
    right: var(--space-xl);
    height: 4px;
    background: var(--bg-light);
    transform: translateY(-50%);
    z-index: 0;
    border-radius: var(--radius-full);
}

.wizard-progress-bar {
    position: absolute;
    top: 50%;
    left: var(--space-xl);
    height: 4px;
    background: var(--primary);
    transform: translateY(-50%);
    z-index: 1;
    border-radius: var(--radius-full);
    transition: width var(--transition-base);
    max-width: calc(100% - var(--space-2xl));
}

.wizard-step-marker {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 4px solid var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--fs-lg);
    color: var(--text-muted);
    position: relative;
    z-index: 2;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.wizard-step-marker.active {
    border-color: var(--primary);
    color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 0 0 4px rgba(76, 212, 54, 0.2);
}

.wizard-step-marker.completed {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.wizard-step {
    display: none;
    animation: slideUpFade 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wizard-step.active {
    display: block;
}

/* Visual Selection Cards */
.visual-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: var(--space-md);
}

.visual-checkbox {
    position: relative;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.visual-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.visual-checkbox-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: var(--space-lg);
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    height: 100%;
    min-height: 140px;
}

.visual-checkbox:hover .visual-checkbox-card {
    border-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.visual-checkbox input:checked+.visual-checkbox-card {
    border-color: var(--primary);
    background: rgba(76, 212, 54, 0.08);
    box-shadow: 0 4px 12px rgba(76, 212, 54, 0.2);
    transform: translateY(-2px);
}

.visual-checkbox-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    transition: transform var(--transition-fast);
}

.visual-checkbox:hover .visual-checkbox-icon {
    transform: scale(1.1);
}

.visual-checkbox-title {
    font-weight: 600;
    color: var(--text-dark);
    font-size: var(--fs-sm);
    line-height: 1.3;
}

.visual-checkbox-checked-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 22px;
    height: 22px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
}

.visual-checkbox input:checked~.visual-checkbox-checked-icon {
    opacity: 1;
    transform: scale(1);
}

/* Floating Label Inputs */
.form-floating {
    position: relative;
    margin-bottom: var(--space-lg);
}

.form-floating .form-input,
.form-floating .form-textarea,
.form-floating .form-select {
    height: auto;
    padding: 1.25rem 1rem 0.5rem;
    font-size: var(--fs-base);
    border-radius: var(--radius-md);
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    width: 100%;
    transition: all 0.2s ease;
}

.form-floating .form-input:focus,
.form-floating .form-textarea:focus,
.form-floating .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(76, 212, 54, 0.1);
    outline: none;
}

.form-floating .form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-floating label {
    position: absolute;
    top: 1.25rem;
    left: 1rem;
    font-size: var(--fs-base);
    color: var(--text-muted);
    transition: all 0.2s ease;
    pointer-events: none;
    transform-origin: 0 0;
    line-height: 1;
    margin: 0;
}

/* Hide placeholder by default to prevent overlap with label */
.form-floating .form-input::placeholder,
.form-floating .form-textarea::placeholder {
    color: transparent;
    transition: color 0.2s ease;
}

/* Show placeholder on focus */
.form-floating .form-input:focus::placeholder,
.form-floating .form-textarea:focus::placeholder {
    color: var(--text-muted);
    opacity: 0.5;
}

.form-floating .form-input:focus~label,
.form-floating .form-input:not(:placeholder-shown)~label,
.form-floating .form-textarea:focus~label,
.form-floating .form-textarea:not(:placeholder-shown)~label,
.form-floating .form-select:focus~label,
.form-floating .form-select:not([value=""]):valid~label {
    top: 0.5rem;
    transform: scale(0.8);
    color: var(--primary);
    font-weight: 600;
}

/* Navigation Buttons */
.wizard-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-3xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-color);
    gap: var(--space-md);
}

/* =============================================
   RESPONSIVE - TABLET (1024px ve altı)
============================================= */
@media (max-width: 1024px) {
    :root {
        --fs-6xl: 3.5rem;
        --fs-5xl: 2.5rem;
        --fs-4xl: 2rem;
    }

    .container {
        padding: 0 var(--space-lg);
    }

    .section {
        padding: var(--space-4xl) 0;
    }

    /* Hero */
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }

    .hero-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-float-card {
        display: none;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* References */
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-2xl);
    }

    /* Blog */
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    /* Partners */
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* =============================================
   RESPONSIVE - MOBİL (768px ve altı)
============================================= */
@media (max-width: 768px) {
    :root {
        --fs-6xl: 2.5rem;
        --fs-5xl: 2rem;
        --fs-4xl: 1.75rem;
        --fs-3xl: 1.5rem;
        --header-height: 70px;
        --container-padding: 1rem;
    }

    .section {
        padding: var(--space-3xl) 0;
    }

    .section-sm {
        padding: var(--space-2xl) 0;
    }

    /* Header & Navigation */
    .nav {
        position: relative;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: var(--space-2xl);
        gap: var(--space-lg);
        transform: translateX(-100%);
        transition: transform var(--transition-base);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: var(--fs-lg);
        padding: var(--space-md) 0;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
        text-align: center;
    }

    /* Dijital Ofisim butonu mobilde küçük */
    .nav-cta.btn {
        padding: var(--space-sm) var(--space-md);
        font-size: var(--fs-sm);
        order: 2;
    }

    .nav-cta.btn span {
        display: none;
    }

    .nav-cta.btn::before {
        content: '🏢';
        font-size: 1rem;
    }

    .nav-cta.btn svg {
        display: none;
    }

    .nav-toggle {
        display: flex;
        order: 3;
        margin-left: var(--space-sm);
    }

    .logo {
        flex: 1;
        font-size: var(--fs-lg);
    }

    .logo-icon {
        font-size: var(--fs-xl);
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
    }

    .hero-title {
        font-size: var(--fs-4xl);
    }

    .hero-desc {
        font-size: var(--fs-base);
    }

    .hero-buttons {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-visual {
        display: none;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .stat-item {
        padding: var(--space-md);
    }

    .stat-number {
        font-size: var(--fs-3xl);
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: var(--space-xl);
    }

    /* References */
    .references-grid {
        grid-template-columns: 1fr;
    }

    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        border-radius: var(--radius-md);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    /* Contact Page */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: var(--space-lg);
    }

    /* Partners */
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }

    /* Page Header */
    .page-header {
        padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-xl);
    }

    .page-title {
        font-size: var(--fs-3xl);
    }

    /* Cards */
    .card {
        padding: var(--space-lg);
    }

    /* Buttons */
    .btn-lg {
        padding: var(--space-md) var(--space-xl);
        font-size: var(--fs-base);
    }

    /* CTA */
    .cta-title {
        font-size: var(--fs-2xl);
    }

    .cta-desc {
        font-size: var(--fs-base);
    }

    /* Scroll Top */
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    /* Hizmetler Sayfası */
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .about-features {
        grid-template-columns: 1fr !important;
    }

    .about-image {
        max-height: 300px;
        object-fit: cover;
    }

    /* Grid utilities */
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    /* Testimonial */
    .testimonial-item .card {
        padding: var(--space-lg) !important;
        max-width: 100% !important;
    }

    .testimonial-item .card p {
        font-size: var(--fs-base) !important;
    }

    .testimonial-item .card>div {
        flex-direction: column !important;
        text-align: center !important;
    }

    .testimonial-item .card>div>div:last-child {
        text-align: center !important;
    }

    /* Filter buttons on blog/references */
    .filter-btn {
        padding: var(--space-sm) var(--space-md);
        font-size: var(--fs-sm);
    }

    /* Why Choose grid */
    .why-grid {
        grid-template-columns: 1fr;
    }

    /* Partners section */
    .partners-title {
        font-size: var(--fs-sm);
    }
}

/* =============================================
   RESPONSIVE - KÜÇÜK MOBİL (480px ve altı)
============================================= */
@media (max-width: 480px) {
    :root {
        --fs-6xl: 2rem;
        --fs-5xl: 1.75rem;
        --fs-4xl: 1.5rem;
        --fs-3xl: 1.25rem;
    }

    .container {
        padding: 0 var(--space-md);
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-number {
        font-size: var(--fs-2xl);
    }

    .stat-label {
        font-size: var(--fs-sm);
    }

    /* Partners */
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Form */
    .form-input,
    .form-textarea {
        padding: var(--space-sm) var(--space-md);
    }

    /* Section Header */
    .section-header {
        margin-bottom: var(--space-2xl);
    }

    .section-title {
        font-size: var(--fs-2xl);
    }

    .section-desc {
        font-size: var(--fs-base);
    }

    /* Hero Label */
    .hero-label {
        font-size: var(--fs-xs);
    }

    /* Service icons */
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    /* Checkbox Grid (marka-analizi) */
    .checkbox-grid {
        grid-template-columns: 1fr !important;
    }

    .checkbox-label {
        font-size: var(--fs-sm);
    }

    /* Blog card */
    .blog-content {
        padding: var(--space-md);
    }

    .blog-title {
        font-size: var(--fs-lg);
    }

    /* Footer */
    .footer {
        padding-top: var(--space-3xl);
    }

    .footer-title {
        font-size: var(--fs-base);
    }
}

/* =============================================
   TAŞMA ÖNLEYİCİ GENEL KURALLAR
============================================= */
* {
    max-width: 100%;
}

img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

/* Long text handling */
.hero-title,
.section-title,
.page-title,
.cta-title,
h1,
h2,
h3,
h4 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Prevent horizontal scroll */
html,
body {
    overflow-x: hidden;
}

/* Flex wrap for safety */
.hero-buttons,
.nav-cta,
.footer-bottom,
.social-links,
.breadcrumb {
    flex-wrap: wrap;
}

/* Fix table overflow */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Fix form inputs on iOS */
input,
textarea,
select {
    -webkit-appearance: none;
    appearance: none;
    border-radius: var(--radius-md);
}