/*
Tasarım notu — Endüstriyel Güven Manifestosu
Bu stil dosyası resmi servis algısı üretmeden kurumsal güven, açıklık ve okunabilirlik oluşturur.
Ana hedef; özel servis beyanını görünür, düzenli ve mobilde güçlü tutmaktır.
*/

:root {
  --bg: #f6f8fa;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --text: #0f172a;
  --muted: #5b6472;
  --line: #dde5ec;
  --brand: #10253b;
  --brand-2: #18314b;
  --accent: #f4a261;
  --accent-soft: #fff6ee;
  --accent-deep: #8d4b16;
  --success: #1f6f5f;
  --shadow-lg: 0 24px 80px rgba(15, 23, 42, 0.12);
  --shadow-md: 0 18px 50px rgba(15, 23, 42, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: #0d1b2a;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
}

.topbar-badge,
.topbar-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.topbar-badge {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.topbar-meta {
  gap: 22px;
  color: rgba(255, 255, 255, 0.88);
  flex-wrap: wrap;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(221, 229, 236, 0.95);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
}

.brand-kicker {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #667085;
  margin-bottom: 4px;
}

.brand-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  color: #334155;
}

.nav-links a:hover,
.mobile-links a:hover,
.footer-links a:hover {
  color: var(--text);
}

.call-btn,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 15px 24px;
  font-weight: 700;
  transition: 0.2s ease;
  border: 1px solid transparent;
}

.call-btn,
.primary-btn {
  background: var(--brand);
  color: #fff;
}

.call-btn:hover,
.primary-btn:hover {
  background: var(--brand-2);
}

.secondary-btn {
  background: #fff;
  color: var(--text);
  border-color: #cfd8e3;
}

.secondary-btn:hover {
  background: #f8fafc;
  border-color: #b8c4d3;
}

.mobile-links {
  display: none;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0 0 18px;
}

.mobile-links a {
  border: 1px solid var(--line);
  background: #f8fafc;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #475569;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #eef3f7 0%, #ffffff 46%, #f4ede7 100%);
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(244, 162, 97, 0.24), transparent 32%),
    radial-gradient(circle at bottom right, rgba(16, 37, 59, 0.10), transparent 30%);
  pointer-events: none;
}

.hero-grid,
.page-hero-inner {
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
  padding: 84px 0 72px;
}

.label,
.page-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(244, 162, 97, 0.42);
  background: rgba(255, 255, 255, 0.82);
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  box-shadow: 0 12px 30px rgba(16, 37, 59, 0.08);
}

.hero h1,
.page-hero h1 {
  margin: 24px 0 0;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.hero h1 span {
  color: var(--brand);
}

.hero-intro,
.page-hero p {
  margin-top: 24px;
  max-width: 760px;
  font-size: 21px;
  color: #475569;
  line-height: 1.8;
}

.hero-mini-grid,
.card-grid.two,
.card-grid.three,
.value-grid,
.info-grid,
.service-grid,
.faq-grid,
.statement-grid,
.contact-grid,
.dual-grid {
  display: grid;
  gap: 22px;
}

.hero-mini-grid,
.card-grid.two,
.dual-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid.three,
.info-grid,
.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid,
.faq-grid,
.value-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-mini-grid {
  margin-top: 32px;
}

.card,
.soft-card,
.panel,
.dark-panel,
.accent-panel,
.service-card,
.faq-item,
.contact-card,
.statement-item {
  border-radius: var(--radius-lg);
}

.card,
.soft-card,
.panel,
.service-card,
.faq-item,
.contact-card,
.statement-item {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.soft-card {
  background: rgba(248, 250, 252, 0.8);
  box-shadow: none;
}

.card,
.soft-card,
.panel,
.dark-panel,
.accent-panel,
.service-card,
.faq-item,
.contact-card,
.statement-item {
  padding: 28px;
}

.dark-panel {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.16);
}

.accent-panel {
  background: var(--accent-soft);
  border: 1px solid #f0d8c1;
  box-shadow: 0 16px 45px rgba(141, 75, 22, 0.08);
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: #64748b;
}

.dark-panel .eyebrow {
  color: #f7c59f;
}

.accent-panel .eyebrow {
  color: var(--accent-deep);
}

.card h3,
.panel h2,
.dark-panel h2,
.accent-panel h2,
.contact-card h3,
.service-card h3,
.statement-item h3,
.faq-item h3 {
  margin: 14px 0 0;
  letter-spacing: -0.03em;
}

.card p,
.panel p,
.soft-card p,
.service-card p,
.faq-item p,
.contact-card p,
.statement-item p,
.dark-panel p,
.accent-panel p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.dark-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.section {
  padding: 84px 0;
}

.section.border-top {
  border-top: 1px solid var(--line);
}

.section.bg-white {
  background: #fff;
}

.section.bg-soft {
  background: var(--bg);
}

.section.bg-brand {
  background: var(--brand);
  color: #fff;
}

.section-head {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 14px 0 0;
  font-size: clamp(30px, 3vw, 48px);
  letter-spacing: -0.05em;
}

.section-head p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.section.bg-brand .section-head p,
.section.bg-brand p {
  color: rgba(255, 255, 255, 0.84);
}

.status-panel {
  position: relative;
}

.status-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #dbe4ee;
}

