/* ================================================
   TEMA: MINIMAL — Siyah/Beyaz/Kırmızı, Editorial
   Karakter: Maksimum boşluk, güçlü kontrast, baskı estetiği
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;700&display=swap');

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

:root {
  --red:    #e02020;
  --red-d:  #b81818;
  --black:  #0a0a0a;
  --dark:   #1a1a1a;
  --text:   #1a1a1a;
  --muted:  #888888;
  --light:  #f2f2f2;
  --border: #e0e0e0;
  --white:  #ffffff;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); line-height: 1.7; }
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 600; letter-spacing: -.02em; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }

/* ── BUTTONS ── */
.cta-btn { display: inline-block; padding: 13px 32px; font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; cursor: pointer; border: none; transition: all .2s; }
.cta-btn.primary  { background: var(--black); color: var(--white); }
.cta-btn.primary:hover { background: var(--red); }
.cta-btn.ghost    { background: transparent; border: 1px solid rgba(255,255,255,.4); color: var(--white); }
.cta-btn.ghost:hover { border-color: var(--white); background: var(--white); color: var(--black); }
.cta-btn.outline  { background: transparent; border: 1px solid var(--black); color: var(--black); }
.cta-btn.outline:hover { background: var(--black); color: var(--white); }
.cta-btn.dark     { background: var(--black); color: var(--white); }
.cta-btn.dark:hover { background: var(--red); }

/* ── SECTION LABEL ── */
.section-label { display: inline-block; font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--red); margin-bottom: 20px; }
.section-label.center { display: block; text-align: center; }
.section-label.light  { color: rgba(255,255,255,.4); }
.section-title { font-size: 52px; text-align: center; margin-bottom: 16px; }
.section-sub   { color: var(--muted); text-align: center; margin-bottom: 64px; font-size: 15px; font-weight: 300; }

/* ── NAV ── */
nav.site-nav { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 200; }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 48px; display: flex; align-items: center; gap: 0; min-height: 68px; }
.nav-logo { display: flex; align-items: center; padding: 16px 48px 16px 0; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 36px; }
.nav-links { display: flex; align-items: center; flex: 1; gap: 36px; }
.nav-links a { color: var(--muted); text-decoration: none; font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; transition: color .2s; }
.nav-links a:hover { color: var(--black); }
.nav-right { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.lang-switcher { display: flex; gap: 0; border: 1px solid var(--border); }
.lang-btn { padding: 6px 10px; background: transparent; color: var(--muted); text-decoration: none; font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; transition: all .2s; border-right: 1px solid var(--border); }
.lang-btn:last-child { border-right: none; }
.lang-btn:hover, .lang-btn.active { background: var(--black); color: var(--white); }
.nav-phone { display: flex; align-items: center; gap: 8px; color: var(--black); text-decoration: none; font-size: 13px; font-weight: 500; }
.nav-phone:hover { color: var(--red); }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 10px; background: none; border: none; cursor: pointer; }
.nav-burger span { display: block; width: 22px; height: 1px; background: var(--black); }

/* ── HERO ── */
.hero { background: var(--black); color: var(--white); min-height: 100vh; position: relative; overflow: hidden; }
.hero::before { content: 'DIGITAL'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: 'Cormorant Garamond', serif; font-size: 28vw; font-weight: 300; color: rgba(255,255,255,.02); white-space: nowrap; letter-spacing: -.05em; pointer-events: none; }
.hero .container { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; position: relative; z-index: 1; }
.hero-left { padding: 120px 60px 80px 0; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid rgba(255,255,255,.06); }
.hero-badge { font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--red); margin-bottom: 32px; }
.hero h1 { font-size: clamp(52px, 7vw, 96px); font-weight: 300; line-height: .9; margin-bottom: 40px; }
.hero h1 span { font-style: italic; color: var(--red); display: block; }
.hero-left > p { font-size: 15px; color: rgba(255,255,255,.4); max-width: 380px; margin-bottom: 48px; font-weight: 300; line-height: 1.9; }
.hero-btns { display: flex; gap: 16px; margin-bottom: 64px; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; border-top: 1px solid rgba(255,255,255,.06); background: rgba(255,255,255,.06); }
.stat-item { background: var(--black); padding: 24px; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 600; color: var(--white); display: block; line-height: 1; }
.stat-label { font-size: 10px; color: rgba(255,255,255,.3); letter-spacing: .2em; text-transform: uppercase; margin-top: 6px; display: block; }
.hero-visual { display: flex; align-items: center; justify-content: center; padding: 80px; }
.hero-visual-inner { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; position: relative; }
.hero-visual-inner::before { content: ''; width: 2px; height: 60%; background: linear-gradient(to bottom, transparent, var(--red), transparent); position: absolute; left: 50%; transform: translateX(-50%); }
.hero-visual-inner::after { content: '+'; font-family: 'DM Sans', sans-serif; font-size: 180px; font-weight: 700; color: rgba(255,255,255,.03); position: absolute; }
.hero-card-float { position: absolute; bottom: 40px; right: 40px; background: var(--red); padding: 20px 24px; display: flex; align-items: center; gap: 12px; }
.hcf-icon { font-size: 20px; }
.hero-card-float strong { display: block; font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--white); }
.hero-card-float small { color: rgba(255,255,255,.7); font-size: 11px; }

