/* ================================================
   ENFESSOFT - Corporate Theme v2
   Modern, profesyonel, doluluk hissi yüksek
   ================================================ */

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

:root {
    /* Brand Colors */
    --red: #DC2626;
    --red-dark: #991B1B;
    --red-darker: #7F1D1D;
    --red-light: #EF4444;
    --red-50: #FEF2F2;
    --red-100: #FEE2E2;
    --red-200: #FECACA;
    --red-300: #FCA5A5;

    /* Neutrals */
    --slate-900: #0F172A;
    --slate-800: #1E293B;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748B;
    --slate-400: #94A3B8;
    --slate-300: #CBD5E1;
    --slate-200: #E2E8F0;
    --slate-100: #F1F5F9;
    --slate-50: #F8FAFC;
    --white: #FFFFFF;

    /* Gradients */
    --grad-red: linear-gradient(135deg, #DC2626 0%, #EF4444 100%);
    --grad-dark: linear-gradient(135deg, #1E293B 0%, #0F172A 50%, #450a0a 100%);

    /* Shadow */
    --sh-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
    --sh: 0 4px 12px rgba(15, 23, 42, 0.08);
    --sh-md: 0 8px 24px rgba(15, 23, 42, 0.10);
    --sh-lg: 0 20px 48px rgba(15, 23, 42, 0.12);
    --sh-red: 0 10px 30px rgba(220, 38, 38, 0.25);

    /* Radius */
    --r-sm: 6px;
    --r: 10px;
    --r-md: 14px;
    --r-lg: 20px;

    /* Transition */
    --t: 0.25s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--slate-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Reveal - HER ZAMAN GÖRÜNÜR (sorun yaşamamak için) */
.reveal { opacity: 1; transform: none; }

/* Container */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Utility */
.text-gradient {
    background: var(--grad-red);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.text-gradient-light {
    background: linear-gradient(135deg, #FCA5A5 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 26px;
    font-size: 14.5px;
    font-weight: 600;
    border-radius: var(--r);
    transition: all var(--t);
    border: 2px solid transparent;
    white-space: nowrap;
    line-height: 1;
    letter-spacing: 0.1px;
}

.btn-lg { padding: 15px 32px; font-size: 15.5px; }

.btn-primary {
    background: var(--grad-red);
    color: var(--white);
    box-shadow: var(--sh-red);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(220, 38, 38, 0.35); }

.btn-outline {
    background: transparent;
    color: var(--slate-800);
    border-color: var(--slate-300);
}
.btn-outline:hover {
    background: var(--slate-900);
    color: var(--white);
    border-color: var(--slate-900);
}

.btn-light {
    background: var(--white);
    color: var(--red);
    box-shadow: var(--sh);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }

.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 13px; }

/* ========== Preloader ========== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.preloader.hide { opacity: 0; visibility: hidden; }
.loader-flame { font-size: 56px; color: var(--red); animation: flame 1.2s infinite ease-in-out; }
@keyframes flame {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.7; }
}

/* ========== Header ========== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--t), box-shadow var(--t);
}
.header.scrolled {
    border-bottom-color: var(--slate-200);
    box-shadow: var(--sh-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo { display: block; transition: transform var(--t); }
.logo:hover { transform: scale(1.03); }
.logo img { height: 38px; width: auto; }

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

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

.nav-link {
    position: relative;
    display: inline-block;
    padding: 8px 14px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--slate-700);
    border-radius: var(--r-sm);
    transition: all var(--t);
}
.nav-link:hover {
    color: var(--red);
    background: var(--red-50);
}
.nav-link.active {
    color: var(--red);
    background: var(--red-50);
    font-weight: 600;
}

.has-dropdown { position: relative; }
.dropdown-toggle::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 9px;
    margin-left: 6px;
    transition: transform var(--t);
    display: inline-block;
}
.has-dropdown:hover .dropdown-toggle::after { transform: rotate(180deg); }

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 280px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--r-md);
    box-shadow: var(--sh-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--t);
    z-index: 1001;
}
.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li { list-style: none; }
.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: var(--r-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-700);
    transition: all var(--t);
}
.dropdown-menu a:hover {
    background: var(--red-50);
    color: var(--red);
}
.dropdown-menu i {
    width: 30px;
    height: 30px;
    background: var(--red-50);
    color: var(--red);
    border-radius: var(--r-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}
.dropdown-menu a:hover i {
    background: var(--red);
    color: var(--white);
}

.nav-cta {
    margin-left: 8px;
    padding: 11px 22px;
    font-size: 13.5px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
}
.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--slate-800);
    border-radius: 2px;
    transition: all var(--t);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== HERO ========== */
.hero {
    position: relative;
    padding: 130px 0 90px;
    background: linear-gradient(180deg, #FFF8F8 0%, #FFFFFF 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.10) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(220, 38, 38, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220, 38, 38, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, transparent 100%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: var(--white);
    color: var(--red);
    border: 1px solid var(--red-200);
    border-radius: 100px;
    font-size: 12.5px;
    font-weight: 600;
    margin-bottom: 22px;
    box-shadow: var(--sh-sm);
}

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--slate-900);
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--slate-600);
    margin-bottom: 32px;
    max-width: 560px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

/* Hero Stats Strip - tablo gibi */
.hero-stats-strip {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--r-md);
    padding: 18px 22px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    box-shadow: var(--sh);
}

.hero-stat-cell {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 14px;
    border-right: 1px solid var(--slate-200);
}
.hero-stat-cell:first-child { padding-left: 0; }
.hero-stat-cell:last-child { padding-right: 0; border-right: none; }

.hero-stat-cell-icon {
    width: 38px;
    height: 38px;
    background: var(--red-50);
    color: var(--red);
    border-radius: var(--r-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.hero-stat-cell-info { display: flex; flex-direction: column; }
.hero-stat-cell-info strong {
    display: block;
    font-size: 17px;
    font-weight: 800;
    color: var(--slate-900);
    line-height: 1.1;
    margin-bottom: 2px;
}
.hero-stat-cell-info span {
    font-size: 11.5px;
    color: var(--slate-500);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 540px;
}

.hero-visual-card {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--r-md);
    padding: 18px 22px;
    box-shadow: var(--sh-md);
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    color: var(--slate-900);
    font-size: 14px;
    z-index: 2;
}

.hero-visual-card i {
    width: 42px;
    height: 42px;
    background: var(--red-50);
    color: var(--red);
    border-radius: var(--r-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.hero-visual-card.hv-1 { top: 20px; left: 0; animation: float 6s ease-in-out infinite; }
.hero-visual-card.hv-2 { top: 30%; right: 0; animation: float 6s ease-in-out infinite 1.5s; }
.hero-visual-card.hv-3 { bottom: 25%; left: 8%; animation: float 6s ease-in-out infinite 3s; }
.hero-visual-card.hv-4 { bottom: 30px; right: 5%; animation: float 6s ease-in-out infinite 4.5s; }

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

.hero-visual-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 320px;
    height: 320px;
    transform: translate(-50%, -50%);
    background: var(--grad-red);
    border-radius: 50%;
    box-shadow: 0 30px 80px rgba(220, 38, 38, 0.30);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-visual-circle::before {
    content: '';
    position: absolute;
    inset: -20px;
    border: 2px dashed rgba(220, 38, 38, 0.3);
    border-radius: 50%;
    animation: spin 30s linear infinite;
}

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

.hero-visual-circle i {
    font-size: 110px;
    color: var(--white);
}

/* Live dot */
.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    margin-right: 4px;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
    animation: livePulse 1.6s ease-in-out infinite;
}

@keyframes livePulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
    70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ========== Marquee ========== */
.marquee {
    position: relative;
    overflow: hidden;
    background: var(--slate-900);
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.marquee.red { background: var(--grad-red); }

.marquee::before, .marquee::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--slate-900) 0%, transparent 100%); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--slate-900) 0%, transparent 100%); }
.marquee.red::before { background: linear-gradient(90deg, #DC2626 0%, transparent 100%); }
.marquee.red::after { background: linear-gradient(-90deg, #DC2626 0%, transparent 100%); }

.marquee-track {
    display: flex;
    gap: 48px;
    width: max-content;
    animation: marquee 30s linear infinite;
}
.marquee.fast .marquee-track { animation-duration: 18s; }
.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}
.marquee-item i {
    color: var(--red-light);
    font-size: 16px;
}
.marquee.red .marquee-item, .marquee.red .marquee-item i { color: var(--white); }

.marquee-dot {
    width: 5px;
    height: 5px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
}
.marquee.red .marquee-dot { background: var(--white); }

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ========== Sections ========== */
.section {
    padding: 80px 0;
    position: relative;
}
.section.alt { background: var(--slate-50); }
.section.dark { background: var(--grad-dark); color: var(--white); overflow: hidden; }
.section-compact { padding: 50px 0; }

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--red-50);
    color: var(--red);
    border: 1px solid var(--red-100);
    border-radius: 100px;
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.section-tag.light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.15);
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.18;
    color: var(--slate-900);
    margin-bottom: 14px;
    letter-spacing: -1px;
}
.section-title.light { color: var(--white); }

