/* ============ Variables ============ */
:root {
    --primary: #00c96a;
    --primary-light: #00e87a;
    --primary-dark: #00a858;
    --accent: #00b8d4;
    --bg: #ffffff;
    --bg-dark: #f0f4f8;
    --bg-card: #f8fafc;
    --text: #334155;
    --text-light: #64748b;
    --text-white: #1e293b;
    --border: rgba(0, 0, 0, 0.08);
    --gradient: linear-gradient(135deg, #00c96a, #00b8d4);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

/* ============ Dark Theme ============ */
[data-theme="dark"] {
    --primary: #00ff88;
    --primary-light: #33ffaa;
    --primary-dark: #00cc6a;
    --accent: #00e5ff;
    --bg: #0a0e17;
    --bg-dark: #0d1117;
    --bg-card: #151b28;
    --text: #cbd5e1;
    --text-light: #94a3b8;
    --text-white: #f1f5f9;
    --border: rgba(255, 255, 255, 0.06);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .header.scrolled {
    background: rgba(10, 14, 23, 0.97);
    box-shadow: 0 4px 30px rgba(0, 255, 136, 0.08);
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

[data-theme="dark"] .header.scrolled .nav-links a { color: var(--text); }
[data-theme="dark"] .header.scrolled .nav-links a:hover { color: var(--primary); }

[data-theme="dark"] .logo-img {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 255, 136, 0.1);
}

[data-theme="dark"] .top-bar-social a { color: rgba(255, 255, 255, 0.6); }

[data-theme="dark"] .hero { background: linear-gradient(135deg, #0a0e17 0%, #151b28 50%, #0a0e17 100%); }

[data-theme="dark"] .about { background: #0d1117; }
[data-theme="dark"] .about-text h2 { color: #fff; }
[data-theme="dark"] .about-text p { color: rgba(255, 255, 255, 0.7); }
[data-theme="dark"] .stat-card { background: rgba(0, 255, 136, 0.04); border-color: rgba(0, 255, 136, 0.1); }
[data-theme="dark"] .stat-card:hover { background: rgba(0, 255, 136, 0.08); }
[data-theme="dark"] .stat-label { color: rgba(255, 255, 255, 0.6); }

[data-theme="dark"] .service-card,
[data-theme="dark"] .why-card,
[data-theme="dark"] .pricing-card,
[data-theme="dark"] .ref-logo-placeholder { border-color: rgba(255, 255, 255, 0.06); }

[data-theme="dark"] .references { background: #0d1117; }
[data-theme="dark"] .ref-carousel::before { background: linear-gradient(to right, #0d1117, transparent); }
[data-theme="dark"] .ref-carousel::after { background: linear-gradient(to left, #0d1117, transparent); }

[data-theme="dark"] .pricing { background: #0a0e17; }
[data-theme="dark"] .pricing-card { background: var(--bg-card); }
[data-theme="dark"] .pricing-features li { border-color: rgba(255, 255, 255, 0.05); }

[data-theme="dark"] .blog .section-header h2 { color: #fff; }
[data-theme="dark"] .blog .section-header p { color: rgba(255, 255, 255, 0.6); }
[data-theme="dark"] .blog-card { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.08); }
[data-theme="dark"] .blog-card:hover { background: rgba(0, 255, 136, 0.05); border-color: rgba(0, 255, 136, 0.3); box-shadow: none; }
[data-theme="dark"] .blog-card-badge { color: #fff; }
[data-theme="dark"] .blog-card h3 { color: #fff; }
[data-theme="dark"] .blog-card p { color: rgba(255, 255, 255, 0.6); }

[data-theme="dark"] .contact { background: linear-gradient(135deg, #0a0e17 0%, #151b28 100%); }
[data-theme="dark"] .contact .section-header h2 { color: #fff; }
[data-theme="dark"] .contact .section-header p { color: rgba(255, 255, 255, 0.7); }
[data-theme="dark"] .contact-form { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.1); }
[data-theme="dark"] .contact-form input,
[data-theme="dark"] .contact-form textarea { background: rgba(255, 255, 255, 0.07); border-color: rgba(255, 255, 255, 0.15); color: #fff; }
[data-theme="dark"] .contact-form input::placeholder,
[data-theme="dark"] .contact-form textarea::placeholder { color: rgba(255, 255, 255, 0.4); }
[data-theme="dark"] .contact-item h4 { color: rgba(255, 255, 255, 0.5); }
[data-theme="dark"] .contact-item p { color: #fff; }
[data-theme="dark"] .contact-map h3 { color: #fff; }
[data-theme="dark"] .map-container { border-color: rgba(255, 255, 255, 0.1); }

[data-theme="dark"] .footer { background: #0a0e17; }
[data-theme="dark"] .footer-content { border-color: rgba(255, 255, 255, 0.08); }

[data-theme="dark"] .cookie-banner { background: rgba(6, 10, 18, 0.97); }
[data-theme="dark"] .cookie-content p { color: rgba(255, 255, 255, 0.8); }

[data-theme="dark"] .nav-cta { background: rgba(255, 255, 255, 0.15) !important; color: #fff !important; border-color: rgba(255, 255, 255, 0.3); }
[data-theme="dark"] .nav-cta:hover { background: rgba(255, 255, 255, 0.25) !important; }
[data-theme="dark"] .header.scrolled .nav-cta { background: var(--gradient) !important; color: #0a0e17 !important; }

[data-theme="dark"] .btn-outline { color: #fff; border-color: rgba(255, 255, 255, 0.4); }
[data-theme="dark"] .btn-outline:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.7); }

[data-theme="dark"] .whatsapp-tooltip { border-color: rgba(0, 255, 136, 0.15); }

[data-theme="dark"] .back-to-top { background: var(--primary); }

/* ============ Page Transitions ============ */
@keyframes pageFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

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

body.page-entering {
    animation: pageFadeIn 0.45s ease forwards;
}

body.page-leaving {
    animation: pageFadeOut 0.3s ease forwards;
    pointer-events: none;
}

/* ============ Light Mode Improvements ============ */

/* Fix: btn-outline beyaz metin açık bölümlerde görünmez hata */
html:not([data-theme="dark"]) .blog .btn-outline,
html:not([data-theme="dark"]) .pricing .btn-outline {
    color: var(--primary-dark);
    border-color: var(--primary-dark);
    background: transparent;
}

html:not([data-theme="dark"]) .blog .btn-outline:hover,
html:not([data-theme="dark"]) .pricing .btn-outline:hover {
    background: rgba(0, 168, 88, 0.08);
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Light mode: hizmet kartları daha belirgin gölge */
html:not([data-theme="dark"]) .service-card {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.07);
}
html:not([data-theme="dark"]) .service-card:hover {
    box-shadow: 0 10px 36px rgba(0, 201, 106, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Light mode: neden biz kartları */
html:not([data-theme="dark"]) .why-card {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
html:not([data-theme="dark"]) .why-card:hover {
    box-shadow: 0 10px 36px rgba(0, 201, 106, 0.1);
}

/* Light mode: blog kartları */
html:not([data-theme="dark"]) .blog-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
html:not([data-theme="dark"]) .blog-card:hover {
    box-shadow: 0 10px 30px rgba(0, 201, 106, 0.1);
}

/* Light mode: fiyatlandırma kartları */
html:not([data-theme="dark"]) .pricing-card {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
html:not([data-theme="dark"]) .pricing-card:hover {
    box-shadow: 0 12px 40px rgba(0, 201, 106, 0.12);
}

/* Light mode: istatistik kartları hafif gradient */
html:not([data-theme="dark"]) .stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* Light mode: hero arka plan - açık bölümlerle kontrast için biraz daha sıcak */
html:not([data-theme="dark"]) .hero {
    background: linear-gradient(135deg, #0d1b2a 0%, #1a2d44 45%, #0d1b2a 100%);
}

/* Light mode: hizmetler bölümü çok hafif yeşil tonu */
html:not([data-theme="dark"]) .services {
    background: linear-gradient(180deg, #ffffff 0%, #f8fffe 100%);
}

/* Light mode: tema toggle butonu daha belirgin */
html:not([data-theme="dark"]) .theme-toggle {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    color: var(--text);
}

/* ============ Theme Toggle Button ============ */
.theme-toggle {
    position: fixed;
    bottom: 30px;
    left: 84px;
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: var(--transition);
    box-shadow: var(--shadow);
    color: var(--text);
}

.theme-toggle:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon { transition: var(--transition); }

.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }

[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

@media (max-width: 768px) {
    [data-theme="dark"] .nav-links { background: #0d1117; }
    [data-theme="dark"] .nav-links a { color: rgba(255, 255, 255, 0.85) !important; }
    [data-theme="dark"] .nav-links a:hover { background: rgba(255, 255, 255, 0.08); }
    .theme-toggle { left: 84px; bottom: 30px; }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============ Skip Link ============ */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: #0a0e17;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10001;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 10px;
}

/* ============ Loading Screen ============ */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #090d0d;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow: hidden;
}

/* Subtle scanlines */
.loading-screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 136, 0.015) 2px,
        rgba(0, 255, 136, 0.015) 4px
    );
    pointer-events: none;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.loader-logo-img {
    width: 88px;
    height: auto;
    margin-bottom: 32px;
    object-fit: contain;
    filter: drop-shadow(0 0 16px rgba(0, 255, 136, 0.4));
    opacity: 0;
    animation: logoFadeIn 0.6s ease forwards;
}

/* Terminal box */
.loader-terminal {
    border: 1px solid rgba(0, 255, 136, 0.2);
    padding: 24px 32px;
    min-width: 340px;
    background: rgba(0, 255, 136, 0.02);
    position: relative;
}

/* Faux top-bar label */
.loader-terminal::before {
    content: '● ● ●';
    position: absolute;
    top: -10px;
    left: 16px;
    font-size: 0.45rem;
    color: rgba(0, 255, 136, 0.35);
    letter-spacing: 5px;
    background: #090d0d;
    padding: 0 6px;
}

.loader-prompt {
    font-family: 'Courier New', monospace;
    font-size: 0.72rem;
    color: rgba(0, 255, 136, 0.4);
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.loader-prompt-sym {
    color: rgba(0, 255, 136, 0.65);
}

.loader-typing-row {
    display: flex;
    align-items: center;
}

.loader-title-prefix {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    color: rgba(0, 255, 136, 0.35);
    flex-shrink: 0;
    margin-right: 6px;
}

.loader-title {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 6px;
    color: #00ff88;
    text-shadow: 0 0 14px rgba(0, 255, 136, 0.7);
    white-space: nowrap;
}

.loader-cursor {
    display: inline-block;
    width: 11px;
    height: 20px;
    background: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.9);
    animation: cursorBlink 0.75s step-end infinite;
    flex-shrink: 0;
    margin-left: 3px;
    vertical-align: middle;
}

/* === Keyframes === */
@keyframes logoFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

@keyframes gridMove {
    0%   { background-position: 0 0, 0 0; }
    100% { background-position: 60px 60px, 60px 60px; }
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: 0.8; }
    50%       { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

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

@keyframes gradientShift {
    0%   { background-position: 0% 0; }
    100% { background-position: 200% 0; }
}

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

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

@keyframes logoPulse {
    0%, 100% {
        box-shadow: 0 0 40px rgba(0, 255, 136, 0.1), 0 0 80px rgba(0, 229, 255, 0.05), inset 0 0 30px rgba(0, 255, 136, 0.03);
        border-color: rgba(0, 255, 136, 0.15);
    }
    50% {
        box-shadow: 0 0 60px rgba(0, 255, 136, 0.2), 0 0 120px rgba(0, 229, 255, 0.1), inset 0 0 40px rgba(0, 255, 136, 0.05);
        border-color: rgba(0, 255, 136, 0.3);
    }
}

/* ============ Buttons ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient);
    color: #0a0e17;
    border-color: transparent;
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.3);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ============ WhatsApp Button ============ */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--bg-card);
    color: var(--text-white);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ============ Top Bar ============ */
.top-bar {
    background: var(--bg-dark);
    padding: 8px 0;
    font-size: 0.82rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 24px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-white);
    opacity: 0.8;
    transition: var(--transition);
}

.top-bar-item:hover {
    opacity: 1;
}

.top-bar-address {
    cursor: default;
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 16px;
}

.top-bar-social a {
    color: var(--text-light);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.top-bar-social a:hover {
    color: var(--primary);
    transform: scale(1.2);
}

.top-bar-right {
    display: flex;
    align-items: center;
}

.language-flags {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lang-flag {
    background: transparent;
    border: 2px solid transparent;
    border-radius: 4px;
    padding: 2px;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
}

.lang-flag:hover {
    opacity: 1;
    transform: scale(1.1);
}

.lang-flag.active {
    opacity: 1;
    border-color: var(--accent);
}

.lang-flag svg {
    display: block;
    border-radius: 2px;
}

/* ============ Navbar ============ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header.scrolled .navbar-content .logo-name,
.header.scrolled .navbar-content .logo-sub {
    color: var(--text-white);
}

.header.scrolled .nav-links a {
    color: var(--text);
}

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

.header.scrolled .nav-cta {
    background: var(--gradient);
    color: #0a0e17 !important;
    font-weight: 700;
}

.header.scrolled .hamburger span {
    background: var(--text-white);
}

.navbar {
    padding: 16px 0;
}

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

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

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
    object-fit: contain;
    background: rgba(0, 0, 0, 0.04);
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: #fff;
}

.nav-cta {
    background: var(--primary) !important;
    color: #ffffff !important;
    border: 1px solid var(--primary);
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: var(--transition);
}

/* ============ Hero Section ============ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 255, 136, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 18s linear infinite;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, rgba(0, 255, 136, 0.05) 40%, transparent 70%);
    animation: glowPulse 5s ease-in-out infinite;
}

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

.hero-content h1,
.hero-slide-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(120deg, #ffffff 0%, #ffffff 30%, #00ff88 50%, #00e5ff 65%, #ffffff 80%, #ffffff 100%);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: heroGradient 6s ease-in-out infinite;
}

.hero-content p,
.hero-slide-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.hero-stat-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Slider */
.hero-slider {
    min-height: 180px;
}

.hero-slide-title,
.hero-slide-subtitle {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-slide-title.fade-out,
.hero-slide-subtitle.fade-out {
    opacity: 0;
    transform: translateY(-15px);
}

.hero-slide-title.fade-in,
.hero-slide-subtitle.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.hero-stats .hero-stat-number,
.hero-stats .hero-stat-label {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-stats .hero-stat-number.fade-out,
.hero-stats .hero-stat-label.fade-out {
    opacity: 0;
    transform: translateY(10px);
}

.hero-stats .hero-stat-number.fade-in,
.hero-stats .hero-stat-label.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.hero-dots {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.hero-dot.active {
    background: var(--primary);
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.5);
    transform: scale(1.2);
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-server-svg {
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0 0 40px rgba(0, 255, 136, 0.15));
}

/* ============ Section Styles ============ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ff88, #00e5ff, #00ff88);
    background-size: 200% 100%;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
    transition: width 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    animation: gradientShift 2.5s linear infinite;
}

.section-header h2.line-animated::after {
    width: 80px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============ Services Section ============ */
.services {
    padding: 100px 0;
    background: var(--bg);
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.08);
    border-color: rgba(0, 255, 136, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 229, 255, 0.1));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.service-icon svg {
    width: 30px;
    height: 30px;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.service-link:hover {
    color: var(--accent);
    gap: 8px;
}

/* ============ About Section ============ */
.about {
    padding: 100px 0;
    background: #f0f4f8;
}

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

.about-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 24px;
}

.about-text p {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    background: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 201, 106, 0.12);
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============ Why Us Section ============ */
.why-us {
    padding: 100px 0;
    background: var(--bg);
}

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

.why-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.08);
    border-color: rgba(0, 255, 136, 0.2);
}

.why-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08), rgba(0, 229, 255, 0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
}

.why-icon svg {
    width: 30px;
    height: 30px;
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============ References Section ============ */
.references {
    padding: 80px 0;
    background: var(--bg);
    overflow: hidden;
}

.ref-carousel {
    overflow: hidden;
    position: relative;
}

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

.ref-carousel::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.ref-carousel::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

.ref-track {
    display: flex;
    gap: 40px;
    animation: scrollRefs 25s linear infinite;
    width: max-content;
}

.ref-item {
    flex-shrink: 0;
}

.ref-logo-placeholder {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    padding: 20px 40px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-light);
    white-space: nowrap;
    transition: var(--transition);
}

.ref-item:hover .ref-logo-placeholder {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.1);
}

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

/* ============ Pricing Section ============ */
.pricing {
    padding: 100px 0;
    background: var(--bg-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.08);
    border-color: rgba(0, 255, 136, 0.15);
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.12);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #0a0e17;
    padding: 6px 24px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.pricing-price {
    margin-bottom: 30px;
}

.price-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    padding: 10px 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: '\\2713';
    color: #22c55e;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.pricing-features li.disabled {
    color: var(--text-light);
    opacity: 0.5;
}

.pricing-features li.disabled::before {
    content: '\\2717';
    color: #ef4444;
}

/* ============ Cookie Banner ============ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(6, 10, 18, 0.97);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 10000;
    border-top: 1px solid rgba(0, 255, 136, 0.15);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    line-height: 1.6;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* ============ Count-up animation ============ */
.count-up {
    display: inline-block;
}

/* ============ Blog Section ============ */
.blog {
    padding: 100px 0;
    background: var(--bg-dark);
}

.blog .section-header h2 {
    color: var(--text-white);
}

.blog .section-header p {
    color: var(--text-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius);
    padding: 30px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 201, 106, 0.3);
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 201, 106, 0.1);
}

.blog-card-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #ffffff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 16px;
    align-self: flex-start;
}

.blog-card h3 {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.8;
    flex: 1;
    margin-bottom: 20px;
}

.blog-card-footer {
    margin-top: auto;
}

.blog-card-footer .btn-sm {
    padding: 8px 20px;
    font-size: 0.82rem;
}

/* ============ Map Direction Button ============ */
.map-btn-wrapper {
    text-align: center;
    margin-top: 20px;
}

.map-direction-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ============ Contact Section ============ */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.contact .section-header h2 {
    color: #fff;
}

.contact .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-map {
    grid-column: 1 / -1;
    margin-top: 20px;
}

.contact-map h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container iframe {
    display: block;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
}

.contact-item h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-item p {
    color: #fff;
    font-size: 1rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 36px;
}

.form-group {
    margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    padding: 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    text-align: center;
    font-weight: 500;
}

.form-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    padding: 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    text-align: center;
    font-weight: 500;
}

/* ============ Footer ============ */
.footer {
    background: #0f172a;
    padding: 60px 0 0;
    color: #e2e8f0;
}

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

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

.footer-brand .logo-name {
    color: #fff;
}

.footer-brand .logo-sub {
    color: rgba(255, 255, 255, 0.5);
}

.footer-brand > p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #0a0e17;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.footer-links-group h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.82rem;
}

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

.footer-links-group a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links-group a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-contact-list svg {
    opacity: 0.5;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
}

/* ============ Back to Top Button ============ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 201, 106, 0.3);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 201, 106, 0.4);
    background: var(--primary-dark);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* ============ Page Transition (legacy class, kept for compatibility) ============ */
.page-transition {
    animation: pageEnterAnim 0.5s ease-out;
}

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

/* ============ Scroll Progress Bar ============ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #00ff88, #00e5ff, #00ff88);
    background-size: 200% 100%;
    z-index: 99999;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
    animation: gradientShift 2s linear infinite;
    transition: width 0.1s linear;
}

/* ============ Animations ============ */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* ============ Responsive ============ */
@media (max-width: 1024px) {
    .top-bar-address {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1,
    .hero-slide-title {
        font-size: 2.4rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

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

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar-left {
        display: none;
    }

    .top-bar-content {
        justify-content: flex-end;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 4px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        z-index: 998;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--text) !important;
        font-size: 1.1rem;
        padding: 14px 20px;
        width: 100%;
        border-radius: var(--radius-sm);
    }

    .nav-links a:hover {
        background: rgba(0, 0, 0, 0.04);
    }

    .hamburger {
        display: flex;
        z-index: 999;
    }

    .hero {
        min-height: auto;
        padding: 140px 0 80px;
    }

    .hero-content h1,
    .hero-slide-title {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-slider {
        min-height: 140px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-dots {
        justify-content: center;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .services-grid,
    .blog-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .loader-title {
        font-size: 1.2rem;
        letter-spacing: 4px;
    }

    .loader-title-prefix {
        font-size: 1.2rem;
    }

    .loader-logo-img {
        width: 72px;
        margin-bottom: 24px;
    }

    .loader-terminal {
        min-width: 280px;
        padding: 20px 24px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 24px;
    }

    .hero-stat-number {
        font-size: 1.6rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .loader-title {
        font-size: 1rem;
        letter-spacing: 3px;
    }

    .loader-title-prefix {
        font-size: 1rem;
    }

    .loader-logo-img {
        width: 64px;
        margin-bottom: 20px;
    }

    .loader-terminal {
        min-width: 240px;
        padding: 16px 20px;
    }
}

/* ============ Neden Biz - Görsel İyileştirme ============ */
.why-card {
    position: relative;
    overflow: hidden;
}

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

.why-card:hover::before {
    transform: scaleX(1);
}

.why-stat {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -1px;
}

[data-theme="dark"] .why-stat {
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.3));
}

/* ============ Form Geliştirmeleri ============ */
.form-group {
    position: relative;
}

.field-feedback {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    pointer-events: none;
    transition: all 0.2s ease;
    opacity: 0;
}

.field-feedback.visible {
    opacity: 1;
}

.field-feedback.valid { color: #00c96a; }
.field-feedback.invalid { color: #ff4d6d; }

.form-group input.is-valid,
.form-group textarea.is-valid {
    border-color: rgba(0, 201, 106, 0.5) !important;
    padding-right: 40px;
}

.form-group input.is-invalid,
.form-group textarea.is-invalid {
    border-color: rgba(255, 77, 109, 0.5) !important;
    padding-right: 40px;
}

[data-theme="dark"] .form-group input.is-valid,
[data-theme="dark"] .form-group textarea.is-valid {
    border-color: rgba(0, 255, 136, 0.4) !important;
}

[data-theme="dark"] .form-group input.is-invalid,
[data-theme="dark"] .form-group textarea.is-invalid {
    border-color: rgba(255, 77, 109, 0.5) !important;
}

.char-counter {
    text-align: right;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 5px;
    transition: color 0.2s;
}

.char-counter.warn { color: #f59e0b; }
.char-counter.limit { color: #ff4d6d; font-weight: 600; }

/* Form başarı animasyonlu mesaj */
.form-success-animated {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(0, 201, 106, 0.1);
    border: 1px solid rgba(0, 201, 106, 0.35);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-bottom: 16px;
    animation: successSlideIn 0.4s ease forwards;
}

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

.success-icon-circle {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #00c96a, #00b8d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.success-check {
    stroke-dasharray: 28;
    stroke-dashoffset: 28;
    animation: drawCheck 0.5s ease 0.15s forwards;
}

@keyframes drawCheck {
    to { stroke-dashoffset: 0; }
}

.success-text strong {
    display: block;
    color: #00c96a;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.success-text span {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ============ Blog Share Butonları ============ */
.share-section {
    padding: 32px 0 0;
    margin-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

[data-theme="dark"] .share-section {
    border-top-color: rgba(255, 255, 255, 0.07);
}

.share-section p {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px !important;
}

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.share-btn:hover { transform: translateY(-2px); }

.share-btn-wa  { background: #25d366; color: #fff; }
.share-btn-wa:hover  { background: #1fbb57; box-shadow: 0 4px 14px rgba(37,211,102,0.35); }

.share-btn-x   { background: #000; color: #fff; }
.share-btn-x:hover   { background: #222; box-shadow: 0 4px 14px rgba(0,0,0,0.25); }

.share-btn-li  { background: #0077b5; color: #fff; }
.share-btn-li:hover  { background: #006090; box-shadow: 0 4px 14px rgba(0,119,181,0.35); }

.share-btn-copy { background: var(--bg-card); color: var(--text); border: 1px solid var(--border); }
.share-btn-copy:hover { border-color: var(--primary); color: var(--primary); }

[data-theme="dark"] .share-btn-x { background: #1a1a1a; }

/* Blog okuma süresi badge */
.reading-time {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    color: var(--text-light);
    background: rgba(0,201,106,0.08);
    border: 1px solid rgba(0,201,106,0.15);
    padding: 3px 10px;
    border-radius: 20px;
    margin-left: 8px;
}
