/* =========================================================
   Tamay Analiz ve Danışmanlık — Tasarım Sistemi
   Marka renkleri logodan alınmıştır:
     Lacivert  #252E59
     Turkuaz   #347F8B
   Fontlar: Manrope (başlık) + Inter (gövde)
   ========================================================= */

:root {
  /* --- Marka renkleri --- */
  --navy:        #252E59;   /* logo laciverti */
  --navy-700:    #1C2445;
  --navy-800:    #151B33;
  --navy-900:    #0F1426;
  --teal:        #347F8B;   /* logo turkuazı */
  --teal-deep:   #2C6E79;   /* butonlar / koyu vurgu */
  --teal-link:   #2A6B75;   /* açık zeminde küçük metin */
  --teal-light:  #6FBDC8;   /* koyu zeminde vurgu */
  --teal-glow:   rgba(111, 189, 200, 0.18);

  /* --- Nötrler --- */
  --white:       #FFFFFF;
  --surface:     #FFFFFF;
  --surface-2:   #F6F8FA;
  --surface-3:   #EEF1F6;
  --border:      #E1E6EF;
  --border-soft: #EDF0F6;
  --text:        #1A2033;
  --text-muted:  #5B6580;
  --text-on-dark:       rgba(255,255,255,0.82);
  --text-on-dark-soft:  rgba(255,255,255,0.60);

  /* --- Tipografi --- */
  --font-heading: 'Manrope', 'Segoe UI', system-ui, Arial, sans-serif;
  --font-body:    'Inter', 'Segoe UI', system-ui, Arial, sans-serif;

  /* --- Ölçek --- */
  --s1: 0.5rem;
  --s2: 1rem;
  --s3: 1.5rem;
  --s4: 2rem;
  --s5: 3rem;
  --s6: 4.5rem;
  --s7: 6.5rem;

  /* --- Layout --- */
  --container: 1200px;
  --container-narrow: 900px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --header-h: 72px;

  --shadow-xs: 0 1px 2px rgba(21, 27, 51, 0.04);
  --shadow-sm: 0 2px 8px rgba(21, 27, 51, 0.05), 0 1px 2px rgba(21, 27, 51, 0.03);
  --shadow-md: 0 12px 28px rgba(21, 27, 51, 0.08), 0 2px 6px rgba(21, 27, 51, 0.04);
  --shadow-lg: 0 24px 60px rgba(21, 27, 51, 0.13), 0 4px 12px rgba(21, 27, 51, 0.05);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------------- Reset ---------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.68;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -0.018em;
  margin: 0 0 var(--s2);
  font-weight: 800;
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 1.4rem + 2.4vw, 3.2rem); letter-spacing: -0.028em; }
h2 { font-size: clamp(1.55rem, 1.25rem + 1.35vw, 2.3rem); letter-spacing: -0.024em; }
h3 { font-size: clamp(1.1rem, 1.02rem + 0.32vw, 1.28rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }

p { margin: 0 0 var(--s2); color: var(--text-muted); }
p:last-child { margin-bottom: 0; }

button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

::selection { background: var(--teal); color: #fff; }

/* Erişilebilirlik: odak görünürlüğü */
a:focus-visible, button:focus-visible,
input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1200;
  background: var(--navy);
  color: #fff;
  padding: 0.85rem 1.35rem;
  font-weight: 700;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------------- Layout ---------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.15rem, 4vw, 2.25rem);
}
.container-narrow { max-width: var(--container-narrow); }

.section { padding: clamp(3.25rem, 7vw, 6rem) 0; }
.section-tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section-alt { background: var(--surface-2); }
.section-dark {
  background:
    radial-gradient(900px 420px at 15% -10%, rgba(52,127,139,0.22), transparent 60%),
    linear-gradient(165deg, var(--navy) 0%, var(--navy-800) 100%);
  color: var(--white);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: var(--text-on-dark); }

/* Bölüm başlıkları */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--teal-link);
  margin: 0 0 var(--s2);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--teal);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-dark .eyebrow { color: var(--teal-light); }
.section-dark .eyebrow::before { background: var(--teal-light); }

.section-head { max-width: 680px; margin: 0 0 clamp(2rem, 4vw, 3.25rem); }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.centered .eyebrow { justify-content: center; }
.section-head p { font-size: 1.045rem; }