/* ── HAKKIMIZDA ── */
.about-section { padding: 128px 0; }
.about-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.about-img-wrap { position: relative; }
.about-img-placeholder { height: 560px; background: var(--light); position: relative; }
.about-img-placeholder::after { content: ''; position: absolute; top: 24px; left: 24px; right: -24px; bottom: -24px; border: 1px solid var(--border); z-index: -1; }
.about-social-card { position: absolute; bottom: 0; right: -32px; background: var(--red); padding: 28px 32px; }
.about-social-card strong { display: block; font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.social-icons { display: flex; gap: 6px; }
.social-icons a { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; background: rgba(0,0,0,.2); color: var(--white); text-decoration: none; font-size: 10px; font-weight: 700; transition: background .2s; }
.social-icons a:hover { background: rgba(0,0,0,.5); }
.about-right { padding: 80px 80px 80px 80px; display: flex; flex-direction: column; justify-content: center; }
.about-right h2 { font-size: 52px; font-weight: 300; line-height: 1.05; margin-bottom: 28px; }
.about-right h2 span { font-style: italic; color: var(--red); }
.about-right > p { color: var(--muted); font-size: 15px; line-height: 1.9; margin-bottom: 36px; font-weight: 300; }

/* ── HİZMETLER ── */
.services { padding: 128px 0; background: var(--light); }
.services .container { display: flex; flex-direction: column; gap: 64px; }
.services-left h2 { font-size: 52px; font-weight: 300; line-height: 1.05; margin-bottom: 16px; }
.services-left > p { color: var(--muted); max-width: 360px; font-weight: 300; font-size: 15px; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); }
.service-card { background: var(--white); transition: all .3s; }
.service-card:hover { background: var(--black); }
.service-card:hover .service-card-body h3, .service-card:hover .service-card-body p { color: var(--white); }
.service-card:hover .service-card-body p { color: rgba(255,255,255,.5); }
.service-card:hover .service-dash { background: var(--red); }
.service-img { height: 200px; overflow: hidden; }
.service-img-bg { width: 100%; height: 100%; background: var(--light); transition: all .3s; }
.service-card:hover .service-img-bg { background: var(--dark); }
.service-img-bg::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: var(--red); }
.service-card-body { padding: 28px; }
.service-dash { display: block; width: 20px; height: 1px; background: var(--black); margin-bottom: 14px; transition: background .3s; }
.service-card h3 { font-size: 22px; font-weight: 600; margin-bottom: 10px; transition: color .3s; }
.service-card p { color: var(--muted); font-size: 13px; font-weight: 300; line-height: 1.7; transition: color .3s; }
.services-cta { text-align: center; }

