/* ═══════════════════════════════════════════════════════════════
   Efes WIFI — Halka Açık Sayfalar (Landing / Login / Register)
   Renk paleti: efeswifi.com
   Font: Montserrat (başlıklar) + Inter (gövde)
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --pub-navy:    #1a2a6c;
  --pub-navy-d:  #0d1a4a;
  --pub-red:     #b21f1f;
  --pub-gold:    #ffc107;
  --pub-gold-d:  #e5a800;
  --pub-dark:    #111827;
  --pub-gray:    #f9fafb;
  --pub-muted:   #6b7280;
  --pub-border:  #e5e7eb;
  --pub-white:   #ffffff;
  --pub-text:    #111827;
  --pub-radius:  12px;
  --pub-shadow:  0 4px 24px rgba(26,42,108,.12), 0 1px 4px rgba(0,0,0,.06);
  --pub-shadow-lg: 0 16px 48px rgba(26,42,108,.18), 0 4px 12px rgba(0,0,0,.08);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--pub-text);
  background: var(--pub-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ─── Layout ─────────────────────────────────────────────────── */

.pub-wrap { width: min(100%, 1280px); margin: 0 auto; }
.pub-nav, .pub-main, .pub-footer { width: min(100%, 1280px); margin: 0 auto; }

/* ─── NAVBAR ─────────────────────────────────────────────────── */

.pub-navbar {
  position: sticky; top: 0; z-index: 200;
  background: var(--pub-dark);
  padding: .8rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; box-shadow: 0 2px 12px rgba(0,0,0,.35);
}

.pub-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 1.3rem;
  color: var(--pub-white); letter-spacing: -.01em;
}
.pub-brand span { color: var(--pub-gold); }

.pub-nav-links {
  display: flex; align-items: center; gap: .25rem;
}
.pub-nav-link {
  color: rgba(255,255,255,.8); font-size: .9rem;
  padding: .5rem .85rem; border-radius: 8px;
  transition: .15s; white-space: nowrap;
  border: 0; background: transparent; cursor: pointer; font: inherit;
}
.pub-nav-link:hover { color: #fff; background: rgba(255,255,255,.09); }

.pub-btn-cta {
  background: var(--pub-gold); color: var(--pub-dark);
  font-weight: 700; font-size: .88rem;
  padding: .55rem 1.2rem; border-radius: 999px;
  border: 0; cursor: pointer; font: inherit;
  transition: background .15s;
  white-space: nowrap;
}
.pub-btn-cta:hover { background: var(--pub-gold-d); }

/* ─── TOAST (shared layout) ──────────────────────────────────── */

.global-toast {
  padding: .75rem 1.2rem; border-radius: 8px;
  font-size: .88rem; font-weight: 500;
  display: flex; align-items: center; gap: .55rem;
  width: min(100%, 1280px); margin: .6rem auto 0;
}
.toast-success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #16a34a; }
.toast-error   { background: #fef2f2; border: 1px solid #fecaca; color: #dc2626; }

/* ─── HERO ───────────────────────────────────────────────────── */

.pub-hero {
  background: linear-gradient(135deg, #1a2a6c 0%, #b21f1f 50%, #fdbb2d 100%);
  padding: 90px 1.5rem 80px;
  color: #fff;
}
.pub-hero-inner {
  width: min(100%, 1280px); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.pub-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1; margin: 0 0 1.1rem;
  letter-spacing: -.03em;
}
.pub-hero p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  opacity: .9; line-height: 1.7; margin: 0 0 2rem;
}
.pub-hero-btns { display: flex; gap: .75rem; flex-wrap: wrap; }

.pub-hero img {
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
  width: 100%; object-fit: cover; max-height: 420px;
}

/* ─── BUTTONS ────────────────────────────────────────────────── */

.btn-gold {
  background: var(--pub-gold); color: var(--pub-dark);
  font-weight: 700; font-size: .95rem;
  padding: .85rem 2rem; border-radius: 999px;
  border: 0; cursor: pointer; font: inherit;
  transition: .15s; box-shadow: 0 4px 16px rgba(255,193,7,.35);
  display: inline-flex; align-items: center; gap: .45rem;
}
.btn-gold:hover { background: var(--pub-gold-d); transform: translateY(-1px); }

.btn-outline-white {
  background: transparent; color: #fff;
  font-weight: 600; font-size: .95rem;
  padding: .85rem 2rem; border-radius: 999px;
  border: 2px solid rgba(255,255,255,.6); cursor: pointer; font: inherit;
  transition: .15s; display: inline-flex; align-items: center;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }

.btn-navy {
  background: var(--pub-navy); color: #fff;
  font-weight: 700; font-size: .95rem;
  padding: .85rem 2rem; border-radius: 999px;
  border: 0; cursor: pointer; font: inherit;
  transition: .15s; display: inline-flex; align-items: center; gap: .4rem;
}
.btn-navy:hover { background: var(--pub-navy-d); transform: translateY(-1px); }

.btn-outline-dark {
  background: transparent; color: var(--pub-dark);
  font-weight: 600; padding: .7rem 1.5rem; border-radius: 999px;
  border: 2px solid var(--pub-dark); cursor: pointer; font: inherit;
  font-size: .9rem; transition: .15s;
}
.btn-outline-dark:hover { background: var(--pub-dark); color: #fff; }

/* ─── SECTION ────────────────────────────────────────────────── */

.pub-section { padding: 80px 1.5rem; }
.pub-section-title { text-align: center; margin-bottom: 3.5rem; }
.pub-section-title h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 0 0 .6rem; }
.pub-section-title p { color: var(--pub-muted); font-size: 1.05rem; margin: 0; }
.text-gold { color: var(--pub-gold); }
.text-navy { color: var(--pub-navy); }

/* ─── FEATURE CARDS ──────────────────────────────────────────── */

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.feature-card {
  background: #fff; border: 1px solid var(--pub-border);
  border-radius: 16px; padding: 2rem 1.5rem;
  text-align: center; transition: .25s;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--pub-shadow-lg);
}
.feature-card .icon { font-size: 2.8rem; margin-bottom: 1rem; display: block; }
.feature-card h4 { font-size: 1.1rem; margin: 0 0 .6rem; }
.feature-card p { color: var(--pub-muted); font-size: .88rem; margin: 0; }

/* ─── PRICING ─────────────────────────────────────────────────── */

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: center; }