/* ---------------- Butonlar ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.97rem;
  line-height: 1.2;
  padding: 0.95rem 1.7rem;
  min-height: 50px;
  border-radius: 999px;
  border: 2px solid transparent;
  text-align: center;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease),
              border-color 0.2s var(--ease), transform 0.2s var(--ease),
              box-shadow 0.2s var(--ease);
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

.btn-primary {
  background: var(--teal-deep);
  color: #fff;
  box-shadow: 0 6px 18px rgba(44, 110, 121, 0.28);
}
.btn-primary:hover { background: #24606A; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(44,110,121,0.34); }

.btn-navy { background: var(--navy); color: #fff; box-shadow: 0 6px 18px rgba(37,46,89,0.25); }
.btn-navy:hover { background: var(--navy-700); transform: translateY(-2px); }

/* Koyu zeminde birincil buton */
.btn-on-dark {
  background: var(--teal-light);
  color: var(--navy-900);
  box-shadow: 0 8px 22px rgba(111,189,200,0.24);
}
.btn-on-dark:hover { background: #8CCDD6; transform: translateY(-2px); }

.btn-ghost-light {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.42);
  color: #fff;
  backdrop-filter: blur(4px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.7); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--navy);
}
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: #fff; transform: translateY(-2px); }

.btn-sm { padding: 0.68rem 1.25rem; font-size: 0.9rem; min-height: 42px; }
.btn-lg { padding: 1.08rem 2.1rem; font-size: 1.03rem; min-height: 56px; }
.btn-block { width: 100%; }

.btn-whatsapp { background: #1FA855; color: #fff; box-shadow: 0 6px 18px rgba(31,168,85,0.26); }
.btn-whatsapp:hover { background: #17904699; background: #178F46; transform: translateY(-2px); }

/* Ok bağlantısı */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--teal-link);
}
.arrow-link svg { width: 16px; height: 16px; transition: transform 0.2s var(--ease); }
.arrow-link:hover { color: var(--navy); }
.arrow-link:hover svg { transform: translateX(4px); }
.section-dark .arrow-link { color: var(--teal-light); }
.section-dark .arrow-link:hover { color: #fff; }

/* ---------------- Header / Navigasyon ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow 0.25s var(--ease), background-color 0.25s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); background: rgba(255,255,255,0.96); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: var(--s2); }

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 46px; width: auto; }

.nav-desktop { display: none; }
.nav-desktop ul { display: flex; align-items: center; gap: clamp(1.1rem, 2.2vw, 2.1rem); }
.nav-desktop a {
  position: relative;
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  padding: 0.5rem 0;
  transition: color 0.2s var(--ease);
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: right 0.25s var(--ease);
}
.nav-desktop a:hover { color: var(--teal-link); }
.nav-desktop a:hover::after, .nav-desktop a[aria-current="page"]::after { right: 0; }
.nav-desktop a[aria-current="page"] { color: var(--teal-link); }

.header-actions { display: flex; align-items: center; gap: 0.6rem; }
.header-phone {
  display: none;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
  white-space: nowrap;
}
.header-phone svg { width: 16px; height: 16px; color: var(--teal); }
.header-phone:hover { color: var(--teal-link); }
.header-cta { display: none; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.nav-toggle:hover { border-color: var(--navy); }
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* Mobil menü */
.nav-mobile {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0; bottom: 0;
  z-index: 890;
  background: var(--white);
  padding: var(--s4) clamp(1.15rem, 4vw, 2.25rem) calc(var(--s6) + env(safe-area-inset-bottom, 0px));
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
}
.nav-mobile.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-mobile > ul { display: flex; flex-direction: column; }
.nav-mobile > ul > li { border-bottom: 1px solid var(--border-soft); }
.nav-mobile > ul > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.14rem;
  color: var(--navy);
  padding: 1.05rem 0;
  min-height: 56px;
}
.nav-mobile > ul > li > a[aria-current="page"] { color: var(--teal-link); }
.nav-mobile > ul > li > a svg { width: 18px; height: 18px; color: var(--border); flex-shrink: 0; }
.nav-mobile-actions { display: grid; gap: 0.75rem; margin-top: var(--s4); }
.nav-mobile-contact {
  margin-top: var(--s4);
  padding-top: var(--s3);
  border-top: 1px solid var(--border-soft);
  display: grid;
  gap: 0.7rem;
  font-size: 0.94rem;
  color: var(--text-muted);
}
.nav-mobile-contact span { display: flex; align-items: center; gap: 0.6rem; }
.nav-mobile-contact svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; }
.nav-mobile-contact a { color: var(--navy); font-weight: 600; word-break: break-word; }

