/* ============================================
   Wepro Landing Page — Enterprise SaaS Theme
   ============================================ */

:root {
    --primary: #0093D7;
    --primary-dark: #006fa3;
    --primary-light: #33a8e0;
    --primary-rgb: 0, 147, 215;
    --dark: #0a0f1c;
    --dark-2: #111827;
    --dark-3: #1f2937;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

.me-2 { margin-right: 8px; }
.mb-60 { margin-bottom: 60px; }
.text-center { text-align: center; }

/* ============ BUTTONS ============ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 1px 3px rgba(var(--primary-rgb), 0.3);
}
.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.4);
    transform: translateY(-1px);
}

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

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
}
.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 12px;
}

/* ============ NAV ============ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.nav.scrolled {
    box-shadow: var(--shadow);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}
.nav-brand-text {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.04em;
    line-height: 1;
}
/* Sadece logo satırındaki marka yazısı — footer gövdesi gray-500 kalır */
.nav-brand-text--footer {
    color: var(--white);
}
.nav-logo {
    height: 28px;
    width: auto;
    display: block;
}

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

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }

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

.lang-switch {
    display: flex;
    background: var(--gray-100);
    border-radius: 8px;
    padding: 2px;
    margin-right: 8px;
}

.lang-btn {
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}
.lang-btn.active {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============ HERO ============ */

.hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
    background: linear-gradient(180deg, #f0f7ff 0%, var(--white) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(var(--primary-rgb), 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--primary-rgb), 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-glow {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

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

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--dark);
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, #0057a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 18px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Dashboard Visual */
.hero-visual { perspective: 1200px; }

.hero-dashboard {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.04);
    overflow: hidden;
    transform: rotateY(-4deg) rotateX(2deg);
    transition: transform 0.6s ease;
}
.hero-dashboard:hover {
    transform: rotateY(0) rotateX(0);
}

.dash-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.dash-dots {
    display: flex;
    gap: 6px;
}
.dash-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dash-dots span:nth-child(1) { background: #ef4444; }
.dash-dots span:nth-child(2) { background: #f59e0b; }
.dash-dots span:nth-child(3) { background: #10b981; }

.dash-url {
    flex: 1;
    text-align: center;
    font-size: 11px;
    color: var(--gray-400);
    background: var(--white);
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid var(--gray-200);
}

.dash-body {
    display: flex;
    min-height: 220px;
}

.dash-sidebar {
    width: 48px;
    background: var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
    gap: 4px;
}

.dash-nav-item {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    transition: var(--transition);
}
.dash-nav-item.active {
    background: rgba(255,255,255,0.2);
    color: white;
}

.dash-content {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dash-stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.dash-stat {
    background: var(--gray-50);
    border-radius: 8px;
    padding: 10px 8px;
    text-align: center;
    border: 1px solid var(--gray-100);
}

.dash-stat-num {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.dash-stat-label {
    display: block;
    font-size: 9px;
    color: var(--gray-400);
    margin-top: 2px;
}

.dash-chart {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding: 12px 0 4px;
}

.dash-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(var(--primary-rgb), 0.4) 100%);
    border-radius: 4px 4px 0 0;
    min-height: 12px;
    transition: height 0.6s ease;
}

/* Scroll Indicator */
.hero-scroll {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--gray-300);
    border-radius: 12px;
    position: relative;
}
.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

/* ============ BRANDS ============ */

.brands {
    padding: 48px 0;
    border-bottom: 1px solid var(--gray-200);
    background: var(--white);
}

.brands-label {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    margin-bottom: 28px;
}

.brands-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-item img {
    height: 32px;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0) opacity(0.25);
    transition: var(--transition);
}

.brand-item img:hover {
    filter: grayscale(100%) brightness(0) opacity(0.5);
}

/* ============ SECTIONS ============ */

.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto;
}

/* Section intro: metin + mini tarayıcı (hero ile uyumlu) */
.section-intro {
    margin-bottom: 56px;
}

.section-intro-grid {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 420px);
    gap: 48px;
    align-items: center;
}

.section-intro-copy .section-title {
    text-align: left;
    margin-bottom: 14px;
}

.section-intro-copy .section-title--split {
    margin-bottom: 14px;
}

.intro-kicker {
    display: inline-block;
    padding: 5px 13px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--primary-dark);
    background: rgba(var(--primary-rgb), 0.12);
    border-radius: 100px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(var(--primary-rgb), 0.15);
}

.section-title--split {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.section-title-line {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--dark);
}