.pricing-card {
  background: #fff; border-radius: 16px; padding: 2rem 1.5rem;
  border: 1px solid var(--pub-border);
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  transition: .2s;
}
.pricing-card.featured {
  transform: scale(1.04);
  border: 3px solid var(--pub-gold);
  box-shadow: 0 16px 48px rgba(255,193,7,.2), var(--pub-shadow);
  z-index: 5; position: relative;
}
.pricing-card h4 { font-size: 1.1rem; margin: 0 0 .25rem; }
.pricing-price {
  font-size: 2.6rem; font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  color: var(--pub-navy); margin: .6rem 0 1.25rem; line-height: 1;
}
.pricing-price small { font-size: .95rem; font-weight: 500; color: var(--pub-muted); }
.pricing-badge {
  display: inline-block; background: var(--pub-gold); color: var(--pub-dark);
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; padding: .3rem .65rem; border-radius: 999px;
  margin-bottom: .75rem;
}
.pricing-list { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: .55rem; }
.pricing-list li { font-size: .88rem; display: flex; align-items: center; gap: .5rem; }
.pricing-list li::before { content: "✓"; color: var(--pub-gold); font-weight: 700; flex-shrink: 0; }
.pricing-list li.featured::before { color: var(--pub-gold); }

/* ─── SECTORS ─────────────────────────────────────────────────── */

.sector-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; align-items: center; margin-bottom: 4rem;
}
.sector-row:last-child { margin-bottom: 0; }
.sector-row.reverse { direction: rtl; }
.sector-row.reverse > * { direction: ltr; }
.sector-row img { border-radius: 16px; box-shadow: var(--pub-shadow); width: 100%; object-fit: cover; max-height: 340px; }
.sector-body h3 { font-size: 1.7rem; margin: 0 0 .5rem; }
.sector-body .lead { font-size: 1.05rem; color: var(--pub-navy); font-weight: 600; margin: 0 0 .75rem; }
.sector-body p { color: var(--pub-muted); margin: 0 0 1rem; }
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .4rem; }
.check-list li { font-size: .9rem; display: flex; align-items: center; gap: .5rem; }
.check-list li::before { content: "✓"; color: #16a34a; font-weight: 700; }

/* ─── CONTACT FORM ───────────────────────────────────────────── */

.contact-form {
  background: #fff; border: 1px solid var(--pub-border);
  border-radius: 20px; padding: 2.5rem;
  box-shadow: var(--pub-shadow);
}
.contact-form .field { margin-bottom: 1.1rem; }
.contact-form label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .4rem; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--pub-border); border-radius: 999px;
  font: inherit; font-size: .9rem; outline: none; transition: .15s;
  background: #fff; color: var(--pub-text);
}
.contact-form textarea { border-radius: 12px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--pub-navy);
  box-shadow: 0 0 0 3px rgba(26,42,108,.1);
}
.contact-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ─── AUTH PAGES ─────────────────────────────────────────────── */