@media (min-width: 1000px) {
  .nav-desktop { display: block; }
  .nav-toggle { display: none; }
  .header-cta { display: inline-flex; }
  .header-phone { display: inline-flex; }
  .nav-mobile { display: none; }
}

/* ---------------- HERO ---------------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(158deg, var(--navy) 0%, var(--navy-800) 55%, var(--navy-900) 100%);
  color: #fff;
  padding: clamp(3.25rem, 7vw, 6rem) 0 clamp(3.75rem, 8vw, 7rem);
}
/* İnce ızgara dokusu */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(ellipse 85% 65% at 60% 35%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 85% 65% at 60% 35%, #000 20%, transparent 78%);
  z-index: -2;
}
/* Turkuaz ışıma */
.hero::after {
  content: "";
  position: absolute;
  top: -28%; right: -14%;
  width: min(760px, 105vw);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(52,127,139,0.42) 0%, rgba(52,127,139,0.10) 45%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.95rem 0.45rem 0.55rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.92);
  margin-bottom: var(--s3);
}
.hero-badge .dot {
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--teal-light);
  box-shadow: 0 0 0 4px rgba(111,189,200,0.22);
  flex-shrink: 0;
  margin-left: 0.35rem;
}

.hero h1 { color: #fff; margin-bottom: var(--s3); }
.hero h1 .accent {
  background: linear-gradient(100deg, var(--teal-light) 0%, #9BD8E0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  font-size: clamp(1.02rem, 0.96rem + 0.3vw, 1.16rem);
  color: var(--text-on-dark);
  max-width: 58ch;
  margin-bottom: var(--s4);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.hero-scope {
  margin-top: clamp(2.25rem, 4vw, 3rem);
  padding-top: var(--s3);
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-scope-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-dark-soft);
  margin-bottom: 0.85rem;
}
.hero-scope ul { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.hero-scope li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.13);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
}
.hero-scope li svg { width: 14px; height: 14px; color: var(--teal-light); flex-shrink: 0; }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-visual svg { width: 100%; max-width: 460px; height: auto; }

@media (min-width: 980px) {
  .hero-inner { grid-template-columns: 1.08fr 0.92fr; }
}

/* ---------------- Bilgi şeridi ---------------- */
.info-strip {
  background: var(--surface-2);
  border-bottom: 1px solid var(--border-soft);
  padding: var(--s3) 0;
}
.info-strip-grid {
  display: grid;
  gap: var(--s3);
  grid-template-columns: 1fr;
}
.info-item { display: flex; gap: 0.85rem; align-items: flex-start; }
.info-item svg { width: 21px; height: 21px; color: var(--teal); flex-shrink: 0; margin-top: 3px; }
.info-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.1rem;
}
.info-item span { font-size: 0.9rem; color: var(--text-muted); }
@media (min-width: 640px) { .info-strip-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .info-strip-grid { grid-template-columns: repeat(4, 1fr); gap: var(--s4); } }

/* ---------------- Grid yardımcıları ---------------- */
.grid { display: grid; gap: clamp(1rem, 2vw, 1.6rem); grid-template-columns: 1fr; }
@media (min-width: 620px) { .grid-2, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------------- Premium hizmet kartı ---------------- */
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 2.4vw, 2rem);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal-light) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -55% auto;
  width: 240px; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(52,127,139,0.07) 0%, transparent 68%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: -1;
}
.service-card:hover, .service-card:focus-within {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: #CFDAE6;
}
.service-card:hover::before, .service-card:focus-within::before { transform: scaleX(1); }
.service-card:hover::after, .service-card:focus-within::after { opacity: 1; }

.service-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, rgba(52,127,139,0.13) 0%, rgba(37,46,89,0.09) 100%);
  color: var(--teal-deep);
  margin-bottom: var(--s3);
  flex-shrink: 0;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.service-icon svg { width: 27px; height: 27px; }
.service-card:hover .service-icon {
  background: linear-gradient(140deg, var(--navy) 0%, var(--teal-deep) 100%);
  color: #fff;
}
.service-card h3 { margin-bottom: 0.55rem; }
.service-card p { font-size: 0.955rem; flex-grow: 1; margin-bottom: var(--s3); }
.service-card .arrow-link { margin-top: auto; align-self: flex-start; }

