/* =============================================================
   Mobil Uygulama Geliştirme Ajansı — main.css
   Tüm renkler için :root değişkenlerini Customizer üzerinden
   override eden <style> etiketi functions.php'de üretilmektedir.
   ============================================================= */

/* ── Default CSS Variables (Customizer override eder) ─────── */
:root {
  --brand-primary:    #0ea5e9;
  --brand-secondary:  #6366f1;
  --brand-accent:     #f59e0b;
  --brand-dark:       #0a0f1e;
  --brand-darker:     #060a14;
  --brand-surface:    #111827;
  --brand-border:     rgba(255,255,255,0.08);
  --brand-text:       #f1f5f9;
  --brand-muted:      #94a3b8;
  --brand-white:      #ffffff;
  --font-display:     'Syne', sans-serif;
  --font-body:        'DM Sans', sans-serif;
  --max-width:        1200px;
  --nav-height:       72px;
  --radius:           16px;
  --radius-sm:        8px;
  --ease:             cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: var(--font-body); background: var(--brand-dark); color: var(--brand-text); overflow-x: hidden; line-height: 1.7; }
img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Utilities ─────────────────────────────────────────────── */
.container   { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section     { padding: 96px 0; }
.section--darker { background: var(--brand-darker); }
.text-center { text-align: center; }

.gradient-text {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(14,165,233,0.12);
  border: 1px solid rgba(14,165,233,0.3);
  color: var(--brand-primary);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--brand-muted); font-size: 1.1rem;
  max-width: 640px; margin: 0 auto 56px;
}

/* Reveal Animation */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #fff; font-weight: 700; font-size: 1rem;
  padding: 16px 32px; border-radius: 100px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(14,165,233,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(14,165,233,0.45); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 1px solid var(--brand-border);
  color: var(--brand-text); font-weight: 600; font-size: 1rem;
  padding: 16px 32px; border-radius: 100px;
  transition: border-color .2s, background .2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.05); }

/* ── Navbar ─────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  display: flex; align-items: center;
  transition: background .3s, box-shadow .3s;
}
#navbar.scrolled { background: rgba(10,15,30,0.9); backdrop-filter: blur(20px); box-shadow: 0 1px 0 var(--brand-border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; }
.nav-logo img { height: 40px; width: auto; }
.nav-logo-icon { width: 38px; height: 38px; border-radius: 10px; background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary)); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 0.8rem; color: #fff; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: .9rem; font-weight: 500; color: var(--brand-muted); transition: color .2s; }
.nav-links a:hover { color: var(--brand-white); }

.btn-nav { background: var(--brand-primary); color: var(--brand-dark); font-weight: 700; font-size: .875rem; padding: 10px 22px; border-radius: 100px; transition: transform .2s, box-shadow .2s; }
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(14,165,233,0.35); }

.nav-burger { display: none; flex-direction: column; gap: 5px; width: 28px; background: none; }
.nav-burger span { display: block; height: 2px; background: var(--brand-text); border-radius: 2px; transition: all .3s; }

.nav-mobile { display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; background: rgba(10,15,30,.97); backdrop-filter: blur(20px); padding: 24px; flex-direction: column; gap: 4px; border-bottom: 1px solid var(--brand-border); z-index: 999; }
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 12px 16px; border-radius: 8px; color: var(--brand-muted); font-weight: 500; transition: background .2s, color .2s; }
.nav-mobile a:hover { background: var(--brand-surface); color: var(--brand-white); }
.nav-mob-cta { color: var(--brand-primary) !important; font-weight: 700 !important; }

/* ── Hero ─────────────────────────────────────────────── */
#hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: var(--nav-height); }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(ellipse at 20% 50%, rgba(14,165,233,.12) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(99,102,241,.1) 0%, transparent 60%); }
.hero-grid { position: absolute; inset: 0; z-index: 0; opacity: .04; background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px); background-size: 60px 60px; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 80px 24px; }

.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--brand-primary); margin-bottom: 24px; }
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 2px; background: var(--brand-primary); }
.hero-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4.2rem); font-weight: 800; line-height: 1.1; margin-bottom: 24px; }
.hero-desc { font-size: 1.1rem; color: var(--brand-muted); line-height: 1.8; margin-bottom: 40px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 32px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--brand-border); flex-wrap: wrap; }
.hero-stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--brand-primary); line-height: 1; }
.hero-stat-label { font-size: .82rem; color: var(--brand-muted); margin-top: 4px; }

