/* ============================================
   CSS Reset & Design Tokens
   ============================================ */
:root {
    --primary: #F5C518;
    --primary-dark: #d4a517;
    --primary-light: rgba(245, 197, 24, 0.10);
    --primary-border: rgba(245, 197, 24, 0.28);

    --dark: #111827;
    --dark-2: #1f2937;
    --dark-3: #374151;

    --white: #ffffff;
    --light: #f9fafb;
    --light-2: #f3f4f6;
    --border: #e5e7eb;
    --border-2: #d1d5db;

    --text: #111827;
    --text-body: #374151;
    --text-muted: #6b7280;
    --text-on-dark: rgba(255, 255, 255, 0.85);
    --text-on-dark-2: rgba(255, 255, 255, 0.55);

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.07), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 28px rgba(0, 0, 0, 0.10);
    --shadow-xl: 0 20px 48px rgba(0, 0, 0, 0.13);
    --shadow-y: 0 8px 20px rgba(245, 197, 24, 0.28);

    --font-heading: 'Libre Baskerville', serif;
    --font-body: 'Hanken Grotesk', sans-serif;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text);
    line-height: 1.65;
    overflow-x: clip;
}

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

/* ============================================
   Typography
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text);
}

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

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.large-text {
    font-size: 1.1rem;
    color: var(--text-body);
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

p {
    margin-bottom: 1rem;
    color: var(--text-body);
}

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

/* ============================================
   Utilities
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.section {
    padding: 6rem 0;
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1rem;
    margin-right: -1rem;
}

.jc-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 1rem;
}

.col-5 {
    flex: 0 0 41.666%;
    max-width: 41.666%;
    padding: 1rem;
}

.col-7 {
    flex: 0 0 58.333%;
    max-width: 58.333%;
    padding: 1rem;
}

.content-right {
    padding-left: 3rem;
}

.relative {
    position: relative;
}

.section-title {
    font-size: clamp(1.875rem, 3.5vw, 2.875rem);
    margin-bottom: 1.25rem;
    color: var(--text);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto 3rem;
    line-height: 1.75;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    outline: none;
    text-decoration: none;
    white-space: nowrap;
    min-height: 48px;
    /* touch target */
}

.btn-primary {
    background-color: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-y);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--dark);
    color: var(--dark);
}

.btn-outline:hover {
    background-color: var(--dark);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.45);
    color: white;
}

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

.lg-btn {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
    border-radius: 10px;
    min-height: 56px;
}

.sm-btn {
    padding: 0.5rem 1.1rem;
    font-size: 0.875rem;
    border-radius: 6px;
    min-height: 40px;
}

/* ============================================
   Navbar
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
    padding: 1.25rem 0;
    border-bottom: 1px solid #ffffff17;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--border);
}

/* Logo: white on dark hero, black when scrolled */
.navbar .logo img {
    filter: brightness(0) invert(1);
}

.navbar.scrolled .logo img {
    filter: brightness(0);
}

/* Footer logo: dark background üzerinde beyaz */
footer .logo img {
    filter: brightness(0) invert(1);
}

.navbar .mobile-menu-btn span {
    background-color: white;
}

.navbar.scrolled .mobile-menu-btn span {
    background-color: var(--dark);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: white;
}

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

.nav-links a:not(.btn) {
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

.navbar.scrolled .nav-links a:not(.btn) {
    color: var(--dark);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.nav-links a:not(.btn):hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 2px;
    transition: var(--transition);
}

/* Nav overlay (mobile) */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 998;
    backdrop-filter: blur(2px);
}

.nav-overlay.active {
    display: block;
}

/* ============================================
   Hero Section  (dark, strong contrast)
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    overflow: hidden;
    background: var(--dark);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 60%, rgba(245, 197, 24, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 20%, rgba(245, 197, 24, 0.07) 0%, transparent 45%);
    pointer-events: none;
}

/* Diagonal yellow stripe accent */
.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--white);
    clip-path: polygon(0 100%, 100% 100%, 100% 60%, 0 100%);
}

.hero-bg-glow {
    display: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 880px;
    padding: 2rem 1.5rem 5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(245, 197, 24, 0.12);
    border: 1px solid var(--primary-border);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary);
    letter-spacing: 0.025em;
}

.hero-title {
    font-size: clamp(2.25rem, 5vw, 4.25rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    color: white;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255, 255, 255, 0.70);
    margin-bottom: 2.5rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

.hero-cta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Shining Effect for Hero CTA Button */
.hero-cta .btn-primary {
    position: relative;
    overflow: hidden;
}

.hero-cta .btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.5) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -150%;
    }

    60% {
        left: 250%;
    }

    100% {
        left: 250%;
    }
}