/* ── REFERANSLAR ── */
.testimonials { padding: 96px 0; }
.testimonials-wrap { position: relative; }
.testi-slide { display: none; }
.testi-slide.active { display: grid; grid-template-columns: auto 1fr auto; gap: 48px; align-items: center; }
.testi-avatar img { width: 80px; height: 80px; object-fit: cover; border: 1px solid var(--border); }
.testi-content p { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-style: italic; color: var(--text); line-height: 1.7; margin-bottom: 20px; }
.testi-content strong { font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; display: block; }
.testi-content span { color: var(--muted); font-size: 12px; }
.testi-stars { color: var(--red); font-size: 14px; letter-spacing: 3px; margin-top: 8px; }
.testi-quote { font-size: 80px; color: var(--black); opacity: .06; font-family: 'Cormorant Garamond', serif; line-height: 1; align-self: flex-end; }
.testi-nav { position: absolute; right: 0; top: -52px; display: flex; gap: 0; border: 1px solid var(--border); }
.testi-prev, .testi-next { width: 44px; height: 44px; background: var(--white); border: none; border-right: 1px solid var(--border); color: var(--black); font-size: 20px; cursor: pointer; transition: all .2s; display: flex; align-items: center; justify-content: center; }
.testi-next { border-right: none; }
.testi-prev:hover, .testi-next:hover { background: var(--black); color: var(--white); }

/* ── PAKETLERİMİZ ── */
.packages { padding: 128px 0; background: var(--light); }
.packages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); }
.package-card { background: var(--white); display: flex; flex-direction: column; }
.package-card.featured { background: var(--black); }
.package-head { padding: 36px; border-bottom: 1px solid var(--border); }
.package-card.featured .package-head { border-bottom-color: rgba(255,255,255,.06); }
.package-head h3 { font-size: 28px; font-weight: 600; margin-bottom: 6px; }
.package-card.featured .package-head h3 { color: var(--white); }
.package-head span { font-size: 11px; color: var(--red); letter-spacing: .2em; text-transform: uppercase; font-family: 'DM Sans', sans-serif; }
.package-card ul { padding: 28px 36px; flex: 1; list-style: none; }
.package-card ul li { padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--muted); font-weight: 300; }
.package-card ul li::before { content: '— '; color: var(--red); }
.package-card.featured ul li { border-bottom-color: rgba(255,255,255,.05); color: rgba(255,255,255,.5); }
.package-card .cta-btn { margin: 0 36px 36px; display: block; text-align: center; letter-spacing: .15em; }

/* ── SÜREÇLERİMİZ ── */
.process { padding: 128px 0; }
.process .container { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: start; }
.process-left { padding-right: 80px; }
.process-left h2 { font-size: 52px; font-weight: 300; line-height: 1.05; margin: 12px 0 40px; }
.process-visual { height: 360px; background: var(--light); border: 1px solid var(--border); position: relative; }
.process-visual::after { content: ''; position: absolute; top: 24px; left: 24px; right: 24px; bottom: 24px; border: 1px solid var(--border); }
.process-right { padding-left: 80px; border-left: 1px solid var(--border); display: flex; flex-direction: column; gap: 0; }
.process-card { padding: 32px 0; border-bottom: 1px solid var(--border); display: flex; gap: 24px; transition: padding-left .2s; }
.process-card:last-child { border-bottom: none; }
.process-card:hover { padding-left: 12px; }
.process-icon { font-size: 20px; flex-shrink: 0; width: 32px; }
.process-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.process-card p { color: var(--muted); font-size: 13px; font-weight: 300; line-height: 1.7; }

/* ── STATS BAR ── */
.stats-bar { background: var(--red); padding: 40px 0; }
.stats-bar .container { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 32px; }
.stats-bar-item { display: flex; align-items: center; gap: 20px; color: var(--white); }
.sbi-num { font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 600; line-height: 1; }
.stats-bar-item strong { display: block; font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.stats-bar-item small { font-size: 11px; opacity: .6; }

/* ── BLOG ── */
.blog-section { padding: 128px 0; }
.blog-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.blog-featured { padding-right: 80px; border-right: 1px solid var(--border); }
.blog-featured h2 { font-size: 48px; font-weight: 300; line-height: 1.1; margin-bottom: 24px; }
.blog-featured > p { color: var(--muted); font-size: 15px; margin-bottom: 36px; font-weight: 300; line-height: 1.8; }
.blog-grid { padding-left: 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); align-content: start; }
.blog-card { background: var(--white); transition: background .2s; }
.blog-card:hover { background: var(--light); }
.blog-card-img { height: 120px; background: var(--light); position: relative; overflow: hidden; }
.blog-card-img::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40%; height: 2px; background: var(--red); }
.blog-card-body { padding: 16px; }
.blog-card-cat { font-size: 9px; color: var(--red); letter-spacing: .2em; text-transform: uppercase; display: block; margin-bottom: 8px; font-family: 'DM Sans', sans-serif; font-weight: 700; }
.blog-card h3 { font-size: 15px; font-weight: 600; line-height: 1.3; }
.blog-card h3 a { text-decoration: none; color: var(--text); }
.blog-card h3 a:hover { color: var(--red); }

