/* =======================================================
   PRO SERVİS TEKNİK DESTEK — style.css
   Ana Stil Dosyası | v1.0
   ======================================================= */

/* ---- 1. DEĞİŞKENLER ---- */
:root {
  --navy: #0b1d30;
  --navy-2: #142840;
  --blue: #1a4fa3;
  --blue-2: #2563eb;
  --accent: #f97316;
  --accent-d: #ea580c;
  --accent-light: #fff7ed;
  --white: #ffffff;
  --bg: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-700: #334155;
  --text: #1e293b;
  --text-light: #64748b;
  --green: #16a34a;
  --green-bg: #f0fdf4;

  --shadow-xs: 0 1px 3px rgba(0,0,0,.06);
  --shadow-sm: 0 2px 10px rgba(0,0,0,.08);
  --shadow: 0 4px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.14);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.18);

  --radius-s: 6px;
  --radius: 10px;
  --radius-l: 16px;
  --radius-xl: 24px;

  --ease: cubic-bezier(.4, 0, .2, 1);
  --tr: .2s cubic-bezier(.4, 0, .2, 1);
}

/* ---- 2. RESET & TEMEL ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- 3. LAYOUT ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container { padding: 0 32px; }
}

.section {
  padding: 80px 0;
}

.section--gray { background: var(--bg); }
.section--dark { background: var(--navy); color: var(--white); }
.section--navy2 { background: var(--navy-2); color: var(--white); }

/* ---- 4. TİPOGRAFİ ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -.02em;
}

.section-title--white { color: var(--white); }

.section-subtitle {
  font-size: 17px;
  color: var(--text-light);
  max-width: 640px;
  line-height: 1.7;
}

.section-subtitle--white { color: rgba(255,255,255,.75); }

.section-head {
  margin-bottom: 52px;
}

.section-head--center {
  text-align: center;
}

.section-head--center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ---- 5. BUTONLAR ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  transition: var(--tr);
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(249,115,22,.35);
}

.btn--primary:hover {
  background: var(--accent-d);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(249,115,22,.45);
}

.btn--secondary {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(4px);
}

.btn--secondary:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.6);
}

.btn--outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn--outline:hover {
  background: var(--blue);
  color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

.btn--white:hover {
  background: var(--gray-100);
  transform: translateY(-1px);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 18px;
  border-radius: var(--radius-l);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ---- 6. HEADER ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--tr);
}

.header.is-scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.10);
}

.header__inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 16px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.header__logo-icon {
  width: 38px;
  height: 38px;
  background: var(--accent);
  border-radius: var(--radius-s);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.header__logo-name {
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -.02em;
}

.header__logo-tagline {
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.header__nav {
  display: none;
  align-items: center;
  gap: 2px;
  flex: 1;
  margin-left: 8px;
}

@media (min-width: 1024px) {
  .header__nav { display: flex; }
}

.header__nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-s);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  transition: var(--tr);
  white-space: nowrap;
}

.header__nav-link:hover {
  background: var(--gray-100);
  color: var(--navy);
}

.header__nav-link.is-active { color: var(--blue); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.header__phone {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  transition: var(--tr);
  text-decoration: none;
  white-space: nowrap;
}

@media (min-width: 600px) {
  .header__phone { display: flex; }
}

.header__phone:hover {
  background: var(--accent-d);
  transform: translateY(-1px);
}

.header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-s);
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .header__hamburger { display: none; }
}

.header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--tr);
}

/* ---- 7. MOBİL MENU ---- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}

.mobile-nav.is-open { display: block; }

.mobile-nav__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.mobile-nav__panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 290px;
  background: var(--white);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

.mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}

.mobile-nav__logo-name {
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
}

.mobile-nav__close {
  padding: 8px;
  border-radius: var(--radius-s);
  font-size: 22px;
  color: var(--gray-500);
  cursor: pointer;
  border: none;
  background: var(--gray-100);
  line-height: 1;
}

.mobile-nav__link {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: var(--tr);
}

.mobile-nav__link:hover {
  background: var(--gray-100);
  color: var(--navy);
}

.mobile-nav__sep {
  height: 1px;
  background: var(--gray-200);
  margin: 8px 0;
}

.mobile-nav__phone {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
}

/* ---- 8. HERO ---- */
.hero {
  background: linear-gradient(140deg, #0b1d30 0%, #18417d 52%, #0d2540 100%);
  color: var(--white);
  padding: 80px 0 88px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 60%, rgba(37,99,235,.18) 0%, transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(249,115,22,.12) 0%, transparent 40%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 960px) {
  .hero__inner {
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: rgba(249,115,22,.15);
  border: 1px solid rgba(249,115,22,.3);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 700;
  color: #fde68a;
  margin-bottom: 22px;
}

.hero__title {
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 22px;
  letter-spacing: -.025em;
}

.hero__title em {
  font-style: normal;
  color: var(--accent);
}

.hero__desc {
  font-size: 18px;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,.88);
}

.hero__trust-dot {
  width: 18px;
  height: 18px;
  background: rgba(22,163,74,.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

/* Hero sağ kart */
.hero__card {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-xl);
  padding: 32px;
  backdrop-filter: blur(12px);
}

.hero__card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--white);
}

