/* ============================================================
   ATIKLER FLAKE — Hizmetlerimiz Sayfası
   Dosya: assets/hizmetlerimiz.css
   Ton: Beyaz / Açık — Kırmızı Aksanlı
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;700;900&family=Barlow:wght@400;500;600&display=swap');

:root {
  --red:        #D32F2F;
  --red2:       #FF5252;
  --red-dim:    rgba(211,47,47,0.08);
  --red-border: rgba(211,47,47,0.25);
  --red-deep:   #B71C1C;
  --dark:       #0C0D11;
  --dark2:      #12141A;
  --white:      #FFFFFF;
  --off-white:  #F7F7F8;
  --light:      #F0F1F3;
  --border-l:   rgba(0,0,0,0.08);
  --text:       #1A1C22;
  --text-m:     #5A5D6B;
  --text-s:     #8E919F;
  --ease:       cubic-bezier(.22,1,.36,1);
}

/* ======================================================
   HERO
   ====================================================== */
.hiz-hero {
  position: relative;
  background: var(--dark);
  overflow: hidden;
  padding: 120px 44px 100px;
  font-family: 'Barlow', sans-serif;
}

.hiz-hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hiz-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 44px 44px;
}

.hiz-hero-glow {
  position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none;
}
.hiz-hero-glow.g1 {
  width: 700px; height: 600px;
  background: radial-gradient(circle, rgba(211,47,47,0.16) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.hiz-hero-glow.g2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(211,47,47,0.09) 0%, transparent 70%);
  bottom: -80px; left: 8%;
}

.hiz-hero-inner {
  position: relative; z-index: 1;
  max-width: 1320px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Sol metin */
.hiz-hero-left {}

.hiz-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,0.4);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 28px;
}
.hiz-breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.hiz-breadcrumb a:hover { color: var(--red2); }
.hiz-breadcrumb span { color: var(--red2); }
.hiz-breadcrumb-sep { color: rgba(255,255,255,0.2); }

.hiz-hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(211,47,47,0.18);
  border: 1px solid rgba(211,47,47,0.35);
  color: var(--red2);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 18px; border-radius: 3px;
  margin-bottom: 28px;
}
.hiz-hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red2);
  animation: hiz-pulse 2s ease-in-out infinite;
}
@keyframes hiz-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,82,82,0.6); }
  50%      { box-shadow: 0 0 0 5px rgba(255,82,82,0); }
}

.hiz-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(46px, 5.5vw, 80px);
  font-weight: 900; line-height: 1.0; letter-spacing: -1px;
  color: #fff; text-transform: uppercase; margin: 0 0 22px;
}
.hiz-hero-title em {
  font-style: normal; color: var(--red2);
  text-shadow: 0 0 40px rgba(255,82,82,0.5);
}

.hiz-hero-desc {
  font-size: 16px; color: rgba(255,255,255,0.5); line-height: 1.75;
  max-width: 440px; margin: 0 0 36px;
}

/* Hero CTA */
.hiz-hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red);
  color: #fff; text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px; border-radius: 6px;
  transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
  box-shadow: 0 8px 32px rgba(211,47,47,0.35);
}
.hiz-hero-cta:hover {
  background: var(--red2);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(211,47,47,0.5);
}
.hiz-hero-cta svg { width: 16px; height: 16px; }

/* Sağ — hero görsel */
.hiz-hero-right {
  position: relative;
}

.hiz-hero-img-wrap {
  position: relative; border-radius: 16px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.08);
}

.hiz-hero-img {
  width: 100%; display: block;
  aspect-ratio: 4/3; object-fit: cover;
  filter: brightness(0.88) contrast(1.05);
  transition: transform 0.7s var(--ease);
}
.hiz-hero-img-wrap:hover .hiz-hero-img {
  transform: scale(1.04);
}

/* Üst etiketi */
.hiz-hero-img-tag {
  position: absolute; top: 18px; left: 18px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(211,47,47,0.4);
  border-radius: 8px; padding: 10px 16px;
}
.hiz-hero-img-tag strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 900; color: var(--red2); line-height: 1;
}
.hiz-hero-img-tag span {
  font-size: 10px; color: rgba(255,255,255,0.5);
  letter-spacing: 1.5px; text-transform: uppercase;
}

/* Köşe süsler */
.hiz-corner {
  position: absolute; width: 20px; height: 20px; pointer-events: none;
}
.hiz-corner.tl { top:-8px; left:-8px;   border-top:2px solid var(--red); border-left:2px solid var(--red); }
.hiz-corner.tr { top:-8px; right:-8px;  border-top:2px solid var(--red); border-right:2px solid var(--red); }
.hiz-corner.bl { bottom:-8px; left:-8px;  border-bottom:2px solid var(--red); border-left:2px solid var(--red); }
.hiz-corner.br { bottom:-8px; right:-8px; border-bottom:2px solid var(--red); border-right:2px solid var(--red); }

