/* =========================================================
   UZUN SİGORTA — Tasarım Sistemi
   Premium / Modern / Dijital / Kurumsal
   ========================================================= */

:root {
  /* Renkler */
  --navy-950: #050b1f;
  --navy-900: #0a1230;
  --navy-800: #0f1a3d;
  --navy-700: #16244f;
  --navy-600: #1c2e63;
  --blue-500: #2f6bff;
  --blue-400: #4f8bff;
  --blue-300: #7fb0ff;
  --blue-glow: #3b82ff;
  --red-700: #7a1224;
  --red-600: #9c1830;
  --white: #ffffff;
  --gray-50: #f5f7fb;
  --gray-100: #eaeefa;
  --gray-200: #dbe1f0;
  --gray-400: #8a93ab;
  --gray-600: #5b647d;
  --gray-800: #232b42;
  --success: #1fa971;
  --danger: #d3384f;

  --font-sans: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 10px rgba(10, 18, 48, 0.06);
  --shadow-md: 0 10px 30px rgba(10, 18, 48, 0.10);
  --shadow-lg: 0 20px 60px rgba(5, 11, 31, 0.35);
  --shadow-glow: 0 0 0 1px rgba(79, 139, 255, 0.25), 0 0 40px rgba(47, 107, 255, 0.25);

  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.2; font-weight: 800; letter-spacing: -0.01em; }
p { margin: 0 0 1em; color: var(--gray-600); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section--tight { padding: 36px 0; }
}

.icon { width: 22px; height: 22px; flex-shrink: 0; }

/* ---------- Eyebrow / Kicker ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--blue-500);
  display: inline-block;
}

.section-head { max-width: 680px; margin: 0 0 44px; }
.section-head h2 { font-size: clamp(28px, 3.5vw, 40px); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 15px;
  border: 1.5px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn .icon { width: 18px; height: 18px; }
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue-500), #1d4fdb);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(47, 107, 255, 0.35);
}
.btn-primary:hover { box-shadow: 0 14px 32px rgba(47, 107, 255, 0.48); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-outline-dark {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--gray-200);
}
.btn-outline-dark:hover { border-color: var(--blue-500); color: var(--blue-500); }
.btn-white {
  background: var(--white);
  color: var(--navy-900);
}
.btn-white:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 34px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 13.5px; }
.btn[disabled] { opacity: .55; pointer-events: none; }

.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--blue-500); }
.link-arrow .icon { width: 16px; height: 16px; transition: transform .18s ease; }
.link-arrow:hover .icon { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(5, 11, 31, 0.92);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--white); flex-shrink: 0; }
.brand img { height: 46px; width: auto; }
.brand-text { font-weight: 800; font-size: 19px; letter-spacing: 0.02em; line-height: 1.1; }
.brand-text small { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.16em; color: var(--blue-300); }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > ul { display: flex; align-items: center; gap: 2px; }
.main-nav a.nav-link {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 16px; border-radius: var(--radius-full);
  color: rgba(255,255,255,0.85); font-weight: 600; font-size: 14.5px;
  transition: background .15s ease, color .15s ease;
}
.main-nav a.nav-link:hover, .main-nav a.nav-link.is-active { background: rgba(255,255,255,0.08); color: var(--white); }
.main-nav a.nav-link .icon { width: 15px; height: 15px; }

.header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-phone { display: flex; align-items: center; gap: 10px; color: var(--white); }
.header-phone .icon-wrap {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(79,139,255,0.16); display: flex; align-items: center; justify-content: center;
  color: var(--blue-300);
}
.header-phone .icon-wrap .icon { width: 18px; height: 18px; }
.header-phone .phone-num { font-weight: 800; font-size: 15px; line-height: 1.1; }
.header-phone .phone-sub { font-size: 11px; color: var(--gray-400); font-weight: 600; }

.nav-toggle {
  display: none; background: none; border: none; color: var(--white); padding: 8px;
}
.nav-toggle .icon { width: 26px; height: 26px; }

/* Mega menu */
.has-mega { position: relative; }
.mega-panel {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
  width: min(880px, 92vw);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  display: none;
  gap: 28px;
  grid-template-columns: repeat(3, 1fr);
  z-index: 50;
}
.has-mega.is-open .mega-panel { display: grid; }
.mega-col-title {
  font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue-500); margin-bottom: 12px;
}
.mega-col a {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; color: var(--navy-800); font-weight: 600; font-size: 14.5px;
  border-radius: 8px;
}
.mega-col a:hover { color: var(--blue-500); }
.mega-col a .icon { width: 17px; height: 17px; color: var(--blue-500); flex-shrink: 0; }
.mega-cta {
  grid-column: 1 / -1;
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius-md);
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  color: var(--white); margin-top: 6px;
}
.mega-cta p { color: rgba(255,255,255,0.75); margin: 4px 0 0; font-size: 13.5px; }
.mega-cta strong { font-size: 16px; }