.status-chip {
  border: 1px solid rgba(244, 162, 97, 0.5);
  background: var(--accent-soft);
  color: var(--accent-deep);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.status-list {
  margin-top: 22px;
  display: grid;
  gap: 16px;
}

.status-item,
.list-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.icon-dot {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #d3dce6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-weight: 700;
  margin-top: 2px;
}

.service-card,
.faq-item,
.statement-item,
.contact-card {
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.05);
}

.service-card .number {
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  font-weight: 700;
}

.service-card .spark {
  color: var(--accent);
  font-size: 18px;
}

.highlight-box {
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 32px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #eef3f7 0%, #ffffff 46%, #f4ede7 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  padding: 70px 0 58px;
  max-width: 920px;
}

.page-shell .section:first-of-type {
  padding-top: 72px;
}

.footer-top {
  background: #0d1b2a;
  color: #fff;
  padding: 48px 0;
}

.footer-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.06);
}

.footer-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.footer-bottom {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 26px 0;
}

.footer-bottom-inner {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
  color: #475569;
  font-size: 14px;
}

.notice-bar {
  margin-top: 24px;
  border-left: 4px solid var(--accent);
  background: #fff;
  border-radius: 0 18px 18px 0;
  padding: 20px 22px;
  color: #334155;
  box-shadow: var(--shadow-md);
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: #64748b;
  font-size: 14px;
}

.breadcrumbs span:last-child {
  color: var(--text);
  font-weight: 700;
}

@media (max-width: 1080px) {
  .nav-links {
    display: none;
  }

  .mobile-links {
    display: flex;
  }

  .hero-grid,
  .page-hero-inner,
  .hero-mini-grid,
  .card-grid.two,
  .card-grid.three,
  .value-grid,
  .info-grid,
  .service-grid,
  .faq-grid,
  .statement-grid,
  .contact-grid,
  .dual-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 64px 0 56px;
    gap: 34px;
  }

  .footer-bottom-inner,
  .topbar-inner,
  .navbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .section,
  .page-shell .section:first-of-type {
    padding: 58px 0;
  }

  .card,
  .soft-card,
  .panel,
  .dark-panel,
  .accent-panel,
  .service-card,
  .faq-item,
  .contact-card,
  .statement-item,
  .footer-card,
  .highlight-box {
    padding: 22px;
  }

  .call-btn,
  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .hero-intro,
  .page-hero p,
  .section-head p {
    font-size: 17px;
  }

  .brand-title {
    font-size: 22px;
  }

  .topbar-badge,
  .topbar-meta {
    font-size: 12px;
  }
}