/* ── İLETİŞİM ── */
.contact-section { background: var(--black); color: var(--white); padding: 128px 0; }
.contact-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.contact-left { padding-right: 80px; border-right: 1px solid rgba(255,255,255,.06); }
.contact-left h2 { font-size: 56px; font-weight: 300; line-height: 1; margin-bottom: 24px; }
.contact-left h2 span { font-style: italic; color: var(--red); }
.contact-left > p { color: rgba(255,255,255,.35); font-size: 15px; margin-bottom: 36px; font-weight: 300; line-height: 1.9; }
.contact-right { padding-left: 80px; display: flex; align-items: center; }
.contact-items { display: flex; flex-direction: column; width: 100%; }
.contact-item { display: flex; align-items: flex-start; gap: 20px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.04); }
.contact-item:last-child { border-bottom: none; }
.ci-icon { font-size: 16px; color: var(--red); flex-shrink: 0; margin-top: 3px; }
.contact-item strong { display: block; font-family: 'DM Sans', sans-serif; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--red); margin-bottom: 4px; font-weight: 700; }
.contact-item a, .contact-item span { color: rgba(255,255,255,.5); text-decoration: none; font-size: 14px; font-weight: 300; }
.contact-item a:hover { color: var(--white); }

/* ── FOOTER ── */
footer { background: #050505; color: rgba(255,255,255,.4); }
.footer-logo-banner { padding: 48px; text-align: center; border-bottom: 1px solid rgba(255,255,255,.04); }
.footer-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 60px; padding: 64px 48px; max-width: 1280px; margin: 0 auto; }
.footer-col h4 { font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 700; color: var(--white); letter-spacing: .25em; text-transform: uppercase; margin-bottom: 28px; }
.footer-col nav { display: flex; flex-direction: column; gap: 12px; }
.footer-col nav a { color: rgba(255,255,255,.35); text-decoration: none; font-size: 13px; font-weight: 300; letter-spacing: .05em; transition: color .2s; }
.footer-col nav a:hover { color: var(--white); }
.footer-langs { display: flex; gap: 0; margin-top: 12px; border: 1px solid rgba(255,255,255,.08); width: fit-content; }
.footer-langs a { padding: 4px 10px; font-size: 10px; color: rgba(255,255,255,.3); text-decoration: none; letter-spacing: .1em; font-family: 'DM Sans', sans-serif; font-weight: 700; border-right: 1px solid rgba(255,255,255,.08); transition: all .2s; }
.footer-langs a:last-child { border-right: none; }
.footer-langs a.active, .footer-langs a:hover { background: var(--red); color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact p { font-size: 13px; display: flex; gap: 10px; font-weight: 300; }
.footer-contact a { color: rgba(255,255,255,.35); text-decoration: none; }
.footer-contact a:hover { color: var(--white); }
.footer-posts { display: flex; flex-direction: column; gap: 14px; }
.footer-posts a { color: rgba(255,255,255,.35); text-decoration: none; font-size: 13px; font-weight: 300; line-height: 1.4; transition: color .2s; }
.footer-posts a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.04); padding: 20px 48px; max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-size: 11px; letter-spacing: .08em; }
.footer-bottom a { color: rgba(255,255,255,.25); text-decoration: none; margin-left: 20px; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; transition: color .2s; }
.footer-bottom a:hover { color: var(--red); }