.section-subtitle {
    font-size: 16px;
    color: var(--slate-600);
    line-height: 1.7;
}
.section.dark .section-subtitle { color: rgba(255, 255, 255, 0.7); }

/* ========== About Grid ========== */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-content .section-tag { margin-bottom: 16px; }
.about-text {
    font-size: 15.5px;
    color: var(--slate-600);
    margin-bottom: 16px;
    line-height: 1.8;
}
.about-text strong { color: var(--red); font-weight: 700; }

.about-features {
    margin: 24px 0 28px;
}
.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14.5px;
    color: var(--slate-700);
    font-weight: 500;
}
.about-features i {
    color: var(--red);
    font-size: 16px;
    flex-shrink: 0;
}

.about-visual {
    position: relative;
    height: 480px;
    background: var(--grad-red);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-lg);
    overflow: hidden;
}

.about-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
}

.about-flame-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 220px;
    color: rgba(255, 255, 255, 0.15);
}

.about-card {
    position: absolute;
    background: var(--white);
    padding: 14px 18px;
    border-radius: var(--r);
    box-shadow: var(--sh-md);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.about-card .ac-icon {
    width: 40px;
    height: 40px;
    background: var(--red-50);
    color: var(--red);
    border-radius: var(--r-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.about-card > div:last-child { display: flex; flex-direction: column; }
.about-card strong {
    display: block;
    font-size: 16px;
    color: var(--slate-900);
    font-weight: 700;
    line-height: 1.1;
}
.about-card span {
    font-size: 11.5px;
    color: var(--slate-500);
}

.about-card.ac-1 { top: 24px; left: -16px; animation: float 5s ease-in-out infinite; }
.about-card.ac-2 { top: 50%; right: -20px; transform: translateY(-50%); animation: float 5s ease-in-out infinite 1.6s; }
.about-card.ac-3 { bottom: 30px; left: -10px; animation: float 5s ease-in-out infinite 3.2s; }

/* ========== Expertise / Skills ========== */
.split-stats {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 40px;
}

.expertise-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.expertise-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--slate-800);
    font-size: 14px;
}
.expertise-header > div i {
    color: var(--red);
    margin-right: 8px;
}
.expertise-header span {
    font-weight: 800;
    color: var(--red);
    font-size: 13.5px;
}

.expertise-bar {
    height: 8px;
    background: var(--slate-200);
    border-radius: 100px;
    overflow: hidden;
    position: relative;
}

.expertise-fill {
    position: absolute;
    inset: 0 auto 0 0;
    background: var(--grad-red);
    border-radius: 100px;
    width: 0;
    transition: width 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ========== Achievement Banner ========== */
.achievements-banner {
    background: var(--grad-dark);
    color: var(--white);
    padding: 42px 40px;
    border-radius: var(--r-lg);
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 36px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.achievements-banner::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.4) 0%, transparent 70%);
    border-radius: 50%;
}
.achievements-banner > * { position: relative; z-index: 1; }