/* Phone mockup */
.hero-visual { position: relative; }
.hero-phone-mockup { position: relative; width: 300px; margin: 0 auto; }
.phone-frame { background: linear-gradient(145deg, #1e293b, #0f172a); border: 2px solid rgba(255,255,255,.1); border-radius: 44px; padding: 12px; box-shadow: 0 40px 100px rgba(0,0,0,.6); }
.phone-screen { background: linear-gradient(160deg, var(--brand-primary) 0%, var(--brand-secondary) 50%, var(--brand-dark) 100%); border-radius: 36px; overflow: hidden; aspect-ratio: 9/19; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 32px 24px; gap: 16px; }
.phone-app-icon { width: 72px; height: 72px; border-radius: 20px; background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-size: 2rem; animation: float 3s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.phone-screen-text { color: #fff; text-align: center; }
.phone-screen-text strong { display: block; font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.phone-screen-text span { font-size: .8rem; opacity: .8; }
.phone-download-btn { background: #fff; color: var(--brand-dark); font-weight: 700; font-size: .85rem; padding: 12px 24px; border-radius: 100px; margin-top: 8px; }

.hero-floating-card { position: absolute; background: rgba(17,24,39,.9); backdrop-filter: blur(16px); border: 1px solid var(--brand-border); border-radius: 14px; padding: 14px 18px; display: flex; align-items: center; gap: 12px; animation: float 4s ease-in-out infinite; white-space: nowrap; }
.fc-top { top: 5%; right: -5%; animation-delay: .5s; }
.fc-bottom { bottom: 15%; left: -10%; animation-delay: 1s; }
.card-icon { font-size: 1.5rem; }
.card-info strong { display: block; font-size: .85rem; font-weight: 700; }
.card-info span { font-size: .75rem; color: var(--brand-muted); }

/* ── Tech Strip ─────────────────────────────────────── */
.tech-strip { padding: 32px 0; border-top: 1px solid var(--brand-border); border-bottom: 1px solid var(--brand-border); overflow: hidden; }
.tech-strip-inner { display: flex; gap: 48px; align-items: center; animation: marquee 25s linear infinite; width: max-content; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tech-item { display: flex; align-items: center; gap: 10px; white-space: nowrap; color: var(--brand-muted); font-weight: 600; font-size: .95rem; }
.tech-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-primary); flex-shrink: 0; }

/* ── Services ─────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.service-card { background: var(--brand-surface); border: 1px solid var(--brand-border); border-radius: var(--radius); padding: 32px; transition: border-color .3s, transform .3s, box-shadow .3s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--brand-primary), transparent); opacity: 0; transition: opacity .3s; }
.service-card:hover { border-color: rgba(14,165,233,.25); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.4); }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, rgba(14,165,233,.2), rgba(99,102,241,.2)); border: 1px solid rgba(14,165,233,.2); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; }
.service-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.service-card p { color: var(--brand-muted); font-size: .92rem; line-height: 1.7; }

/* ── App Models ─────────────────────────────────────── */
.models-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--brand-border); }
.model-item { background: var(--brand-surface); padding: 32px 28px; transition: background .3s; }
.model-item:hover { background: rgba(17,24,39,.8); }
.model-emoji { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.model-item h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.model-item p { color: var(--brand-muted); font-size: .85rem; line-height: 1.6; }
.model-tag { display: inline-block; margin-top: 12px; background: rgba(14,165,233,.1); color: var(--brand-primary); font-size: .72rem; font-weight: 600; padding: 3px 10px; border-radius: 100px; letter-spacing: .05em; }

/* ── Technologies ─────────────────────────────────── */
.tech-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.tech-card { background: var(--brand-surface); border: 1px solid var(--brand-border); border-radius: var(--radius); padding: 36px; }
.tech-card--featured { border-color: rgba(14,165,233,.3); background: linear-gradient(145deg, rgba(14,165,233,.06), var(--brand-surface)); }
.tech-card-label { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brand-primary); margin-bottom: 8px; }
.tech-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; margin-bottom: 16px; }
.tech-card p { color: var(--brand-muted); font-size: .9rem; margin-bottom: 24px; }
.tech-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tech-pill { background: rgba(255,255,255,.06); border: 1px solid var(--brand-border); padding: 6px 14px; border-radius: 100px; font-size: .82rem; font-weight: 600; }
.tech-backend { background: var(--brand-surface); border: 1px solid var(--brand-border); border-radius: var(--radius); padding: 36px; margin-top: 24px; display: flex; align-items: center; gap: 48px; flex-wrap: wrap; }
.tech-backend h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.tech-backend p { color: var(--brand-muted); font-size: .88rem; }

/* ── Why Us ─────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.why-left h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; margin-bottom: 24px; line-height: 1.2; }
.why-left p { color: var(--brand-muted); font-size: 1rem; margin-bottom: 16px; line-height: 1.8; }
.why-features { display: flex; flex-direction: column; gap: 16px; }
.why-feature { display: flex; align-items: flex-start; gap: 16px; background: var(--brand-surface); border: 1px solid var(--brand-border); border-radius: var(--radius); padding: 20px 24px; transition: border-color .3s; }
.why-feature:hover { border-color: rgba(14,165,233,.25); }
.why-feature-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(14,165,233,.12); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.why-feature-info h4 { font-weight: 700; margin-bottom: 4px; font-size: .95rem; }
.why-feature-info p { color: var(--brand-muted); font-size: .85rem; line-height: 1.6; }

/* ── Process ─────────────────────────────────────── */
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; list-style: none; }
.process-steps::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--brand-primary), transparent); }
.process-step { text-align: center; padding: 0 16px; }
.process-num { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary)); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; margin: 0 auto 20px; position: relative; z-index: 1; }
.process-step h4 { font-family: var(--font-display); font-size: .9rem; font-weight: 700; margin-bottom: 8px; }
.process-step p { color: var(--brand-muted); font-size: .8rem; line-height: 1.6; }