/* ---------------- Neden biz — özellik kartı ---------------- */
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: clamp(1.35rem, 2.2vw, 1.75rem);
  height: 100%;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.feature-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-3);
  color: var(--teal-deep);
  margin-bottom: var(--s2);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 1.06rem; margin-bottom: 0.4rem; }
.feature-card p { font-size: 0.93rem; }

.section-dark .feature-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.13);
  backdrop-filter: blur(6px);
}
.section-dark .feature-card:hover { background: rgba(255,255,255,0.08); }
.section-dark .feature-icon { background: rgba(255,255,255,0.09); color: var(--teal-light); }

/* ---------------- Süreç adımları ---------------- */
.process { position: relative; }
.process-steps {
  display: grid;
  gap: var(--s3);
  grid-template-columns: 1fr;
}
.process-step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--s4) var(--s3) var(--s3);
}
.step-num {
  position: absolute;
  top: -18px; left: var(--s3);
  width: 42px; height: 42px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(140deg, var(--navy) 0%, var(--teal-deep) 100%);
  box-shadow: 0 6px 16px rgba(37,46,89,0.22);
}
.process-step h3 { font-size: 1.05rem; margin: 0.6rem 0 0.4rem; }
.process-step p { font-size: 0.93rem; }
@media (min-width: 760px) {
  .process-steps { grid-template-columns: repeat(4, 1fr); gap: var(--s2); }
}
@media (min-width: 1000px) { .process-steps { gap: var(--s3); } }

/* ---------------- Sektör grupları ---------------- */
.sector-group {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 2.5vw, 2.1rem);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.sector-group:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #CFDAE6; }
.sector-group-head {
  display: flex;
  align-items: center;
  gap: var(--s2);
  padding-bottom: var(--s3);
  margin-bottom: var(--s3);
  border-bottom: 1px solid var(--border-soft);
}
.sector-group-head .service-icon { margin-bottom: 0; width: 50px; height: 50px; border-radius: 14px; }
.sector-group-head .service-icon svg { width: 24px; height: 24px; }
.sector-group-head h3 { margin: 0; font-size: 1.14rem; }
.sector-group-head .count {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0;
  margin-top: 0.15rem;
}
.sector-list { display: grid; gap: 0.1rem; }
.sector-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.52rem 0;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid var(--border-soft);
}
.sector-list li:last-child { border-bottom: none; }
.sector-list li svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; margin-top: 5px; }

/* Anasayfa sektör önizleme kartı */
.sector-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: clamp(1.35rem, 2.2vw, 1.7rem);
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.13);
  color: #fff;
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
a.sector-tile:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); border-color: rgba(111,189,200,0.5); }
.sector-tile .service-icon {
  margin-bottom: 0.35rem;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.09);
  color: var(--teal-light);
  border-radius: 14px;
}
.sector-tile .service-icon svg { width: 23px; height: 23px; }
.sector-tile h3 { color: #fff; font-size: 1.05rem; margin: 0; }
.sector-tile p { font-size: 0.88rem; color: var(--text-on-dark); margin: 0; }

/* ---------------- Hizmet detay blokları ---------------- */
.service-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: center;
  padding: clamp(2.25rem, 4.5vw, 3.75rem) 0;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: calc(var(--header-h) + 24px);
}
.service-block:last-of-type { border-bottom: none; }
.service-figure {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  background:
    radial-gradient(circle at 30% 25%, rgba(52,127,139,0.12) 0%, transparent 55%),
    linear-gradient(150deg, var(--surface-2) 0%, var(--surface-3) 100%);
  border: 1px solid var(--border);
  overflow: hidden;
}
.service-figure svg { width: 46%; max-width: 170px; height: auto; color: var(--teal-deep); }
.service-figure::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(52,127,139,0.2);
  border-radius: calc(var(--r-lg) - 8px);
  pointer-events: none;
}
.service-index {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--teal-link);
  margin-bottom: 0.6rem;
}
.service-body h2 { font-size: clamp(1.4rem, 1.2rem + 1vw, 1.95rem); }
.value-list { display: grid; gap: 0.6rem; margin: var(--s3) 0; }
.value-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.96rem;
  color: var(--text);
}
.value-list svg { width: 19px; height: 19px; color: var(--teal); flex-shrink: 0; margin-top: 3px; }