.achievement-title h3 {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 6px;
    color: var(--white);
    letter-spacing: -0.5px;
}
.achievement-title p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.achievement-stat {
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 28px;
}

.achievement-stat strong {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -1.5px;
    margin-bottom: 5px;
}
.achievement-stat span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== Service Cards ========== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.service-card {
    position: relative;
    background: var(--white);
    padding: 32px 30px;
    border-radius: var(--r-md);
    border: 1px solid var(--slate-200);
    transition: all var(--t);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
    border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-card.featured {
    background: linear-gradient(145deg, var(--red-50) 0%, var(--white) 100%);
    border-color: var(--red-100);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--grad-red);
    color: var(--white);
    border-radius: var(--r);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    box-shadow: var(--sh-red);
    transition: transform var(--t);
}
.service-card:hover .service-icon { transform: rotate(-6deg) scale(1.05); }

.service-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.service-text {
    font-size: 14px;
    color: var(--slate-600);
    line-height: 1.7;
    margin-bottom: 18px;
}

.service-features {
    margin-bottom: 18px;
}
.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 13.5px;
    color: var(--slate-700);
}
.service-features i {
    color: var(--red);
    font-size: 11px;
    width: 18px;
    height: 18px;
    background: var(--red-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-ribbon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--red-50);
    border-left: 3px solid var(--red);
    border-radius: var(--r-sm);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--slate-800);
    margin: 14px 0;
}
.info-ribbon i { color: var(--red); }

/* ========== Inline Stats ========== */
.inline-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 32px 0;
    margin: 36px 0 0;
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
}
.inline-stat { text-align: center; }
.inline-stat strong {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 5px;
}
.inline-stat span {
    font-size: 12px;
    color: var(--slate-600);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

/* ========== Industries ========== */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.industry-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--r);
    padding: 22px 14px;
    text-align: center;
    transition: all var(--t);
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--grad-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t);
}

.industry-card:hover {
    transform: translateY(-4px);
    border-color: var(--red-200);
    box-shadow: var(--sh-md);
}
.industry-card:hover::before { transform: scaleX(1); }