/* ── Testimonials ─────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--brand-surface); border: 1px solid var(--brand-border); border-radius: var(--radius); padding: 32px; }
.testimonial-stars { color: var(--brand-accent); font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-text { color: var(--brand-muted); font-size: .95rem; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary)); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .9rem; flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: .9rem; }
.testimonial-company { color: var(--brand-primary); font-size: .8rem; font-weight: 600; }

/* ── FAQ ─────────────────────────────────────── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.faq-item { background: var(--brand-surface); border: 1px solid var(--brand-border); border-radius: var(--radius-sm); overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: rgba(14,165,233,.3); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 20px; background: none; color: var(--brand-text); font-size: .875rem; font-weight: 600; text-align: left; cursor: pointer; transition: background .2s; }
.faq-question:hover { background: rgba(255,255,255,.03); }
.faq-icon { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: rgba(14,165,233,.15); border: 1px solid rgba(14,165,233,.3); display: flex; align-items: center; justify-content: center; color: var(--brand-primary); font-size: 1rem; font-weight: 900; transition: transform .3s, background .2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(14,165,233,.25); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 20px 18px; color: var(--brand-muted); font-size: .85rem; line-height: 1.7; }

/* ── Contact / CTA ─────────────────────────────── */
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.cta-left h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; margin-bottom: 16px; }
.cta-left p { color: var(--brand-muted); font-size: 1rem; line-height: 1.8; }
.contact-info-list { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.contact-info-item { display: flex; align-items: center; gap: 12px; }
.cii-icon { font-size: 1.3rem; }
.cii-label { font-size: .75rem; color: var(--brand-muted); text-transform: uppercase; letter-spacing: .08em; }
.cii-value { font-weight: 700; font-size: 1.05rem; }

.contact-form { background: var(--brand-surface); border: 1px solid var(--brand-border); border-radius: var(--radius); padding: 36px; }
.contact-form h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--brand-muted); text-transform: uppercase; letter-spacing: .05em; }
.form-group input, .form-group select, .form-group textarea { background: rgba(255,255,255,.04); border: 1px solid var(--brand-border); border-radius: var(--radius-sm); color: var(--brand-text); font-size: .9rem; padding: 12px 16px; transition: border-color .2s, background .2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--brand-primary); background: rgba(14,165,233,.05); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: var(--brand-dark); }
.btn-submit { width: 100%; background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary)); color: #fff; font-weight: 700; font-size: 1rem; padding: 16px; border-radius: var(--radius-sm); transition: opacity .2s, transform .2s; }
.btn-submit:hover { opacity: .9; transform: translateY(-1px); }
.form-note { text-align: center; font-size: .75rem; color: var(--brand-muted); margin-top: 12px; }