.hero__stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.hero__stat {
  background: rgba(255,255,255,.09);
  border-radius: var(--radius);
  padding: 20px 14px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.1);
}

.hero__stat-num {
  font-size: 30px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 5px;
}

.hero__stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  line-height: 1.3;
}

.hero__card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 18px;
  font-weight: 800;
  width: 100%;
  transition: var(--tr);
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(249,115,22,.4);
}

.hero__card-cta:hover {
  background: var(--accent-d);
  transform: translateY(-1px);
}

/* ---- 9. ROZET BANDI ---- */
.badge-strip {
  background: var(--navy-2);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.badge-strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 36px;
}

.badge-strip__item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  white-space: nowrap;
}

/* ---- 10. CİHAZ GRIDI ---- */
.devices__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width: 480px) {
  .devices__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .devices__grid { grid-template-columns: repeat(4, 1fr); }
}

.device-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-l);
  padding: 22px 16px;
  text-align: center;
  transition: var(--tr);
  cursor: default;
}

.device-card:hover {
  border-color: var(--blue-2);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.device-card__img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 0 auto 14px;
  background: var(--gray-100);
}

.device-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.device-card__desc {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ---- 11. MARKA GRIDI ---- */
.brands__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (min-width: 480px) {
  .brands__grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 768px) {
  .brands__grid { grid-template-columns: repeat(6, 1fr); }
}

.brand-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 14px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  transition: var(--tr);
  min-height: 84px;
  text-decoration: none;
}

.brand-logo-card:hover {
  border-color: var(--blue-2);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.brand-logo-card img {
  max-width: 96px;
  max-height: 48px;
  object-fit: contain;
  filter: grayscale(20%) opacity(0.85);
  transition: filter var(--tr);
}

.brand-logo-card:hover img {
  filter: grayscale(0%) opacity(1);
}

.brand-logo-card .brand-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-700);
  text-align: center;
}

/* ---- 12. NEDEN BİZ ---- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 600px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}

.why-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-l);
  padding: 28px 24px;
  transition: var(--tr);
}

.why-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.why-card__icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}

.why-card__icon--blue {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.why-card__icon--orange {
  background: linear-gradient(135deg, #fff7ed, #fed7aa);
}

.why-card__icon--green {
  background: linear-gradient(135deg, #f0fdf4, #bbf7d0);
}

.why-card__icon--purple {
  background: linear-gradient(135deg, #faf5ff, #e9d5ff);
}

.why-card__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 9px;
  color: var(--text);
}

.why-card__desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.68;
}

/* ---- 13. SERVİS SÜRECİ ---- */
.process-wrap {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 48px 32px;
}