.section-intro-copy--shaped {
    position: relative;
    padding: 28px 26px 32px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(var(--primary-rgb), 0.14);
}

.section-intro-copy--shaped::before {
    content: '';
    position: absolute;
    top: -45%;
    right: -22%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.2) 0%, transparent 68%);
    pointer-events: none;
}

.section-intro-copy--shaped::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(var(--primary-rgb), 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--primary-rgb), 0.045) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.55;
    pointer-events: none;
    border-radius: inherit;
    mask-image: linear-gradient(165deg, black 0%, black 55%, transparent 100%);
    -webkit-mask-image: linear-gradient(165deg, black 0%, black 55%, transparent 100%);
}

.section-intro-copy--wl {
    background: linear-gradient(148deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(255, 255, 255, 0.92) 45%, rgba(0, 87, 160, 0.06) 100%);
}

.section-intro-copy--feat {
    background: linear-gradient(158deg, rgba(0, 87, 160, 0.08) 0%, #ffffff 42%, rgba(var(--primary-rgb), 0.07) 100%);
}

.section-intro-copy--int {
    background: linear-gradient(132deg, rgba(var(--primary-rgb), 0.09) 0%, #f9fafb 48%, rgba(0, 147, 215, 0.06) 100%);
}

.section-intro-copy--shaped .section-subtitle {
    position: relative;
    z-index: 1;
}

.section-intro-copy .section-subtitle {
    margin: 0;
    max-width: 520px;
    text-align: left;
}

.section-intro-visual {
    perspective: 1100px;
    max-width: 420px;
    margin-left: auto;
    width: 100%;
}

.section-intro-float {
    animation: sectionIntroFloat 5.5s ease-in-out infinite;
    will-change: transform;
}

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

.section-browser {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 22px 50px -18px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transform: rotateY(-5deg) rotateX(2deg);
    transform-style: preserve-3d;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.55s ease;
}

.section-browser:hover {
    transform: rotateY(0deg) rotateX(0deg);
    box-shadow: 0 28px 60px -16px rgba(var(--primary-rgb), 0.22), 0 0 0 1px rgba(var(--primary-rgb), 0.12);
}

.section-browser .dash-body--section {
    min-height: 148px;
}

.section-browser .dash-stat-row--3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.section-browser .dash-stat-num {
    font-size: 15px;
}

.section-browser .dash-stat-label {
    font-size: 8px;
}

.dash-chart--compact {
    padding: 8px 0 2px;
    gap: 6px;
}

.dash-chart--compact .dash-bar {
    min-height: 8px;
}

.dash-body--int .dash-sidebar {
    width: 44px;
    padding: 10px 0;
}

.dash-content--mock {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.dash-sidebar--accent {
    background: linear-gradient(180deg, #085d8c 0%, var(--primary) 42%, #006aa8 100%);
}

.dash-body--wl-rich {
    min-height: 172px;
}

.dash-content--wl-rich {
    gap: 10px;
    justify-content: flex-start;
    padding-top: 14px;
}

.mock-wl-chrome {
    width: 100%;
}

.mock-wl-chrome-bar {
    display: block;
    height: 7px;
    border-radius: 5px;
    background: linear-gradient(90deg, #1e3a5f 0%, var(--primary) 38%, #7dd3fc 72%, #f59e0b 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.mock-wl-brandblock {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mock-wl-logo {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #1e3a8a 0%, var(--primary) 48%, #fbbf24 100%);
    box-shadow: 0 6px 18px rgba(var(--primary-rgb), 0.35);
}

.mock-wl-meta {
    flex: 1;
    min-width: 0;
}

.mock-wl-brandname {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.mock-wl-swatches {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.mock-swatch {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.mock-swatch--1 { background: #1e3a8a; }
.mock-swatch--2 { background: var(--primary); }
.mock-swatch--3 { background: #38bdf8; }
.mock-swatch--4 { background: #fbbf24; }

.mock-wl-hint {
    margin: 0;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.dash-url--mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 10px;
    color: var(--gray-600);
}

.dash-body--feat-api {
    min-height: 172px;
    flex-direction: column;
}

.section-browser--feat .dash-body--feat-api {
    display: flex;
}

.mock-api-panel {
    padding: 14px 16px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: linear-gradient(185deg, #f1f5f9 0%, var(--white) 55%);
    border-top: 1px solid var(--gray-100);
}

.mock-api-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 10px;
    font-size: 11px;
}

.mock-api-method {
    font-weight: 800;
    color: #059669;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 10px;
}

.mock-api-path {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    color: var(--gray-700);
    flex: 1;
    min-width: 0;
    font-size: 11px;
}

.mock-api-status {
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.12);
    padding: 3px 8px;
    border-radius: 6px;
}

.mock-api-row--dim {
    padding-left: 8px;
    border-left: 2px solid rgba(var(--primary-rgb), 0.2);
}

.mock-api-k {
    font-size: 10px;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    min-width: 54px;
}

.mock-api-v {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 11px;
    color: var(--gray-600);
}

.mock-api-pipeline {
    display: flex;
    gap: 5px;
    margin-top: 2px;
}

.mock-api-pipeline span {
    flex: 1;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(var(--primary-rgb), 0.2), var(--primary));
}

.mock-api-pipeline span:nth-child(2) { opacity: 0.65; }
.mock-api-pipeline span:nth-child(3) { opacity: 0.4; }

.mock-int-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.mock-int-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-600);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
}

.mock-int-chip i {
    font-size: 14px;
    color: var(--gray-400);
}

.mock-int-chip--primary {
    background: rgba(var(--primary-rgb), 0.08);
    border-color: rgba(var(--primary-rgb), 0.25);
    color: var(--primary-dark);
}

.mock-int-chip--primary i {
    color: var(--primary);
}

.mock-int-bar {
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--gray-200), rgba(var(--primary-rgb), 0.35), var(--gray-200));
    opacity: 0.85;
}

@media (prefers-reduced-motion: reduce) {
    .section-intro-float {
        animation: none;
    }
    .section-browser {
        transform: none;
    }
    .section-browser:hover {
        transform: none;
    }
}

/* ============ FEATURES ============ */

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

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

.white-label-footnote {
    text-align: center;
    font-size: 15px;
    color: var(--gray-500);
    max-width: 640px;
    margin: 48px auto 0;
    line-height: 1.6;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}
.feature-card:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.08);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

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

/* ============ ADS SPOTLIGHT - Site Reklamları 3 Kart ============ */

.ads-spotlight {
    width: 100%;
    margin-bottom: 48px;
    padding: 40px 36px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.06) 0%, rgba(var(--primary-rgb), 0.02) 100%);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 24px rgba(var(--primary-rgb), 0.08);
}

.ads-spotlight-header {
    text-align: center;
    margin-bottom: 36px;
}

.ads-spotlight-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.ads-spotlight-subtitle {
    font-size: 16px;
    color: var(--gray-600);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.ads-spotlight-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.ads-spotlight-card:hover {
    border-color: rgba(var(--primary-rgb), 0.35);
    box-shadow: 0 12px 32px rgba(var(--primary-rgb), 0.12);
    transform: translateY(-4px);
}

.ads-spotlight-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.ads-spotlight-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.ads-spotlight-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .ads-spotlight-cards {
        grid-template-columns: 1fr;
    }
    .ads-spotlight {
        padding: 32px 24px;
    }
}

/* ============ ADS SPOTLIGHT (Site Reklamları - 3 kart) ============ */

.ads-spotlight {
    width: 100%;
    margin-bottom: 56px;
    padding: 40px 32px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.06) 0%, rgba(var(--primary-rgb), 0.02) 100%);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 24px rgba(var(--primary-rgb), 0.08);
}