/* ============================================
   Stats Section  (white, yellow numbers)
   ============================================ */
.stats-section {
    background: var(--white);
    padding: 0;
    position: relative;
    z-index: 2;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}

.stat-card {
    padding: 3rem 1.5rem;
    border-right: 1px solid var(--border);
    transition: background 0.25s ease;
    position: relative;
}

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

.stat-card:hover {
    background: var(--primary-light);
}

.stat-number {
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    color: var(--primary-dark);
    margin-bottom: 0.35rem;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-weight: 600;
    color: var(--text-muted);
}

/* ============================================
   "Neden Biz" Section  (white)
   ============================================ */
.dark-section {
    background: var(--white);
    overflow: hidden;
    /* pattern-bg::after negatif margin taşmasını önler */
}

.dark-section .section-title {
    color: var(--text);
}

.dark-section .large-text {
    color: var(--text-body);
}

.dark-section h4 {
    color: var(--text);
}

.dark-section p {
    color: var(--text-body);
}

/* Feature List */
.feature-list {
    list-style: none;
    margin-top: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    color: var(--text-body);
}

.feature-list li:hover {
    border-color: var(--primary-border);
    background: rgba(245, 197, 24, 0.05);
    box-shadow: var(--shadow-sm);
    transform: translateX(3px);
}

.feature-list li .list-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.feature-list li .list-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--dark);
    stroke-width: 2.5;
    fill: none;
}

.feature-list li .list-text strong {
    color: var(--text);
    display: block;
    font-size: 0.925rem;
    margin-bottom: 0.2rem;
}

.feature-list li .list-text span {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Image Wrapper */
.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    box-shadow: var(--shadow-xl);
}

.image-wrapper>* {
    position: relative;
    z-index: 2;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at top right, rgba(245, 197, 24, 0.18), transparent 60%);
    z-index: 1;
}

.image-wrapper::after {
    display: none;
}

/* Yellow decorative border behind image */
.pattern-bg {
    position: relative;
}

.pattern-bg::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 18px;
    right: -18px;
    bottom: -18px;
    border: 3px solid var(--primary);
    border-radius: var(--radius-lg);
    z-index: 0;
    opacity: 0.4;
}

.glass-box {
    background: rgba(17, 24, 39, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(245, 197, 24, 0.22);
    padding: 2.25rem;
    border-radius: var(--radius);
    text-align: center;
    max-width: 82%;
    z-index: 3;
}

.glass-box .icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.1rem;
}

.glass-box .icon-wrapper svg {
    width: 26px;
    height: 26px;
    stroke: var(--dark);
    stroke-width: 2;
    fill: none;
}

.glass-box h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.glass-box p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.875rem;
    margin: 0;
}

/* ============================================
   Services Section  (light gray)
   ============================================ */
.gray-section {
    background: var(--light);
}

.gray-section .section-title {
    color: var(--text);
}

.gray-section .section-subtitle {
    color: var(--text-muted);
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.25rem 2rem;
    text-align: left;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

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

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

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

.card-icon {
    width: 54px;
    height: 54px;
    background: var(--primary-light);
    border: 1.5px solid var(--primary-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-dark);
    stroke-width: 1.75;
    fill: none;
}

.card:hover .card-icon {
    background: var(--primary);
    border-color: var(--primary);
}

.card:hover .card-icon svg {
    stroke: var(--dark);
}

.card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
    color: var(--text);
}

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

/* ============================================
   Process Section
   ============================================ */
.process-section {
    background: var(--white);
    padding-bottom: 6rem;
}

.pt-0 {
    padding-top: 2rem !important;
}

/* Trust Bar */
.process-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem 2rem;
    margin: 0 auto 3rem;
    max-width: 640px;
    flex-wrap: wrap;
    gap: 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-body);
    white-space: nowrap;
    padding: 0.25rem 1.25rem;
}

.trust-item svg {
    width: 15px;
    height: 15px;
    stroke: var(--primary-dark);
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
}

.trust-sep {
    width: 1px;
    height: 18px;
    background: var(--border-2);
    flex-shrink: 0;
}

/* Process Cards Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.process-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

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

.process-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-border);
    transform: translateY(-4px);
}

.process-card-bg-num {
    position: absolute;
    top: 0.5rem;
    right: 1.25rem;
    font-size: 5.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary);
    opacity: 0.07;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.process-card-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.process-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--primary);
    color: var(--dark);
    font-size: 0.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    border-radius: 8px;
    letter-spacing: 0.03em;
}

.process-card-icon {
    width: 44px;
    height: 44px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.process-card-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-muted);
    stroke-width: 2;
    fill: none;
}

.process-card:hover .process-card-icon {
    background: var(--primary-light);
    border-color: var(--primary-border);
}

.process-card:hover .process-card-icon svg {
    stroke: var(--primary-dark);
}

.process-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.process-card p {
    margin: 0;
    color: var(--text-body);
    font-size: 0.9rem;
    line-height: 1.75;
}

/* Process Bottom CTA Strip */
.process-bottom-cta {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--light);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 1.75rem 2.5rem;
    gap: 2rem;
}