.auth-bg {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a2a6c 0%, #b21f1f 60%, #fdbb2d 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem 1rem;
}

.auth-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 1.5rem; align-items: center;
  width: min(900px, 100%);
}

.auth-brand-side {
  color: #fff;
  padding: 1rem .5rem;
}
.auth-brand-side .brand { font-size: 2rem; color: #fff; }
.auth-brand-side .brand span { color: var(--pub-gold); }
.auth-brand-side h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 1rem 0 .75rem; line-height: 1.15; }
.auth-brand-side p { opacity: .85; font-size: .95rem; line-height: 1.7; }
.auth-trust { display: grid; gap: .6rem; margin-top: 1.5rem; }
.auth-trust-item {
  display: flex; align-items: center; gap: .65rem;
  background: rgba(255,255,255,.1); border-radius: 10px;
  padding: .65rem .9rem; font-size: .85rem;
}

.auth-panel {
  background: #fff; border-radius: 20px;
  padding: 2rem 1.75rem;
  box-shadow: 0 24px 64px rgba(0,0,0,.22);
}
.auth-panel h3 {
  font-size: 1.35rem; margin: 0 0 .3rem;
  font-family: 'Montserrat', sans-serif;
}
.auth-panel .sub { color: var(--pub-muted); font-size: .88rem; margin: 0 0 1.4rem; }

.auth-field { margin-bottom: .9rem; }
.auth-field label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: .35rem; color: #374151; }
.auth-field input, .auth-field select {
  width: 100%; padding: .7rem .9rem;
  border: 1.5px solid var(--pub-border); border-radius: 10px;
  font: inherit; font-size: .9rem; outline: none; transition: .15s;
}
.auth-field input:focus, .auth-field select:focus {
  border-color: var(--pub-navy);
  box-shadow: 0 0 0 3px rgba(26,42,108,.1);
}
.auth-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }

.auth-checkbox {
  display: flex; align-items: center; gap: .65rem;
  padding: .65rem .9rem; border: 1.5px solid var(--pub-border);
  border-radius: 10px; cursor: pointer; font-size: .88rem;
  background: #f9fafb; margin-bottom: .9rem;
}
.auth-checkbox input { width: auto; accent-color: var(--pub-navy); }

.auth-btn {
  width: 100%; padding: .9rem;
  background: var(--pub-navy); color: #fff;
  font-weight: 700; font-size: 1rem;
  border: 0; border-radius: 10px; cursor: pointer; font: inherit;
  transition: .15s; margin-top: .25rem;
}
.auth-btn:hover { background: var(--pub-navy-d); }