.ads-spotlight-header {
    text-align: center;
    margin-bottom: 36px;
}

.ads-spotlight-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.ads-spotlight-subtitle {
    font-size: 16px;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.ads-spotlight-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.ads-spotlight-card:hover {
    border-color: rgba(var(--primary-rgb), 0.35);
    box-shadow: 0 12px 32px rgba(var(--primary-rgb), 0.12);
    transform: translateY(-4px);
}

.ads-spotlight-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.ads-spotlight-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.ads-spotlight-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .ads-spotlight-cards {
        grid-template-columns: 1fr;
    }
    .ads-spotlight {
        padding: 32px 24px;
    }
}

/* ============ SITE REKLAMLARI SPOTLIGHT ============ */

.ads-spotlight {
    width: 100%;
    margin-bottom: 48px;
    padding: 40px 36px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.06) 0%, rgba(var(--primary-rgb), 0.02) 100%);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 24px rgba(var(--primary-rgb), 0.06);
}

.ads-spotlight-header {
    text-align: center;
    margin-bottom: 36px;
}

.ads-spotlight-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.ads-spotlight-subtitle {
    font-size: 16px;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.ads-spotlight-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.ads-spotlight-card:hover {
    border-color: rgba(var(--primary-rgb), 0.35);
    box-shadow: 0 12px 32px rgba(var(--primary-rgb), 0.12);
    transform: translateY(-4px);
}

.ads-spotlight-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.ads-spotlight-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.ads-spotlight-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

@media (max-width: 991px) {
    .ads-spotlight-cards {
        grid-template-columns: 1fr;
    }
    .ads-spotlight {
        padding: 32px 24px;
    }
}

/* ============ INTEGRATIONS ============ */

.integrations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.integration-logo-text-sm {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-600);
    letter-spacing: -0.01em;
}

