/* ==========================================================================
   Meva Dijital Pazarlama — Ana Stil Dosyası
   Renk paleti: Kırmızı & Beyaz
   ========================================================================== */

:root {
    --red:        #e10f1c;
    --red-dark:   #b00b16;
    --red-soft:   #ff4a54;
    --red-tint:   #fff1f2;
    --red-tint-2: #ffe3e5;
    --ink:        #16181d;
    --ink-2:      #3a3f4b;
    --muted:      #6b7280;
    --line:       #ececf0;
    --white:      #ffffff;
    --bg:         #ffffff;
    --bg-soft:    #fafafb;

    --radius:     18px;
    --radius-lg:  26px;
    --shadow:     0 10px 30px rgba(20, 20, 30, .08);
    --shadow-lg:  0 24px 60px rgba(225, 15, 28, .18);
    --shadow-red: 0 14px 34px rgba(225, 15, 28, .28);

    --font:  'Manrope', system-ui, -apple-system, sans-serif;
    --head:  'Sora', 'Manrope', sans-serif;
    --ease:  cubic-bezier(.22, 1, .36, 1);
    --maxw:  1180px;
}

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

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

body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--head); line-height: 1.15; font-weight: 700; letter-spacing: -.02em; }

.hl { color: var(--red); position: relative; }

.eyebrow {
    display: inline-block;
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--red);
    background: var(--red-tint);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 18px;
}
.eyebrow.light { background: rgba(255,255,255,.15); color: #fff; }

/* ---------- Butonlar ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--head);
    font-weight: 600;
    font-size: .98rem;
    padding: 14px 26px;
    border-radius: 100px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
    position: relative;
    overflow: hidden;
}
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }

.btn-primary { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(225,15,28,.42); background: var(--red-dark); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--red); color: var(--red); transform: translateY(-3px); }

.btn-nav { background: var(--red); color: #fff; padding: 11px 22px; box-shadow: 0 8px 20px rgba(225,15,28,.28); }
.btn-nav:hover { transform: translateY(-2px); background: var(--red-dark); box-shadow: 0 12px 26px rgba(225,15,28,.4); }

.btn-block { width: 100%; justify-content: center; }

/* Buton parlama efekti */
.btn-primary::after {
    content: "";
    position: absolute;
    top: 0; left: -75%;
    width: 50%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.4), transparent);
    transform: skewX(-20deg);
    transition: left .6s var(--ease);
}
.btn-primary:hover::after { left: 130%; }