.process__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .process__steps { grid-template-columns: repeat(4, 1fr); }
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

@media (min-width: 768px) {
  .process-step { align-items: center; text-align: center; }

  .process-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -16px;
    top: 22px;
    font-size: 22px;
    color: rgba(249,115,22,.6);
    font-weight: 900;
  }
}

.process-step__num {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(249,115,22,.4);
}

.process-step__icon {
  font-size: 24px;
  margin-bottom: 10px;
}

.process-step__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 7px;
}

.process-step__desc {
  font-size: 13.5px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}

/* ---- 14. ARIZALAR ---- */
.faults__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 600px) {
  .faults__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .faults__grid { grid-template-columns: repeat(3, 1fr); }
}

.fault-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--tr);
}

.fault-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--accent);
  border-left-color: var(--accent);
  transform: translateY(-2px);
}

.fault-card__icon {
  font-size: 26px;
  flex-shrink: 0;
  line-height: 1;
}

.fault-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}

.fault-card__desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.55;
}

/* ---- 15. AYNI GÜN DESTEK ---- */
.same-day {
  background: linear-gradient(135deg, var(--accent) 0%, #c2410c 100%);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.same-day::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  top: -200px;
  left: -100px;
  pointer-events: none;
}

.same-day__title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: -.025em;
  position: relative;
}

.same-day__desc {
  font-size: 18px;
  opacity: .92;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.same-day__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 28px;
  margin-bottom: 40px;
  position: relative;
}

.same-day__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
}

/* ---- 16. SSS ---- */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  gap: 16px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  transition: background var(--tr);
}

.faq-item__q:hover { background: var(--gray-100); }
.faq-item__q.is-open { color: var(--blue); }

.faq-item__arrow {
  font-size: 18px;
  color: var(--accent);
  transition: transform var(--tr);
  flex-shrink: 0;
}

.faq-item__q.is-open .faq-item__arrow {
  transform: rotate(180deg);
}

.faq-item__a {
  display: none;
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.72;
  border-top: 1px solid var(--gray-100);
}

.faq-item__a.is-open { display: block; }

/* ---- 17. CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(140deg, #0b1d30 0%, #1a3d70 100%);
  color: var(--white);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: rgba(249,115,22,.07);
  top: -280px;
  right: -120px;
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(37,99,235,.08);
  bottom: -150px;
  left: -80px;
  pointer-events: none;
}

.cta-banner__content {
  position: relative;
  z-index: 1;
}

.cta-banner__title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -.025em;
}

.cta-banner__desc {
  font-size: 18px;
  opacity: .85;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 22px 48px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-xl);
  font-size: 26px;
  font-weight: 900;
  transition: var(--tr);
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(249,115,22,.45);
  letter-spacing: .01em;
}

.cta-banner__phone:hover {
  background: var(--accent-d);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(249,115,22,.55);
}

.cta-banner__note {
  margin-top: 20px;
  font-size: 14px;
  opacity: .55;
}

/* ---- 18. FOOTER ---- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.72);
  padding: 60px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

@media (min-width: 640px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer__grid { grid-template-columns: 2.2fr 1fr 1fr 1fr; }
}

.footer__brand-name {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -.02em;
}

.footer__brand-desc {
  font-size: 14px;
  line-height: 1.72;
  margin-bottom: 22px;
  max-width: 290px;
}

.footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  transition: var(--tr);
  text-decoration: none;
}

.footer__phone:hover {
  background: var(--accent-d);
  transform: translateY(-1px);
}

.footer__col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 18px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer__link {
  font-size: 14px;
  color: rgba(255,255,255,.62);
  transition: color var(--tr);
  text-decoration: none;
}

.footer__link:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.09);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  opacity: .55;
}

/* ---- 19. MOBİL CALL BAR ---- */
.mobile-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
  transition: background var(--tr);
  letter-spacing: .02em;
}

.mobile-call-bar:hover { background: var(--accent-d); }

@media (min-width: 768px) {
  .mobile-call-bar { display: none; }
}