.integration-group-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 16px;
    padding-left: 4px;
}

.integration-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.integration-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
}
.integration-card:hover {
    border-color: rgba(var(--primary-rgb), 0.25);
    box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.06);
    transform: translateY(-2px);
}

.integration-logo {
    margin-bottom: 14px;
    height: 28px;
    display: flex;
    align-items: center;
}

.integration-logo-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--gray-700);
    letter-spacing: -0.02em;
}

.integration-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.integration-card p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.7;
    margin: 0;
}

.integration-card p.integration-detail {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--gray-200);
}

/* ============ SOLUTIONS ============ */

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

.solution-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
}
.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(var(--primary-rgb), 0.15);
}

.solution-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--primary-rgb), 0.05) 100%);
    color: var(--primary);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.solution-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.solution-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ============ CONTACT / CTA ============ */

.section-contact {
    background: var(--gray-50);
    padding: 100px 0;
    display: flex;
    align-items: center;
    min-height: clamp(520px, 72vh, 840px);
}

.section-contact > .container {
    width: 100%;
}

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

.contact-title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.contact-desc {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.contact-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-feature strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}

.contact-feature span {
    font-size: 13px;
    color: var(--gray-500);
}

.contact-form-wrapper {
    position: relative;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.04);
}

.contact-form h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
}

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

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    font-family: inherit;
    color: var(--gray-900);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    outline: none;
    transition: var(--transition);
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
    background: var(--white);
}

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

.form-group input.input-error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-checkbox {
    margin-bottom: 16px;
}
.form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--gray-500);
    cursor: pointer;
    line-height: 1.5;
}
.form-checkbox input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    min-width: 16px;
    accent-color: var(--primary);
    cursor: pointer;
}
.form-checkbox a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}
.form-checkbox a:hover {
    color: var(--dark);
    text-decoration: underline;
}

/* KVKK Modal */
.kvkk-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}
.kvkk-overlay.active {
    display: flex;
}
.kvkk-modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 640px;
    width: 100%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 48px rgba(0,0,0,0.15);
}
.kvkk-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    border-bottom: 1px solid var(--gray-200);
    flex-shrink: 0;
}
.kvkk-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}
.kvkk-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--gray-400);
    cursor: pointer;
    line-height: 1;
    padding: 4px;
}
.kvkk-close:hover {
    color: var(--dark);
}
.kvkk-body {
    padding: 24px 28px;
    overflow-y: auto;
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
}
.kvkk-body h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin: 20px 0 8px;
}
.kvkk-body h4:first-of-type {
    margin-top: 12px;
}
.kvkk-body ul {
    margin: 8px 0;
    padding-left: 20px;
}
.kvkk-body li {
    margin-bottom: 4px;
}
.kvkk-body .kvkk-date {
    margin-top: 24px;
    color: var(--gray-400);
    font-size: 13px;
}

.cookie-overlay {
    z-index: 10000;
}

/* Çerez bildirimi */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9990;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.cookie-banner[hidden] {
    display: none !important;
}

.cookie-banner-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
}

.cookie-banner-text {
    flex: 1 1 280px;
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--gray-600);
    max-width: 720px;
}

.cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
    flex-shrink: 0;
}

.cookie-banner-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    white-space: nowrap;
}

.cookie-banner-link:hover {
    text-decoration: underline;
    color: var(--primary-dark);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
    border-radius: 9px;
}

.btn-block {
    width: 100%;
}

.ms-2 { margin-left: 8px; }

.form-note {
    margin-top: 12px;
    font-size: 12px;
    color: var(--gray-400);
    text-align: center;
}

.contact-success {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 60px 36px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: #d1e7dd;
    color: #198754;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-success h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-success p {
    font-size: 15px;
    color: var(--gray-500);
}

/* ============ FOOTER ============ */

.footer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0b1020 0%, #070b14 45%, #05070d 100%);
    color: var(--gray-500);
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(90%, 640px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 147, 215, 0.5), transparent);
    pointer-events: none;
    z-index: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(220px, 1.4fr) 1fr 1.1fr;
    gap: clamp(36px, 4vw, 56px);
    padding: 72px 0 56px;
    align-items: start;
}