/* ---------- Scroll ilerleme çubuğu ---------- */
.scroll-progress {
    position: fixed; top: 0; left: 0; height: 4px; width: 0%;
    background: linear-gradient(90deg, var(--red), var(--red-soft));
    z-index: 2000;
    transition: width .1s linear;
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: padding .4s var(--ease), background .4s, box-shadow .4s;
}
.navbar.scrolled {
    padding: 12px 0;
    background: rgba(255,255,255,.85);
    backdrop-filter: saturate(180%) blur(14px);
    box-shadow: 0 6px 24px rgba(20,20,30,.07);
    border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.logo { display: flex; align-items: center; gap: 11px; font-family: var(--head); font-weight: 800; font-size: 1.32rem; }
.logo-mark {
    display: grid; place-items: center;
    width: 40px; height: 40px; border-radius: 12px;
    background: var(--red); color: #fff;
    font-size: 1.25rem; font-weight: 800;
    box-shadow: 0 8px 18px rgba(225,15,28,.35);
    transition: transform .4s var(--ease), border-radius .4s;
}
.logo:hover .logo-mark { transform: rotate(-8deg) scale(1.06); border-radius: 50%; }
.logo-dot { color: var(--red); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
    display: inline-flex; align-items: center; gap: 5px;
    font-weight: 600; font-size: .96rem; color: var(--ink-2);
    padding: 9px 15px; border-radius: 100px;
    position: relative; transition: color .3s; cursor: pointer;
}
.nav-link::before {
    content: ""; position: absolute; left: 15px; right: 15px; bottom: 4px;
    height: 2px; background: var(--red);
    transform: scaleX(0); transform-origin: left;
    transition: transform .35s var(--ease);
}
.nav-link:hover { color: var(--red); }
.nav-link:hover::before { transform: scaleX(1); }
.nav-link.active { color: var(--red); }
.nav-link.active::before { transform: scaleX(1); }
.caret { font-size: .7rem; transition: transform .35s var(--ease); }
.has-dropdown:hover .caret { transform: rotate(180deg); }

/* ---- Dropdown menü ---- */
.dropdown {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(12px);
    min-width: 320px; padding-top: 14px;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
    z-index: 100;
}
.has-dropdown:hover .dropdown {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.dropdown-inner {
    background: #fff; border: 1px solid var(--line); border-radius: 18px;
    box-shadow: 0 24px 50px rgba(20,20,30,.14); padding: 12px;
    position: relative;
}
.dropdown-inner::before {
    content: ""; position: absolute; top: -7px; left: 50%; transform: translateX(-50%) rotate(45deg);
    width: 14px; height: 14px; background: #fff; border-left: 1px solid var(--line); border-top: 1px solid var(--line);
}
.dropdown-link {
    display: flex; align-items: center; gap: 13px;
    padding: 11px 13px; border-radius: 12px; color: var(--ink-2); font-weight: 600; font-size: .94rem;
    transition: background .28s var(--ease), color .28s, transform .28s var(--ease);
}
.dropdown-link:hover { background: var(--red-tint); color: var(--red); }
.dd-ic {
    width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
    background: var(--red-tint); color: var(--red);
    display: grid; place-items: center;
    transition: background .28s, color .28s, transform .28s var(--ease);
}
.dd-ic svg { width: 20px; height: 20px; }
.dropdown-link:hover .dd-ic { background: var(--red); color: #fff; transform: rotate(-6deg); }
.dd-text { flex: 1; }
.dd-arrow { color: var(--red); opacity: 0; transform: translateX(-6px); transition: .28s var(--ease); }
.dropdown-link:hover .dd-arrow { opacity: 1; transform: translateX(0); }
.dropdown-all {
    display: flex; align-items: center; justify-content: center; gap: 7px;
    margin-top: 6px; padding: 12px; border-radius: 12px;
    background: var(--red); color: #fff; font-weight: 700; font-family: var(--head); font-size: .92rem;
    transition: background .3s, transform .3s var(--ease);
}
.dropdown-all span { transition: transform .3s var(--ease); }
.dropdown-all:hover { background: var(--red-dark); }
.dropdown-all:hover span { transform: translateX(5px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 3px; transition: .35s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Bölüm genel ---------- */
.section { padding: 110px 0; position: relative; }
.section-head { max-width: 640px; margin: 0 auto 60px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    position: relative;
    padding: 170px 0 0;
    background: linear-gradient(180deg, var(--red-tint) 0%, #fff 70%);
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; animation: float 14s ease-in-out infinite; }
.blob-1 { width: 480px; height: 480px; background: var(--red-soft); top: -140px; right: -120px; }
.blob-2 { width: 360px; height: 360px; background: #ffd0d3; bottom: -80px; left: -100px; animation-delay: -6s; }
@keyframes float { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-28px) scale(1.06); } }

.hero-grid-lines {
    position: absolute; inset: 0;
    background-image: linear-gradient(var(--red-tint-2) 1px, transparent 1px),
                      linear-gradient(90deg, var(--red-tint-2) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: radial-gradient(circle at 70% 20%, #000 0%, transparent 60%);
    opacity: .6;
}

.hero-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center;
    padding-bottom: 90px;
}
.badge {
    display: inline-block; background: #fff; color: var(--red);
    font-weight: 700; font-size: .9rem; padding: 8px 18px;
    border-radius: 100px; box-shadow: var(--shadow); margin-bottom: 24px;
    border: 1px solid var(--red-tint-2);
}
.hero-title { font-size: clamp(2.3rem, 5.2vw, 4rem); margin-bottom: 22px; }
.hero-sub { font-size: 1.16rem; color: var(--ink-2); max-width: 540px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-trust { display: flex; align-items: center; gap: 16px; }
.avatars { display: flex; }
.avatars span {
    width: 42px; height: 42px; border-radius: 50%;
    display: grid; place-items: center; font-weight: 700; color: #fff;
    background: var(--red); border: 3px solid #fff; margin-left: -12px;
    box-shadow: 0 4px 10px rgba(225,15,28,.25);
}
.avatars span:first-child { margin-left: 0; }
.avatars span:nth-child(2) { background: var(--red-soft); }
.avatars span:nth-child(3) { background: var(--red-dark); }
.avatars span:nth-child(4) { background: var(--ink); }
.hero-trust p { font-size: .95rem; color: var(--muted); }
.hero-trust strong { color: var(--ink); }

/* Hero görsel / cam kart */
.hero-visual { position: relative; }
.glass-card {
    background: rgba(255,255,255,.75);
    backdrop-filter: blur(14px);
    border: 1px solid #fff;
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: var(--shadow-lg);
}
.card-float { animation: floatCard 6s ease-in-out infinite; }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

.mini-head { display: flex; align-items: center; gap: 7px; margin-bottom: 22px; }
.mini-head .dot { width: 11px; height: 11px; border-radius: 50%; background: #e4e4ea; }
.mini-head .dot.red { background: var(--red); }
.mini-title { margin-left: auto; font-size: .85rem; color: var(--muted); font-weight: 600; }
.mini-stat { margin-bottom: 20px; }
.mini-label { display: block; font-size: .82rem; color: var(--muted); font-weight: 600; }
.mini-value { font-family: var(--head); font-size: 1.8rem; font-weight: 800; }
.mini-value .up { font-size: .85rem; color: #12a150; font-style: normal; }
.mini-bars { display: flex; align-items: flex-end; gap: 9px; height: 110px; margin-bottom: 22px; }
.mini-bars span {
    flex: 1; height: var(--h);
    background: linear-gradient(180deg, var(--red-soft), var(--red));
    border-radius: 7px 7px 4px 4px;
    animation: barGrow 1s var(--ease) both;
    transform-origin: bottom;
}
@keyframes barGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.mini-bars span:nth-child(6) { background: linear-gradient(180deg, #ffd0d3, var(--red-soft)); }
.mini-foot { display: flex; gap: 30px; border-top: 1px solid var(--line); padding-top: 16px; }
.mini-foot strong { font-family: var(--head); font-size: 1.3rem; }

.pill {
    position: absolute; background: #fff; padding: 11px 18px; border-radius: 100px;
    font-weight: 700; font-size: .9rem; box-shadow: var(--shadow);
    border: 1px solid var(--red-tint-2);
}
.pill-1 { top: 10px; left: -30px; color: #12a150; animation: floatCard 5s ease-in-out infinite; }
.pill-2 { bottom: 30px; right: -20px; color: var(--red); animation: floatCard 5s ease-in-out infinite -2.5s; }

/* Marquee (kayan yazı) */
.marquee { overflow: hidden; background: var(--red); padding: 18px 0; transform: rotate(-1.4deg) scale(1.04); }
.marquee-track { display: flex; align-items: center; gap: 26px; white-space: nowrap; width: max-content; animation: scrollX 26s linear infinite; }
.marquee-track span { font-family: var(--head); font-weight: 700; color: #fff; font-size: 1.05rem; letter-spacing: .05em; }
.marquee-track .sep { color: rgba(255,255,255,.55); }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* ==========================================================================
   HİZMETLER
   ========================================================================== */
.services { background: var(--bg-soft); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 34px 30px; position: relative; overflow: hidden;
    transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
}
.service-card::before {
    content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--red), var(--red-soft));
    transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease);
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 62px; height: 62px; border-radius: 16px;
    display: grid; place-items: center; margin-bottom: 22px;
    background: var(--red-tint); color: var(--red);
    transition: background .4s var(--ease), color .4s, transform .4s var(--ease);
}
.service-icon svg { width: 30px; height: 30px; }
.service-card:hover .service-icon { background: var(--red); color: #fff; transform: rotate(-6deg) scale(1.05); }

.service-card h3 { font-size: 1.32rem; margin-bottom: 12px; }
.service-card p { color: var(--muted); margin-bottom: 20px; }
.service-link { font-weight: 700; color: var(--red); font-family: var(--head); display: inline-flex; gap: 6px; }
.service-link span { transition: transform .35s var(--ease); }
.service-card:hover .service-link span { transform: translateX(6px); }

/* ==========================================================================
   İSTATİSTİK
   ========================================================================== */
.stats-section {
    background: linear-gradient(120deg, var(--red) 0%, var(--red-dark) 100%);
    padding: 80px 0;
    position: relative; overflow: hidden;
}
.stats-section::before {
    content: ""; position: absolute; inset: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,.12), transparent 40%),
                      radial-gradient(circle at 80% 70%, rgba(255,255,255,.1), transparent 40%);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.stat { text-align: center; color: #fff; }
.stat-value { display: block; font-family: var(--head); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1; }
.stat-label { display: block; margin-top: 10px; font-weight: 600; color: rgba(255,255,255,.85); }

/* ==========================================================================
   HAKKIMIZDA
   ========================================================================== */
.about-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.about-img {
    position: relative; height: 420px; border-radius: var(--radius-lg);
    background: linear-gradient(140deg, var(--red), var(--red-dark));
    overflow: hidden; box-shadow: var(--shadow-lg);
}
.about-shape {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 30% 30%, rgba(255,255,255,.2), transparent 45%),
                      radial-gradient(circle at 75% 80%, rgba(255,255,255,.15), transparent 40%);
}
.about-img::after {
    content: "Meva."; position: absolute; inset: 0; display: grid; place-items: center;
    font-family: var(--head); font-weight: 800; font-size: 4rem; color: rgba(255,255,255,.9);
    letter-spacing: -.03em;
}
.about-badge {
    position: absolute; bottom: -26px; right: -20px; z-index: 2;
    background: #fff; border-radius: 18px; padding: 20px 26px; text-align: center;
    box-shadow: var(--shadow); border: 1px solid var(--line);
}
.about-badge strong { display: block; font-family: var(--head); font-size: 2.2rem; color: var(--red); line-height: 1; }
.about-badge span { font-size: .85rem; color: var(--muted); font-weight: 600; }

.about-content h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 18px; }
.about-content > p { color: var(--ink-2); font-size: 1.08rem; margin-bottom: 24px; }
.check-list { margin-bottom: 30px; }
.check-list li { position: relative; padding-left: 34px; margin-bottom: 12px; font-weight: 500; }
.check-list li::before {
    content: "✓"; position: absolute; left: 0; top: 0;
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--red-tint); color: var(--red);
    display: grid; place-items: center; font-weight: 800; font-size: .8rem;
}

/* ==========================================================================
   ÇALIŞMALARIMIZ
   ========================================================================== */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.work-card {
    position: relative; height: 300px; border-radius: var(--radius); overflow: hidden; cursor: pointer;
    background: linear-gradient(160deg, #2a2d36, #16181d);
    box-shadow: var(--shadow);
}
.work-card:nth-child(3n+1) { background: linear-gradient(160deg, var(--red), var(--red-dark)); }
.work-card:nth-child(3n+2) { background: linear-gradient(160deg, #2a2d36, #16181d); }
.work-card:nth-child(3n)   { background: linear-gradient(160deg, var(--red-soft), var(--red)); }
.work-card::after {
    content: ""; position: absolute; inset: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(255,255,255,.15), transparent 45%);
}
.work-overlay {
    position: absolute; inset: 0; z-index: 2;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 28px; color: #fff;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.5));
    transition: transform .5s var(--ease);
}
.work-cat { font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; opacity: .85; }
.work-overlay h3 { font-size: 1.45rem; margin: 6px 0 12px; }
.work-metric {
    display: inline-block; align-self: flex-start;
    background: rgba(255,255,255,.2); backdrop-filter: blur(6px);
    padding: 6px 14px; border-radius: 100px; font-weight: 700; font-size: .9rem;
    transform: translateY(8px); opacity: 0; transition: .5s var(--ease);
}
.work-card:hover .work-metric { transform: translateY(0); opacity: 1; }
.work-plus {
    position: absolute; top: 22px; right: 22px; z-index: 3;
    width: 44px; height: 44px; border-radius: 50%;
    background: #fff; color: var(--red);
    display: grid; place-items: center; font-size: 1.6rem; font-weight: 700;
    transform: scale(0) rotate(-90deg); transition: .45s var(--ease);
}
.work-card:hover .work-plus { transform: scale(1) rotate(0); }
.work-card:hover .work-overlay { transform: translateY(-6px); }

/* ==========================================================================
   SÜREÇ
   ========================================================================== */
.process { background: var(--bg-soft); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step {
    background: #fff; border-radius: var(--radius); padding: 34px 26px;
    border: 1px solid var(--line); position: relative;
    transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.process-step:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.process-no {
    font-family: var(--head); font-weight: 800; font-size: 2.6rem;
    color: var(--red-tint-2); line-height: 1; display: block; margin-bottom: 16px;
    transition: color .4s;
}
.process-step:hover .process-no { color: var(--red); }
.process-step h3 { font-size: 1.28rem; margin-bottom: 10px; }
.process-step p { color: var(--muted); font-size: .98rem; }
/* Adımları birbirine bağlayan çizgi */
.process-step:not(:last-child)::after {
    content: "→"; position: absolute; top: 44px; right: -18px; z-index: 2;
    color: var(--red); font-size: 1.4rem; font-weight: 700;
}

/* ==========================================================================
   YORUMLAR
   ========================================================================== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 34px 30px; position: relative;
    transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .4s;
}
.testi-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--red-tint-2); }
.quote-mark {
    font-family: var(--head); font-size: 4rem; color: var(--red-tint-2);
    line-height: .6; display: block; margin-bottom: 6px;
}
.testi-card p { color: var(--ink-2); font-size: 1.04rem; margin-bottom: 24px; }
.testi-card footer { display: flex; align-items: center; gap: 13px; }
.testi-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--red); color: #fff; font-weight: 800; font-family: var(--head);
    display: grid; place-items: center; font-size: 1.2rem;
}
.testi-meta strong { display: block; font-family: var(--head); }
.testi-meta em { font-style: normal; color: var(--muted); font-size: .9rem; }

/* ==========================================================================
   İLETİŞİM
   ========================================================================== */
.contact {
    background: linear-gradient(140deg, var(--ink) 0%, #23262f 100%);
    color: #fff; position: relative; overflow: hidden;
}
.contact::before {
    content: ""; position: absolute; top: -120px; right: -120px;
    width: 420px; height: 420px; border-radius: 50%;
    background: radial-gradient(circle, rgba(225,15,28,.4), transparent 70%);
    filter: blur(30px);
}
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; position: relative; z-index: 1; }
.contact-info h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 16px; }
.contact-info > p { color: rgba(255,255,255,.75); font-size: 1.08rem; margin-bottom: 30px; }
.contact-list li { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; font-size: 1.05rem; }
.contact-list a { transition: color .3s; }
.contact-list a:hover { color: var(--red-soft); }
.ci {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    background: rgba(255,255,255,.08); display: grid; place-items: center; font-size: 1.1rem;
}

/* Form */
.contact-form { background: #fff; border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-lg); }
.field { position: relative; margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field input, .field textarea {
    width: 100%; padding: 18px 16px 8px; border: 1.5px solid var(--line); border-radius: 12px;
    font-family: var(--font); font-size: 1rem; color: var(--ink);
    background: var(--bg-soft); transition: border-color .3s, box-shadow .3s, background .3s;
    resize: none;
}
.field textarea { padding-top: 22px; }
.field label {
    position: absolute; left: 16px; top: 15px; color: var(--muted);
    font-size: 1rem; pointer-events: none; transition: .25s var(--ease);
}
.field input:focus, .field textarea:focus {
    outline: none; border-color: var(--red); background: #fff;
    box-shadow: 0 0 0 4px var(--red-tint);
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
    top: 6px; font-size: .72rem; color: var(--red); font-weight: 700;
}
.form-note { text-align: center; margin-top: 14px; font-weight: 600; font-size: .95rem; min-height: 1.2em; }
.form-note.ok { color: #12a150; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: #0f1013; color: #fff; padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand p { color: rgba(255,255,255,.6); margin: 18px 0 22px; max-width: 320px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 42px; height: 42px; border-radius: 12px;
    background: rgba(255,255,255,.08); display: grid; place-items: center;
    font-weight: 700; font-size: .85rem; transition: .35s var(--ease);
}
.footer-social a:hover { background: var(--red); transform: translateY(-4px); }
.footer-col h4 { font-size: 1.05rem; margin-bottom: 18px; }
.footer-col a, .footer-addr { display: block; color: rgba(255,255,255,.6); margin-bottom: 11px; transition: color .3s, padding .3s; }
.footer-col a:hover { color: #fff; padding-left: 5px; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 24px; color: rgba(255,255,255,.5); font-size: .92rem; }
.heart { color: var(--red-soft); }

/* Yukarı çık */
.to-top {
    position: fixed; bottom: 28px; right: 28px; z-index: 900;
    width: 52px; height: 52px; border-radius: 50%; border: 0; cursor: pointer;
    background: var(--red); color: #fff; font-size: 1.4rem; font-weight: 700;
    box-shadow: var(--shadow-red);
    opacity: 0; transform: translateY(20px) scale(.8); pointer-events: none;
    transition: .4s var(--ease);
}
.to-top.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.to-top:hover { background: var(--red-dark); transform: translateY(-4px) scale(1.05); }

/* ==========================================================================
   SCROLL REVEAL — genel animasyon
   ========================================================================== */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
    transition-delay: var(--d, 0ms);
}
[data-reveal].in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    [data-reveal] { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { max-width: 440px; }
    .about-inner { grid-template-columns: 1fr; gap: 60px; }
    .about-content { order: 2; }
    .contact-inner { grid-template-columns: 1fr; gap: 36px; }
    .services-grid, .work-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-step:not(:last-child)::after { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 720px) {
    .section { padding: 80px 0; }
    .nav-links {
        position: fixed; top: 0; right: -100%; height: 100vh; width: 82%; max-width: 340px;
        flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 2px;
        background: #fff; padding: 90px 24px 40px; box-shadow: -20px 0 60px rgba(0,0,0,.15);
        transition: right .45s var(--ease); z-index: 999; overflow-y: auto;
    }
    .nav-links.open { right: 0; }
    .nav-item { width: 100%; }
    .nav-link { font-size: 1.12rem; width: 100%; justify-content: space-between; padding: 14px 12px; }
    .nav-link::before { display: none; }

    /* Mobil dropdown = akordeon */
    .dropdown {
        position: static; transform: none; min-width: 0; padding-top: 0;
        opacity: 1; visibility: visible; pointer-events: auto;
        max-height: 0; overflow: hidden;
        transition: max-height .4s var(--ease);
    }
    .nav-item.open .dropdown { max-height: 640px; }
    .nav-item.open .caret { transform: rotate(180deg); }
    .dropdown-inner { box-shadow: none; border: 0; padding: 4px 4px 10px; background: var(--bg-soft); border-radius: 12px; margin: 2px 0 6px; }
    .dropdown-inner::before { display: none; }
    .dropdown-link { font-size: 1rem; }
    .has-dropdown:hover .dropdown { transform: none; }
    .nav-toggle { display: flex; z-index: 1001; }
    .btn-nav { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
    .services-grid, .work-grid, .testi-grid, .process-grid { grid-template-columns: 1fr; }
    .field-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .pill { display: none; }
    .hero { padding-top: 130px; }
}

/* ==========================================================================
   İÇ SAYFALAR
   ========================================================================== */

/* ---- Sayfa başlık bandı ---- */
.page-hero {
    position: relative; overflow: hidden;
    padding: 160px 0 70px;
    background: linear-gradient(180deg, var(--red-tint) 0%, #fff 100%);
    text-align: center;
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.page-hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); margin-bottom: 16px; }
.page-hero p { font-size: 1.14rem; color: var(--ink-2); max-width: 600px; margin: 0 auto; }

.breadcrumb { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px; font-weight: 600; font-size: .92rem; }
.breadcrumb a { color: var(--red); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--muted); }
.breadcrumb em { font-style: normal; color: var(--muted); }

/* ---- Hizmet detay ---- */
.detail-inner { display: grid; grid-template-columns: 1.7fr 1fr; gap: 46px; align-items: start; }
.service-icon.lg { width: 82px; height: 82px; border-radius: 20px; margin-bottom: 24px; }
.service-icon.lg svg { width: 40px; height: 40px; }
.detail-main h2 { font-size: clamp(1.7rem, 3.5vw, 2.3rem); margin-bottom: 18px; }
.detail-main .lead { font-size: 1.12rem; color: var(--ink-2); margin-bottom: 34px; }
.detail-sub { font-size: 1.3rem; margin-bottom: 20px; }

.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 26px; margin-bottom: 36px; }
.feature-list li { position: relative; padding-left: 34px; font-weight: 500; }
.feature-list li::before {
    content: "✓"; position: absolute; left: 0; top: 0;
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--red-tint); color: var(--red);
    display: grid; place-items: center; font-weight: 800; font-size: .78rem;
}

.detail-side { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 20px; }
.side-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.side-card h4 { font-size: 1.15rem; margin-bottom: 16px; }
.side-links li + li { margin-top: 4px; }
.side-links a {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 12px; border-radius: 12px; font-weight: 600; color: var(--ink-2);
    transition: background .3s, color .3s, transform .3s var(--ease);
}
.side-links a:hover { background: var(--red-tint); color: var(--red); transform: translateX(4px); }
.side-ic { width: 34px; height: 34px; border-radius: 9px; background: var(--red-tint); color: var(--red); display: grid; place-items: center; flex-shrink: 0; }
.side-ic svg { width: 18px; height: 18px; }
.side-arrow { margin-left: auto; }
.side-cta { background: linear-gradient(140deg, var(--red), var(--red-dark)); color: #fff; border: 0; }
.side-cta p { color: rgba(255,255,255,.85); margin-bottom: 18px; }

.btn-white { background: #fff; color: var(--red); }
.btn-white:hover { background: var(--ink); color: #fff; transform: translateY(-3px); }

/* ---- Değerler ---- */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 30px 26px; text-align: center;
    transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .4s;
}
.value-card .service-icon { margin: 0 auto 20px; }
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.value-card:hover .service-icon { background: var(--red); color: #fff; transform: rotate(-6deg) scale(1.05); }
.value-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.value-card p { color: var(--muted); font-size: .96rem; }

/* ---- Ekip ---- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 32px 24px; text-align: center; position: relative; overflow: hidden;
    transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-avatar {
    width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 18px;
    display: grid; place-items: center;
    background: linear-gradient(140deg, var(--red-soft), var(--red)); color: #fff;
    font-family: var(--head); font-weight: 800; font-size: 2.1rem;
    transition: transform .45s var(--ease);
}
.team-card:hover .team-avatar { transform: scale(1.08); }
.team-card h3 { font-size: 1.18rem; margin-bottom: 4px; }
.team-card > span { color: var(--red); font-weight: 600; font-size: .92rem; }
.team-social { display: flex; justify-content: center; gap: 8px; margin-top: 16px; opacity: 0; transform: translateY(8px); transition: .4s var(--ease); }
.team-card:hover .team-social { opacity: 1; transform: translateY(0); }
.team-social a { width: 36px; height: 36px; border-radius: 10px; background: var(--red-tint); color: var(--red); display: grid; place-items: center; font-weight: 700; font-size: .8rem; transition: .3s; }
.team-social a:hover { background: var(--red); color: #fff; }

/* ---- CTA bandı ---- */
.cta-band { padding: 20px 0 90px; }
.cta-inner {
    background: linear-gradient(130deg, var(--red), var(--red-dark));
    border-radius: var(--radius-lg); padding: 50px 54px;
    display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
    color: #fff; box-shadow: var(--shadow-red); position: relative; overflow: hidden;
}
.cta-inner::before {
    content: ""; position: absolute; top: -60px; right: -40px; width: 260px; height: 260px;
    border-radius: 50%; background: rgba(255,255,255,.12);
}
.cta-inner h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); margin-bottom: 8px; }
.cta-inner p { color: rgba(255,255,255,.85); position: relative; }
.hl-white { color: #fff; text-decoration: underline; text-decoration-color: rgba(255,255,255,.5); text-underline-offset: 5px; }

/* ---- İletişim sayfası ---- */
.contact-page { color: var(--ink); }
.dark-info h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 14px; color: var(--ink); }
.dark-info > p { color: var(--muted); }
.dark-info .contact-list a { color: var(--ink-2); }
.dark-info .contact-list a:hover { color: var(--red); }
.dark-info .ci { background: var(--red-tint); color: var(--red); }
.info-social { display: flex; gap: 10px; margin-top: 28px; }
.info-social a { width: 44px; height: 44px; border-radius: 12px; background: var(--red-tint); color: var(--red); display: grid; place-items: center; font-weight: 700; font-size: .85rem; transition: .35s var(--ease); }
.info-social a:hover { background: var(--red); color: #fff; transform: translateY(-4px); }

.field.invalid input, .field.invalid textarea { border-color: var(--red); background: var(--red-tint); }
.field .err { color: var(--red); font-size: .82rem; font-weight: 600; margin-top: 5px; display: block; }

.form-success { text-align: center; padding: 20px 10px 26px; }
.fs-icon { width: 60px; height: 60px; border-radius: 50%; background: #12a150; color: #fff; display: grid; place-items: center; font-size: 1.8rem; margin: 0 auto 16px; animation: pop .5s var(--ease); }
.form-success h3 { font-size: 1.4rem; margin-bottom: 6px; }
.form-success p { color: var(--muted); }
@keyframes pop { from { transform: scale(0); } to { transform: scale(1); } }

.map-section { padding-bottom: 90px; }
.map-placeholder {
    max-width: var(--maxw); margin: 0 auto; height: 320px; border-radius: var(--radius-lg);
    background: linear-gradient(140deg, #f4f4f6, #eaeaee);
    background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 44px 44px;
    display: grid; place-items: center; text-align: center; border: 1px solid var(--line);
}
.map-pin { font-size: 2.4rem; animation: floatCard 3s ease-in-out infinite; }
.map-placeholder p { font-weight: 700; margin-top: 6px; }
.map-placeholder span { color: var(--muted); font-size: .9rem; }

/* ---- Portföy filtre ---- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.filter-btn {
    font-family: var(--head); font-weight: 600; font-size: .92rem;
    padding: 10px 20px; border-radius: 100px; cursor: pointer;
    border: 1.5px solid var(--line); background: #fff; color: var(--ink-2);
    transition: .3s var(--ease);
}
.filter-btn:hover { border-color: var(--red); color: var(--red); }
.filter-btn.active { background: var(--red); border-color: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(225,15,28,.28); }
.work-card.hide { display: none; }

/* ---- 404 ---- */
.error-page { text-align: center; padding: 150px 0 120px; }
.error-code {
    font-family: var(--head); font-weight: 800; font-size: clamp(6rem, 18vw, 11rem);
    line-height: .9; background: linear-gradient(140deg, var(--red), var(--red-soft));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    display: block; margin-bottom: 10px;
}
.error-page h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 14px; }
.error-page p { color: var(--muted); max-width: 460px; margin: 0 auto 30px; font-size: 1.08rem; }

/* ---- İç sayfa responsive ---- */
@media (max-width: 980px) {
    .detail-inner { grid-template-columns: 1fr; gap: 34px; }
    .detail-side { position: static; }
    .values-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
    .page-hero { padding: 120px 0 50px; }
    .feature-list { grid-template-columns: 1fr; }
    .values-grid, .team-grid { grid-template-columns: 1fr; }
    .cta-inner { padding: 36px 28px; text-align: center; justify-content: center; }
}
