/* ============================================
   NONSLIP DIGITAL — Premium Agency Styles
   Design: Modern Clean Light Theme + Next-Gen Micro-Animations
   ============================================ */

/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===== CSS CUSTOM PROPERTIES (LIGHT THEME) ===== */
:root {
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-tertiary: #F1F5F9;
    --accent: #FF6A00;
    --accent-glow: #FF8C33;
    --accent-dark: #E05D00;
    --accent-light: rgba(255, 106, 0, 0.08);
    --accent-gradient: linear-gradient(135deg, #FF6A00 0%, #FF8C33 50%, #FF2A00 100%);
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    --glass: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(15, 23, 42, 0.08);
    --glass-hover: rgba(15, 23, 42, 0.04);
    --card-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.05);
    --card-shadow-hover: 0 25px 50px -12px rgba(255, 106, 0, 0.18);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 50px;
    --transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-glow: 0 12px 35px rgba(255, 106, 0, 0.28);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

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

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

ul, ol {
    list-style: none;
}

button, input, textarea {
    font-family: inherit;
    border: none;
    outline: none;
    background: none;
}

::selection {
    background-color: rgba(255, 106, 0, 0.2);
    color: var(--accent);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.section {
    padding: 8rem 0;
    position: relative;
}

.section-secondary {
    background-color: var(--bg-secondary);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(2.3rem, 4.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 640px;
    line-height: 1.75;
    margin-bottom: 3.5rem;
}

.highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.1rem 2.8rem;
    background: var(--accent);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.98rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid var(--accent);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 106, 0, 0.3);
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #FF8C33 0%, #E05D00 100%);
    opacity: 0;
    transition: opacity var(--transition);
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-glow);
    color: #FFFFFF;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-sm {
    padding: 0.7rem 1.8rem;
    font-size: 0.9rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.1rem 2.8rem;
    background: #FFFFFF;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.98rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid var(--glass-border);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.08);
}

/* ===== LOADING SCREEN ===== */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    text-align: center;
}

.loader-logo {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.loader-bar {
    width: 180px;
    height: 4px;
    background: var(--bg-tertiary);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-bar-fill {
    height: 100%;
    width: 0;
    background: var(--accent-gradient);
    border-radius: 10px;
    animation: loader-fill 0.8s ease-out forwards;
}

@keyframes loader-fill {
    to { width: 100%; }
}

/* ===== CURSOR GLOW ===== */
.cursor-glow {
    position: fixed;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 997;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}

.cursor-glow.visible {
    opacity: 1;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition);
    padding: 0.85rem 0;
    background: rgba(15, 20, 28, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar.scrolled {
    background: rgba(11, 15, 22, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    padding: 0.5rem 0;
}

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

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

.nav-logo img {
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform var(--transition);
}

.nav-logo:hover img {
    transform: scale(1.04);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: #D1D5DB;
    position: relative;
    padding: 0.3rem 0;
    transition: color var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: #FFFFFF;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #FFFFFF;
    transition: all var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(15, 20, 28, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding-top: 80px;
    padding-bottom: 2rem;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-links {
    text-align: center;
}

.mobile-menu-links li {
    margin-bottom: 2rem;
}

.mobile-link {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    transition: color var(--transition);
}

.mobile-link:hover,
.mobile-link.active {
    color: var(--accent);
}

/* ===== NEW ADVANCED HERO SECTION ===== */
.hero {
    padding-top: 150px;
    padding-bottom: 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 85% 15%, rgba(255, 106, 0, 0.08) 0%, transparent 45%),
                radial-gradient(circle at 10% 85%, rgba(255, 106, 0, 0.05) 0%, transparent 40%),
                linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

#particles-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.80;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.12) 0%, transparent 70%);
    top: -15%;
    right: -10%;
    z-index: 0;
    animation: floatGlow 10s ease-in-out infinite;
}

.hero-glow-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.08) 0%, transparent 70%);
    bottom: -10%;
    left: -5%;
    top: auto;
    right: auto;
    animation-delay: -5s;
}

@keyframes floatGlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.06); }
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
}

.hero-wrapper > * {
    min-width: 0;
    max-width: 100%;
}

.hero-content {
    max-width: 720px;
    width: 100%;
    margin-left: clamp(1.25rem, 5vw, 4.5rem);
    padding-right: 0.5rem;
    box-sizing: border-box;
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.3rem;
    background: #FFFFFF;
    border: 1px solid rgba(255, 106, 0, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.8rem;
    box-shadow: 0 4px 20px rgba(255, 106, 0, 0.1);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.6); opacity: 0.5; }
}