/* ── Blog Grid ─────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 16px; }
.blog-card { background: var(--brand-surface); border: 1px solid var(--brand-border); border-radius: var(--radius-sm); padding: 20px; display: flex; flex-direction: column; gap: 10px; transition: border-color .2s, transform .2s; }
.blog-card:hover { border-color: rgba(14,165,233,.25); transform: translateY(-2px); }
.blog-card a { display: flex; flex-direction: column; gap: 10px; height: 100%; }
.blog-num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: rgba(14,165,233,.2); line-height: 1; }
.blog-category { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-primary); }
.blog-card h4 { font-size: .875rem; font-weight: 700; line-height: 1.4; color: var(--brand-text); }
.blog-card a:hover h4 { color: var(--brand-primary); }
.blog-meta { font-size: .75rem; color: var(--brand-muted); margin-top: auto; }
.blog-arrow { display: inline-flex; align-items: center; gap: 4px; font-size: .78rem; font-weight: 600; color: var(--brand-primary); }

/* ── Footer ─────────────────────────────────────── */
footer { background: var(--brand-darker); border-top: 1px solid var(--brand-border); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: var(--brand-muted); font-size: .88rem; line-height: 1.8; margin: 16px 0 24px; }
.footer-logo-text { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; }
.footer-logo-link img { height: 40px; width: auto; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 38px; height: 38px; border-radius: 10px; background: var(--brand-surface); border: 1px solid var(--brand-border); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: border-color .2s, background .2s; }
.social-btn:hover { border-color: var(--brand-primary); background: rgba(14,165,233,.1); }
.footer-col h5 { font-family: var(--font-display); font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-muted); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: var(--brand-muted); font-size: .875rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--brand-white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 32px; border-top: 1px solid var(--brand-border); font-size: .82rem; color: var(--brand-muted); flex-wrap: wrap; gap: 12px; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--brand-muted); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--brand-white); }

/* ── Floating Buttons ─────────────────────────── */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 998; width: 58px; height: 58px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37,211,102,.4); transition: transform .2s, box-shadow .2s; font-size: 1.6rem; }
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 12px 32px rgba(37,211,102,.5); }
.back-top { position: fixed; bottom: 96px; right: 28px; z-index: 997; width: 44px; height: 44px; border-radius: 12px; background: var(--brand-surface); border: 1px solid var(--brand-border); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; cursor: pointer; opacity: 0; transition: opacity .3s, transform .2s; pointer-events: none; color: var(--brand-text); }
.back-top.visible { opacity: 1; pointer-events: all; }
.back-top:hover { transform: translateY(-2px); }

/* ── Single Post ─────────────────────────────── */
.single-post-wrap { padding: 80px 0 64px; }
.breadcrumb { font-size: .82rem; color: var(--brand-muted); margin-bottom: 32px; display: flex; flex-wrap: wrap; gap: 4px; align-items: center; padding-top: var(--nav-height); }
.breadcrumb a { color: var(--brand-primary); }
.breadcrumb a:hover { text-decoration: underline; }
.single-header { margin-bottom: 40px; }
.single-cat-badge { display: inline-block; background: rgba(14,165,233,.12); border: 1px solid rgba(14,165,233,.3); color: var(--brand-primary); font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; margin-bottom: 16px; }
.single-title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.single-meta { display: flex; flex-wrap: wrap; gap: 20px; color: var(--brand-muted); font-size: .88rem; margin-bottom: 32px; }
.single-meta-item { display: flex; align-items: center; gap: 6px; }
.single-thumbnail { border-radius: var(--radius); overflow: hidden; margin-bottom: 40px; }
.single-thumbnail img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