.auth-btn-outline {
  width: 100%; padding: .75rem;
  background: transparent; color: var(--pub-navy);
  font-weight: 600; font-size: .9rem;
  border: 1.5px solid var(--pub-navy); border-radius: 10px;
  cursor: pointer; font: inherit; transition: .15s;
}
.auth-btn-outline:hover { background: var(--pub-navy); color: #fff; }

.auth-alert {
  padding: .7rem .9rem; border-radius: 8px; font-size: .88rem;
  margin-bottom: .9rem; border: 1px solid transparent;
}
.auth-alert.error   { background: #fef2f2; border-color: #fecaca; color: #dc2626; }
.auth-alert.success { background: #f0fdf4; border-color: #bbf7d0; color: #16a34a; }

.auth-divider {
  text-align: center; color: var(--pub-muted);
  font-size: .82rem; margin: .75rem 0; position: relative;
}
.auth-divider::before, .auth-divider::after {
  content: ""; position: absolute; top: 50%; width: 40%; height: 1px;
  background: var(--pub-border);
}
.auth-divider::before { left: 0; }
.auth-divider::after  { right: 0; }

/* ─── FOOTER ─────────────────────────────────────────────────── */

.pub-footer {
  background: var(--pub-dark); color: rgba(255,255,255,.75);
  padding: 2.5rem 1.5rem; text-align: center;
}
.pub-footer .brand { font-size: 1.2rem; color: #fff; margin-bottom: .35rem; }
.pub-footer .brand span { color: var(--pub-gold); }
.pub-footer small { font-size: .78rem; }
.pub-footer a { color: rgba(255,255,255,.5); }
.pub-footer a:hover { color: var(--pub-gold); }

/* ─── RESPONSIVE ──────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .pub-hero-inner, .sector-row, .auth-grid { grid-template-columns: 1fr; }
  .sector-row.reverse { direction: ltr; }
  .pub-hero img { max-height: 260px; }
  .pricing-grid { grid-template-columns: 1fr 1fr; max-width: 680px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
}

@media (max-width: 768px) {
  .pub-hero { padding: 50px 1rem 40px; }
  .pub-section { padding: 45px 1rem; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .pub-nav-links { display: none; }
  .auth-brand-side { display: none; }
  .contact-form .field-row { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; }
  .pub-hero h1 { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  .pub-hero-btns { flex-direction: column; align-items: flex-start; }
  .pub-btn-cta { display: none; }
  .pub-navbar { padding: .7rem 1rem; gap: .5rem; }
}

@media (max-width: 480px) {
  .feature-grid { grid-template-columns: 1fr; }
  .pub-section-title h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
  .check-list { padding-left: 1rem; }
}

/* ─── TRUST / NEDEN BİZ BÖLÜMÜ ───────────────────────────────── */

.pub-trust-section {
  background: linear-gradient(160deg, #0f172a 0%, #1e3a5f 100%);
  color: #fff;
}
.pub-trust-section .pub-section-title h2 { color: #fff; }
.pub-trust-section .pub-section-title p  { color: rgba(255,255,255,.7); }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.trust-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 1.6rem 1.4rem;
  transition: transform .2s, background .2s;
}
.trust-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.1);
}
.trust-card--highlight {
  background: rgba(250,189,0,.08);
  border-color: rgba(250,189,0,.3);
}
.trust-card--highlight:hover { background: rgba(250,189,0,.13); }

.trust-icon { font-size: 2rem; margin-bottom: .8rem; }
.trust-card h4 { margin: 0 0 .6rem; font-size: 1rem; font-weight: 700; color: #fff; }
.trust-card p  { margin: 0 0 .9rem; font-size: .88rem; color: rgba(255,255,255,.7); line-height: 1.6; }

.trust-tag {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  color: var(--pub-gold); text-transform: uppercase;
  background: rgba(250,189,0,.1);
  border: 1px solid rgba(250,189,0,.25);
  border-radius: 999px; padding: .2rem .65rem;
}

.trust-proof {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
  margin-top: 3rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 1.5rem 2rem;
}
.proof-item {
  flex: 1; min-width: 120px;
  text-align: center; padding: .5rem 1rem;
}
.proof-item strong {
  display: block; font-size: 2.2rem; font-weight: 900;
  color: var(--pub-gold); letter-spacing: -.03em; line-height: 1;
}
.proof-item span {
  display: block; font-size: .78rem; color: rgba(255,255,255,.6);
  text-transform: uppercase; letter-spacing: .08em; margin-top: .35rem;
}
.proof-sep {
  width: 1px; height: 3rem;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .trust-grid { grid-template-columns: 1fr; }
  .proof-sep { display: none; }
  .proof-item { padding: .75rem; }
}

/* ─── Sayfa hero (iç sayfalar) ───────────────────────────────── */
.pub-page-hero {
  background: linear-gradient(135deg, var(--pub-navy) 0%, #1e3a5f 100%);
  padding: 64px 1.5rem 56px;
  text-align: center;
  color: #fff;
}
.pub-page-hero-inner { max-width: 640px; margin: 0 auto; }
.pub-page-hero h1 { font-size: clamp(1.9rem,4vw,3rem); margin: .5rem 0 .8rem; letter-spacing:-.03em; color:#fff; }
.pub-page-hero-sub { font-size:1.05rem; color:rgba(255,255,255,.78); margin:0; line-height:1.7; }
.pub-eyebrow {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--pub-gold); margin-bottom: .5rem;
}
.pub-eyebrow-dark {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.65); margin-bottom: .6rem;
}

/* ─── Iç sayfa bölüm padding ─────────────────────────────────── */
.pub-section-pad { padding: 0 1.5rem; }

/* ─── Hero trust satırı ──────────────────────────────────────── */
.pub-hero-trust {
  display: flex; flex-wrap: wrap; gap: .6rem 1.2rem;
  margin-top: 1.1rem; font-size: .82rem;
  color: rgba(255,255,255,.72);
}
.pub-hero-trust span::before { margin-right: .15rem; }

/* ─── Stats bar ──────────────────────────────────────────────── */
.pub-stats-bar {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 1.4rem 1.5rem;
}
.stats-row {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
  max-width: 860px; margin: 0 auto;
}
.stat-item {
  flex: 1; min-width: 140px; text-align: center; padding: .5rem 1.25rem;
}
.stat-item strong {
  display: block; font-size: 1.65rem; font-weight: 900;
  color: var(--pub-navy); letter-spacing: -.03em; line-height: 1;
}
.stat-item span {
  display: block; font-size: .75rem; color: #6b7280;
  text-transform: uppercase; letter-spacing: .07em; margin-top: .3rem;
}
.stat-sep {
  width: 1px; height: 2.5rem; background: #e5e7eb; flex-shrink: 0;
}

/* ─── Sektör mini kartlar ───────────────────────────────────── */
.sector-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin-top: 2rem;
}
.sector-mini-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1.4rem 1.2rem;
  transition: transform .2s, box-shadow .2s;
}
.sector-mini-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.sector-emoji { display: block; font-size: 2rem; margin-bottom: .65rem; }
.sector-mini-card h4 { margin: 0 0 .4rem; font-size: .95rem; font-weight: 700; color: var(--pub-navy); }
.sector-mini-card p  { margin: 0; font-size: .83rem; color: #6b7280; line-height: 1.55; }

/* ─── Sektör etiketi (tam sayfa) ────────────────────────────── */
.sector-tag {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--pub-gold); background: rgba(250,189,0,.08);
  border: 1px solid rgba(250,189,0,.25); border-radius: 999px;
  padding: .22rem .65rem; margin-bottom: .6rem;
}

/* ─── Outline navy button ───────────────────────────────────── */
.btn-outline-navy {
  display: inline-block;
  padding: .75rem 1.75rem; border-radius: 999px;
  border: 2px solid var(--pub-navy); color: var(--pub-navy);
  font-weight: 700; font-size: .9rem; transition: .2s;
}
.btn-outline-navy:hover { background: var(--pub-navy); color: #fff; }

/* ─── Özellikler detay grid ─────────────────────────────────── */
.features-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-top: 2rem;
}
.fdetail-card {
  display: flex; gap: 1rem; align-items: flex-start;
  background: #f9fafb; border: 1px solid #e5e7eb;
  border-radius: 14px; padding: 1.25rem;
}
.fdetail-icon { font-size: 1.75rem; flex-shrink: 0; line-height: 1; }
.fdetail-card h4 { margin: 0 0 .35rem; font-size: .92rem; font-weight: 700; color: var(--pub-navy); }
.fdetail-card p  { margin: 0; font-size: .82rem; color: #6b7280; line-height: 1.6; }

/* ─── Feature card large variant ────────────────────────────── */
.feature-card-lg { grid-column: span 1; }

/* ─── İletişim layout ───────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 3rem;
  align-items: start;
  max-width: 960px; margin: 0 auto;
}
.contact-info-col h3 { font-size: 1.3rem; margin: 0 0 .75rem; color: var(--pub-navy); }
.contact-badges { display: grid; gap: .85rem; margin-top: 1.75rem; }
.contact-badge {
  display: flex; gap: .85rem; align-items: flex-start;
  padding: .9rem 1rem;
  background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 12px;
}
.cb-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-badge strong { display: block; font-size: .9rem; color: var(--pub-navy); margin-bottom: .1rem; }
.contact-badge small  { font-size: .8rem; color: #6b7280; }

.contact-form-box {
  background: #fff; border: 1px solid #e5e7eb;
  border-radius: 18px; padding: 2rem;
  display: grid; gap: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.contact-form-box .field { display: grid; gap: .35rem; }
.contact-form-box label { font-size: .82rem; font-weight: 600; color: #374151; }
.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
  border: 1.5px solid #e5e7eb; border-radius: 10px;
  padding: .65rem .85rem; font: inherit; font-size: .9rem;
  outline: none; transition: .15s; width: 100%;
  background: #fafafa; color: #111;
}
.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus {
  border-color: var(--pub-navy); box-shadow: 0 0 0 3px rgba(10,37,64,.08);
}

/* ─── Responsive yeni bileşenler ─────────────────────────────── */
@media (max-width: 1024px) {
  .sector-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .features-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .pub-page-hero { padding: 48px 1rem 42px; }
}

@media (max-width: 768px) {
  .stats-row { gap: .5rem; }
  .stat-sep { display: none; }
  .stat-item { padding: .4rem .5rem; min-width: 100px; }
  .stat-item strong { font-size: 1.35rem; }
  .pub-hero-trust { gap: .4rem .8rem; }
  .contact-form-box { padding: 1.4rem; }
  .contact-form-box .field-row { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
  .sector-cards-grid { grid-template-columns: 1fr 1fr; }
  .features-detail-grid { grid-template-columns: 1fr; }
  .fdetail-card { flex-direction: column; gap: .5rem; }
}