.hero-title {
    font-size: clamp(2.8rem, 5.2vw, 4.6rem);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    letter-spacing: -0.035em;
    color: var(--text-primary);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.8rem;
}

.hero-typed {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    min-height: 2.2em;
    font-weight: 600;
}

.typed-prefix {
    color: var(--text-muted);
}

.typed-text {
    color: var(--accent);
    font-weight: 800;
    display: inline-block;
    min-width: 1ch;
    min-height: 1.2em;
    vertical-align: bottom;
}

.typed-cursor {
    color: var(--accent);
    animation: blinkCursor 0.8s step-end infinite;
    font-weight: 300;
}

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

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    align-items: center;
}

/* HERO VISUAL SHOWCASE (RIGHT SIDE) */
.hero-visual-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1.5rem;
}

.hero-main-card {
    background: linear-gradient(145deg, #FFFFFF 0%, #FFFDFB 100%);
    border: 2.5px solid var(--accent);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: 0 25px 65px -10px rgba(255, 106, 0, 0.28), 0 0 35px rgba(255, 106, 0, 0.18);
    position: relative;
    width: 100%;
    max-width: 460px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
    z-index: 2;
}

.hero-main-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 85px -10px rgba(255, 106, 0, 0.38), 0 0 50px rgba(255, 106, 0, 0.3);
}

.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 106, 0, 0.15);
}

.hero-card-tag {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-card-dots {
    display: flex;
    gap: 6px;
}

.hero-card-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #E2E8F0;
}

.hero-card-dots span:nth-child(1) { background: #FF5F56; }
.hero-card-dots span:nth-child(2) { background: #FFBD2E; }
.hero-card-dots span:nth-child(3) { background: #27C93F; }

.hero-card-body h3 {
    font-size: 1.45rem;
    font-weight: 900;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.hero-card-body p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hero-card-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.metric-box {
    background: #FFF8F3;
    border: 1px solid rgba(255, 106, 0, 0.2);
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.metric-box:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(255, 106, 0, 0.12);
}

.metric-val {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--accent);
    display: block;
}

.metric-lbl {
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 700;
    text-transform: uppercase;
}

.metric-box-wide {
    grid-column: span 2;
}

.metric-box-wide .metric-val {
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    line-height: 1.3;
}

.metric-box-wide .metric-lbl {
    margin-top: 0.2rem;
    display: block;
}

/* Floating Badge 1 (Top Left) */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 106, 0, 0.2);
    border-radius: var(--radius-lg);
    padding: 0.85rem 1.25rem;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    display: flex;
    align-items: center;
    gap: 0.85rem;
    z-index: 10;
    animation: floatBadge 6s ease-in-out infinite;
}

.floating-badge-1 {
    top: 0px;
    left: -15px;
}

.floating-badge-2 {
    bottom: 0px;
    right: -15px;
    animation-delay: -3s;
}

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

.badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 900;
}

.badge-text-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.badge-text-sub {
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* ===== PAGE HEADER FOR SUBPAGES ===== */
.page-header {
    padding-top: 150px;
    padding-bottom: 60px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
}

.page-header-title {
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.page-breadcrumb a {
    color: var(--text-muted);
}

.page-breadcrumb a:hover {
    color: var(--accent);
}

/* ===== CLIENTS MARQUEE ===== */
.clients-section {
    background: var(--bg-primary);
    padding: 4rem 0;
    overflow: hidden;
    border-bottom: 1px solid var(--glass-border);
}

.clients-heading {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2.5rem;
}

.marquee-wrapper {
    overflow: hidden;
    position: relative;
    padding: 0.5rem 0;
}

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

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary), transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary), transparent);
}

.marquee-track {
    display: flex;
    gap: 4.5rem;
    animation: marqueeScroll 35s linear infinite;
    width: max-content;
}

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

.client-logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: #64748B;
    white-space: nowrap;
    opacity: 0.65;
    transition: all var(--transition);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: default;
    -webkit-user-select: none;
    user-select: none;
}

.client-logo:hover {
    opacity: 1;
    color: var(--accent);
    transform: scale(1.08);
}

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

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.6rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--card-shadow);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 106, 0, 0.3);
    box-shadow: var(--card-shadow-hover);
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.6rem;
    color: var(--accent);
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent);
    color: #FFFFFF;
    transform: scale(1.1) rotate(-3deg);
}

.service-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.7;
}

.service-arrow {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all var(--transition);
    color: var(--text-muted);
}