.industry-card i {
    font-size: 26px;
    color: var(--red);
    margin-bottom: 10px;
    display: block;
}

.industry-card span {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--slate-800);
    display: block;
    line-height: 1.3;
}

/* ========== Approach Cards ========== */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.approach-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--r-md);
    padding: 24px 22px;
    transition: all var(--t);
    border-left: 4px solid var(--slate-200);
}
.approach-card:hover {
    border-left-color: var(--red);
    transform: translateY(-3px);
    box-shadow: var(--sh);
}

.approach-num {
    font-size: 13px;
    font-weight: 800;
    color: var(--red);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.approach-card h4 {
    font-size: 16.5px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 10px;
}

.approach-card p {
    font-size: 13px;
    color: var(--slate-600);
    line-height: 1.65;
}

/* ========== Process / Feature Strip ========== */
.feature-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 32px;
    border: 1px solid var(--slate-200);
}
.feature-strip-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.feature-strip-icon {
    width: 40px;
    height: 40px;
    background: var(--grad-red);
    color: var(--white);
    border-radius: var(--r-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: var(--sh-red);
}
.feature-strip-item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 4px;
}
.feature-strip-item span {
    font-size: 13px;
    color: var(--slate-600);
    line-height: 1.5;
}

/* ========== Stats Grid ========== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.stat-card {
    position: relative;
    background: var(--white);
    padding: 36px 26px;
    border-radius: var(--r-md);
    border: 1px solid var(--slate-200);
    text-align: center;
    transition: all var(--t);
    overflow: hidden;
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-md);
    border-color: var(--red-200);
}

.stat-card-icon {
    width: 56px;
    height: 56px;
    background: var(--red-50);
    color: var(--red);
    border-radius: var(--r);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
    transition: all var(--t);
}
.stat-card:hover .stat-card-icon {
    background: var(--grad-red);
    color: var(--white);
    transform: rotate(-8deg);
}

.stat-card-number {
    display: inline-block;
    font-size: 44px;
    font-weight: 800;
    color: var(--slate-900);
    line-height: 1;
    letter-spacing: -2px;
}
.stat-card-suffix {
    display: inline-block;
    font-size: 30px;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
}
.stat-card-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--slate-600);
    margin-top: 10px;
}

/* ========== Games Section ========== */
.games {
    background: var(--grad-dark);
    color: var(--white);
    overflow: hidden;
    padding: 80px 0;
    position: relative;
}
.games::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(220, 38, 38, 0.3) 0%, transparent 40%);
    pointer-events: none;
}

.games-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.games-text {
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 16px;
    line-height: 1.8;
}
.games-text strong { color: var(--white); font-weight: 700; }

.games-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 28px 0;
}