body { padding-bottom: 56px; }

@media (min-width: 768px) {
  body { padding-bottom: 0; }
}

/* ---- 20. MARKA HERO ---- */
.brand-hero {
  background: linear-gradient(140deg, #0b1d30 0%, #18417d 52%, #0d2540 100%);
  color: var(--white);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.brand-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 50%, rgba(249,115,22,.09) 0%, transparent 55%);
}

.brand-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .brand-hero__inner {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }
}

.brand-hero__logo-wrap {
  background: var(--white);
  border-radius: var(--radius-l);
  padding: 24px 40px;
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}

.brand-hero__logo {
  width: 160px;
  height: 80px;
  object-fit: contain;
}

.brand-hero__content { flex: 1; }

.brand-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  background: rgba(249,115,22,.15);
  border: 1px solid rgba(249,115,22,.28);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: #fde68a;
  margin-bottom: 16px;
  letter-spacing: .03em;
}

.brand-hero__title {
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: -.025em;
}

.brand-hero__slogan {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  margin-bottom: 12px;
  font-style: italic;
}

.brand-hero__desc {
  font-size: 17px;
  color: rgba(255,255,255,.82);
  line-height: 1.72;
  margin-bottom: 28px;
  max-width: 620px;
}

.brand-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---- 21. HİZMET ALANLARI ---- */
.service-areas__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width: 640px) {
  .service-areas__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .service-areas__grid { grid-template-columns: repeat(4, 1fr); }
}

.service-area-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  transition: var(--tr);
}

.service-area-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.service-area-card__icon { font-size: 36px; margin-bottom: 11px; }
.service-area-card__title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.service-area-card__sub { font-size: 12px; color: var(--text-light); line-height: 1.4; }

/* ---- 22. ONARIM KARTLARI ---- */
.repair-cards__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .repair-cards__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .repair-cards__grid { grid-template-columns: repeat(3, 1fr); }
}

.repair-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-l);
  padding: 26px;
  transition: var(--tr);
}

.repair-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.repair-card__icon { font-size: 38px; margin-bottom: 14px; }

.repair-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 9px;
}

.repair-card__desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.66;
  margin-bottom: 14px;
}

.repair-card__tag {
  display: inline-block;
  padding: 4px 11px;
  background: var(--accent-light);
  color: var(--accent-d);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
}

/* ---- 23. BRAND INTRO ---- */
.brand-intro {
  padding: 64px 0;
}

.brand-intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .brand-intro__grid { grid-template-columns: 1fr 1fr; }
}

.brand-intro__img-wrap {
  border-radius: var(--radius-l);
  overflow: hidden;
  background: var(--gray-100);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-intro__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-intro__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.brand-intro__list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

.brand-intro__list-check {
  width: 22px;
  height: 22px;
  background: var(--green-bg);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---- 24. YASAL UYARI ---- */
.footer__disclaimer {
  width: 100%;
  text-align: center;
  padding-top: 14px;
  margin-top: 12px;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: 11.5px;
  color: rgba(255,255,255,.35);
  line-height: 1.7;
  font-style: italic;
}

/* ---- 25. RESPONSIVE ---- */
@media (max-width: 767px) {
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }
  .hero { padding: 52px 0 64px; }

  .hero__cta {
    flex-direction: column;
  }

  .hero__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .brand-hero__logo-wrap {
    padding: 18px 28px;
  }

  .brand-hero__logo {
    width: 130px;
    height: 65px;
  }

  .brand-hero__cta {
    flex-direction: column;
    width: 100%;
  }

  .brand-hero__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-banner__phone {
    font-size: 20px;
    padding: 18px 32px;
  }

  .process-wrap {
    padding: 36px 24px;
  }
}

@media (max-width: 480px) {
  .hero__stat-grid { grid-template-columns: repeat(2, 1fr); }
  .badge-strip__inner { flex-direction: column; align-items: center; gap: 10px; }
}