/* ---------- Hero (Anasayfa) ---------- */
.hero {
  position: relative;
  background: radial-gradient(1100px 620px at 78% -10%, rgba(47,107,255,0.35), transparent 60%),
              linear-gradient(160deg, var(--navy-950), var(--navy-900) 55%, var(--navy-800));
  color: var(--white);
  overflow: hidden;
  padding: 76px 0 60px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.25) 0, transparent 60%),
    radial-gradient(2px 2px at 80% 20%, rgba(255,255,255,0.18) 0, transparent 60%),
    radial-gradient(2px 2px at 60% 70%, rgba(255,255,255,0.15) 0, transparent 60%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; position: relative; }
.hero h1 { font-size: clamp(34px, 4.4vw, 56px); margin-bottom: 20px; }
.hero h1 .accent { color: var(--blue-300); }
.hero-sub { font-size: 17.5px; color: rgba(255,255,255,0.75); max-width: 520px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 8px; }

.hero-visual { position: relative; }
.hero-shield-stage {
  position: relative;
  height: 460px;
  display: flex; align-items: center; justify-content: center;
}
.hero-shield-svg {
  width: 300px; height: 300px; position: relative; z-index: 2;
  filter: drop-shadow(0 0 46px rgba(47,107,255,0.35));
  animation: heroShieldFloat 5s ease-in-out infinite;
}
@keyframes heroShieldFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(79,139,255,0.22);
}
.hero-ring--1 { width: 340px; height: 340px; animation: heroSpin 26s linear infinite; }
.hero-ring--2 { width: 420px; height: 420px; border-style: dashed; border-color: rgba(79,139,255,0.14); animation: heroSpin 40s linear infinite reverse; }
@keyframes heroSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hero-orbit-icon {
  position: absolute;
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(10,18,48,0.85);
  border: 1px solid rgba(79,139,255,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-300);
  box-shadow: 0 0 24px rgba(47,107,255,0.35);
  backdrop-filter: blur(6px);
  z-index: 3;
  animation: heroOrbitFloat 4.5s ease-in-out infinite;
}
.hero-orbit-icon .icon { width: 24px; height: 24px; }
.hero-orbit-icon--1 { top: 6%; left: 8%; animation-delay: 0s; }
.hero-orbit-icon--2 { top: 10%; right: 4%; animation-delay: .6s; }
.hero-orbit-icon--3 { bottom: 12%; left: 2%; animation-delay: 1.2s; }
.hero-orbit-icon--4 { bottom: 6%; right: 10%; animation-delay: 1.8s; }
@keyframes heroOrbitFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.hero-stage-caption {
  position: absolute; bottom: 8%; left: 50%; transform: translateX(-50%);
  text-align: center; z-index: 3;
}
.hero-stage-caption strong { display: block; color: var(--white); font-size: 15px; }
.hero-stage-caption span { display: block; font-size: 11.5px; letter-spacing: 0.14em; color: var(--blue-300); font-weight: 700; margin-top: 2px; }