/* ======================================================
   ANA HİZMET KARTLARI (BEYAZ BÖLGE)
   ====================================================== */
.hiz-main {
  background: var(--off-white);
  font-family: 'Barlow', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Hafif desen */
.hiz-main::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,0,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.025) 1px, transparent 1px);
  background-size: 44px 44px;
}

.hiz-main-inner {
  position: relative; z-index: 1;
  max-width: 1320px; margin: 0 auto;
  padding: 100px 44px;
}

.hiz-main-header {
  text-align: center; margin-bottom: 64px;
}

.hiz-section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  color: var(--red); letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 14px;
}
.hiz-section-label::before,
.hiz-section-label::after {
  content: '';
  width: 24px; height: 2px;
  background: var(--red); border-radius: 2px; flex-shrink: 0;
}

.hiz-main-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 900; color: var(--text);
  text-transform: uppercase; margin: 0 0 16px; line-height: 1.05;
}
.hiz-main-title em { font-style: normal; color: var(--red); }

.hiz-main-sub {
  font-size: 16px; color: var(--text-m); max-width: 560px;
  margin: 0 auto; line-height: 1.7;
}

/* ---- Hizmet kartları (2 büyük kart) ---- */
.hiz-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.hiz-card {
  background: var(--white);
  border: 1px solid var(--border-l);
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.hiz-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(211,47,47,0.15);
}

/* Kart görsel */
.hiz-card-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 16/9;
}
.hiz-card-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s var(--ease);
}
.hiz-card:hover .hiz-card-img {
  transform: scale(1.06);
}

/* Üst kırmızı overlay şerit */
.hiz-card-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.35) 100%);
}

/* Görsel üstü etiket */
.hiz-card-img-label {
  position: absolute; bottom: 16px; left: 16px; z-index: 2;
  background: var(--red);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px; border-radius: 4px;
}

/* Kart içerik */
.hiz-card-body {
  padding: 32px 32px 28px;
}

.hiz-card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--red-dim); border: 1px solid var(--red-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); margin-bottom: 18px;
  transition: background 0.3s, box-shadow 0.3s;
}
.hiz-card:hover .hiz-card-icon {
  background: var(--red); color: #fff;
  box-shadow: 0 0 20px rgba(211,47,47,0.4);
}
.hiz-card-icon svg { width: 24px; height: 24px; }

.hiz-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 900;
  color: var(--text); text-transform: uppercase;
  margin: 0 0 12px; line-height: 1.1;
}

.hiz-card-desc {
  font-size: 14px; color: var(--text-m); line-height: 1.75;
  margin: 0 0 22px;
}

/* Özellik listesi kart içi */
.hiz-card-feats {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
  border-top: 1px solid var(--border-l); padding-top: 20px;
}
.hiz-card-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-m);
}
.hiz-card-feat::before {
  content: '';
  width: 18px; height: 18px; flex-shrink: 0;
  background: var(--red-dim); border: 1px solid var(--red-border);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7' stroke='%23D32F2F' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}

/* ======================================================
   SÜREÇ BÖLÜMÜ (koyu arka plan)
   ====================================================== */
.hiz-process {
  background: var(--dark2);
  font-family: 'Barlow', sans-serif;
  position: relative; overflow: hidden;
}

.hiz-process-bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 44px 44px;
}
.hiz-process-glow {
  position: absolute; border-radius: 50%; filter: blur(130px); pointer-events: none;
  width: 600px; height: 500px;
  background: radial-gradient(circle, rgba(211,47,47,0.11) 0%, transparent 70%);
  top: -150px; right: -100px;
}

.hiz-process-inner {
  position: relative; z-index: 1;
  max-width: 1320px; margin: 0 auto;
  padding: 100px 44px;
}

.hiz-process-header {
  text-align: center; margin-bottom: 64px;
}
.hiz-process-header .hiz-section-label {
  color: var(--red2);
}
.hiz-process-header .hiz-section-label::before,
.hiz-process-header .hiz-section-label::after {
  background: var(--red2);
}

.hiz-process-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900; color: #fff;
  text-transform: uppercase; margin: 0;
}
.hiz-process-title em { font-style: normal; color: var(--red2); }

/* Adım kutuları */
.hiz-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