.games-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r);
    transition: all var(--t);
}
.games-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--red-300);
    transform: translateX(6px);
}
.games-feature i {
    width: 42px;
    height: 42px;
    background: var(--grad-red);
    color: var(--white);
    border-radius: var(--r-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.games-feature strong {
    display: block;
    font-size: 15px;
    color: var(--white);
    margin-bottom: 2px;
    font-weight: 700;
}
.games-feature span {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.6);
}

.games-visual {
    position: relative;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.games-logo-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 50%;
    box-shadow: 0 30px 70px rgba(220, 38, 38, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.games-logo {
    width: 70%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.games-orbit {
    position: absolute;
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 22px;
    box-shadow: var(--sh-md);
    top: 50%;
    left: 50%;
    margin-top: -28px;
    margin-left: -28px;
    transform: rotate(0deg) translateX(180px);
    animation: gameOrbit 14s linear infinite;
}
.games-orbit.go-1 { animation-delay: 0s; }
.games-orbit.go-2 { animation-delay: -3.5s; }
.games-orbit.go-3 { animation-delay: -7s; }
.games-orbit.go-4 { animation-delay: -10.5s; }

@keyframes gameOrbit {
    from { transform: rotate(0deg) translateX(180px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(180px) rotate(-360deg); }
}

/* ========== Activity Feed ========== */
.activity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.activity-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--r-md);
    padding: 18px 22px;
    display: flex;
    gap: 14px;
    transition: all var(--t);
}
.activity-card:hover {
    border-color: var(--red-200);
    transform: translateX(4px);
    box-shadow: var(--sh-sm);
}

.activity-icon {
    width: 40px;
    height: 40px;
    background: var(--red-50);
    color: var(--red);
    border-radius: var(--r-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.activity-content { flex: 1; min-width: 0; }
.activity-content strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 4px;
}
.activity-content p {
    font-size: 13px;
    color: var(--slate-600);
    margin-bottom: 6px;
    line-height: 1.55;
}
.activity-time {
    font-size: 11px;
    color: var(--red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

/* ========== Testimonials ========== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--r-md);
    padding: 26px;
    transition: all var(--t);
    position: relative;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-md);
    border-color: var(--red-200);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
    color: #FBBF24;
    font-size: 13px;
}

.testimonial-text {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--slate-700);
    margin-bottom: 18px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--slate-200);
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    background: var(--grad-red);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    flex-shrink: 0;
}
.testimonial-author-info strong {
    display: block;
    font-size: 13.5px;
    color: var(--slate-900);
    font-weight: 700;
}
.testimonial-author-info span {
    font-size: 11.5px;
    color: var(--slate-500);
}

/* ========== Awards Strip ========== */
.awards-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--r-lg);
    padding: 30px 24px;
}
.award-item {
    text-align: center;
    padding: 8px 6px;
    border-right: 1px solid var(--slate-200);
}
.award-item:last-child { border-right: none; }
.award-item i {
    font-size: 28px;
    color: var(--red);
    margin-bottom: 10px;
    display: block;
}
.award-item strong {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 3px;
}
.award-item span {
    font-size: 11px;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========== Quote ========== */
.quote-block {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: var(--r-lg);
    border: 1px solid var(--slate-200);
}
.quote-block .quote-icon {
    font-size: 44px;
    color: var(--red);
    opacity: 0.25;
    margin-bottom: 16px;
}
.quote-block p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--slate-800);
    font-weight: 500;
    margin-bottom: 20px;
    font-style: italic;
    letter-spacing: -0.2px;
}
.quote-block .quote-author {
    font-size: 13px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== Newsletter Strip ========== */
.newsletter-strip {
    background: var(--grad-dark);
    color: var(--white);
    padding: 44px 40px;
    border-radius: var(--r-lg);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 36px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.newsletter-strip::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.4) 0%, transparent 70%);
    border-radius: 50%;
}
.newsletter-strip > * { position: relative; z-index: 1; }

.newsletter-strip h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}
.newsletter-strip p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}
.newsletter-form input {
    flex: 1;
    padding: 13px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--r-sm);
    color: var(--white);
    font-size: 14px;
    font-family: inherit;
}
.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.5); }
.newsletter-form input:focus {
    outline: none;
    border-color: var(--red-light);
    background: rgba(255, 255, 255, 0.15);
}

/* ========== CTA Box ========== */
.cta-section { padding: 60px 0; }

.cta-box {
    background: var(--grad-dark);
    border-radius: var(--r-lg);
    padding: 50px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    position: relative;
    overflow: hidden;
    color: var(--white);
}
.cta-box::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.4) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.6px;
}
.cta-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.78);
}
.cta-box .btn-light { position: relative; z-index: 1; flex-shrink: 0; }

/* ========== PAGE HEADER (iç sayfa başlığı) ========== */
.page-header {
    position: relative;
    padding: 130px 0 70px;
    background: var(--grad-dark);
    color: var(--white);
    overflow: hidden;
    text-align: center;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 30%, rgba(220, 38, 38, 0.45) 0%, transparent 45%),
        radial-gradient(circle at 75% 70%, rgba(220, 38, 38, 0.3) 0%, transparent 45%);
}
.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }

.page-header-icon {
    width: 64px;
    height: 64px;
    background: var(--grad-red);
    color: var(--white);
    border-radius: var(--r-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
    box-shadow: 0 14px 40px rgba(220, 38, 38, 0.4);
}

.page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -1.2px;
    color: var(--white);
}

.page-subtitle {
    font-size: 16.5px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 720px;
    margin: 0 auto 22px;
    line-height: 1.7;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    font-size: 12.5px;
}
.breadcrumb a { color: rgba(255, 255, 255, 0.7); transition: color var(--t); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .separator { color: rgba(255, 255, 255, 0.4); font-size: 9px; }
.breadcrumb .current { color: var(--red-light); font-weight: 600; }

/* ========== Content Section (iç sayfa) ========== */
.content-section { padding: 80px 0; }

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.content-grid.reverse .content-text { order: 2; }

.content-text h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 16px;
    letter-spacing: -0.6px;
    line-height: 1.25;
}
.content-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--slate-900);
    margin: 22px 0 12px;
}
.content-text p {
    font-size: 15px;
    color: var(--slate-600);
    margin-bottom: 14px;
    line-height: 1.8;
}
.content-text strong { color: var(--red); font-weight: 700; }

.content-text ul:not(.about-features):not(.service-features):not(.contact-list) {
    margin: 18px 0;
}
.content-text ul:not(.about-features):not(.service-features):not(.contact-list) li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 14.5px;
    color: var(--slate-700);
    line-height: 1.7;
}
.content-text ul:not(.about-features):not(.service-features):not(.contact-list) li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0; top: 2px;
    width: 20px;
    height: 20px;
    background: var(--red-50);
    color: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
}