.single-content { max-width: 760px; }
.single-content h2 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; margin: 40px 0 16px; }
.single-content h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin: 32px 0 12px; }
.single-content p { margin-bottom: 20px; line-height: 1.8; color: var(--brand-muted); }
.single-content p:first-child { font-size: 1.1rem; color: var(--brand-text); }
.single-content ul, .single-content ol { padding-left: 24px; margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.single-content li { color: var(--brand-muted); line-height: 1.7; }
.single-content ul li { list-style: disc; }
.single-content ol li { list-style: decimal; }
.single-content a { color: var(--brand-primary); text-decoration: underline; }
.single-content blockquote { border-left: 4px solid var(--brand-primary); padding: 16px 24px; margin: 32px 0; background: rgba(14,165,233,.06); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.single-content blockquote p { color: var(--brand-text); font-style: italic; font-size: 1.05rem; margin: 0; }
.single-content pre { background: var(--brand-surface); border: 1px solid var(--brand-border); border-radius: var(--radius-sm); padding: 24px; overflow-x: auto; margin-bottom: 24px; }
.single-content code { font-family: 'Courier New', monospace; font-size: .88rem; }
.single-content img { border-radius: var(--radius-sm); margin: 24px 0; }

.single-tags { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--brand-border); font-size: .88rem; color: var(--brand-muted); }
.tag-pill { background: var(--brand-surface); border: 1px solid var(--brand-border); color: var(--brand-muted); font-size: .8rem; padding: 4px 12px; border-radius: 100px; transition: border-color .2s, color .2s; }
.tag-pill:hover { border-color: var(--brand-primary); color: var(--brand-primary); }

.single-share { margin-top: 32px; padding: 24px; background: var(--brand-surface); border-radius: var(--radius-sm); border: 1px solid var(--brand-border); }
.single-share p { font-weight: 600; margin-bottom: 12px; }
.share-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.share-btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 18px; border-radius: 100px; font-size: .82rem; font-weight: 700; transition: opacity .2s; }
.share-twitter  { background: rgba(29,161,242,.15); color: #1da1f2; border: 1px solid rgba(29,161,242,.3); }
.share-linkedin { background: rgba(0,119,181,.15); color: #0077b5; border: 1px solid rgba(0,119,181,.3); }
.share-wa       { background: rgba(37,211,102,.15); color: #25d366; border: 1px solid rgba(37,211,102,.3); }
.share-btn:hover { opacity: .8; }

.single-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
.single-nav-item { background: var(--brand-surface); border: 1px solid var(--brand-border); border-radius: var(--radius-sm); padding: 20px; transition: border-color .2s; }
.single-nav-item:hover { border-color: rgba(14,165,233,.3); }
.single-nav-next { text-align: right; }
.nav-direction { display: block; font-size: .78rem; color: var(--brand-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.nav-title { display: block; font-weight: 700; font-size: .9rem; line-height: 1.4; }

.related-posts { margin-top: 48px; padding-top: 48px; border-top: 1px solid var(--brand-border); }
.related-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin-bottom: 24px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card { background: var(--brand-surface); border: 1px solid var(--brand-border); border-radius: var(--radius-sm); overflow: hidden; transition: border-color .2s, transform .2s; }
.related-card:hover { border-color: rgba(14,165,233,.25); transform: translateY(-2px); }
.related-thumb img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.related-thumb--placeholder { height: 140px; background: var(--brand-darker); display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.related-info { padding: 16px; }
.related-cat { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--brand-primary); }
.related-info h4 { font-size: .88rem; font-weight: 700; margin: 6px 0 8px; line-height: 1.4; }
.related-info h4 a:hover { color: var(--brand-primary); }
.related-info time { font-size: .78rem; color: var(--brand-muted); }

.single-cta-banner { margin-top: 48px; background: linear-gradient(135deg, rgba(14,165,233,.12), rgba(99,102,241,.12)); border: 1px solid rgba(14,165,233,.2); border-radius: var(--radius); padding: 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.single-cta-content h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.single-cta-content p { color: var(--brand-muted); font-size: .9rem; }

.single-comments { margin-top: 48px; padding-top: 48px; border-top: 1px solid var(--brand-border); }
.single-comments .comments-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin-bottom: 24px; }
.single-comments .comment-body { background: var(--brand-surface); border: 1px solid var(--brand-border); border-radius: var(--radius-sm); padding: 20px; margin-bottom: 12px; }
.single-comments .comment-author { font-weight: 700; margin-bottom: 4px; }
.single-comments .comment-metadata { font-size: .78rem; color: var(--brand-muted); margin-bottom: 12px; }
.single-comments .comment-content p { color: var(--brand-muted); font-size: .9rem; }
.single-comments .comment-reply-link { font-size: .8rem; color: var(--brand-primary); font-weight: 600; }
.comment-form input, .comment-form textarea { background: rgba(255,255,255,.04) !important; border: 1px solid var(--brand-border) !important; border-radius: var(--radius-sm) !important; color: var(--brand-text) !important; font-family: var(--font-body) !important; padding: 12px 16px !important; width: 100% !important; }
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--brand-primary) !important; outline: none !important; }
.comment-form .submit { background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary)) !important; color: #fff !important; font-weight: 700 !important; padding: 12px 28px !important; border-radius: 100px !important; cursor: pointer !important; }

/* ── Archive ─────────────────────────────────── */
.archive-wrap { padding: 80px 0 64px; }
.archive-header { padding-top: var(--nav-height); margin-bottom: 48px; }
.archive-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.1; }
.archive-desc { color: var(--brand-muted); margin-top: 12px; max-width: 640px; }
.archive-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }
.archive-card { background: var(--brand-surface); border: 1px solid var(--brand-border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: border-color .2s, transform .2s; }
.archive-card:hover { border-color: rgba(14,165,233,.25); transform: translateY(-3px); }
.archive-card-thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .3s; }
.archive-card:hover .archive-card-thumb img { transform: scale(1.03); }
.archive-card-thumb--placeholder { display: block; aspect-ratio: 16/9; background: var(--brand-darker); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.archive-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.archive-card-cat { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-primary); margin-bottom: 10px; display: inline-block; }
.archive-card-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; line-height: 1.35; }
.archive-card-title a:hover { color: var(--brand-primary); }
.archive-card-excerpt { color: var(--brand-muted); font-size: .88rem; line-height: 1.7; margin-bottom: 20px; flex: 1; }
.archive-card-meta { display: flex; gap: 16px; font-size: .78rem; color: var(--brand-muted); margin-bottom: 16px; }
.archive-card-link { color: var(--brand-primary); font-size: .85rem; font-weight: 700; margin-top: auto; }