@media (min-width: 860px) {
  .service-block { grid-template-columns: 0.82fr 1.18fr; }
  .service-block.reverse .service-figure { order: 2; }
}

/* ---------------- SSS ---------------- */
.faq-list { display: grid; gap: 0.75rem; max-width: 840px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.faq-item.is-open { border-color: #CFDAE6; box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s2);
  text-align: left;
  background: none;
  border: none;
  padding: 1.15rem clamp(1.1rem, 2vw, 1.5rem);
  min-height: 60px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.4;
}
.faq-question .faq-chevron {
  width: 30px; height: 30px;
  border-radius: 999px;
  background: var(--surface-3);
  color: var(--teal-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), background-color 0.25s var(--ease);
}
.faq-question .faq-chevron svg { width: 16px; height: 16px; }
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); background: var(--teal-deep); color: #fff; }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s var(--ease);
}
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-answer > div { overflow: hidden; }
.faq-answer p {
  padding: 0 clamp(1.1rem, 2vw, 1.5rem) 1.3rem;
  margin: 0;
  font-size: 0.96rem;
}

/* ---------------- CTA bandı ---------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-800) 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(2rem, 4.5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -50%; right: -8%;
  width: 460px; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(52,127,139,0.42) 0%, transparent 66%);
  z-index: -1;
}
.cta-band h2 { color: #fff; margin-bottom: 0.6rem; }
.cta-band p { color: var(--text-on-dark); margin: 0; }
.cta-band-text { max-width: 620px; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; flex-shrink: 0; }
@media (min-width: 900px) {
  .cta-band { flex-direction: row; align-items: center; justify-content: space-between; gap: var(--s5); }
}

/* Öne çıkan blok (Helal) */
.highlight-band {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
  grid-template-columns: 1fr;
}
.highlight-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  max-width: 320px;
  margin: 0 auto;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111,189,200,0.16) 0%, transparent 68%);
  border: 1px solid rgba(255,255,255,0.12);
}
.highlight-visual svg { width: 45%; color: var(--teal-light); }
@media (min-width: 900px) {
  .highlight-band { grid-template-columns: 0.85fr 1.15fr; }
  .highlight-band .highlight-visual { order: 2; }
}

/* ---------------- Sayfa başlığı (iç sayfalar) ---------------- */
.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(158deg, var(--navy) 0%, var(--navy-800) 100%);
  color: #fff;
  padding: clamp(2.75rem, 6vw, 4.75rem) 0 clamp(2.5rem, 5vw, 4rem);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse 80% 75% at 70% 25%, #000 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 75% at 70% 25%, #000 10%, transparent 75%);
  z-index: -1;
}
.page-hero h1 { color: #fff; margin-bottom: var(--s2); }
.page-hero p { color: var(--text-on-dark); max-width: 62ch; font-size: 1.05rem; }
.breadcrumb {
  font-size: 0.86rem;
  color: var(--text-on-dark-soft);
  margin-bottom: var(--s2);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: var(--teal-light); }

/* ---------------- Misyon / Vizyon / Değer ---------------- */
.mv-grid { display: grid; gap: clamp(1rem, 2vw, 1.6rem); grid-template-columns: 1fr; }
@media (min-width: 760px) { .mv-grid { grid-template-columns: 1fr 1fr; } }
.mv-card {
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.13);
}
.mv-card .feature-icon { background: rgba(255,255,255,0.09); color: var(--teal-light); }

/* ---------------- Split içerik ---------------- */
.split {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 880px) { .split { grid-template-columns: 1fr 1fr; } }
.split-media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  background:
    radial-gradient(circle at 65% 30%, rgba(52,127,139,0.13) 0%, transparent 55%),
    linear-gradient(150deg, var(--surface-2) 0%, var(--surface-3) 100%);
  border: 1px solid var(--border);
}
.split-media svg { width: 52%; max-width: 240px; color: var(--teal-deep); }