.content-image {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--grad-red);
    box-shadow: var(--sh-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}
.content-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
}
.content-image-overlay {
    position: relative;
    z-index: 2;
    padding: 30px;
}
.content-image-overlay i {
    font-size: 64px;
    margin-bottom: 14px;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.3));
}
.content-image-overlay strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 4px;
    letter-spacing: -0.4px;
}
.content-image-overlay span {
    font-size: 13.5px;
    opacity: 0.9;
}

.content-image .icon-bg {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 180px;
    color: rgba(255, 255, 255, 0.18);
    z-index: 1;
}

/* ========== Vision Mission Cards ========== */
.vm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.vm-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--r-md);
    border: 1px solid var(--slate-200);
    transition: all var(--t);
    position: relative;
    overflow: hidden;
}
.vm-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-md);
    border-color: var(--red-200);
}
.vm-card::before {
    content: attr(data-num);
    position: absolute;
    top: -16px;
    right: 18px;
    font-size: 100px;
    font-weight: 800;
    color: var(--red-50);
    line-height: 1;
    z-index: 0;
}
.vm-card > * { position: relative; z-index: 1; }

.vm-icon {
    width: 56px;
    height: 56px;
    background: var(--grad-red);
    color: var(--white);
    border-radius: var(--r-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
    box-shadow: var(--sh-red);
}

.vm-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}
.vm-card p {
    font-size: 14px;
    color: var(--slate-600);
    line-height: 1.75;
}

/* ========== Timeline ========== */
.timeline {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    padding: 16px 0;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 50%;
    width: 2px;
    background: linear-gradient(180deg, var(--red) 0%, var(--slate-300) 100%);
    transform: translateX(-50%);
}
.timeline-item {
    position: relative;
    width: 50%;
    padding: 24px 44px;
}
.timeline-item:nth-child(odd) { left: 0; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; }
.timeline-item::before {
    content: '';
    position: absolute;
    top: 36px;
    width: 16px;
    height: 16px;
    background: var(--white);
    border: 4px solid var(--red);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.15);
    z-index: 1;
}
.timeline-item:nth-child(odd)::before { right: -8px; }
.timeline-item:nth-child(even)::before { left: -8px; }

.timeline-content {
    background: var(--white);
    padding: 22px 24px;
    border-radius: var(--r);
    border: 1px solid var(--slate-200);
    transition: all var(--t);
}
.timeline-content:hover {
    border-color: var(--red-200);
    box-shadow: var(--sh-sm);
}

.timeline-year {
    display: inline-block;
    padding: 3px 12px;
    background: var(--grad-red);
    color: var(--white);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}
.timeline-content h4 {
    font-size: 16.5px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 6px;
}
.timeline-content p {
    font-size: 13px;
    color: var(--slate-600);
    line-height: 1.7;
}

/* ========== Process Steps (numbered) ========== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.process-step {
    text-align: center;
    padding: 16px;
    position: relative;
}

.process-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    background: var(--white);
    border: 3px solid var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: var(--red);
    box-shadow: 0 0 0 6px rgba(220, 38, 38, 0.08);
    transition: all var(--t);
}
.process-step:hover .process-number {
    background: var(--grad-red);
    color: var(--white);
    transform: scale(1.05);
}
.process-step h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 10px;
}
.process-step p {
    font-size: 13px;
    color: var(--slate-600);
    line-height: 1.65;
}

/* ========== Tech Grid ========== */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 14px;
}

.tech-item {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--r);
    padding: 22px 14px;
    text-align: center;
    transition: all var(--t);
}
.tech-item:hover {
    transform: translateY(-3px);
    border-color: var(--red);
    box-shadow: var(--sh-sm);
}
.tech-item i {
    font-size: 32px;
    color: var(--red);
    margin-bottom: 10px;
    display: block;
}
.tech-item span {
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-800);
    display: block;
}

/* ========== FAQ ========== */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--r);
    overflow: hidden;
    transition: all var(--t);
}
.faq-item.active {
    border-color: var(--red);
    box-shadow: var(--sh-sm);
}

.faq-question {
    width: 100%;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: var(--slate-900);
    cursor: pointer;
}