@media (max-width: 560px) {
  .hero-shield-stage { height: 340px; }
  .hero-shield-svg { width: 220px; height: 220px; }
  .hero-ring--1 { width: 250px; height: 250px; }
  .hero-ring--2 { width: 310px; height: 310px; }
  .hero-orbit-icon { width: 44px; height: 44px; }
  .hero-orbit-icon .icon { width: 20px; height: 20px; }
}

.trust-bar {
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  margin-top: 44px;
  padding: 30px 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.trust-item { display: flex; align-items: center; gap: 14px; padding: 8px 22px; }
.trust-item .icon-wrap {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: rgba(79,139,255,0.14); color: var(--blue-300);
  display: flex; align-items: center; justify-content: center;
}
.trust-item strong { display: block; color: var(--white); font-size: 15px; }
.trust-item span { display: block; font-size: 12.5px; color: var(--gray-400); }

/* ---------- Ürün kartları ---------- */
.product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--blue-300); }
.product-card-media { position: relative; height: 150px; overflow: hidden; background: var(--navy-800); }
.product-card-media img { width: 100%; height: 100%; object-fit: cover; }
.product-card-icon {
  position: absolute; left: 16px; bottom: -22px;
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--white); box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center; color: var(--blue-500);
}
.product-card-body { padding: 30px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.product-card-body h3 { font-size: 17.5px; margin-bottom: 8px; }
.product-card-body p { font-size: 14px; margin-bottom: 18px; flex: 1; }
.product-card-actions { display: flex; align-items: center; justify-content: space-between; gap: 10px; }

@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .product-grid { grid-template-columns: repeat(2, 1fr); } .hero-grid { grid-template-columns: 1fr; } .hero-visual { order: -1; } .trust-bar { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .product-grid { grid-template-columns: 1fr; } }

/* ---------- Feature list (4 kutu) ---------- */
.feature-strip {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.feature-item { padding: 30px 26px; display: flex; gap: 16px; align-items: flex-start; border-right: 1px solid rgba(255,255,255,0.08); }
.feature-item:last-child { border-right: none; }
.feature-item .icon-wrap {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: rgba(79,139,255,0.16); color: var(--blue-300);
  display: flex; align-items: center; justify-content: center;
}
.feature-item strong { display: block; font-size: 15.5px; margin-bottom: 4px; }
.feature-item span { font-size: 13px; color: var(--gray-400); }
@media (max-width: 900px) { .feature-strip { grid-template-columns: repeat(2, 1fr); } .feature-item { border-bottom: 1px solid rgba(255,255,255,0.08); } }
@media (max-width: 520px) { .feature-strip { grid-template-columns: 1fr; } }

/* ---------- İstatistik şeridi ---------- */
.stat-strip {
  background: linear-gradient(120deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius-lg);
  color: var(--white);
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
  gap: 20px;
}
.stat-strip .stat b { display: block; font-size: 30px; color: var(--blue-300); }
.stat-strip .stat span { font-size: 12.5px; color: var(--gray-400); letter-spacing: .03em; text-transform: uppercase; }
@media (max-width: 860px) { .stat-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .stat-strip { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Partner logo şeridi ---------- */
.partner-strip { text-align: center; }
.partner-strip .eyebrow { justify-content: center; }
.partner-marquee {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 0 16px;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.partner-marquee::-webkit-scrollbar { display: none; }
.partner-marquee.is-dragging { cursor: grabbing; }
.partner-track {
  display: flex; align-items: center; gap: 18px; width: max-content;
}
@media (prefers-reduced-motion: reduce) {
  .partner-marquee { overflow-x: auto; }
}
.partner-logo {
  flex: 0 0 auto;
  min-width: 180px;
  height: 90px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--navy-800); font-size: 15px;
  background: var(--white);
  padding: 14px 22px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.partner-logo img { max-width: 100%; max-height: 44px; width: auto; height: auto; object-fit: contain; pointer-events: none; -webkit-user-drag: none; }
.partner-logo:hover {
  transform: scale(1.08) translateY(-4px);
  border-color: var(--blue-400);
  box-shadow: 0 14px 30px rgba(47,107,255,0.18);
  z-index: 2;
}

/* ---------- CTA banner (görselli) ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--navy-950) 20%, var(--navy-800));
  border-radius: var(--radius-lg);
  color: var(--white);
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  position: relative;
}
.cta-banner-content { padding: 52px; }
.cta-banner-content .eyebrow { color: var(--blue-300); }
.cta-banner-content h2 { font-size: clamp(26px, 3vw, 34px); }
.cta-check-list { margin: 26px 0 30px; display: grid; gap: 14px; }
.cta-check-list li { display: flex; gap: 12px; align-items: flex-start; }
.cta-check-list .icon { color: var(--blue-300); width: 20px; height: 20px; margin-top: 2px; }
.cta-check-list strong { display: block; color: var(--white); font-size: 14.5px; }
.cta-check-list span { font-size: 13px; color: var(--gray-400); }
.cta-banner-media { position: relative; }
.cta-banner-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .cta-banner { grid-template-columns: 1fr; } .cta-banner-content { padding: 34px 26px; } .cta-banner-media { height: 260px; } }

/* ---------- Hızlı işlem çubuğu ---------- */
.quick-actions { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.quick-action {
  display: flex; gap: 14px; align-items: center;
  padding: 20px; border: 1px solid var(--gray-200); border-radius: var(--radius-md);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.quick-action:hover { border-color: var(--blue-400); box-shadow: var(--shadow-sm); }
.quick-action .icon-wrap {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: var(--gray-50); color: var(--blue-500);
  display: flex; align-items: center; justify-content: center;
}
.quick-action strong { display: block; font-size: 14.5px; color: var(--navy-900); }
.quick-action span { font-size: 12.5px; }
@media (max-width: 860px) { .quick-actions { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .quick-actions { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: var(--gray-400); }
.footer-top { padding: 64px 0 40px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr; gap: 32px; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { font-size: 13.5px; max-width: 260px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center; color: var(--white);
  transition: background .15s ease, border-color .15s ease;
}
.footer-social a:hover { background: var(--blue-500); border-color: var(--blue-500); }
.footer-social .icon { width: 16px; height: 16px; }
.footer-col h4 { color: var(--white); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { font-size: 14px; transition: color .15s ease; }
.footer-col a:hover { color: var(--white); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; font-size: 13.5px; }
.footer-contact-item .icon { width: 17px; height: 17px; color: var(--blue-300); margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0; font-size: 12.5px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.footer-bottom a { text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 980px) { .footer-top { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }

/* ---------- Breadcrumb ---------- */
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,0.65); }
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: var(--white); font-weight: 600; }

/* ---------- Ürün detay sayfası ---------- */
.product-hero {
  background: linear-gradient(150deg, var(--navy-950), var(--navy-800));
  color: var(--white); padding: 30px 0 70px;
}
.product-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; margin-top: 26px; }
.product-hero h1 { font-size: clamp(28px, 3.6vw, 42px); }
.product-hero-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.product-hero-media img { width: 100%; height: 360px; object-fit: cover; }
.chip-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 30px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: var(--radius-full); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); font-size: 13.5px; font-weight: 600; }
.chip .icon { width: 15px; height: 15px; color: var(--blue-300); }

.coverage-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.coverage-card { border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 26px; }
.coverage-card .icon-wrap { width: 44px; height: 44px; border-radius: 12px; background: var(--gray-50); color: var(--blue-500); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.coverage-card h3 { font-size: 16.5px; margin-bottom: 8px; }
.coverage-card p { font-size: 14px; margin: 0; }
.coverage-card ul { margin-top: 10px; display: grid; gap: 8px; }
.coverage-card ul li { display: flex; gap: 8px; align-items: flex-start; font-size: 13.5px; color: var(--gray-600); }
.coverage-card ul .icon { width: 15px; height: 15px; color: var(--success); margin-top: 3px; }
@media (max-width: 760px) { .coverage-grid { grid-template-columns: 1fr; } .product-hero-grid { grid-template-columns: 1fr; } .product-hero-media { order: -1; } }

.stat-mini-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.stat-mini { border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 20px; }
.stat-mini span { font-size: 12.5px; color: var(--gray-600); display: block; margin-bottom: 6px; }
.stat-mini b { font-size: 19px; color: var(--navy-900); }
@media (max-width: 640px) { .stat-mini-row { grid-template-columns: 1fr; } }

.faq-list { display: grid; gap: 12px; max-width: 820px; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius-md); overflow: hidden; background: var(--white); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px; background: none; border: none; text-align: left;
  font-weight: 700; font-size: 15.5px; color: var(--navy-900);
}
.faq-question .icon { width: 20px; height: 20px; color: var(--blue-500); transition: transform .2s ease; flex-shrink: 0; }
.faq-item.is-open .faq-question .icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-answer-inner { padding: 0 22px 20px; font-size: 14.5px; color: var(--gray-600); }

.steps-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step-card { position: relative; padding: 26px 22px 22px; border: 1px solid var(--gray-200); border-radius: var(--radius-md); }
.step-card .step-num {
  width: 34px; height: 34px; border-radius: 50%; background: var(--navy-900); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; margin-bottom: 14px;
}
.step-card h3 { font-size: 15.5px; margin-bottom: 6px; }
.step-card p { font-size: 13.5px; margin: 0; }
@media (max-width: 900px) { .steps-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps-list { grid-template-columns: 1fr; } }

/* ---------- Genel içerik sayfası (Hakkımızda vb.) hero ---------- */
.page-hero {
  background: linear-gradient(150deg, var(--navy-950), var(--navy-800));
  color: var(--white); padding: 34px 0 60px;
}
.page-hero h1 { font-size: clamp(28px, 4vw, 44px); margin-top: 18px; max-width: 760px; }
.page-hero p { color: rgba(255,255,255,0.72); max-width: 620px; font-size: 16px; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { padding: 28px; border-radius: var(--radius-md); border: 1px solid var(--gray-200); }
.value-card .icon-wrap { width: 48px; height: 48px; border-radius: 12px; background: var(--gray-50); color: var(--blue-500); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.value-card h3 { font-size: 16.5px; }
.value-card p { font-size: 14px; margin: 0; }
@media (max-width: 860px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .value-grid { grid-template-columns: 1fr; } }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.two-col img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; height: 340px; object-fit: cover; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } .two-col img { height: 240px; order: -1; } }

/* ---------- İletişim ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; }
.contact-card { border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 22px; display: flex; gap: 14px; margin-bottom: 14px; }
.contact-card .icon-wrap { width: 46px; height: 46px; border-radius: 12px; background: var(--gray-50); color: var(--blue-500); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card strong { display: block; font-size: 15px; color: var(--navy-900); margin-bottom: 2px; }
.contact-card span, .contact-card a { font-size: 14px; }
.map-frame { border-radius: var(--radius-md); overflow: hidden; height: 280px; border: 1px solid var(--gray-200); margin-top: 8px; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Form elemanları (genel) ---------- */
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; color: var(--navy-900); margin-bottom: 8px; }
.field .hint { font-size: 12.5px; color: var(--gray-400); font-weight: 500; margin-left: 4px; }
.field input[type=text],
.field input[type=email],
.field input[type=tel],
.field input[type=date],
.field input[type=number],
.field input[type=password],
.field select,
.field textarea {
  width: 100%; padding: 14px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200); background: var(--white);
  font-size: 14.5px; font-family: inherit; color: var(--navy-900);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-400); box-shadow: 0 0 0 4px rgba(47,107,255,0.12);
}
.field textarea { resize: vertical; min-height: 100px; }
.field-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.field-row-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 760px) { .field-row, .field-row-2 { grid-template-columns: 1fr; } }
.field-error { display: none; color: var(--danger); font-size: 12.5px; font-weight: 600; margin-top: 6px; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--danger); }
.field.has-error .field-error { display: block; }

.radio-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.radio-card {
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-md);
  padding: 18px; cursor: pointer; display: flex; gap: 12px; align-items: flex-start;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.radio-card input { margin-top: 3px; accent-color: var(--blue-500); }
.radio-card strong { display: block; font-size: 14.5px; color: var(--navy-900); }
.radio-card span { font-size: 12.5px; }
.radio-card:has(input:checked) { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(47,107,255,0.1); }
@media (max-width: 760px) { .radio-cards { grid-template-columns: 1fr; } }

.checkbox-row { display: flex; gap: 12px; align-items: flex-start; font-size: 13.5px; color: var(--gray-600); }
.checkbox-row input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--blue-500); flex-shrink: 0; }
.checkbox-row a { color: var(--blue-500); font-weight: 700; text-decoration: underline; }

