/* ════════════════════════════════════════════════════════════════
   HazırBetoncu – Landing Page Styles
   Primary: #D62F36 (Kırmızı) | Füme Dark Theme
   ════════════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
    /* Brand — Kırmızı Vurgu */
    --primary: #D62F36;
    --primary-dark: #C0242A;
    --primary-light: #E84850;
    --primary-glow: rgba(214, 47, 54, 0.22);
    --primary-subtle: rgba(214, 47, 54, 0.08);

    /* Füme Zeminler */
    --bg-body: #141416;
    --bg-card: #1F1F23;
    --bg-card-hover: #2A2A30;
    --bg-elevated: #2A2A30;
    --bg-nav: rgba(20, 20, 22, 0.92);
    --bg-footer: #0E0E10;

    /* Metinler */
    --text-primary: #E2DFE8;
    --text-secondary: #B0ADB8;
    --text-tertiary: #6B6B75;
    --text-inverse: #141416;

    /* Border */
    --border: #38383F;
    --border-light: #2A2A30;
    --divider: #38383F;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px var(--primary-glow);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Typography & Transitions */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    background: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: var(--bg-nav);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-md);
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--text-primary);
}

.brand-logo-full {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.brand-logo-icon {
    height: 36px;
    width: 36px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    display: none;
}

.brand-logo-full--auth {
    height: 48px;
}

.navbar-brand span {
    color: var(--primary);
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.navbar-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar-links a:hover {
    color: var(--primary);
}

.navbar-links a:hover::after {
    width: 100%;
}

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

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
}

.btn-ghost:hover {
    background: var(--primary-subtle);
    color: var(--primary);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--primary-glow);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

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

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-xl {
    padding: 18px 40px;
    font-size: 1.05rem;
}

/* Mobile menu toggle */
.mobile-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: var(--text-primary);
    font-size: 1.3rem;
    cursor: pointer;
}

/* Desktop'ta gizle, sadece mobilde göster */
.mobile-only {
    display: none;
}

/* ── Hero Section ──────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: url('/images/hero-bg.png') center center / cover no-repeat;
}

.hero .hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(20, 20, 22, 0.88) 0%,
            rgba(26, 26, 30, 0.78) 40%,
            rgba(20, 20, 22, 0.82) 70%,
            rgba(20, 20, 22, 0.92) 100%);
    pointer-events: none;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: pulseGlow 6s ease-in-out infinite;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(214, 47, 54, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

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

.hero-content {
    max-width: 560px;
}

/* ── Hero Simulation Card ─────────────────────────────────── */
.hero-visual {
    display: flex;
    justify-content: center;

    animation: fadeInRight 0.8s ease 0.3s both;
}

.sim-card {
    width: 100%;
    max-width: 400px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl), 0 0 60px rgba(214, 47, 54, 0.08);
    position: relative;
}

.sim-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(42, 42, 48, 0.6);
    border-bottom: 1px solid var(--border);
}

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

.sim-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
}

.sim-dots span:first-child {
    background: #ef4444;
}

.sim-dots span:nth-child(2) {
    background: #f59e0b;
}

.sim-dots span:last-child {
    background: #10b981;
}

.sim-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.sim-title i {
    color: var(--primary);
    margin-right: 4px;
}

.sim-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sim-field label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.sim-field label i {
    color: var(--primary);
    margin-right: 4px;
    width: 14px;
    text-align: center;
}

.sim-select-group {
    display: flex;
    gap: 8px;
}

.sim-chip {
    flex: 1;
    text-align: center;
    padding: 8px 0;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-secondary);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    cursor: default;
    transition: var(--transition);
}

.sim-chip--active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 2px 12px var(--primary-glow);
}

.sim-input-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sim-input {
    flex: 1;
    padding: 10px 14px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    font-family: var(--font);
    min-height: 40px;
}

.sim-input--typing {
    position: relative;
    white-space: nowrap;
    overflow: hidden;
}

.sim-cursor {
    color: var(--primary);
    animation: simBlink 0.8s step-end infinite;
    font-weight: 300;
}