.faq-icon {
    width: 28px;
    height: 28px;
    background: var(--red-50);
    color: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: all var(--t);
    flex-shrink: 0;
}
.faq-item.active .faq-icon {
    background: var(--grad-red);
    color: var(--white);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-item.active .faq-answer { max-height: 500px; }

.faq-answer-inner {
    padding: 0 22px 20px;
    font-size: 14px;
    color: var(--slate-600);
    line-height: 1.75;
}

/* ========== Why Cards ========== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.why-card {
    background: var(--white);
    padding: 28px 24px;
    border-radius: var(--r-md);
    border: 1px solid var(--slate-200);
    transition: all var(--t);
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-md);
    border-color: var(--red-200);
}

.why-icon {
    width: 52px;
    height: 52px;
    background: var(--grad-red);
    color: var(--white);
    border-radius: var(--r-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
    box-shadow: var(--sh-red);
}
.why-card h3 {
    font-size: 17.5px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}
.why-card p {
    font-size: 13.5px;
    color: var(--slate-600);
    line-height: 1.7;
}

/* ========== Highlights Grid ========== */
.highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.highlight-card {
    display: flex;
    gap: 18px;
    padding: 22px;
    background: var(--white);
    border-radius: var(--r);
    border: 1px solid var(--slate-200);
    transition: all var(--t);
}
.highlight-card:hover {
    transform: translateY(-3px);
    border-color: var(--red-200);
    box-shadow: var(--sh-sm);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background: var(--red-50);
    color: var(--red);
    border-radius: var(--r-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: all var(--t);
}
.highlight-card:hover .highlight-icon { background: var(--grad-red); color: var(--white); }

.highlight-card h4 {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 6px;
}
.highlight-card p {
    font-size: 13px;
    color: var(--slate-600);
    line-height: 1.65;
    margin: 0;
}

/* ========== Game Categories (dark) ========== */
.game-cats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.game-cat {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r);
    padding: 26px 18px;
    text-align: center;
    transition: all var(--t);
}
.game-cat:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--red);
}
.game-cat i {
    font-size: 32px;
    color: var(--red-light);
    margin-bottom: 12px;
    display: block;
}
.game-cat h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}
.game-cat p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.55;
}

/* ========== Inline CTA ========== */
.inline-cta {
    background: var(--grad-dark);
    color: var(--white);
    padding: 32px 36px;
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 24px 0;
    position: relative;
    overflow: hidden;
}
.inline-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at right, rgba(220, 38, 38, 0.3) 0%, transparent 60%);
}
.inline-cta > * { position: relative; z-index: 1; }
.inline-cta h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--white);
}
.inline-cta p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* ========== Contact ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    align-items: start;
}

.contact-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}
.contact-info > p {
    font-size: 14.5px;
    color: var(--slate-600);
    margin-bottom: 28px;
    line-height: 1.7;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 26px;
}
.contact-list li {
    display: flex;
    align-items: center;
    gap: 14px;
}
.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--red-50);
    color: var(--red);
    border-radius: var(--r-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}
.contact-list strong {
    display: block;
    font-size: 13px;
    color: var(--slate-500);
    font-weight: 500;
    margin-bottom: 2px;
}
.contact-list a, .contact-list span {
    display: block;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--slate-900);
}
.contact-list a:hover { color: var(--red); }

.contact-social {
    display: flex;
    gap: 10px;
}
.contact-social a {
    width: 40px;
    height: 40px;
    background: var(--slate-100);
    color: var(--slate-700);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all var(--t);
}
.contact-social a:hover {
    background: var(--grad-red);
    color: var(--white);
    transform: translateY(-2px);
}

/* Form */
.contact-form {
    background: var(--white);
    padding: 36px;
    border-radius: var(--r-lg);
    border: 1px solid var(--slate-200);
    box-shadow: var(--sh);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}
.form-group label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--slate-800);
    margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    background: var(--slate-50);
    border: 1.5px solid var(--slate-200);
    border-radius: var(--r-sm);
    font-size: 14px;
    font-family: inherit;
    color: var(--slate-900);
    transition: all var(--t);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: var(--white);
    border-color: var(--red);
}
.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-message {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: var(--r-sm);
    font-size: 13.5px;
    display: none;
}
.form-message.success {
    display: block;
    background: #DCFCE7;
    color: #166534;
    border: 1px solid #BBF7D0;
}
.form-message.error {
    display: block;
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

/* Map */
.contact-map {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-lg);
    border: 1px solid var(--slate-200);
    height: 440px;
    position: relative;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.map-info-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    padding: 18px 22px;
    border-radius: var(--r);
    box-shadow: var(--sh-lg);
    max-width: 320px;
    z-index: 2;
    border-left: 4px solid var(--red);
}
.map-info-card strong {
    display: block;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 6px;
}
.map-info-card p {
    font-size: 13px;
    color: var(--slate-600);
    margin: 0;
    line-height: 1.6;
}
.map-info-card i { color: var(--red); margin-right: 6px; }