/* Blog & Article */
.page-hero { background: var(--black); color: var(--white); padding: 120px 0; }
.page-hero h1 { font-size: 72px; font-weight: 300; }
.page-hero h1 span { font-style: italic; color: var(--red); }
.page-hero p { color: rgba(255,255,255,.35); font-size: 15px; font-weight: 300; margin-top: 16px; }
.blog-list { padding: 80px 0; }
.posts-list { display: flex; flex-direction: column; gap: 0; }
.post-list-item { background: var(--white); padding: 36px 0; display: flex; justify-content: space-between; align-items: center; gap: 24px; transition: all .2s; border-bottom: 1px solid var(--border); }
.post-list-item:hover .post-list-inner h2 a { color: var(--red); }
.post-list-inner { flex: 1; }
.post-list-item h2 { font-size: 24px; font-weight: 600; margin-bottom: 8px; }
.post-list-item h2 a { color: var(--text); text-decoration: none; transition: color .2s; }
.post-list-item p { color: var(--muted); font-size: 13px; font-weight: 300; }
.post-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 8px; }
.post-date { color: var(--muted); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; font-family: 'DM Sans', sans-serif; }
.post-ai-badge { background: var(--red); color: var(--white); font-size: 9px; font-weight: 700; padding: 2px 10px; letter-spacing: .15em; text-transform: uppercase; }
.read-more { color: var(--red); font-size: 11px; text-decoration: none; letter-spacing: .15em; text-transform: uppercase; font-weight: 700; white-space: nowrap; }
.read-more::after { content: ' →'; }
.pagination { display: flex; justify-content: center; gap: 1px; background: var(--border); width: fit-content; margin: 60px auto 0; }
.page-btn { display: inline-block; padding: 10px 18px; background: var(--white); color: var(--text); text-decoration: none; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; transition: all .2s; }
.page-btn:hover, .page-btn.active { background: var(--black); color: var(--white); }
.article-wrap { max-width: 700px; margin: 0 auto; padding: 80px 24px 128px; }
.breadcrumb { font-size: 10px; color: var(--muted); margin-bottom: 48px; letter-spacing: .2em; text-transform: uppercase; font-family: 'DM Sans', sans-serif; }
.breadcrumb a { color: var(--red); text-decoration: none; }
.article-header h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 300; line-height: 1.1; margin-bottom: 28px; }
.article-meta { display: flex; gap: 20px; color: var(--muted); font-size: 10px; padding-bottom: 32px; border-bottom: 1px solid var(--border); letter-spacing: .2em; text-transform: uppercase; margin-bottom: 48px; }
.article-content { font-size: 17px; line-height: 2; font-weight: 300; }
.article-content h2 { font-size: 32px; font-weight: 600; margin: 60px 0 20px; }
.article-content h3 { font-size: 20px; font-weight: 600; margin: 40px 0 14px; color: var(--red); }
.article-content p { margin-bottom: 24px; }
.article-content ul, .article-content ol { margin: 0 0 24px 24px; }
.article-content li { margin-bottom: 10px; }
.tag { display: inline-block; background: transparent; color: var(--text); padding: 5px 14px; border: 1px solid var(--border); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; margin: 0 6px 6px 0; transition: all .2s; font-family: 'DM Sans', sans-serif; }
.tag:hover { border-color: var(--red); color: var(--red); }

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .blog-section .container { grid-template-columns: 1fr; }
  .blog-featured { border-right: none; padding-right: 0; margin-bottom: 64px; }
  .blog-grid { padding-left: 0; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  nav.site-nav.open .nav-links { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 16px 48px; gap: 0; border-top: 1px solid var(--border); }
  nav.site-nav.open .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--border); }
  .nav-burger { display: flex; }
  .hero .container, .about-section .container, .process .container, .contact-section .container { grid-template-columns: 1fr; }
  .hero-left { padding: 80px 0; }
  .hero-visual { display: none; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .about-right { padding: 48px 0; }
  .process-left { padding-right: 0; margin-bottom: 48px; }
  .process-right { padding-left: 0; border-left: none; border-top: 1px solid var(--border); padding-top: 48px; }
  .contact-left { border-right: none; padding-right: 0; margin-bottom: 48px; }
  .contact-right { padding-left: 0; }
  .services-grid, .packages-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .testi-slide.active { grid-template-columns: 1fr; }
  .testi-quote { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   YENİ BİLEŞENLER v2 — MINIMAL TEMA
════════════════════════════════════════════════════════════ */

/* ── FLOATING YAN BUTONLAR ── */
.floating-buttons { position: fixed; left: 16px; bottom: 40px; z-index: 999; display: flex; flex-direction: column; gap: 10px; }
.float-btn { width: 48px; height: 48px; border-radius: 0; display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; box-shadow: 0 2px 12px rgba(0,0,0,.2); transition: transform .2s; }
.float-btn:hover { transform: scale(1.1); }
.float-wa   { background: #25d366; }
.float-loc  { background: #ea4335; }
.float-call { background: var(--black); }

/* ── DİL DROPDOWN ── */
.lang-dropdown { position: relative; }
.lang-current { display: flex; align-items: center; gap: 6px; padding: 7px 13px; background: transparent; border: 1px solid var(--border); font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 700; color: var(--dark); cursor: pointer; transition: all .2s; white-space: nowrap; letter-spacing: .15em; text-transform: uppercase; }
.lang-current:hover { border-color: var(--black); }
.lang-current svg { transition: transform .2s; }
.lang-dropdown.open .lang-current svg { transform: rotate(180deg); }
.lang-menu { position: absolute; top: calc(100% + 6px); right: 0; min-width: 96px; background: var(--white); border: 1px solid var(--black); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: all .2s; z-index: 300; box-shadow: 4px 4px 0 var(--black); }
.lang-menu.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.lang-option { display: block; padding: 10px 16px; font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 700; text-decoration: none; color: var(--dark); transition: all .15s; letter-spacing: .15em; text-transform: uppercase; border-bottom: 1px solid var(--border); }
.lang-option:last-child { border-bottom: none; }
.lang-option:hover, .lang-option.active { background: var(--red); color: var(--white); }

/* ── GÖRSEL DESTEĞİ ── */
.hero-visual-inner { overflow: hidden; }
.hero-visual-inner img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); }
.about-img-placeholder img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(15%); }
.service-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); transition: filter .4s, transform .4s; }
.service-card:hover .service-img img { filter: grayscale(0); transform: scale(1.04); }
.process-visual { overflow: hidden; }
.process-visual img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); }
.testi-avatar img { width: 88px; height: 88px; object-fit: cover; border-radius: 0; filter: grayscale(30%); border: 1px solid var(--border); }