/* Bağlantı çizgisi */
.hiz-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: calc(12.5% + 18px); right: calc(12.5% + 18px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(211,47,47,0.4), rgba(211,47,47,0.4), transparent);
  z-index: 0;
}

.hiz-step {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 20px;
}

.hiz-step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--dark);
  border: 2px solid rgba(211,47,47,0.4);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.hiz-step:hover .hiz-step-num {
  border-color: var(--red);
  box-shadow: 0 0 28px rgba(211,47,47,0.4);
}
.hiz-step-num-inner {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px; font-weight: 900; color: var(--red);
}

.hiz-step-icon-wrap {
  position: absolute;
  bottom: -6px; right: -6px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
}
.hiz-step-icon-wrap svg { width: 13px; height: 13px; color: #fff; }

.hiz-step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 900;
  color: #fff; text-transform: uppercase;
  margin: 0 0 10px;
}

.hiz-step-desc {
  font-size: 13px; color: rgba(255,255,255,0.42); line-height: 1.7;
}

/* ======================================================
   FLAKE DETAY BÖLÜMLERİ (beyaz — görsel + metin)
   ====================================================== */
.hiz-detail {
  background: var(--white);
  font-family: 'Barlow', sans-serif;
  overflow: hidden;
}

.hiz-detail-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 96px 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Ters düzen */
.hiz-detail.hiz-detail--reverse .hiz-detail-inner {
  direction: rtl;
}
.hiz-detail.hiz-detail--reverse .hiz-detail-body {
  direction: ltr;
}
.hiz-detail.hiz-detail--reverse .hiz-detail-visual {
  direction: ltr;
}
.hiz-detail.hiz-detail--reverse { background: var(--off-white); }

/* Görsel */
.hiz-detail-visual { position: relative; }

.hiz-detail-img-frame {
  position: relative; border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.1);
  border: 1px solid var(--border-l);
}

.hiz-detail-img {
  width: 100%; display: block;
  aspect-ratio: 4/3; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.hiz-detail-img-frame:hover .hiz-detail-img {
  transform: scale(1.04);
}

/* Görsel sağ alt etiket */
.hiz-detail-img-badge {
  position: absolute; bottom: 18px; right: 18px;
  background: var(--red);
  color: #fff; border-radius: 10px; padding: 14px 20px;
  text-align: center;
}
.hiz-detail-img-badge strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px; font-weight: 900; line-height: 1;
}
.hiz-detail-img-badge span {
  font-size: 9px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  opacity: 0.85; margin-top: 2px; display: block;
}

/* Metin */
.hiz-detail-body {}

.hiz-detail-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  color: var(--red); letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 16px;
}
.hiz-detail-tag::before {
  content: ''; width: 24px; height: 2px;
  background: var(--red); border-radius: 2px; flex-shrink: 0;
}

.hiz-detail-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 900; color: var(--text);
  text-transform: uppercase; margin: 0 0 8px; line-height: 1.05;
}
.hiz-detail-title em { font-style: normal; color: var(--red); }

.hiz-detail-subtitle {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 700;
  color: var(--text-m); margin: 0 0 18px;
}

.hiz-detail-desc {
  font-size: 15px; color: var(--text-m); line-height: 1.8;
  margin: 0 0 14px;
}

/* Specs tablosu */
.hiz-specs {
  margin: 24px 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}

.hiz-spec {
  background: var(--off-white); border: 1px solid var(--border-l);
  border-radius: 10px; padding: 14px 16px;
  border-left: 3px solid var(--red);
}
.hiz-spec strong {
  display: block; font-size: 13px; font-weight: 700;
  color: var(--text); margin-bottom: 2px;
}
.hiz-spec span {
  font-size: 12px; color: var(--text-s);
}

/* ======================================================
   NEDEN BİZ — AÇIK BÖLGE
   ====================================================== */
.hiz-why {
  background: var(--light);
  font-family: 'Barlow', sans-serif;
  position: relative; overflow: hidden;
}

.hiz-why-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 100px 44px;
}

.hiz-why-header { text-align: center; margin-bottom: 60px; }

.hiz-why-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900; color: var(--text);
  text-transform: uppercase; margin: 12px 0 0;
}
.hiz-why-title em { font-style: normal; color: var(--red); }

.hiz-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hiz-why-card {
  background: var(--white);
  border: 1px solid var(--border-l);
  border-radius: 16px; padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.hiz-why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

/* Üst kırmızı şerit */
.hiz-why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--red); opacity: 0;
  transition: opacity 0.3s;
}
.hiz-why-card:hover::before { opacity: 1; }