/* Honeypot (bot tuzağı) — insan kullanıcıya görünmez */
.hp-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* ---------- Alert / durum kutuları ---------- */
.alert { display: flex; gap: 12px; padding: 16px 18px; border-radius: var(--radius-md); font-size: 13.5px; }
.alert .icon { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.alert-info { background: rgba(47,107,255,0.08); color: var(--navy-800); border: 1px solid rgba(47,107,255,0.2); }
.alert-success { background: rgba(31,169,113,0.1); color: #0f6b47; border: 1px solid rgba(31,169,113,0.28); }
.alert-error { background: rgba(211,56,79,0.08); color: var(--danger); border: 1px solid rgba(211,56,79,0.25); }

/* ---------- Sticky mobil CTA ---------- */
.mobile-sticky-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 300;
  background: var(--navy-950); border-top: 1px solid rgba(255,255,255,0.08);
  padding: 10px 14px; gap: 10px;
}
.mobile-sticky-cta a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px; border-radius: var(--radius-full); font-weight: 700; font-size: 13.5px;
}
.mobile-sticky-cta .icon { width: 17px; height: 17px; }

/* ---------- Responsive: header/hero mobil ---------- */
@media (max-width: 1080px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-phone .phone-sub { display: none; }
}
@media (max-width: 1080px) {
  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
}