/* ---------------- Vitrin paneli (split görsel alanı) ---------------- */
.showcase {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: linear-gradient(150deg, var(--surface-2) 0%, var(--surface-3) 100%);
  padding: clamp(1.35rem, 2.6vw, 2rem);
}
.showcase::before {
  content: "";
  position: absolute;
  top: -35%; right: -20%;
  width: 380px; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(52,127,139,0.16) 0%, transparent 66%);
  z-index: -1;
}
.showcase-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-bottom: var(--s3);
  margin-bottom: var(--s3);
  border-bottom: 1px solid var(--border);
}
.showcase-head .feature-icon { margin-bottom: 0; background: var(--white); box-shadow: var(--shadow-xs); }
.showcase-head h3 { margin: 0; font-size: 1.05rem; }
.showcase-head span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0;
}
.showcase-list { display: grid; gap: 0.6rem; }
.showcase-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.75rem 0.9rem;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text);
  box-shadow: var(--shadow-xs);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.showcase-item:hover { transform: translateX(3px); border-color: #CFDAE6; }
.showcase-item .ico {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(140deg, rgba(52,127,139,0.14) 0%, rgba(37,46,89,0.08) 100%);
  color: var(--teal-deep);
}
.showcase-item .ico svg { width: 19px; height: 19px; }
.showcase-foot {
  margin-top: var(--s3);
  padding-top: var(--s3);
  border-top: 1px solid var(--border);
  font-size: 0.87rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.showcase-foot svg { width: 17px; height: 17px; color: var(--teal); flex-shrink: 0; margin-top: 3px; }

/* ---------------- İletişim ---------------- */
.contact-grid { display: grid; gap: clamp(1.25rem, 3vw, 2.25rem); grid-template-columns: 1fr; }
@media (min-width: 980px) { .contact-grid { grid-template-columns: 0.88fr 1.12fr; align-items: start; } }

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 2.4vw, 1.9rem);
  margin-bottom: var(--s3);
}
.contact-card:last-child { margin-bottom: 0; }
.contact-card h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.04rem;
  margin-bottom: 0.85rem;
}
.contact-card h3 .feature-icon {
  width: 40px; height: 40px;
  margin-bottom: 0;
  border-radius: 12px;
}
.contact-card h3 .feature-icon svg { width: 19px; height: 19px; }
.contact-line { font-style: normal; color: var(--text-muted); margin: 0; line-height: 1.72; }
.contact-strong {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.14rem;
  color: var(--navy);
  display: inline-block;
  word-break: break-word;
}
a.contact-strong:hover { color: var(--teal-link); }
.badge-open {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(52,127,139,0.1);
  color: var(--teal-link);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
}
.badge-open .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: #1FA855;
  box-shadow: 0 0 0 4px rgba(31,168,85,0.16);
}

/* Harita */
.map-embed {
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-3);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Form */
.form-grid { display: grid; gap: var(--s2); grid-template-columns: 1fr; }
@media (min-width: 620px) { .form-grid.cols-2 { grid-template-columns: 1fr 1fr; } }
.form-field { display: block; margin-bottom: var(--s2); }
.form-field:last-of-type { margin-bottom: 0; }
.form-field label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 0.45rem;
}
.form-field .req { color: var(--teal-link); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  min-height: 50px;
  font-size: 1rem; /* iOS zoom engellemek için 16px */
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235B6580' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 18px;
  padding-right: 2.75rem;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: var(--white);
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(52,127,139,0.12);
  outline: none;
}
.form-field textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: var(--s3) 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.form-consent input[type="checkbox"] {
  width: 20px; height: 20px;
  min-height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--teal-deep);
  -webkit-appearance: auto;
  appearance: auto;
}
.form-status {
  display: none;
  margin-top: var(--s3);
  padding: 0.9rem 1.1rem;
  border-radius: var(--r-sm);
  font-size: 0.93rem;
  line-height: 1.6;
}
.form-status.is-visible { display: block; }
.form-status.is-info {
  background: rgba(52,127,139,0.08);
  border: 1px solid rgba(52,127,139,0.28);
  color: #24606A;
}
.form-status.is-error {
  background: #FDF1F1;
  border: 1px solid #E9B8B8;
  color: #8E2F2F;
}
.form-note { font-size: 0.85rem; color: var(--text-muted); margin-top: var(--s2); }

/* Yapılandırma notu */
.setup-note {
  background: #FFF9EC;
  border: 1px dashed #E2B64F;
  color: #6F5411;
  border-radius: var(--r-sm);
  padding: 0.9rem 1.1rem;
  font-size: 0.88rem;
  line-height: 1.6;
}
.setup-note strong { color: #5A4309; }

/* ---------------- Footer ---------------- */
.site-footer {
  background: var(--navy-900);
  color: var(--text-on-dark-soft);
  padding: clamp(3rem, 6vw, 4.5rem) 0 var(--s3);
}
.footer-grid {
  display: grid;
  gap: var(--s4);
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1.1fr 1.3fr; gap: var(--s4); } }