.footer-col--brand {
    padding-right: clamp(0px, 2vw, 24px);
}

.footer-col--brand .footer-mark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}
.footer-col--brand .footer-mark:hover {
    opacity: 0.92;
}

.footer-logo {
    height: 32px;
    width: auto;
    display: block;
    flex-shrink: 0;
}

.footer-tagline {
    margin: 20px 0 0;
    max-width: 340px;
    font-size: 14px;
    line-height: 1.75;
    color: var(--gray-500);
}

/* Cronwork: "developed by" + logo (gri, hover’da birlikte parlar) */
.footer-dev {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 280px;
}

.footer-dev-link {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    text-decoration: none;
    line-height: 1.2;
}

.footer-dev-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--gray-500);
    text-transform: lowercase;
    transition: color 0.22s ease, opacity 0.22s ease;
}

/* Beyaz vektör hissi + yazı ile uyumlu gri (koyu zeminde) */
.footer-dev-cronwork-logo {
    height: 18px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.4;
    transition: opacity 0.22s ease, filter 0.22s ease;
}

.footer-dev-link:hover .footer-dev-label {
    color: var(--gray-500);
}

.footer-dev-link:hover .footer-dev-cronwork-logo {
    opacity: 0.95;
    filter: brightness(0) invert(1);
}

.footer-heading {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin: 0 0 16px;
    padding: 0;
}

.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-list li {
    margin: 0;
}

.footer-list a {
    display: inline-block;
    padding: 7px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    position: relative;
}

.footer-list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 0;
    height: 1px;
    background: var(--primary-light);
    transition: width 0.25s ease;
}

.footer-list a:hover {
    color: var(--gray-500);
}

.footer-list a:hover::after {
    width: 100%;
}

.footer-list--contact {
    padding: 0;
    margin: 0;
}

.footer-list--contact a::after {
    display: none;
}

.footer-list--contact a.footer-contact-line {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.2s ease;
    max-width: 100%;
    word-break: break-word;
    position: static;
}

.footer-contact-line:hover {
    color: var(--gray-500);
}

.footer-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.9;
    color: var(--gray-500);
    transition: opacity 0.2s ease;
}

.footer-contact-icon svg {
    display: block;
    width: 18px;
    height: 18px;
}

.footer-contact-line:hover .footer-contact-icon {
    opacity: 1;
}

.footer-bottom {
    padding: 26px 0 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-copy {
    margin: 0;
    text-align: center;
    font-size: 13px;
    color: var(--gray-500);
    letter-spacing: 0.02em;
}

.spinner-anim {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

/* ============ ANIMATIONS ============ */

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 1024px) {
    .hero-title { font-size: 40px; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { max-width: 560px; margin: 0 auto; }
    .hero-dashboard { transform: none; }
    .section-intro-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .section-intro-visual {
        margin-left: auto;
        margin-right: auto;
        max-width: 400px;
    }
    .section-intro-copy .section-title,
    .section-intro-copy .section-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .section-title--split {
        align-items: center;
    }
    .section-title-line {
        font-size: 30px;
    }
    .intro-kicker {
        align-self: center;
    }
    .section-intro-copy .section-subtitle {
        max-width: 560px;
    }
    .section-browser { transform: none; }
    .section-browser:hover { transform: none; box-shadow: 0 22px 50px -18px rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.05); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .integrations-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 32px; }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 32px;
    }
    .footer-col--brand {
        grid-column: 1 / -1;
        padding-right: 0;
        max-width: 420px;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions .btn-ghost, .nav-actions .btn-primary { display: none; }
    .nav-toggle { display: flex; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 24px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
        gap: 16px;
    }

    .hero { padding: 120px 0 60px; }
    .hero-title { font-size: 32px; }
    .hero-desc { font-size: 16px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-scroll { display: none; }

    .section { padding: 64px 0; }
    .features-grid, .solutions-grid { grid-template-columns: 1fr; }
    .section-header,
    .section-intro { margin-bottom: 40px; }

    .section-contact {
        min-height: auto;
    }
    .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .contact-title { font-size: 28px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 24px; }

    .footer-grid {
        grid-template-columns: 1fr;
        padding-top: 56px;
        padding-bottom: 40px;
    }
    .footer-col--brand {
        grid-column: auto;
        max-width: none;
    }
    .footer-tagline {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 28px; }
    .dash-stat-row { grid-template-columns: repeat(2, 1fr); }
}