/* ── NAV SCROLL + MOBILE OPEN ── */
nav.site-nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.1); }
.nav-links.open { display: flex !important; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 0; gap: 0; border: 1px solid var(--border); border-top: none; z-index: 199; }
.nav-links.open a { padding: 16px 48px !important; border-bottom: 1px solid var(--border); font-weight: 300; letter-spacing: .12em; font-size: 12px; text-transform: uppercase; }
.nav-links.open a:last-child { border-bottom: none; }
.nav-links.open a:hover { background: var(--light); }
.nav-links a.active { color: var(--red); border-bottom: 2px solid var(--red); }

/* ── BLOG ALL GRID ── */
.blog-all-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 8px; }
.blog-all-grid .blog-card { display: flex; flex-direction: column; background: none; border: none; border-radius: 0; box-shadow: none; }
.blog-all-grid .blog-card:hover { transform: none; }
.blog-all-grid .blog-card-img { height: 200px; overflow: hidden; }
.blog-all-grid .blog-card-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); transition: filter .4s, transform .4s; }
.blog-all-grid .blog-card:hover .blog-card-img img { filter: grayscale(0); transform: scale(1.04); }
.blog-all-grid .blog-card-body { flex: 1; display: flex; flex-direction: column; gap: 8px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.blog-all-grid .blog-card h3 { flex: 1; }
.blog-read-more { display: inline-flex; align-items: center; gap: 8px; font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 700; color: var(--red); text-decoration: none; margin-top: auto; letter-spacing: .15em; text-transform: uppercase; transition: gap .2s; }
.blog-read-more:hover { gap: 14px; }
.blog-header { margin-bottom: 20px; }

/* ── FOOTER ── */
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 0; }
.footer-no-posts { font-size: 12px; font-style: italic; color: var(--muted); }
.footer-logo-banner { display: flex; align-items: center; justify-content: center; }
.footer-logo-banner img { height: 52px; width: auto; }