.footer-brand .logo img { height: 54px; }
.footer-brand p { color: var(--text-on-dark-soft); font-size: 0.92rem; margin-top: var(--s2); max-width: 38ch; }

.footer-col h4 {
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin-bottom: var(--s2);
}
.footer-col ul { display: grid; gap: 0.15rem; }
.footer-col ul a {
  display: block;
  color: var(--text-on-dark-soft);
  font-size: 0.92rem;
  padding: 0.32rem 0;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}
.footer-col ul a:hover { color: var(--teal-light); transform: translateX(3px); }

.footer-contact { display: grid; gap: 0.85rem; }
.footer-contact-item { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.92rem; line-height: 1.6; }
.footer-contact-item svg { width: 17px; height: 17px; color: var(--teal-light); flex-shrink: 0; margin-top: 4px; }
.footer-contact-item a { color: rgba(255,255,255,0.86); }
.footer-contact-item a:hover { color: var(--teal-light); }

.footer-bottom {
  margin-top: clamp(2.25rem, 4vw, 3.25rem);
  padding-top: var(--s3);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom p { color: inherit; margin: 0; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 0.4rem 1.3rem; align-items: center; }
/* Henüz yayında olmayan hukuki metinler: bağlantı değil, pasif metin */
.legal-pending {
  color: rgba(255,255,255,0.42);
  font-size: 0.83rem;
  cursor: default;
  border-bottom: 1px dotted rgba(255,255,255,0.22);
  padding-bottom: 1px;
}
@media (min-width: 760px) {
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ---------------- Sabit WhatsApp butonu ---------------- */
.whatsapp-float {
  position: fixed;
  right: clamp(14px, 3vw, 26px);
  bottom: calc(clamp(14px, 3vw, 26px) + env(safe-area-inset-bottom, 0px));
  z-index: 850;
  width: 58px; height: 58px;
  border-radius: 999px;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid rgba(37,211,102,0.5);
  animation: wa-pulse 2.6s var(--ease) infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);    opacity: 0.7; }
  70%  { transform: scale(1.42); opacity: 0; }
  100% { transform: scale(1.42); opacity: 0; }
}
.whatsapp-float:hover { transform: scale(1.07); box-shadow: 0 14px 34px rgba(0,0,0,0.28); }
.whatsapp-float svg { width: 31px; height: 31px; }

/* ---------------- 404 ---------------- */
.error-page {
  min-height: 58vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--s7) var(--s3);
}
.error-code {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(4rem, 12vw, 7rem);
  line-height: 1;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 0 var(--s2);
}

/* ---------------- Giriş animasyonu ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------------- Yardımcı sınıflar ---------------- */
.text-center { text-align: center; }
.mt-4 { margin-top: var(--s4); }
.mt-5 { margin-top: var(--s5); }
.mb-0 { margin-bottom: 0; }
.stack-center { display: flex; justify-content: center; }

/* ---------------- Mobil ince ayarlar ---------------- */
@media (max-width: 640px) {
  :root { --header-h: 64px; }
  .logo img { height: 40px; }
  .footer-brand .logo img { height: 48px; }
  .hero-actions .btn,
  .cta-band-actions .btn { width: 100%; }
  .hero-actions, .cta-band-actions { width: 100%; }
  .btn { padding: 0.95rem 1.35rem; }
  .service-figure { aspect-ratio: 16 / 10; }
  .service-figure svg { max-width: 130px; }
  .split-media { aspect-ratio: 16 / 10; }
  .whatsapp-float { width: 54px; height: 54px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
  .faq-question { font-size: 0.96rem; padding-left: 1.1rem; padding-right: 1.1rem; }
  .cta-band { border-radius: var(--r-lg); }
  .footer-bottom { font-size: 0.8rem; }
}

@media (max-width: 430px) {
  .hero-scope li { font-size: 0.8rem; padding: 0.36rem 0.7rem; }
  .service-card, .sector-group { padding: 1.25rem; }
}

/* Yazdırma */
@media print {
  .site-header, .nav-mobile, .whatsapp-float, .cta-band, .skip-link { display: none !important; }
  body { color: #000; }
  a { text-decoration: underline; }
}