.process-cta-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.process-cta-text strong {
    font-size: 1.05rem;
    color: var(--text);
    font-weight: 700;
}

.process-cta-text span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    background: var(--light);
    padding: 6rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--border-2);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--white);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.05rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text);
    padding-right: 1rem;
    line-height: 1.5;
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light);
    color: var(--text-muted);
    transition: var(--transition);
}

.faq-icon svg {
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    background: var(--primary);
    color: var(--dark);
}

.faq-question.active .faq-icon svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background: var(--white);
}

.faq-answer p {
    padding: 0 2rem 1.75rem;
    margin: 0;
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   Contact Form Section  (white)
   ============================================ */
.cta-section {
    background: var(--light);
}

.cta-box {
    display: flex;
    flex-wrap: wrap;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

.cta-content {
    flex: 1;
    min-width: 300px;
    padding: 4rem;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -15%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(245, 197, 24, 0.13) 0%, transparent 65%);
    pointer-events: none;
}

.cta-content h2 {
    color: white;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.65);
}

.contact-info {
    list-style: none;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-size: 0.975rem;
    color: var(--text-on-dark);
}

.contact-info li .contact-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background: rgba(245, 197, 24, 0.14);
    border: 1px solid rgba(245, 197, 24, 0.25);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info li .contact-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--primary);
    stroke-width: 2;
    fill: none;
}

/* Mobile contact strip — hidden on desktop, shown on mobile via media query */
.cta-mobile-contact {
    display: none;
}

.cta-form {
    flex: 1;
    min-width: 320px;
    padding: 4rem;
    background: var(--white);
}

.cta-form h3 {
    margin-bottom: 1.5rem;
    color: var(--text);
}

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

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-body);
}

input,
select,
textarea {
    width: 100%;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    /* ≥16px to prevent iOS zoom */
    transition: var(--transition);
    -webkit-appearance: none;
    appearance: none;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.14);
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.w-100 {
    width: 100%;
}

/* ============================================
   Footer  (dark)
   ============================================ */
footer {
    background: var(--dark);
    border-top: 3px solid var(--primary);
    padding: 4rem 0 0;
}

footer p,
footer li {
    color: rgba(255, 255, 255, 0.55);
}

/* 3-kolon grid: brand | offices | legal */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2.5fr 1fr;
    gap: 4rem;
    padding-bottom: 3.5rem;
}

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

.footer-offices h4,
.footer-legal h4 {
    color: white;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2.5rem;
}

.office-col strong {
    display: block;
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.office-col p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-legal p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.45);
}