@keyframes simBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.sim-stepper {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sim-step-btn {
    width: 28px;
    height: 18px;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    font-size: 0.55rem;
    cursor: default;
}

.sim-result {
    padding: 14px 16px;
    background: rgba(214, 47, 54, 0.05);
    border: 1px solid rgba(214, 47, 54, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sim-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.sim-result-total {
    padding-top: 8px;
    border-top: 1px solid rgba(214, 47, 54, 0.15);
}

.sim-price {
    font-weight: 700;
    color: var(--text-primary);
}

.sim-price--big {
    font-size: 1.15rem;
    color: var(--primary-light);
}

.sim-submit {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: var(--radius-sm);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    cursor: default;
    box-shadow: 0 4px 16px var(--primary-glow);
    opacity: 0.5;
    transition: var(--transition);
}

.sim-submit.sim-submit--ready {
    opacity: 1;
}

/* Success overlay */
.sim-success {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 22, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 5;
}

.sim-success.sim-success--show {
    opacity: 1;
}

.sim-success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    animation: simPulse 0.6s ease;
}

@keyframes simPulse {
    0% {
        transform: scale(0);
    }

    60% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.sim-success-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
}

.sim-success-sub {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ── Hero Video Card ──────────────────────────────────────── */
.hero-video-card {
    width: 100%;
    max-width: 560px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xl), 0 0 60px rgba(214, 47, 54, 0.08);
    background: #000;
    position: relative;
    display: flex;
    flex-direction: column;
}

.hero-video-wrapper {
    position: relative;
    width: 100%;
    flex: 1;
    min-height: 0;
    background: #000;
}

.hero-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.hero-video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.hero-video-play i {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    box-shadow: 0 4px 30px var(--primary-glow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    padding-left: 4px;
}

.hero-video-play:hover i {
    transform: scale(1.1);
    box-shadow: 0 6px 40px rgba(214, 47, 54, 0.4);
}

.hero-video-play.hidden {
    opacity: 0;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--primary-subtle);
    border: 1px solid rgba(214, 47, 54, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.hero-badge i {
    font-size: 0.7rem;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-trust-badges {
    display: flex;
    gap: 24px;
    animation: fadeInUp 0.6s ease 0.4s both;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.trust-badge i {
    color: var(--primary);
    font-size: 0.85rem;
    width: 20px;
    text-align: center;
}

/* Navbar — Santral Başvurusu link */
.nav-plant-link {
    color: var(--primary) !important;
    font-weight: 600 !important;
    border: 1px solid rgba(214, 47, 54, 0.3);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.nav-plant-link:hover {
    background: var(--primary-subtle) !important;
    border-color: var(--primary) !important;
}

.nav-plant-link i {
    font-size: 0.75rem;
    margin-right: 2px;
}

/* ── Workflow Timeline Section ─────────────────────────────── */
.workflow-section {
    background: var(--bg-body);
}

.workflow-timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--border) 5%, var(--primary) 50%, var(--border) 95%, transparent);
    transform: translateX(-50%);
}

/* Workflow Step */
.workflow-step {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    gap: 0;
    margin-bottom: 80px;
    position: relative;
}

.workflow-step:last-child {
    margin-bottom: 0;
}

/* Reverse layout — image & content swap sides */
.workflow-step--reverse .workflow-step-visual {
    order: 3;
}

.workflow-step--reverse .workflow-step-marker {
    order: 2;
}

.workflow-step--reverse .workflow-step-content {
    order: 1;
    text-align: right;
}

.workflow-step--reverse .workflow-highlights {
    align-items: flex-end;
}

/* Step Visual (Image) */
.workflow-step-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: var(--transition);
}

.workflow-step-visual img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.workflow-step:hover .workflow-step-visual {
    border-color: rgba(214, 47, 54, 0.3);
    box-shadow: 0 8px 30px rgba(214, 47, 54, 0.1);
}

.workflow-step:hover .workflow-step-visual img {
    transform: scale(1.03);
}

/* Step Marker (center dot) */
.workflow-step-marker {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.marker-dot {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--bg-body);
    box-shadow: 0 0 0 2px var(--primary), 0 4px 20px var(--primary-glow);
    transition: var(--transition);
}

.marker-dot span {
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
}

.workflow-step:hover .marker-dot {
    transform: scale(1.1);
    box-shadow: 0 0 0 3px var(--primary-light), 0 4px 30px var(--primary-glow);
}

.marker-dot--final {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 0 0 2px #10b981, 0 4px 20px rgba(16, 185, 129, 0.3);
}

.workflow-step:hover .marker-dot--final {
    box-shadow: 0 0 0 3px #10b981, 0 4px 30px rgba(16, 185, 129, 0.4);
}

/* Step Content */
.workflow-step-content {
    padding: 0 24px;
}

.workflow-step-badge {
    display: inline-block;
    padding: 4px 14px;
    background: var(--primary-glow);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.workflow-step-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.workflow-step-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.workflow-highlights {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.workflow-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.workflow-highlights li i {
    color: var(--primary);
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* Workflow CTA */
.workflow-cta {
    text-align: center;
    margin-top: 60px;
}

/* ── How It Works ──────────────────────────────────────────── */
.section {
    padding: 100px 0;
}

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
    opacity: 0.2;
    z-index: 0;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    z-index: 1;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(214, 47, 54, 0.2);
}

.step-number {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.step-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── Features Section ──────────────────────────────────────── */
.features-section {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.feature-card {
    padding: 32px;
    background: var(--bg-body);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(214, 47, 54, 0.15);
}

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

.feature-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

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

.feature-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ── Stats Section ─────────────────────────────────────────── */
.stats-section {
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    opacity: 0.04;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-item {
    text-align: center;
    padding: 32px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    background: var(--primary-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ── CTA Section ───────────────────────────────────────────── */
.cta-section {
    padding: 100px 0;
}

.cta-card {
    background: linear-gradient(135deg, #1F1F23 0%, #0E0E10 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.cta-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    margin: 0 auto 36px;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.cta-buttons .btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* ── Comparison Table ─────────────────────────────────────── */
.comparison-section {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-body);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1.2fr 2fr 2fr;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.comparison-header .col-topic {
    background: var(--bg-elevated);
    color: var(--text-secondary);
    padding: 16px 20px;
}

.comparison-header .col-old {
    background: rgba(239, 68, 68, 0.08);
    color: #ef4444;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comparison-header .col-new {
    background: rgba(16, 185, 129, 0.08);
    color: #10b981;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.2fr 2fr 2fr;
    border-top: 1px solid var(--border-light);
    transition: background 0.2s ease;
}

.comparison-row:hover {
    background: var(--bg-card-hover);
}

.comparison-row .col-topic {
    padding: 16px 20px;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    border-right: 1px solid var(--border-light);
}

.comparison-row .col-topic i {
    color: var(--primary);
    font-size: 0.85rem;
    width: 18px;
    text-align: center;
}

.comparison-row .col-old {
    padding: 16px 20px;
    font-size: 0.88rem;
    color: var(--text-tertiary);
    display: flex;
    align-items: center;
    border-right: 1px solid var(--border-light);
    text-decoration: line-through;
    text-decoration-color: rgba(239, 68, 68, 0.3);
}

.comparison-row .col-old small {
    font-size: 0.75rem;
    text-decoration: none;
    display: block;
}

.comparison-row .col-new {
    padding: 16px 20px;
    font-size: 0.88rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.new-highlight {
    color: #10b981;
    font-weight: 600;
}

.new-highlight i {
    font-size: 0.75rem;
    margin-left: 4px;
}

.badge-bank {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    color: #10b981;
    letter-spacing: 0.02em;
}

.badge-bank i {
    font-size: 0.65rem;
}

.comparison-footer {
    border-top: 2px solid var(--border);
}

.comparison-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.comparison-cta i {
    margin-right: 6px;
}

.comparison-cta .btn {
    background: white;
    color: var(--primary);
    font-weight: 700;
    padding: 10px 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.comparison-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
    background: var(--bg-footer);
    padding: 80px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .navbar-brand {
    color: white;
    margin-bottom: 16px;
}

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

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: white;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--primary);
}

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

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

/* Payment Methods */
.footer-payment-methods {
    display: flex;
    align-items: center;
}

.payment-band {
    height: 28px;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.25s ease;
}

.payment-band:hover {
    opacity: 1;
}

.footer-brand-socials {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.social-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: all 0.2s ease;
    transform: translateY(0);
}

.social-icon:hover {
    opacity: 1;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-facebook {
    background: #1877F2;
}

.social-x {
    background: #000000;
    border: 1px solid var(--border);
}

.social-instagram {
    background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
}

.social-linkedin {
    background: #0A66C2;
}

.footer-brand-socials .social-icon {
    width: 30px;
    height: 30px;
    border-radius: 6px;
}

/* ── Contact Section ──────────────────────────────────────── */
.contact-section {
    background: var(--bg-body);
}

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

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

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: rgba(214, 47, 54, 0.25);
    transform: translateX(6px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--primary-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary);
    transition: var(--transition);
}

.contact-info-card:hover .contact-info-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.contact-info-body h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-tertiary);
    margin-bottom: 4px;
}

.contact-info-body a,
.contact-info-body p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition);
}

.contact-info-body a:hover {
    color: var(--primary);
}

/* Contact Socials */
.contact-socials {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-top: 8px;
}

.contact-socials h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-tertiary);
    margin-bottom: 16px;
}

.contact-social-icons {
    display: flex;
    gap: 10px;
}

.contact-social-icons .social-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
}

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

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

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.contact-form label i {
    color: var(--primary);
    margin-right: 4px;
    font-size: 0.75rem;
    width: 14px;
    text-align: center;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: var(--transition);
    outline: none;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236B6B75' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.contact-form select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

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

.contact-submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    margin-top: 4px;
}

.contact-submit-btn.is-loading {
    pointer-events: none;
    opacity: 0.7;
}

.contact-submit-btn.is-loading i {
    animation: spin 1s linear infinite;
}

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

    to {
        transform: rotate(360deg);
    }
}

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── Responsive ────────────────────────────────────────────── */

/* ─── Tablet (≤1024px) ─── */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

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

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

    .hero-visual {
        margin-top: 40px;
    }

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

    .hero-video-wrapper {
        min-height: 240px;
    }

    .process-flow {
        max-width: 400px;
        margin: 0 auto;
    }

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

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

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

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

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

    .footer-brand {
        max-width: 100%;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    /* Tablet'te de hamburger menü */
    .navbar-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar-links.mobile-open {
        display: flex;
        flex-direction: column;
        width: 100%;
        order: 10;
        gap: 0;
        padding: 12px 0 4px;
        border-top: 1px solid var(--border);
        margin-top: 12px;
    }

    .navbar-links.mobile-open li {
        width: 100%;
    }

    .navbar-links.mobile-open a {
        display: block;
        padding: 12px 0;
        font-size: 0.95rem;
        border-bottom: 1px solid var(--border-light);
    }

    .navbar-links.mobile-open a::after {
        display: none;
    }

    .navbar-links.mobile-open .mobile-only {
        display: list-item;
    }

    .navbar-links.mobile-open .mobile-only a {
        color: var(--primary);
        font-weight: 600;
    }
}

/* ─── Mobile (≤768px) ─── */
@media (max-width: 768px) {

    /* Container */
    .container {
        padding: 0 16px;
    }

    /* Navbar */
    .navbar {
        padding: 12px 0;
    }

    .navbar .container {
        flex-wrap: wrap;
    }

    .navbar-brand {
        font-size: 1.15rem;
    }

    .navbar-brand .brand-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .navbar-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Mobile nav open */
    .navbar-links.mobile-open {
        display: flex;
        flex-direction: column;
        width: 100%;
        order: 10;
        gap: 0;
        padding: 12px 0 4px;
        border-top: 1px solid var(--border);
        margin-top: 12px;
    }

    .navbar-links.mobile-open li {
        width: 100%;
    }

    .navbar-links.mobile-open a {
        display: block;
        padding: 12px 0;
        font-size: 0.95rem;
        border-bottom: 1px solid var(--border-light);
    }

    .navbar-links.mobile-open a::after {
        display: none;
    }

    .navbar-links.mobile-open .mobile-only {
        display: list-item;
    }

    .navbar-links.mobile-open .mobile-only a {
        color: var(--primary);
        font-weight: 600;
    }

    .navbar-actions {
        gap: 6px;
    }

    .navbar-actions .btn {
        display: none;
    }

    /* Hero */
    .hero {
        padding: 100px 0 50px;
        min-height: auto;
    }

    .hero::before {
        width: 300px;
        height: 300px;
        top: -15%;
        right: -20%;
    }

    .hero::after {
        width: 250px;
        height: 250px;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 14px;
    }

    .hero-badge {
        font-size: 0.72rem;
        padding: 5px 12px;
        margin-bottom: 16px;
    }

    .hero-description {
        font-size: 0.92rem;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 32px;
    }

    .hero-buttons .btn-xl {
        width: 100%;
        max-width: 300px;
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .hero-stat {
        text-align: center;
        min-width: 80px;
    }

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

    .hero-stat .label {
        font-size: 0.7rem;
    }

    /* Process flow */
    .hero-visual {
        margin-top: 24px;
    }

    .process-flow {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        max-width: 100%;
    }

    .process-step {
        padding: 18px 14px;
    }

    .process-step-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .process-step-title {
        font-size: 0.82rem;
    }

    .process-step-desc {
        font-size: 0.72rem;
    }

    .process-step-number {
        width: 26px;
        height: 26px;
        font-size: 0.65rem;
        margin-bottom: 10px;
    }

    /* Sections */
    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.92rem;
    }

    .section-label {
        font-size: 0.72rem;
    }

    /* Steps */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .step-card {
        padding: 20px 16px;
        border-radius: var(--radius-lg);
    }

    .step-number {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        margin-bottom: 14px;
    }

    .step-card h3 {
        font-size: 0.92rem;
    }

    .step-card p {
        font-size: 0.8rem;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feature-card {
        padding: 20px;
        border-radius: var(--radius-lg);
    }

    .feature-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        margin-bottom: 14px;
    }

    .feature-card h3 {
        font-size: 0.95rem;
    }

    .feature-card p {
        font-size: 0.82rem;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-item {
        padding: 20px 12px;
        border-radius: var(--radius-lg);
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 10px;
    }

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

    .stat-label {
        font-size: 0.78rem;
    }

    /* Comparison table → Card layout */
    .comparison-table {
        border-radius: var(--radius-lg);
    }

    .comparison-header {
        display: none;
    }

    .comparison-row {
        display: flex;
        flex-direction: column;
        border-top: 1px solid var(--border-light);
        padding: 16px;
        gap: 8px;
    }

    .comparison-row .col-topic {
        border-right: none;
        padding: 0;
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--primary);
    }

    .comparison-row .col-old {
        border-right: none;
        padding: 8px 12px;
        font-size: 0.82rem;
        background: rgba(239, 68, 68, 0.05);
        border-radius: var(--radius-sm);
    }

    .comparison-row .col-old::before {
        content: '✗ Eski: ';
        font-weight: 600;
        color: #ef4444;
        text-decoration: none;
    }

    .comparison-row .col-new {
        padding: 8px 12px;
        font-size: 0.82rem;
        background: rgba(16, 185, 129, 0.05);
        border-radius: var(--radius-sm);
    }

    .comparison-row .col-new::before {
        content: '✓ Yeni: ';
        font-weight: 600;
        color: #10b981;
    }

    .comparison-cta {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        font-size: 0.85rem;
        padding: 16px;
    }

    .comparison-cta .btn {
        width: 100%;
    }

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

    .cta-card {
        padding: 40px 20px;
        border-radius: var(--radius-lg);
    }

    .cta-card h2 {
        font-size: 1.5rem;
    }

    .cta-card p {
        font-size: 0.92rem;
        margin-bottom: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .cta-buttons .btn-xl {
        width: 100%;
        max-width: 300px;
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .contact-form-wrapper {
        padding: 24px;
        border-radius: var(--radius-lg);
    }

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

    .contact-info-card {
        padding: 16px 18px;
    }

    .contact-info-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 0.95rem;
    }

    .contact-info-body a,
    .contact-info-body p {
        font-size: 0.88rem;
    }

    .contact-social-icons {
        justify-content: flex-start;
    }

    /* Footer */
    .footer {
        padding: 48px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 32px;
    }

    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .footer-brand .navbar-brand {
        justify-content: center;
    }

    .footer-brand p {
        font-size: 0.82rem;
    }

    .footer-brand-socials {
        justify-content: center;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col h4 {
        margin-bottom: 12px;
        font-size: 0.8rem;
    }

    .footer-col ul a {
        font-size: 0.82rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 16px 0;
    }
}

/* ─── Small Mobile (≤480px) ─── */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.7rem;
    }

    .hero-stats {
        gap: 12px;
    }

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

    .process-flow {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .comparison-row {
        padding: 12px;
    }

    .comparison-row .col-topic {
        font-size: 0.82rem;
    }

    .comparison-row .col-old,
    .comparison-row .col-new {
        font-size: 0.78rem;
        padding: 6px 10px;
    }

    .cta-card h2 {
        font-size: 1.3rem;
    }

    .cta-card p {
        font-size: 0.85rem;
    }

    .navbar-actions .btn-ghost {
        display: none;
    }

    /* Contact */
    .contact-form-wrapper {
        padding: 20px 16px;
    }

    .contact-submit-btn {
        font-size: 0.9rem;
        padding: 14px;
    }
}

/* ── Workflow Timeline Responsive ─────────────────────────── */
@media (max-width: 900px) {
    .workflow-step {
        grid-template-columns: 60px 1fr;
        gap: 0;
        margin-bottom: 50px;
    }

    .workflow-step-visual {
        display: none;
    }

    .timeline-line {
        left: 30px;
    }

    .workflow-step-marker {
        justify-content: center;
    }

    .marker-dot {
        width: 44px;
        height: 44px;
    }

    .marker-dot span {
        font-size: 0.95rem;
    }

    .workflow-step--reverse .workflow-step-visual {
        order: unset;
    }

    .workflow-step--reverse .workflow-step-marker {
        order: unset;
    }

    .workflow-step--reverse .workflow-step-content {
        order: unset;
        text-align: left;
    }

    .workflow-step--reverse .workflow-highlights {
        align-items: flex-start;
    }

    .workflow-step-content {
        padding: 0 0 0 16px;
    }

    .workflow-step-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .workflow-step-content h3 {
        font-size: 1.05rem;
    }

    .workflow-step-content p {
        font-size: 0.85rem;
    }

    .workflow-highlights li {
        font-size: 0.8rem;
    }
}

/* ── Responsive Logo Switching ─────────────────────────── */
@media (max-width: 900px) {
    .brand-logo-full {
        display: none !important;
    }

    .brand-logo-icon {
        display: block !important;
    }
}

/* ════════════ FAQ SECTION ════════════ */
.faq-section {
    padding: 100px 0;
    background: var(--bg-body);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(214, 47, 54, 0.3);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(214, 47, 54, 0.08);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-answer strong {
    color: var(--text-primary);
}

/* ════════════ SEO CONTENT SECTION ════════════ */
.seo-content-section {
    padding: 60px 0 80px;
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
}

.seo-content {
    max-width: 900px;
    margin: 0 auto;
}

.seo-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.seo-content h2 strong {
    color: var(--primary);
}

.seo-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 16px;
}

.seo-content strong {
    color: var(--text-secondary);
}

/* ── FAQ Responsive ──────────────────────────────── */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-question {
        padding: 16px 18px;
        font-size: 0.92rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 18px 16px;
    }

    .seo-content-section {
        padding: 40px 0 60px;
    }

    .seo-content h2 {
        font-size: 1.1rem;
    }
}