.service-card:hover .service-arrow {
    background: var(--accent);
    color: #FFFFFF;
    transform: translateX(3px);
}

/* ===== NEW BENTO GRID FOR REFERANSLARIMIZ ===== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Featured Bento Card (Tommy Concept) */
.bento-card-featured {
    grid-column: span 2;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    border-radius: var(--radius-xl);
    padding: 3.2rem;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
    border: 2px solid var(--accent);
}

.bento-card-featured::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.bento-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.1rem;
    background: var(--accent);
    color: #FFFFFF;
    font-size: 0.82rem;
    font-weight: 800;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.bento-title-large {
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.bento-desc {
    font-size: 1.08rem;
    color: #94A3B8;
    max-width: 520px;
    line-height: 1.7;
}

/* Standard Bento Card */
.bento-card {
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 2.2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.bento-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 106, 0, 0.3);
    box-shadow: var(--card-shadow-hover);
}

.bento-card-logo-box {
    height: 110px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.bento-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.bento-card-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== NEW INTERACTIVE STATS / METRICS SECTION ===== */
.stats-banner {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    border-radius: var(--radius-xl);
    padding: 4rem 3rem;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.2);
}

.stats-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.stats-banner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.banner-stat-item {
    text-align: center;
    position: relative;
}

.banner-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.banner-stat-num {
    font-size: clamp(2.8rem, 4vw, 3.8rem);
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.6rem;
}

.banner-stat-lbl {
    font-size: 0.95rem;
    color: #94A3B8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2.4rem 1.2rem;
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    box-shadow: var(--card-shadow);
}