.archive-pagination { margin-top: 48px; }
.archive-pagination .nav-links { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.archive-pagination .page-numbers { width: 44px; height: 44px; border-radius: 10px; background: var(--brand-surface); border: 1px solid var(--brand-border); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: .9rem; transition: border-color .2s, background .2s, color .2s; color: var(--brand-muted); }
.archive-pagination .page-numbers:hover, .archive-pagination .page-numbers.current { border-color: var(--brand-primary); background: rgba(14,165,233,.12); color: var(--brand-primary); }
.archive-pagination .prev, .archive-pagination .next { width: auto; padding: 0 18px; }

.no-posts { text-align: center; padding: 80px 0; }
.no-posts p { color: var(--brand-muted); margin-bottom: 24px; }

/* ── 404 ─────────────────────────────────────── */
.not-found-wrap { padding-top: var(--nav-height); }

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { max-width: 100%; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .models-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-compare { grid-template-columns: 1fr; }
  .why-grid, .cta-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .process-steps::before { display: none; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .single-nav { grid-template-columns: 1fr; }
  .single-nav-next { text-align: left; }
}
@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .nav-burger { display: flex; }
  .section { padding: 64px 0; }
  .models-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .tech-backend { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
  .archive-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .single-cta-banner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 16px; }
  .share-buttons { flex-direction: column; }
}

/* ── WordPress Core Styles ─────────────────── */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .82rem; color: var(--brand-muted); text-align: center; margin-top: 8px; }
.alignleft  { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin: 0 auto 24px; }
.alignnone  { margin: 0 0 24px 0; }
.wp-block-image img { border-radius: var(--radius-sm); }

/* Screen Reader */
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