/* İletişim bilgileri — sadece mobilde görünür */
.footer-contact-mobile {
    display: none;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-mobile h4 {
    color: white;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

/* Copyright çubuğu */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.75rem 0;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.875rem;
}

/* ============================================
   Animations
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.75s cubic-bezier(0.5, 0, 0, 1),
        transform 0.75s cubic-bezier(0.5, 0, 0, 1);
}

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

.cascade {
    transition-delay: 0.15s;
}

.cascade-1 {
    transition-delay: 0.1s;
}

.cascade-2 {
    transition-delay: 0.2s;
}

.cascade-3 {
    transition-delay: 0.3s;
}

.cascade-4 {
    transition-delay: 0.4s;
}

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

    .stat-card:nth-child(2n) {
        border-right: none;
    }

    .stat-card:nth-child(3n) {
        border-right: 1px solid var(--border);
    }

    .stat-card:nth-last-child(-n+3) {
        border-bottom: 1px solid var(--border);
    }

    .stat-card:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .stat-card:nth-child(2) {
        border-right: none;
    }

    .stat-card:nth-child(3),
    .stat-card:nth-child(4) {
        border-top: 1px solid var(--border);
    }

    .col-6,
    .col-5,
    .col-7 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .content-right {
        padding-left: 0;
        margin-top: 2rem;
        padding: 20px;
    }

    .cta-box {
        flex-direction: column;
    }

    .cta-content,
    .cta-form {
        padding: 3rem 2.5rem;
        min-width: 0;
    }

    /* Footer tablet: brand+legal üstte, offices altta tam genişlik */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

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

    .footer-legal {
        grid-column: 2;
        grid-row: 1;
    }

    .footer-offices {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .offices-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pattern-bg::after {
        display: none;
    }
}

/* ============================================
   Responsive — 768px (mobile)
   ============================================ */
@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }

    /* Mobile nav: slide-in drawer */
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: min(80vw, 300px);
        height: 100dvh;
        background: var(--dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        z-index: 999;
        transition: left 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
        box-shadow: 4px 0 30px rgba(0, 0, 0, 0.45);
        overflow-y: auto;
    }

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

    .nav-links a:not(.btn) {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.1rem;
        width: 100%;
    }

    .nav-links .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero::after {
        display: none;
    }

    .hero-title {
        font-size: clamp(1.875rem, 7vw, 2.5rem);
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .btn {
        width: 83%;
        font-weight: 800;
        margin: 0 auto;
        justify-content: center;
    }

    .stat-card {
        padding: 2rem 0.75rem;
    }

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

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

    /* Mobil: sol paneli gizle, form tam genişlik */
    .cta-content {
        display: none;
    }

    .cta-form {
        padding: 2.5rem 1.5rem;
        min-width: 0;
        width: 100%;
        flex: none;
    }

    /* Footer: iletişim bilgilerini göster */
    .footer-contact-mobile {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-bottom: 0;
    }

    /* Tüm footer kolonu sıfırla, mobilde normal akış */
    .footer-brand,
    .footer-offices,
    .footer-legal {
        grid-column: auto;
        grid-row: auto;
    }

    /* Ofis sub-grid: 2 kolon mobilde */
    .offices-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem 1.5rem;
    }

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

    /* Process Grid — mobile: single column */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .process-card {
        padding: 1.75rem 1.5rem;
    }

    .process-card-bg-num {
        font-size: 4rem;
    }

    .process-trust-bar {
        padding: 0.75rem 1rem;
        max-width: 100%;
        gap: 0;
    }

    .trust-item {
        padding: 0.25rem 0.75rem;
        font-size: 0.8rem;
    }

    .trust-sep {
        height: 14px;
    }

    .process-bottom-cta {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 1.5rem;
        gap: 1.25rem;
        border-left: none;
        /* border-top: 4px solid var(--primary); */
    }

    .process-bottom-cta .btn {
        width: 100%;
    }

    /* Mobile contact strip in #iletisim — visible on mobile only */
    .cta-mobile-contact {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        margin-bottom: 1.75rem;
    }

    .mobile-contact-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.4rem;
        padding: 1rem 0.75rem;
        border-radius: var(--radius);
        text-align: center;
        transition: var(--transition);
        text-decoration: none;
    }

    .mobile-contact-link.phone {
        background: var(--primary-light);
        border: 1.5px solid var(--primary-border);
    }

    .mobile-contact-link.whatsapp {
        background: rgba(37, 211, 102, 0.07);
        border: 1.5px solid rgba(37, 211, 102, 0.28);
    }

    .mobile-contact-link svg {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
    }

    .mobile-contact-link.phone svg {
        stroke: var(--primary-dark);
        stroke-width: 2;
        fill: none;
    }

    .mobile-contact-link.whatsapp svg {
        fill: #25d366;
    }

    .mobile-contact-link .mc-label {
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        font-weight: 700;
        color: var(--text-muted);
        line-height: 1;
    }

    .mobile-contact-link .mc-value {
        font-size: 0.875rem;
        font-weight: 700;
        color: var(--text);
        line-height: 1.2;
    }
}

/* ============================================
   Responsive — 480px (small mobile)
   ============================================ */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding-top: 4rem;
    }

    .hero-container {
        padding-bottom: 3rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.875rem;
    }

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

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

    .card {
        padding: 1.75rem 1.25rem;
    }

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

    .section {
        padding: 1.5rem 0;
    }

    .lg-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.975rem;
    }

    .glass-box {
        max-width: 90%;
        padding: 1.75rem;
    }

    .process-card {
        padding: 1.5rem 1.25rem;
    }

    .process-card-bg-num {
        font-size: 3rem;
    }

    .trust-item {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }

    .trust-sep {
        display: none;
    }

    .process-trust-bar {
        justify-content: flex-start;
        gap: 0.25rem;
    }
}

/* ============================================
   No-hover (touch) — prevent stuck hover states
   ============================================ */
@media (hover: none) {

    .card:hover,
    .btn:hover,
    .feature-list li:hover,
    .process-card:hover {
        transform: none;
    }

    .card:hover {
        box-shadow: var(--shadow-sm);
        border-color: var(--border);
    }

    .card:hover::before,
    .process-card:hover::before {
        transform: scaleX(0);
    }

    .process-card:hover {
        box-shadow: var(--shadow-sm);
        border-color: var(--border);
    }

    .process-card:hover .process-card-icon {
        background: var(--light);
        border-color: var(--border);
    }

    .process-card:hover .process-card-icon svg {
        stroke: var(--text-muted);
    }
}