/* Mobil açılır menü */
.mobile-menu {
  position: fixed; inset: 0; z-index: 400; background: var(--navy-950);
  display: none; flex-direction: column; overflow-y: auto;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-menu-body { padding: 12px 24px 30px; }
.mobile-menu a.m-link {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 16px 4px; color: var(--white); font-weight: 700; font-size: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-submenu { display: none; padding: 4px 0 10px 10px; }
.mobile-submenu.is-open { display: block; }
.mobile-submenu a { display: block; padding: 10px 4px; color: var(--gray-400); font-size: 14.5px; font-weight: 600; }
.mobile-menu-cta { margin-top: 20px; display: grid; gap: 10px; }

/* Skip link (erişilebilirlik) */
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--blue-500); color: #fff;
  padding: 12px 18px; z-index: 999; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- WordPress varsayılan menü çıktısı için ek stiller ---------- */
.main-nav .nav-list { position: relative; }
.main-nav .nav-list li { position: relative; }
.main-nav .sub-menu {
  display: none; position: absolute; top: 100%; left: 0; min-width: 240px;
  background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  padding: 10px; z-index: 60; list-style: none; margin: 0;
}
.main-nav .nav-list li:hover > .sub-menu,
.main-nav .nav-list li:focus-within > .sub-menu { display: block; }
.main-nav .sub-menu a {
  display: block; padding: 9px 14px; border-radius: 8px; color: var(--navy-800);
  font-weight: 600; font-size: 13.5px; white-space: nowrap;
}
.main-nav .sub-menu a:hover { background: var(--gray-50); color: var(--blue-500); }
.main-nav .sub-menu .sub-menu { top: 0; left: 100%; }

.mobile-nav-list { display: flex; flex-direction: column; }
.mobile-nav-list > ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav-list a.nav-link {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 16px 4px; color: var(--white); font-weight: 700; font-size: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav-list .sub-menu { list-style: none; margin: 0; padding: 4px 0 10px 14px; }
.mobile-nav-list .sub-menu a { display: block; padding: 10px 4px; color: var(--gray-400); font-size: 14.5px; font-weight: 600; border-bottom: none; }