.stat-item:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.stat-number {
    font-size: clamp(2.5rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--accent);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.88rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.about-quote {
    border-left: 4px solid var(--accent);
    padding-left: 1.8rem;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-top: 2.5rem;
    line-height: 1.7;
    font-weight: 600;
}

/* ===== WHY US SECTION ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
}

.why-card {
    text-align: center;
    padding: 3.2rem 2rem;
    border-radius: var(--radius-lg);
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: var(--accent);
    opacity: 0;
    transition: opacity var(--transition);
}

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

.why-card:hover::before {
    opacity: 1;
}

.why-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 106, 0, 0.15);
    line-height: 1;
    margin-bottom: 1rem;
}

.why-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.why-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ===== PROCESS SECTION ===== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: #E2E8F0;
}

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

.step-number {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--accent);
    transition: all var(--transition);
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(255, 106, 0, 0.18);
}

.process-step:hover .step-number {
    background: var(--accent);
    color: #FFFFFF;
    box-shadow: 0 8px 30px rgba(255, 106, 0, 0.4);
    transform: scale(1.12);
}

.step-title {
    font-size: 1.18rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.step-desc {
    color: var(--text-secondary);
    font-size: 0.94rem;
    line-height: 1.65;
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    color: var(--text-primary);
}

.contact-text {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.75;
    font-size: 1.05rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.contact-item-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 16px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.contact-item-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-item-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-item-value {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.05rem;
    transition: color var(--transition);
}

a.contact-item-value:hover {
    color: var(--accent);
}

.contact-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 2.5rem;
}

.social-link {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.social-link:hover {
    background: var(--accent);
    color: #FFFFFF;
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* Contact Form */
.contact-form-wrapper {
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--card-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    background: #FFFFFF;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.12);
}

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

.form-submit {
    width: 100%;
    font-size: 1.05rem;
    padding: 1.1rem;
    justify-content: center;
}

/* Form Feedback */
.form-feedback {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-size: 0.92rem;
    font-weight: 600;
    transition: opacity 0.4s ease;
}

.form-feedback.success {
    background: rgba(34, 197, 94, 0.1);
    color: #16A34A;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-feedback.error {
    background: rgba(239, 68, 68, 0.1);
    color: #DC2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ===== NEW GIANT COOL CTA BANNER SECTION ===== */
.cta-banner-section {
    padding: 3rem 0;
    position: relative;
    z-index: 5;
}

.cta-banner-card {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    border-radius: var(--radius-xl);
    padding: 4.5rem 3.5rem;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.25);
    border: 2px solid rgba(255, 106, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-banner-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner-card::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.4rem;
    background: var(--accent);
    color: #FFFFFF;
    font-size: 0.85rem;
    font-weight: 900;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(255, 106, 0, 0.4);
}

.cta-title {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: 1.2rem;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    max-width: 800px;
}

.cta-desc {
    font-size: 1.15rem;
    color: #94A3B8;
    max-width: 660px;
    line-height: 1.75;
    margin-bottom: 2.8rem;
}

.btn-cta-giant {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.4rem 3.5rem;
    background: var(--accent-gradient);
    color: #FFFFFF;
    font-weight: 900;
    font-size: 1.25rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(255, 106, 0, 0.45);
    position: relative;
    overflow: hidden;
    animation: pulseCta 3s ease-in-out infinite;
}

.btn-cta-giant:hover {
    transform: translateY(-5px) scale(1.04);
    box-shadow: 0 25px 60px rgba(255, 106, 0, 0.6);
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.btn-cta-giant svg {
    transition: transform 0.3s ease;
}

.btn-cta-giant:hover svg {
    transform: translateX(6px) scale(1.1);
}

@keyframes pulseCta {
    0%, 100% { box-shadow: 0 15px 40px rgba(255, 106, 0, 0.45); }
    50% { box-shadow: 0 20px 55px rgba(255, 106, 0, 0.7), 0 0 0 12px rgba(255, 106, 0, 0.15); }
}

/* ===== FOOTER ===== */
.footer {
    background: #0A0A0A;
    color: #FFFFFF;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}

.footer-logo img {
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    margin-bottom: 1.2rem;
}

.footer-slogan {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.footer-desc {
    color: #9CA3AF;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 340px;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links a,
.footer-links span {
    color: #9CA3AF;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(4px);
    display: inline-block;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    color: #6B7280;
    font-size: 0.9rem;
}

.footer-bottom-socials {
    display: flex;
    gap: 1rem;
}

.footer-bottom-socials a {
    color: #9CA3AF;
    transition: all var(--transition);
}

.footer-bottom-socials a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: all var(--transition);
    animation: pulseWhatsapp 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
}

@keyframes pulseWhatsapp {
    0%, 100% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.12); }
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1024px) {
    .section {
        padding: 5.5rem 0;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        width: 100%;
        max-width: 100%;
    }

    .hero-visual-showcase {
        margin-top: 1.5rem;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .hero-main-card {
        max-width: 100%;
        width: 100%;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

    .bento-card-featured {
        grid-column: span 1;
        padding: 2.2rem;
    }

    .stats-banner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .banner-stat-item:not(:last-child)::after {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }

    .process-grid::before {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 768px) {
    html,
    body {
        overflow-x: hidden;
        max-width: 100%;
        width: 100%;
    }

    .section {
        padding: 3.5rem 0;
    }

    .container {
        padding: 0 1.1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .section-title {
        font-size: clamp(1.7rem, 7vw, 2.35rem);
        word-wrap: break-word;
        overflow-wrap: anywhere;
    }

    .section-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .section-label {
        letter-spacing: 1.5px;
        font-size: 0.78rem;
    }

    /* ---- HERO (giriş) — tek temiz ilk ekran ---- */
    .hero {
        padding-top: 88px;
        padding-bottom: 2.25rem;
        min-height: auto;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        align-items: flex-start;
    }

    .hero .container,
    .hero-wrapper {
        display: flex;
        flex-direction: column;
        gap: 1.75rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
        align-items: center;
    }

    .hero-content,
    .hero-visual-showcase,
    .hero-main-card,
    .hero-buttons,
    .hero-title,
    .hero-description,
    .hero-typed,
    .hero-badge-pill {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    /* İlk viewport: sadece metin + CTA (kart kesik görünmesin) */
    .hero-content {
        padding: 0.35rem 0 1.25rem;
        margin: 0;
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: calc(100dvh - 88px - 1.5rem);
        min-height: calc(100svh - 88px - 1.5rem);
    }

    .hero-badge-pill {
        font-size: 0.62rem;
        letter-spacing: 0.55px;
        padding: 0.38rem 0.7rem;
        white-space: normal;
        line-height: 1.35;
        display: inline-flex;
        flex-wrap: wrap;
        max-width: 100%;
        justify-content: center;
        margin: 0 auto 0.85rem;
        text-align: center !important;
    }

    /* Override stale Düzentor inline font-size (e.g. 70px+) on small screens */
    .hero .dz-has-font,
    .hero [style*="font-size"] {
        font-size: inherit !important;
    }

    .hero-title {
        font-size: clamp(1.55rem, 6.8vw, 2.05rem) !important;
        line-height: 1.18 !important;
        margin: 0 auto 0.75rem !important;
        overflow-wrap: anywhere;
        word-break: break-word;
        text-align: center !important;
        max-width: 20ch;
    }

    .hero-title .highlight,
    .hero-title span,
    .hero-title .dz-has-font {
        font-size: inherit !important;
        display: inline !important;
        max-width: 100%;
    }

    .hero-description {
        font-size: 0.92rem;
        line-height: 1.55;
        margin: 0 auto 0.85rem !important;
        overflow-wrap: anywhere;
        text-align: center !important;
        max-width: 32rem;
        padding: 0 0.15rem;
    }

    .hero-typed {
        font-size: 0.86rem;
        margin: 0 auto 1.15rem !important;
        min-height: 1.6em;
        overflow-wrap: anywhere;
        text-align: center !important;
        width: 100%;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.65rem;
        width: 100%;
        max-width: 17.5rem;
        margin: 0 auto;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        text-align: center;
        padding: 0.82rem 1rem;
        font-size: 0.88rem;
        white-space: normal;
        flex-wrap: wrap;
        box-sizing: border-box;
        border-radius: 12px;
    }

    .hero-buttons .btn-primary svg {
        flex-shrink: 0;
        width: 18px;
        height: 18px;
    }

    /* Kart ilk ekranın altında tam görünsün — yarı kesik peek yok */
    .hero-visual-showcase {
        margin: 0;
        padding: 0 0 0.5rem;
        display: block;
        width: 100%;
    }

    .hero-main-card {
        padding: 1.1rem 0.95rem;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        border-width: 2px;
        border-radius: 18px;
        box-sizing: border-box;
    }

    .hero-card-header {
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }

    .hero-card-tag {
        font-size: 0.68rem;
        letter-spacing: 0.6px;
        max-width: calc(100% - 48px);
        line-height: 1.3;
    }

    .hero-card-body h3 {
        font-size: 1.05rem;
        line-height: 1.35;
        overflow-wrap: anywhere;
    }

    .hero-card-metrics {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.65rem;
        margin-top: 1rem !important;
        width: 100%;
    }

    .metric-box {
        padding: 0.75rem 0.5rem;
        min-width: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .metric-val {
        font-size: 1.15rem;
        overflow-wrap: anywhere;
    }

    .metric-lbl {
        font-size: 0.65rem;
        letter-spacing: 0.3px;
    }

    .metric-box-wide {
        grid-column: 1 / -1 !important;
        width: 100%;
    }

    .metric-box-wide .metric-val {
        font-size: 0.95rem !important;
        line-height: 1.35;
    }

    .floating-badge,
    .floating-badge-1,
    .floating-badge-2 {
        display: none !important;
    }

    .hero-glow,
    .hero-glow-2 {
        width: 280px;
        height: 280px;
        max-width: 70vw;
        max-height: 70vw;
        animation: none;
    }

    .hero-glow { right: -20%; top: -10%; }
    .hero-glow-2 { left: -25%; bottom: -15%; }

    /* Düzentor inline font/margin overrides must not break mobile */
    .hero .dz-has-font {
        font-size: clamp(1rem, 6.5vw, 1.5rem) !important;
    }
    .hero .hero-title .dz-has-font {
        font-size: inherit !important;
    }
    .hero .dz-has-margin {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .stats-banner {
        padding: 2rem 1.25rem;
        border-radius: var(--radius-lg);
    }

    .stats-banner-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 1rem;
    }

    .banner-stat-num {
        font-size: clamp(1.9rem, 8vw, 2.5rem);
    }

    .banner-stat-lbl {
        font-size: 0.72rem;
        letter-spacing: 0.5px;
    }

    .services-grid,
    .why-grid,
    .process-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .why-card {
        padding: 1.75rem 1.35rem;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .cursor-glow {
        display: none !important;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .marquee-wrapper::before,
    .marquee-wrapper::after {
        width: 48px;
    }

    .marquee-track {
        gap: 2.5rem;
    }

    .client-logo {
        font-size: 1rem;
    }

    .about-quote {
        padding-left: 1.1rem;
        font-size: 1.05rem;
    }

    .partners-section-full {
        padding: 2.5rem 0 1.5rem;
        overflow: hidden;
    }

    .whatsapp-float {
        bottom: 1.25rem;
        right: 1rem;
        width: 52px;
        height: 52px;
        z-index: 900;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.95rem;
    }

    .stats-banner-grid {
        grid-template-columns: 1fr;
        gap: 1.35rem;
    }

    .hero-card-metrics {
        grid-template-columns: 1fr;
    }

    .metric-box-wide {
        grid-column: 1 / -1 !important;
    }

    .hero-badge-pill {
        font-size: 0.6rem;
    }

    .hero-title {
        font-size: clamp(1.55rem, 7.5vw, 1.95rem) !important;
    }

    .btn-primary,
    .btn-secondary {
        padding-left: 1.15rem;
        padding-right: 1.15rem;
    }
}

/* ===== DÜZENTOR VIEWPORT SIMULATION ===== */
/* Media queries do not react to a narrowed body width, so Düzentor's
   device buttons need explicit class-based responsive rules. */
body.vp-tablet .section {
    padding: 5.5rem 0;
}

body.vp-tablet .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    width: 100%;
    max-width: 100%;
}

body.vp-tablet .hero-visual-showcase {
    margin-top: 1.5rem;
    width: 100%;
    max-width: 100%;
    padding: 0;
}

body.vp-tablet .hero-main-card {
    max-width: 100%;
    width: 100%;
}

body.vp-tablet .nav-links,
body.vp-tablet .nav-cta {
    display: none;
}

body.vp-tablet .hamburger {
    display: flex;
}

body.vp-tablet .services-grid {
    grid-template-columns: repeat(2, 1fr);
}

body.vp-tablet .bento-grid,
body.vp-tablet .about-grid,
body.vp-tablet .contact-grid {
    grid-template-columns: 1fr;
}

body.vp-tablet .stats-banner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

body.vp-tablet .banner-stat-item:not(:last-child)::after,
body.vp-tablet .process-grid::before {
    display: none;
}

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

body.vp-tablet .process-grid {
    gap: 3rem 2rem;
}

body.vp-tablet .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

body.vp-tablet .footer-brand {
    grid-column: span 2;
}

body.vp-mobile,
body.vp-mobile .hero,
body.vp-mobile .section,
body.vp-mobile .container {
    overflow-x: hidden;
}

body.vp-mobile .section {
    padding: 3.5rem 0;
}

body.vp-mobile .container {
    padding: 0 1.1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

body.vp-mobile .section-title {
    font-size: clamp(1.7rem, 7vw, 2.35rem);
    word-wrap: break-word;
    overflow-wrap: anywhere;
}

body.vp-mobile .section-subtitle {
    font-size: 1rem;
    max-width: 100%;
}

body.vp-mobile .section-label {
    letter-spacing: 1.5px;
    font-size: 0.78rem;
}

body.vp-mobile .hero {
    padding-top: 88px;
    padding-bottom: 2.25rem;
    min-height: auto;
    width: 100%;
    max-width: 100%;
    align-items: flex-start;
}

body.vp-mobile .hero .container,
body.vp-mobile .hero-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    align-items: center;
}

body.vp-mobile .hero-content,
body.vp-mobile .hero-visual-showcase,
body.vp-mobile .hero-main-card,
body.vp-mobile .hero-buttons,
body.vp-mobile .hero-title,
body.vp-mobile .hero-description,
body.vp-mobile .hero-typed,
body.vp-mobile .hero-badge-pill {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

body.vp-mobile .hero-content {
    padding: 0.35rem 0 1.25rem;
    margin: 0;
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100dvh - 88px - 1.5rem);
    min-height: calc(100svh - 88px - 1.5rem);
}

body.vp-mobile .hero-badge-pill {
    font-size: 0.62rem;
    letter-spacing: 0.55px;
    padding: 0.38rem 0.7rem;
    white-space: normal;
    line-height: 1.35;
    display: inline-flex;
    flex-wrap: wrap;
    max-width: 100%;
    justify-content: center;
    margin: 0 auto 0.85rem;
    text-align: center !important;
}

body.vp-mobile .hero-title {
    font-size: clamp(1.55rem, 6.8vw, 2.05rem) !important;
    line-height: 1.18 !important;
    margin: 0 auto 0.75rem !important;
    overflow-wrap: anywhere;
    word-break: break-word;
    text-align: center !important;
    max-width: 20ch;
}

body.vp-mobile .hero-title .highlight,
body.vp-mobile .hero-title span,
body.vp-mobile .hero-title .dz-has-font {
    font-size: inherit !important;
    display: inline !important;
    max-width: 100%;
}

body.vp-mobile .hero-description {
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0 auto 0.85rem !important;
    overflow-wrap: anywhere;
    text-align: center !important;
    max-width: 32rem;
}

body.vp-mobile .hero-typed {
    font-size: 0.86rem;
    margin: 0 auto 1.15rem !important;
    min-height: 1.6em;
    overflow-wrap: anywhere;
    text-align: center !important;
}

body.vp-mobile .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    max-width: 17.5rem;
    margin: 0 auto;
}

body.vp-mobile .hero-buttons .btn-primary,
body.vp-mobile .hero-buttons .btn-secondary {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    text-align: center;
    padding: 0.82rem 1rem;
    font-size: 0.88rem;
    white-space: normal;
    flex-wrap: wrap;
    box-sizing: border-box;
    border-radius: 12px;
}

body.vp-mobile .hero-buttons .btn-primary svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

body.vp-mobile .hero-visual-showcase {
    margin: 0;
    padding: 0 0 0.5rem;
    display: block;
    width: 100%;
}

body.vp-mobile .hero-main-card {
    padding: 1.1rem 0.95rem;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    border-width: 2px;
    border-radius: 18px;
    box-sizing: border-box;
}

body.vp-mobile .hero-card-header {
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
}

body.vp-mobile .hero-card-tag {
    font-size: 0.68rem;
    letter-spacing: 0.6px;
    max-width: calc(100% - 48px);
    line-height: 1.3;
}

body.vp-mobile .hero-card-body h3 {
    font-size: 1.05rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

body.vp-mobile .hero-card-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin-top: 1rem !important;
    width: 100%;
}

body.vp-mobile .metric-box {
    padding: 0.75rem 0.5rem;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}

body.vp-mobile .metric-val {
    font-size: 1.15rem;
    overflow-wrap: anywhere;
}

body.vp-mobile .metric-lbl {
    font-size: 0.65rem;
    letter-spacing: 0.3px;
}

body.vp-mobile .metric-box-wide {
    grid-column: 1 / -1 !important;
    width: 100%;
}

body.vp-mobile .metric-box-wide .metric-val {
    font-size: 0.95rem !important;
    line-height: 1.35;
}

body.vp-mobile .floating-badge,
body.vp-mobile .floating-badge-1,
body.vp-mobile .floating-badge-2 {
    display: none !important;
}

body.vp-mobile .hero-glow,
body.vp-mobile .hero-glow-2 {
    width: 280px;
    height: 280px;
    max-width: 70vw;
    max-height: 70vw;
    animation: none;
}

body.vp-mobile .hero-glow {
    right: -20%;
    top: -10%;
}

body.vp-mobile .hero-glow-2 {
    left: -25%;
    bottom: -15%;
}

body.vp-mobile .hero .dz-has-font {
    font-size: clamp(1rem, 6.5vw, 1.5rem) !important;
}

body.vp-mobile .hero .hero-title .dz-has-font {
    font-size: inherit !important;
}

body.vp-mobile .hero .dz-has-margin {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

body.vp-mobile .stats-banner-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1rem;
}

body.vp-mobile .banner-stat-num {
    font-size: clamp(1.9rem, 8vw, 2.5rem);
}

body.vp-mobile .banner-stat-lbl {
    font-size: 0.72rem;
    letter-spacing: 0.5px;
}

body.vp-mobile .services-grid,
body.vp-mobile .why-grid,
body.vp-mobile .process-grid,
body.vp-mobile .footer-grid,
body.vp-mobile .contact-grid {
    grid-template-columns: 1fr;
}

body.vp-mobile .service-card,
body.vp-mobile .why-card {
    padding: 1.75rem 1.35rem;
}

body.vp-mobile .footer-brand {
    grid-column: span 1;
}

body.vp-mobile .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

body.vp-mobile .cursor-glow,
body.vp-mobile .floating-badge,
body.vp-mobile .nav-links,
body.vp-mobile .nav-cta {
    display: none !important;
}

body.vp-mobile .hamburger {
    display: flex;
}

body.vp-mobile .marquee-wrapper::before,
body.vp-mobile .marquee-wrapper::after {
    width: 48px;
}

body.vp-mobile .marquee-track {
    gap: 2.5rem;
}

body.vp-mobile .client-logo {
    font-size: 1rem;
}

body.vp-mobile .about-quote {
    padding-left: 1.1rem;
    font-size: 1.05rem;
}

body.vp-mobile .partners-section-full {
    padding: 2.5rem 0 1.5rem;
    overflow: hidden;
}

body.vp-mobile .partner-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    height: 400px !important;
    padding: 0.7rem !important;
}

body.vp-mobile .partner-card-img {
    max-width: 98% !important;
    max-height: 96% !important;
}

/* ===== PORTFOLIO / REFERANSLARIMIZ PAGE ===== */
.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.65rem 1.6rem;
    border-radius: var(--radius-full);
    background: transparent;
    border: 1.5px solid var(--glass-border);
    color: var(--text-secondary);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    transition: all var(--transition);
}

.filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-light);
}

.filter-btn.active {
    background: var(--accent);
    color: #FFFFFF;
    border-color: var(--accent);
    box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.portfolio-card {
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--card-shadow);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(255, 106, 0, 0.3);
}

.portfolio-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.08);
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-tag {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
    display: block;
}

.portfolio-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.portfolio-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ===== MISSING UTILITY CLASSES ===== */
.footer-column {
    /* Footer column — inherits from footer-grid child */
}

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

.about-stats-wrapper {
    display: flex;
    flex-direction: column;
}

/* ===== FAQ GRID (replaces inline style in hizmetler.html) ===== */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

/* ===== FOCUS VISIBLE — ACCESSIBILITY ===== */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-cta-giant:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 4px;
    box-shadow: 0 0 0 6px rgba(255, 106, 0, 0.15);
}

.filter-btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.hamburger:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

.whatsapp-float:focus-visible {
    outline: 3px solid #25D366;
    outline-offset: 4px;
}

.social-link:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* ===== RESPONSIVE — PORTFOLIO (TABLET) ===== */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

/* ===== RESPONSIVE — PORTFOLIO & FAQ (MOBILE) ===== */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cta-banner-card {
        padding: 3rem 1.5rem;
    }

    .btn-cta-giant {
        padding: 1.1rem 2rem;
        font-size: 1.05rem;
    }

    .cta-badge {
        font-size: 0.72rem;
        letter-spacing: 1px;
    }
}

/* ============================================================
   İŞ ORTAKLARIMIZ — FULL-WIDTH EDGE-TO-EDGE STEP SLIDER (EFSANE TASARIM)
   ============================================================ */
.partners-section-full {
    overflow: hidden;
    padding: 4rem 0 2rem 0;
}

.partners-nav-controls {
    display: flex;
    gap: 0.75rem;
}

.partners-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid var(--glass-border);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.partners-nav-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #FFFFFF;
    box-shadow: 0 0 20px rgba(255, 106, 0, 0.4);
    transform: translateY(-2px);
}

.partners-strict-viewport {
    /* Full-bleed WITHOUT 100vw (100vw causes rightward lean / horizontal scroll on mobile) */
    width: 100%;
    max-width: 100%;
    position: relative;
    left: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(255, 106, 0, 0.15);
    background: #0B0F19;
    padding: 0;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
}

.partners-step-track {
    display: flex;
    gap: 0;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
    touch-action: pan-y;
}

.partner-card {
    flex: 0 0 25%;
    width: 25%;
    min-width: 25%;
    max-width: 25%;
    height: 480px;
    background: rgba(15, 23, 42, 0.95);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem;
    transition: all 0.35s ease;
    box-sizing: border-box;
}

.partner-card:last-child {
    border-right: none;
}

.partner-card:hover {
    z-index: 2;
    background: rgba(30, 41, 59, 0.98);
    box-shadow: inset 0 0 25px rgba(255, 106, 0, 0.2);
    border-color: rgba(255, 106, 0, 0.4);
}

.partner-card-img {
    max-width: 85%;
    max-height: 85%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: brightness(0.95) contrast(1.05);
    transition: transform 0.4s ease, filter 0.4s ease;
    user-select: none;
    -webkit-user-drag: none;
}

.partner-card:hover .partner-card-img {
    transform: scale(1.08);
    filter: brightness(1.15) contrast(1.1);
}

/* RESPONSIVE BREAKPOINTS FOR STEP SLIDER */
@media (max-width: 1024px) {
    .partner-card {
        flex: 0 0 50% !important;
        width: 50% !important;
        min-width: 50% !important;
        max-width: 50% !important;
        height: 380px !important;
        padding: 2rem 1.5rem !important;
    }
}

@media (max-width: 768px) {
    .partner-card {
        flex: 0 0 100% !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        height: 400px !important;
        /* Side padding matches top/bottom — thin even frame */
        padding: 0.7rem !important;
    }

    .partner-card-img {
        max-width: 98% !important;
        max-height: 96% !important;
    }

    .partners-nav-btn {
        width: 42px;
        height: 42px;
    }

    .partners-strict-viewport {
        width: 100%;
        max-width: 100%;
    }
}

/* Blog */
.blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}
.blog-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
}
.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.blog-card-body {
    padding: 1.25rem 1.5rem 1.75rem;
}
.blog-card-body h2 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}
.blog-card-body h2 a {
    color: var(--text-primary);
    text-decoration: none;
}
.blog-card-body h2 a:hover {
    color: var(--accent);
}
.blog-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .cursor-glow { display: none !important; }
}