/* ── CTA GHOST DARK ── */
.cta-btn.ghost-dark { background: transparent; border: 1px solid rgba(255,255,255,.4); color: #fff; }
.cta-btn.ghost-dark:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* ── BLOG LIST PAGE ── */
.blog-empty { text-align: center; padding: 80px 0; }
.blog-empty span { font-size: 48px; display: block; margin-bottom: 16px; filter: grayscale(1); }
.blog-empty p { font-size: 20px; font-family: 'Cormorant Garamond', serif; font-style: italic; margin-bottom: 28px; color: var(--muted); }
.page-hero-breadcrumb { display: flex; align-items: center; gap: 10px; font-family: 'DM Sans', sans-serif; font-size: 11px; color: rgba(255,255,255,.4); margin-top: 16px; letter-spacing: .15em; text-transform: uppercase; }
.page-hero-breadcrumb a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.page-hero-breadcrumb a:hover { color: var(--white); }

/* ── MAKALE SAYFASI ── */
.article-page { background: var(--white); }
.article-hero { padding: 24px 0; background: var(--dark); border-bottom: 4px solid var(--red); }
.article-hero .breadcrumb { margin-bottom: 0; }
.article-views { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; }
.article-content blockquote { border-left: 3px solid var(--red); margin: 32px 0; padding: 14px 24px; background: var(--light); font-family: 'Cormorant Garamond', serif; font-size: 20px; font-style: italic; }
.article-content code { background: var(--light); padding: 2px 8px; font-size: 13px; font-family: 'Courier New', monospace; color: var(--red-d); border: 1px solid var(--border); }
.article-content pre { background: var(--black); color: #ddd; padding: 22px 24px; overflow-x: auto; margin: 24px 0; font-size: 13px; line-height: 1.7; }
.article-content pre code { background: none; border: none; padding: 0; color: #fff; }
.article-content table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.article-content th { background: var(--black); color: var(--white); padding: 12px 16px; text-align: left; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-family: 'DM Sans', sans-serif; }
.article-content td { padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: 14px; }
.article-tags { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.article-tags strong { font-family: 'DM Sans', sans-serif; font-size: 11px; color: var(--muted); letter-spacing: .15em; text-transform: uppercase; }
.article-cta-box { margin-top: 56px; background: var(--black); padding: 36px 40px; display: flex; align-items: center; justify-content: space-between; gap: 28px; border-left: 4px solid var(--red); }
.article-cta-content h3 { font-size: 24px; color: var(--white); margin-bottom: 8px; font-family: 'Cormorant Garamond', serif; font-style: italic; }
.article-cta-content p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.7; }
.article-cta-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
.related-posts { margin-top: 56px; padding-top: 36px; border-top: 1px solid var(--border); }
.related-title { font-size: 24px; color: var(--dark); margin-bottom: 20px; font-family: 'Cormorant Garamond', serif; }
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.related-card { display: flex; flex-direction: column; gap: 8px; padding: 0 0 20px 0; border-bottom: 1px solid var(--border); text-decoration: none; transition: all .2s; }
.related-card:hover .related-card-title { color: var(--red); }
.related-card-title { font-size: 15px; font-weight: 600; color: var(--dark); line-height: 1.4; font-family: 'Cormorant Garamond', serif; font-style: italic; }
.related-card-date { font-family: 'DM Sans', sans-serif; font-size: 11px; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) { .blog-all-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .floating-buttons { left: 10px; bottom: 24px; gap: 8px; }
  .float-btn { width: 42px; height: 42px; }
  .nav-phone-text { display: none; }
  .blog-all-grid { grid-template-columns: 1fr; }
  .article-cta-box { flex-direction: column; padding: 28px 24px; }
  .article-cta-actions { width: 100%; }
  .article-cta-actions .cta-btn { flex: 1; text-align: center; }
  .related-grid { grid-template-columns: 1fr; }
  .post-list-item { flex-direction: column; align-items: flex-start !important; gap: 10px; }
  .page-hero h1 { font-size: clamp(28px, 7vw, 52px) !important; }
}