/* Büyük arka plan numara */
.hiz-why-card-num {
  position: absolute; bottom: -10px; right: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 100px; font-weight: 900;
  color: var(--red); opacity: 0.05; line-height: 1;
  pointer-events: none; user-select: none;
}

.hiz-why-icon {
  width: 58px; height: 58px; border-radius: 16px;
  background: var(--red-dim); border: 1px solid var(--red-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); margin-bottom: 20px;
  transition: background 0.3s, box-shadow 0.3s;
}
.hiz-why-card:hover .hiz-why-icon {
  background: var(--red); color: #fff;
  box-shadow: 0 0 20px rgba(211,47,47,0.35);
}
.hiz-why-icon svg { width: 26px; height: 26px; }

.hiz-why-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 900;
  color: var(--text); text-transform: uppercase;
  margin: 0 0 12px;
}

.hiz-why-card-desc {
  font-size: 14px; color: var(--text-m); line-height: 1.75;
  position: relative; z-index: 1;
}

/* ======================================================
   CTA — KOYU ALT BANT
   ====================================================== */
.hiz-cta {
  background: var(--dark);
  font-family: 'Barlow', sans-serif;
  position: relative; overflow: hidden;
}

.hiz-cta-glow {
  position: absolute; border-radius: 50%; filter: blur(130px); pointer-events: none;
  width: 600px; height: 500px;
  background: radial-gradient(circle, rgba(211,47,47,0.18) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}

.hiz-cta-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 44px 44px;
}

.hiz-cta-inner {
  position: relative; z-index: 1;
  max-width: 1320px; margin: 0 auto;
  padding: 80px 44px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}

.hiz-cta-left {}

.hiz-cta-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  color: var(--red2); letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.hiz-cta-tag::before {
  content: ''; width: 20px; height: 2px;
  background: var(--red2); border-radius: 2px;
}

.hiz-cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900; color: #fff;
  text-transform: uppercase; margin: 0 0 12px; line-height: 1.05;
}
.hiz-cta-title em { font-style: normal; color: var(--red2); }

.hiz-cta-desc {
  font-size: 15px; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 480px;
}

.hiz-cta-right {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
}

.hiz-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  padding: 16px 32px; border-radius: 8px;
  transition: all 0.25s;
}
.hiz-cta-btn.primary {
  background: var(--red); color: #fff;
  box-shadow: 0 8px 32px rgba(211,47,47,0.4);
}
.hiz-cta-btn.primary:hover {
  background: var(--red2); transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(211,47,47,0.6);
}
.hiz-cta-btn.secondary {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
}
.hiz-cta-btn.secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}
.hiz-cta-btn svg { width: 16px; height: 16px; }

/* ======================================================
   TABLET
   ====================================================== */
@media (max-width: 1024px) {
  .hiz-hero { padding: 90px 32px 80px; }
  .hiz-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hiz-hero-desc { max-width: 100%; }

  .hiz-main-inner { padding: 72px 32px; }
  .hiz-cards { grid-template-columns: 1fr; }

  .hiz-process-inner { padding: 72px 32px; }
  .hiz-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .hiz-steps::before { display: none; }

  .hiz-detail-inner { grid-template-columns: 1fr; gap: 44px; padding: 72px 32px; }
  .hiz-detail.hiz-detail--reverse .hiz-detail-inner { direction: ltr; }

  .hiz-why-inner { padding: 72px 32px; }
  .hiz-why-grid { grid-template-columns: 1fr 1fr; }

  .hiz-cta-inner { padding: 64px 32px; }
}

/* ======================================================
   MOBİL
   ====================================================== */
@media (max-width: 700px) {
  .hiz-hero { padding: 80px 20px 64px; }
  .hiz-hero-title { font-size: clamp(42px, 11vw, 64px); }
  .hiz-hero-desc { font-size: 14px; }

  .hiz-main-inner { padding: 60px 20px; }
  .hiz-main-title { font-size: clamp(28px, 8vw, 44px); }

  .hiz-process-inner { padding: 60px 20px; }
  .hiz-steps { grid-template-columns: 1fr 1fr; gap: 28px; }

  .hiz-detail-inner { padding: 56px 20px; gap: 32px; }
  .hiz-specs { grid-template-columns: 1fr; }

  .hiz-why-inner { padding: 60px 20px; }
  .hiz-why-grid { grid-template-columns: 1fr; }

  .hiz-cta-inner { padding: 56px 20px; flex-direction: column; align-items: flex-start; }
  .hiz-cta-right { width: 100%; }
  .hiz-cta-btn { flex: 1; justify-content: center; }
}

@media (max-width: 480px) {
  .hiz-steps { grid-template-columns: 1fr; }
}