/* ========== Footer ========== */
.footer {
    background: var(--slate-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 50px;
}
.footer-logo {
    height: 34px;
    width: auto;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
}
.footer-about p {
    font-size: 13.5px;
    line-height: 1.75;
    margin-bottom: 22px;
    max-width: 380px;
}

.footer-social {
    display: flex;
    gap: 8px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all var(--t);
}
.footer-social a:hover {
    background: var(--grad-red);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: -0.1px;
}
.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col a {
    font-size: 13.5px;
    transition: all var(--t);
}
.footer-col a:hover {
    color: var(--red-light);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
}
.footer-contact i {
    color: var(--red-light);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12.5px;
}
.footer-bottom strong { color: var(--white); font-weight: 600; }
.footer-meta { display: flex; align-items: center; gap: 6px; }
.footer-meta i { color: var(--red-light); animation: flame 1.5s infinite; }

/* ========== Back to top ========== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    background: var(--grad-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: var(--sh-red);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--t);
    z-index: 99;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); }

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

@media (max-width: 1024px) {
    .hero-inner,
    .about-grid,
    .games-inner,
    .contact-grid,
    .split-stats,
    .content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .content-grid.reverse .content-text { order: 0; }

    .services-grid,
    .testimonials-grid,
    .activity-grid,
    .vm-grid,
    .why-grid,
    .feature-strip,
    .game-cats,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid { grid-template-columns: repeat(4, 1fr); }
    .approach-grid { grid-template-columns: repeat(2, 1fr); }
    .awards-strip { grid-template-columns: repeat(3, 1fr); }
    .achievements-banner { grid-template-columns: 1fr 1fr; }
    .newsletter-strip { grid-template-columns: 1fr; }
    .hero-stats-strip { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .hero-stat-cell { border-right: none; padding: 0; }
    .expertise-grid { grid-template-columns: 1fr; gap: 18px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .cta-box { flex-direction: column; text-align: center; padding: 40px 28px; }

    .hero-visual { max-width: 480px; margin: 0 auto; height: 460px; }
    .about-visual { max-width: 500px; margin: 0 auto; height: 420px; }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 76px;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 320px;
        height: calc(100vh - 76px);
        background: var(--white);
        padding: 24px 20px;
        box-shadow: var(--sh-lg);
        transform: translateX(100%);
        transition: transform var(--t);
        gap: 6px;
        overflow-y: auto;
    }
    .nav.open { transform: translateX(0); }

    .nav-list { flex-direction: column; gap: 4px; align-items: stretch; }
    .nav-link { display: block; padding: 12px 16px; border-radius: var(--r-sm); }

    .has-dropdown { position: static; }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--slate-50);
        margin: 4px 0 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--t), padding var(--t);
        padding: 0 8px;
        min-width: auto;
    }
    .has-dropdown.open .dropdown-menu { max-height: 400px; padding: 8px; }
    .has-dropdown.open .dropdown-toggle::after { transform: rotate(180deg); }

    .nav-cta { margin-top: 12px; text-align: center; }

    .menu-toggle { display: flex; }

    .section { padding: 60px 0; }
    .section-compact { padding: 40px 0; }
    .section-header { margin-bottom: 36px; }

    .hero { padding: 110px 0 50px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { justify-content: center; }
    .hero-stats-strip { grid-template-columns: 1fr 1fr; padding: 14px; gap: 12px; }
    .hero-visual { height: 420px; }
    .hero-visual-circle { width: 240px; height: 240px; }
    .hero-visual-circle i { font-size: 80px; }

    .services-grid,
    .testimonials-grid,
    .activity-grid,
    .vm-grid,
    .why-grid,
    .feature-strip,
    .game-cats,
    .stats-grid,
    .approach-grid,
    .industries-grid,
    .achievements-banner,
    .inline-stats,
    .highlights-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .awards-strip { grid-template-columns: repeat(2, 1fr); }
    .award-item { border-right: none; }

    .achievement-stat {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        padding-left: 0;
        padding-top: 22px;
    }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .timeline::before { left: 16px; }
    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 16px;
        text-align: left !important;
        left: 0 !important;
    }
    .timeline-item::before { left: 8px !important; right: auto !important; }

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

    .newsletter-form { flex-direction: column; }

    .map-info-card {
        position: static;
        max-width: 100%;
        border-radius: 0 0 var(--r-lg) var(--r-lg);
        border-left: none;
        border-top: 4px solid var(--red);
    }

    .inline-cta { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .logo img { height: 32px; }
    .header-inner { height: 68px; }
    .nav { top: 68px; height: calc(100vh - 68px); }
    .hero { padding: 100px 0 40px; }
    .hero-stats-strip { grid-template-columns: 1fr 1fr; }
    .stat-card-number { font-size: 36px; }
    .stat-card-suffix { font-size: 26px; }
    .industries-grid { grid-template-columns: 1fr 1fr; }
}
