/* ==========================================================
   NETSPEED — Apple-Inspired Hero Design System
   ========================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text',
    'Inter Tight', 'Helvetica Neue', sans-serif;
  background: #fff;
  color: #1d1d1f;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* ═══════════════════════════════════════
   NAV — Floating Glass Pill (over banner)
   ═══════════════════════════════════════ */
/* ─── Pre-header Bar ─── */
.pre-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.pre-header.hidden {
  transform: translateY(-100%) !important;
  opacity: 0 !important;
  pointer-events: none;
  visibility: hidden;
}

.pre-header-inner {
  width: 92%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 8px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pre-header-tabs {
  display: flex;
  gap: 2px;
}

.pre-tab {
  padding: 4px 14px;
  font-size: 0.72rem;
  font-weight: 300;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.45);
  border-radius: 980px;
  transition: all 0.2s ease;
  letter-spacing: 0.02em;
}

.pre-tab:hover {
  color: rgba(255, 255, 255, 0.7);
}

.pre-tab.active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 600;
}

.pre-phone {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.pre-phone:hover {
  color: #fff;
}

.nav-pill {
  position: fixed;
  top: 42px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 92%;
  max-width: 1240px;
  padding: 10px 10px 10px 24px;
  background: rgb(41, 14, 111);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .1);
  transition: all .5s cubic-bezier(.22, 1, .36, 1);
}

.nav-pill.scrolled {
  top: 10px;
  background: rgba(41, 14, 111, .88);
  border-color: rgba(255, 255, 255, .06);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .3);
}

.nav-logo img {
  height: 22px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links a {
  color: rgba(255, 255, 255, .9);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 450;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all .25s;
}

.nav-links a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .15);
}

/* ─── Nav Dropdown ─── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, .9);
  font-family: inherit;
  font-size: .88rem;
  font-weight: 450;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: none;
  cursor: pointer;
  transition: all .25s;
}

.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
  color: #fff;
  border-color: rgba(255, 255, 255, .15);
}

.nav-dropdown-toggle svg {
  transition: transform .3s;
}

.nav-dropdown.open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 300px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 20px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all .25s cubic-bezier(.22, 1, .36, 1);
  box-shadow: 0 12px 48px rgba(0, 0, 0, .12), 0 2px 8px rgba(0, 0, 0, .04);
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  height: 16px;
  background: transparent;
}

.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .nav-dropdown-toggle {
  color: #fff;
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-item {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  padding: 12px !important;
  color: inherit !important;
  border-radius: 12px !important;
  border: none !important;
  text-decoration: none;
  transition: all .2s;
}

.dropdown-item:hover {
  background: #f4f5f8 !important;
}

.dropdown-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
  flex-shrink: 0;
}

.dropdown-icon svg {
  stroke: #1a1a1c;
}

.dropdown-title {
  display: block;
  font-size: .88rem;
  font-weight: 550;
  color: #1a1a1c;
  line-height: 1.3;
}

.dropdown-desc {
  display: block;
  font-size: .78rem;
  font-weight: 400;
  color: rgba(26, 26, 28, .45);
  line-height: 1.3;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  background: #fff;
  color: #1a1a1c !important;
  font-size: .85rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: all .3s;
}

.nav-cta-icon {
  display: block;
  width: 14px;
  height: 16px;
}

.nav-cta:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 255, 255, .15);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 1px;
}

/* ─── Nav Actions Group ─── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ─── Nav Search Button ─── */
.nav-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  border-radius: 50%;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.82);
  transition: all 0.2s ease;
  padding: 0;
  margin: 0;
}

.nav-search-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.nav-search-btn svg {
  stroke: currentColor;
}

/* ─── Search Panel — Dropdown below navbar ─── */
.search-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #13003f;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  padding-top: 100px;
}

.search-panel.open {
  transform: translateY(0);
}

.search-panel-inner {
  max-width: 860px;
  /* 680px'den genişletildi — daha premium ve entegre his */
  margin: 0 auto;
  padding: 40px 36px 56px;
  text-align: center;
}

.search-panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.search-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(30, 10, 82, 0.8);
  border: 2px solid rgba(167, 139, 250, 0.3);
  border-radius: 980px;
  padding: 18px 28px;
  transition: all 0.3s ease;
}

.search-input-wrap:focus-within {
  border-color: rgba(167, 139, 250, 0.8);
  box-shadow: 0 0 15px rgba(167, 139, 250, 0.2);
  background: rgba(30, 10, 82, 0.95);
}

.search-input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  color: #fff;
  font-size: 1.15rem;
  /* Daha büyük ve okunaklı */
  font-family: inherit;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.search-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  flex-shrink: 0;
}

.search-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.search-popular {
  margin-top: 8px;
}

.search-popular-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
  font-weight: 600;
}

.search-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.search-badge {
  padding: 10px 22px;
  /* Daha iri dokunma alanı */
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  /* Daha okunaklı */
  text-decoration: none;
  transition: all 0.2s ease;
}

.search-badge:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

/* Smart Match Search Results */
.search-results {
  margin-top: 15px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.search-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  transform: translateY(-1px);
}

.search-item-arrow {
  color: #a78bfa;
  transition: transform 0.2s ease;
  display: flex;
}

.search-item:hover .search-item-arrow {
  transform: translateX(4px);
}

/* Search overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.search-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ═══════════════════════════════════════
   MOBILE MENU — Apple Dark Sheet
   ═══════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgb(19, 0, 63);
  backdrop-filter: blur(40px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  padding: 24px;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.mobile-logo {
  height: 22px;
  margin-left: 4px;
  margin-top: -6px;
}

.mobile-close {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
}

.mobile-menu-links a {
  display: block;
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
  transition: color .2s;
}

.mobile-menu-links a:hover {
  color: #fff;
  padding-left: 0;
}

/* ─── Mobile Menu Footer — Segment Buttons ─── */
.mobile-menu-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  padding: 20px 24px;
  padding-bottom: calc(20px + env(safe-area-inset-bottom));
  gap: 8px;
}

.mobile-segment {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.2s ease;
  color: rgba(255, 255, 255, 0.5);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-segment.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  font-weight: 600;
}

/* ═══════════════════════════════════════
   HERO — Full bleed, Apple cinematic
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
}

.hero .hero-swiper {
  width: 100%;
  overflow: hidden;
  border-radius: 0;
}

.hero .swiper-slide {
  overflow: hidden;
}

.hero .swiper-slide picture {
  display: block;
  width: 100%;
  aspect-ratio: 3840 / 1324;
}

.hero .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ─── Cinematic gradient overlay ─── */
.swiper-slide {
  position: relative;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: none;
  background:
    linear-gradient(90deg,
      rgba(0, 0, 0, .65) 0%,
      rgba(0, 0, 0, .25) 20%,
      transparent 45%);
  pointer-events: none;
}

/* ─── Slide text — Left aligned ─── */
.slide-content {
  position: absolute;
  top: 56%; /* Ortadan biraz aşağıya alındı */
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 92%;
  max-width: 1240px;
  padding-left: 24px;
}

.slide-content h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  max-width: 650px;
  text-shadow: none;
}

.hero-pre-title {
  display: block;
  font-size: 0.5em;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 4px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.slide-content h2 span {
  color: #fff;
  -webkit-text-fill-color: #fff;
  opacity: 1;
}

.slide-content p {
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 440px;
  font-weight: 400;
}

/* ─── Hero Buttons — Apple pill style ─── */
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 32px;
  background: #ff9800;
  color: #1d1d1f;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 980px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: all .25s ease;
  box-shadow: none;
}

.btn-primary:hover {
  background: #e68a00;
  transform: scale(1.02);
  box-shadow: none;
}

/* ─── Infra Hero — 2 Column Layout ─── */
.infra-section {
  padding: 48px 0;
  background: #f8f8fa;
}

.infra-hero {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Left Column — Text */
.infra-hero-text {
  flex: 1;
}

.infra-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #2b236d;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.infra-title span {
  color: #290e6f;
}

.infra-title em {
  font-style: normal;
  text-decoration: underline;
  text-decoration-color: #ff9800;
  text-underline-offset: 4px;
  text-decoration-thickness: 3px;
  text-decoration-skip-ink: none;
}

.infra-subtitle {
  font-size: 1rem;
  color: #86868b;
  line-height: 1.6;
  max-width: 400px;
}

.infra-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.infra-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.infra-stat strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1d1d1f;
  letter-spacing: -0.02em;
}

.infra-stat span {
  font-size: 0.8rem;
  color: #86868b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.infra-stat-divider {
  width: 1px;
  height: 36px;
  background: #d1d5db;
}

/* Right Column — Direct Input */
.infra-hero-right {
  flex: 1.5;
  max-width: 680px;
  margin-top: -24px;
}

.infra-input-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 8px 8px 8px 28px;
  background: #fff;
  border: 4px solid #e0e0e0;
  /* Kalınlık 2px'den 4px'e çıkartıldı */
  border-radius: 980px;
  cursor: pointer;
  transition: all .3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.infra-input-wrap:hover {
  border-color: #290e6f;
  box-shadow: 0 4px 24px rgba(41, 14, 111, 0.12);
}

.infra-input-icon {
  color: #290e6f;
  flex-shrink: 0;
}

.infra-input-text {
  flex: 1;
  font-size: 1.1rem;
  color: #aeaeb2;
  font-weight: 400;
}

.infra-input-btn {
  padding: 14px 40px;
  background: #290e6f;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 400;
  /* Normal ağırlık, ince ve zarif */
  border-radius: 980px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all .2s ease;
}

.infra-input-wrap:hover .infra-input-btn {
  background: #3b1a8f;
  box-shadow: 0 4px 16px rgba(41, 14, 111, 0.3);
}

.infra-input-note {
  text-align: center;
  font-size: 0.78rem;
  color: #aeaeb2;
  font-weight: 400;
  margin-top: 12px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 500;
  border: 1.5px solid rgba(255, 255, 255, 0.32);
  border-radius: 980px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: all .25s ease;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  transform: scale(1.02);
}

/* ─── Swiper Pagination — Bar style ─── */
.hero .swiper-pagination {
  bottom: 28px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  justify-content: center;
  gap: 6px;
  z-index: 20;
}

.hero .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  border-radius: 50%;
  margin: 0 !important;
  cursor: pointer;
  transition: all .3s ease;
}

.hero .swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.5);
}

.hero .swiper-pagination-bullet-active {
  width: 22px;
  border-radius: 4px;
  background: #ff9800;
}

/* ─── Slider Nav Arrows — Apple minimal ─── */
.hero .swiper-button-prev,
.hero .swiper-button-next {
  width: 44px !important;
  height: 44px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(20px) !important;
  border: 0.5px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 50% !important;
  transition: all .2s !important;
  z-index: 99999 !important;
}

.hero .swiper-button-prev:hover,
.hero .swiper-button-next:hover {
  background: rgba(255, 255, 255, 0.2) !important;
}

.hero .swiper-button-prev::after,
.hero .swiper-button-next::after {
  font-size: 16px !important;
  color: #fff !important;
  font-weight: 300 !important;
}

.hero .swiper-button-prev {
  left: 90px !important;
}

.hero .swiper-button-next {
  right: 90px !important;
}

/* ═══════════════════════════════════════
   SANA HIZ YAKIŞIR — 3 Layer Parallax
   ═══════════════════════════════════════ */
.hiz-parallax {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 500px;
  overflow: visible;
  background: radial-gradient(
    50% 500% at 50% -420%,
    rgba(64, 97, 231, 0.4) 80%,
    rgba(0, 0, 0, 0.1) 100%
  ), black;
  margin-bottom: 60px;
}

/* Decorative floating icons — sol dikey sıra */
.hiz-deco-icons {
  position: absolute;
  left: calc((100% - 1240px) / 2);
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hiz-icon {
  width: 28px;
  height: 28px;
  opacity: 0.9;
  transition: opacity 0.3s;
}

/* Tümü beyaz */
.hiz-icon-1,
.hiz-icon-2,
.hiz-icon-3,
.hiz-icon-4 {
  stroke: #fff;
}

@keyframes hizFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}



/* Dark vignette overlay — Blue glow style */
.hiz-parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    radial-gradient(50% 500% at 50% -420%, rgba(90, 60, 200, 0.45) 80%, rgba(0, 0, 0, 0.1) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.5) 0%, transparent 20%, transparent 80%, rgba(0,0,0,0.5) 100%),
    linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.9) 18%, rgba(0,0,0,0.5) 35%, rgba(0,0,0,0.15) 50%, transparent 65%),
    linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 25%);
}

/* Layer 1: Background — fills section */
.hiz-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hiz-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.75) sepia(0.25) saturate(1.2);
  /* Sıcak sinematik ton */
}

/* Float Animations for Breathing Effect */
@keyframes hizFloatText {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

@keyframes hizFloatFigure {
  0%   { transform: translateY(0px) rotate(0deg); }
  50%  { transform: translateY(-12px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.hiz-bg {
  overflow: hidden;
}

/* Particle Canvas */
.hiz-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Layer 2: Middle text — parallax scroll */
.hiz-text-layer {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 80px;
  /* Biraz üste çek */
  pointer-events: none;
}

.hiz-text-svg {
  width: 45%;
  max-width: 750px;
  height: auto;
  opacity: 1;
  animation: hizFloatText 5s ease-in-out infinite;
}
.hiz-mbps-svg {
  width: 31%;
  max-width: 400px;
  height: auto;
  opacity: 0.9;
  animation: hizFloatText 6s ease-in-out infinite 1s; /* Hafif gecikmeli */
}

/* Layer 2b: 1000 MBPS — bağımsız parallax */
.hiz-mbps-layer {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 180px;
  pointer-events: none;
}

/* Layer 3: Foreground family — fixed with bg */
.hiz-family-layer {
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  pointer-events: none;
}

.hiz-family-img {
  height: 500px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0.7) contrast(1.1);
  animation: hizFloatFigure 7s ease-in-out infinite;
}

/* Layer 4: Right Panel (Badge + CTA) */
.hiz-right-panel {
  position: absolute;
  right: max(24px, calc((100% - 1240px) / 2));
  top: 50%;
  transform: translateY(-50%);
  z-index: 7;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: stretch;
  width: 200px;
}

@media (max-width: 991px) {
  .hiz-right-panel {
    right: 20px;
    width: 180px;
    transform: translateY(-30%);
  }
}

@media (max-width: 768px) {
  .hiz-right-panel {
    top: auto;
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
    width: 200px;
  }
  .hiz-speed-badge {
    display: none !important;
  }
  .hiz-text-svg {
    width: 80%;
  }
  .hiz-mbps-svg {
    width: 65%;
  }
  .hiz-text-layer {
    padding-bottom: 95px;
  }
  .hiz-mbps-layer {
    padding-top: 95px;
  }
}

.hiz-speed-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.08); /* glass */
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
}

.hiz-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 99px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  width: 100%;
}

.hiz-cta-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-1px);
}

.hiz-cta-btn svg {
  transition: transform 0.2s;
}

.hiz-cta-btn:hover svg {
  transform: translateX(4px);
}
.hiz-badge-icon {
  width: 40px;
  height: 40px;
}
.hiz-badge-text {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  line-height: 1.3;
  letter-spacing: 0.01em;
}

/* ═══════════════════════════════════════
   TARİFELER — Container Split Layout
   ═══════════════════════════════════════ */
.tariffs {
  padding: 60px 0 48px;
  /* Nefes alacak kadar genişletildi */
  background: #f5f5f7;
}

.tariffs-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #6e6e73;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #2b236d;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 1.1rem;
  color: #6e6e73;
  font-weight: 400;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ─── Outer Wrapper ─── */
.tariffs-wrapper {
  /* transparent wrapper, just for structure */
}

/* ─── Split Layout ─── */
.tariffs-layout {
  display: flex;
  align-items: stretch;
  gap: 28px;
  min-height: 440px;
}

/* ─── LEFT — Clean Text Hero ─── */
.tariff-hero {
  flex: 0 0 34%;
  padding: 20px 10px 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tariff-hero-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #2b236d;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.tariff-hero-title em {
  font-style: normal;
  text-decoration: underline;
  text-decoration-color: #ff9800;
  text-underline-offset: 4px;
  text-decoration-thickness: 3px;
  text-decoration-skip-ink: none;
}

.tariff-hero-desc {
  font-size: 1rem;
  color: #86868b;
  line-height: 1.6;
  margin-bottom: 32px;
}

.tariff-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-end;
  /* Sağa yasla */
  padding: 14px 32px;
  background: transparent;
  border: 1.5px solid #d1d1d6;
  color: #1d1d1f;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 980px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: all .25s ease;
}

.tariff-hero-cta:hover {
  background: #1d1d1f;
  border-color: #1d1d1f;
  transform: scale(1.02);
  color: #fff;
}

.tariff-hero-cta svg {
  transition: transform 0.25s ease;
}

.tariff-hero-cta:hover svg {
  transform: translateX(3px);
}

/* ─── RIGHT — 2 Cards Area ─── */
.tariff-cards {
  flex: 1;
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}

/* ─── Individual Card ─── */
.tariff-card {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  padding: 22px 20px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 6px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(.22, 1, .36, 1), box-shadow 0.3s ease;
  overflow: hidden;
  border-top: 4px solid #e84d0e;
  max-width: 310px;
}

.tariff-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

/* ─── Card Badges ─── */
.tariff-card-badges {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.badge-orange {
  display: inline-block;
  padding: 4px 12px;
  background: #e84d0e;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  border-radius: 980px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge-purple {
  display: inline-block;
  padding: 4px 12px;
  background: #290e6f;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  border-radius: 980px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ─── Card Title ─── */
.tariff-card-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1d1d1f;
  line-height: 1.4;
  margin-bottom: 20px;
  min-height: 2.4em;
}

/* ─── Speed Row ─── */
.tariff-speed-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.tariff-speed-num {
  font-size: 3rem;
  font-weight: 900;
  color: #290e6f;
  letter-spacing: -0.04em;
  line-height: 1;
  position: relative;
  padding-bottom: 10px;
}

.tariff-speed-num::after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background: #e84d0e;
  border-radius: 2px;
  margin-top: 8px;
}

.tariff-speed-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #48484a;
  line-height: 1.2;
}

.tariff-speed-label small {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: #aeaeb2;
  margin-top: 2px;
}

/* ─── Feature Tags ─── */
.tariff-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.tariff-tag {
  padding: 5px 12px;
  background: #f0f0f2;
  border-radius: 980px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #48484a;
  letter-spacing: 0.01em;
}

/* ─── Mini Feature List ─── */
.tariff-mini-features {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.tariff-mini-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #48484a;
  font-weight: 400;
}

.tariff-mini-features li svg {
  color: #aeaeb2;
  flex-shrink: 0;
}

/* ─── Details Link ─── */
.tariff-details-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #06c;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-bottom: 8px;
}

.tariff-details-link:hover {
  color: #004999;
  gap: 7px;
}

.tariff-details-link svg {
  transition: transform 0.2s ease;
}

.tariff-details-link:hover svg {
  transform: translateX(2px);
}

/* ─── Card Bottom — Price + Button ─── */
.tariff-card-bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-top: 1px solid #f0f0f2;
}

.tariff-card-pricing {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.tariff-promo-text {
  font-size: 0.82rem;
  color: #e84d0e;
  font-weight: 600;
}

.tariff-promo-text strong {
  font-weight: 800;
  font-size: 0.88rem;
}

.tariff-regular-text {
  font-size: 0.75rem;
  color: #86868b;
  font-weight: 400;
}

.tariff-regular-text strong {
  font-weight: 800;
  font-size: 1.1rem;
  color: #1d1d1f;
}

.tariff-card-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: #fff;
  color: #e84d0e;
  font-size: 0.85rem;
  font-weight: 700;
  border: 2px solid #e84d0e;
  border-radius: 980px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.tariff-card-btn:hover {
  background: #e84d0e;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 77, 14, 0.3);
}

/* ─── Footer note ─── */
.tariffs-footer {
  text-align: right;
  font-size: 0.85rem;
  color: #6e6e73;
  margin-top: 32px;
}

.tariffs-footer a {
  color: #06c;
  text-decoration: none;
  font-weight: 500;
}

.tariffs-footer a:hover {
  text-decoration: underline;
}

/* ═══════════════════════════════════════
   COMBO — Feature Cards
   ═══════════════════════════════════════ */
.combo-section {
  padding: 64px 0;
  /* Yeterli boşluk bırakıldı */
  background: #fff;
}

.combo-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 80px;
}

.combo-left {
  flex: 1;
  min-width: 0;
}

.combo-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #2b236d;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 14px 0 16px;
}

.combo-title em {
  color: inherit;
  font-style: normal;
  text-decoration: none;
}

.combo-title span {
  color: #7e69c3;
}

.combo-desc {
  font-size: 1rem;
  color: #86868b;
  line-height: 1.6;
  margin-bottom: 32px;
}

.combo-cta {
  display: inline-block;
  padding: 14px 36px;
  background: #290e6f;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 400;
  /* İnce ve zarif */
  font-family: inherit;
  border-radius: 980px;
  text-decoration: none;
  transition: all .25s ease;
}

.combo-cta:hover {
  background: #3b1a8f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(41, 14, 111, 0.3);
}

/* ─── Cards Grid ─── */
.combo-cards {
  flex: 0 0 54%;
  display: flex;
  gap: 16px;
}

.combo-card {
  flex: 1;
  transition: transform .25s cubic-bezier(0.2, 0.8, 0.2, 1), opacity .25s ease;
  opacity: 0;
  transform: translateY(20px);
  /* Daha kısa mesafeden zıplasın */
}

.combo-card.opslide-active {
  opacity: 1;
  transform: translateY(0);
}

.combo-dots {
  display: none;
}

.tariff-dots {
  display: none;
}

.combo-card.opslide-active:hover {
  transform: translateY(-6px);
}

.combo-card-img {
  overflow: hidden;
  border-radius: 16px;
}

.combo-card-img img {
  width: 100%;
  height: auto;
  display: block;
}

.combo-card-body {
  padding: 20px 20px 24px;
}

.combo-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.combo-card-line {
  width: 32px;
  height: 3px;
  background: #1d1d1f;
  border-radius: 2px;
  margin-bottom: 10px;
}

.combo-card-body p {
  font-size: 0.85rem;
  color: #86868b;
  line-height: 1.5;
}

/* ═══════════════════════════════════════
   ARKADAŞINI GETİR — ELEGANT OVERLAP
   ═══════════════════════════════════════ */
.ns-refer-elegant {
  padding: 20px;
  /* Bölümler arası fazlalık yığılan devasa boşlukları sonuna kadar kıstık */
  background: #fff;
  /* Sadece kutu siyah kalsın, sayfa geneli beyaz */
}

.elegant-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  background: transparent;
  border-radius: 32px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: none;
  padding: 40px 60px;
  position: relative;
  overflow: visible;
}

/* ── Content ── */
.elegant-text {
  flex: 1;
  max-width: 650px;
  position: relative;
  z-index: 5;
}

.el-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: #1d1d1f;
  background: #f2f2f7;
  /* Apple tarzı çok uçuk gri temiz badge */
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  /* Boşluğu tamamen kıstık */
}

.el-title {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  /* Standart section başlık boyutlarına çekildi (Eski 3.2rem) */
  font-weight: 800;
  color: #2b236d;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.el-title span {
  color: #7e69c3;
}

.el-desc {
  font-size: 1.05rem;
  /* Standart paragraf boyutu (Eski 1.15rem) */
  color: #86868b;
  line-height: 1.6;
  margin-bottom: 24px;
}

.el-desc strong {
  color: #1d1d1f;
  font-weight: 600;
}

/* ── Stats Area ── */
.el-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
  /* 48px'ten 32px'e indirdik */
}

.el-stat-box {
  display: flex;
  flex-direction: column;
}

.el-num {
  font-size: 1.6rem;
  /* Devasa 2.2rem'den tok standart rakam boyutuna indirildi */
  font-weight: 800;
  color: #2b236d;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.el-lbl {
  font-size: 0.8rem;
  /* 0.85rem iken biraz daha rafine edildi */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #86868b;
  font-weight: 600;
}

.el-divider {
  width: 1px;
  height: 48px;
  background: #e5e5ea;
  /* Zemin beyazken sade ayırıcı */
}

/* ── Button Clean Style ── */
.el-btn {
  background: #1d1d1f;
  /* Tok siyah / Apple stili */
  color: #ffffff;
  border-color: #1d1d1f;
  margin-bottom: 0;
}

.el-btn:hover {
  background: #ffffff;
  color: #1d1d1f;
  border-color: #1d1d1f;
}

/* ── Overlap Visual ── */
.elegant-visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
  z-index: 10;
}



.floating-friends {
  width: 100%;
  max-width: 535px;
  /* Biraz daha büyütüldü (Masaüstü) */
  margin-right: -30px;
  /* Gerekli genişlik payı bırakıldı */
  transform: translateY(-5px) scale(0.98);
  pointer-events: none;
  transition: transform 0.1s ease-out;
}




/* ═══════════════════════════════════════
   FEATURES — Avantajlar Grid
   ═══════════════════════════════════════ */
.features-section {
  padding: 48px 0;
  /* Rahat nefes alacak kadar genişletildi */
  background: #fff;
}

.features-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  transition: all .25s cubic-bezier(0.2, 0.8, 0.2, 1);
  /* Hızlandırıldı */
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  /* Scroll animasyonu başlangıç durumu */
  opacity: 0;
  transform: translateY(20px);
  /* Kısaltıldı */
}

.feature-card.opslide-active {
  opacity: 1;
  transform: translateY(0);
}

.feature-bg-anim {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  background-image: var(--bg-img);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.06;
  transition: transform 0.6s ease, opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.feature-card:hover .feature-bg-anim {
  transform: scale(1.08);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 52px;
  height: 52px;
  position: relative;
  z-index: 2;
}

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  padding-bottom: 10px;
  position: relative;
}

.feature-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: #290e6f;
  border-radius: 2px;
}

.feature-desc {
  font-size: 0.88rem;
  color: #86868b;
  line-height: 1.55;
}

.feature-card::after {
  content: '→';
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-size: 1.1rem;
  color: #290e6f;
  opacity: 0;
  transform: translateX(-4px);
  transition: all .25s ease;
}

.feature-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════
   MOBİL UYGULAMA
   ═══════════════════════════════════════ */
.app-section {
  padding: 0 0 56px;
  /* 40px biraz dardı, dengeli hale getirildi */
  background: #fff;
  overflow: hidden;
}

.app-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  gap: 56px;
  background: linear-gradient(135deg, #f5f5f7 0%, #ede8f5 100%);
  border-radius: 28px;
}

.app-phone {
  flex: 0 0 250px;
}

.app-phone img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 32px rgba(41, 14, 111, 0.15));
}

.app-content {
  flex: 1;
}

.app-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #2b236d;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 14px 0 16px;
}

.app-desc {
  font-size: 1rem;
  color: #86868b;
  line-height: 1.6;
  margin-bottom: 28px;
}

.app-sub {
  padding: 20px 24px;
  background: none;
  border-radius: 0;
  margin-bottom: 28px;
  border-left: 3px solid #290e6f;
}

.app-sub h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 4px;
}

.app-sub p {
  font-size: 0.88rem;
  color: #86868b;
  line-height: 1.5;
}

.app-badges {
  display: flex;
  gap: 12px;
}

.app-badge {
  display: block;
  transition: transform .2s ease;
}

.app-badge:hover {
  transform: scale(1.04);
}

.app-qr {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.app-qr img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  border: 1px solid #e8e8ed;
}

.app-qr span {
  font-size: 0.82rem;
  font-weight: 600;
  color: #1d1d1f;
  line-height: 1.4;
}

/* ═══════════════════════════════════════
   KAPANIŞ CTA
   ═══════════════════════════════════════ */
.cta-section {
  padding: 56px 0;
  /* Dengeli mesafe */
  background: #f5f5f7;
  overflow: hidden;
}

.cta-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.cta-content {
  flex: 1;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #2b236d;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta-title em {
  font-style: normal;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: #1d1d1f;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 0.95rem;
  color: #86868b;
  line-height: 1.7;
  margin-bottom: 36px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #290e6f;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: 980px;
  text-decoration: none;
  transition: all .25s ease;
}

.cta-btn:hover {
  background: #3b1a8f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(41, 14, 111, 0.3);
}

.tariff-hero-cta {
  padding: 14px 36px !important;
  font-size: 0.95rem !important;
}

/* ─── Tariff orange overrides ─── */
.badge-orange {
  background: #ff9800 !important;
}

.tariff-card-btn {
  border-color: #ff9800 !important;
  color: #ff9800 !important;
}

.tariff-card-btn:hover {
  background: #ff9800 !important;
  border-color: #ff9800 !important;
  color: #fff !important;
}

.tariff-card {
  border-top-color: #ff9800 !important;
}

.tariff-speed-num::after {
  background: #ff9800 !important;
}

.mygiga-badge-logo {
  height: 20px;
  width: auto;
}

.tariff-speed-row {
  border-bottom-color: #ff9800 !important;
}

.tariff-speed-num::after {
  background: #ff9800 !important;
}

.cta-image {
  flex: 0 0 400px;
}

.cta-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ═══════════════════════════════════════
   FAQ / YARDIM
   ═══════════════════════════════════════ */
.faq-section {
  padding: 80px 0;
  background: #fff;
}

.faq-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
}

.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.03em;
  margin: 14px 0 12px;
}

.faq-subtitle {
  font-size: 1rem;
  color: #86868b;
  line-height: 1.5;
}

.faq-item {
  border-top: 1px solid #e8e8ed;
  padding: 4px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid #e8e8ed;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 16px;
  background: none;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.08rem;
  font-weight: 600;
  color: #1d1d1f;
  text-align: left;
  letter-spacing: -0.01em;
  transition: color .2s;
}

.faq-question:hover {
  color: #290e6f;
  background: #f5f5f7;
}

.faq-chevron {
  flex-shrink: 0;
  color: #86868b;
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}

.faq-item--open .faq-chevron {
  transform: rotate(180deg);
  color: #290e6f;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  transition: max-height 0.35s ease, padding-top 0.35s ease, padding-bottom 0.35s ease;
}

.faq-item--open .faq-answer {
  /* max-height set by JS via scrollHeight */
}

.faq-answer-inner {
  padding: 0 4px 24px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: #6e6e73;
  line-height: 1.7;
  margin-bottom: 14px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-cta {
  display: inline-block;
  padding: 11px 30px;
  background: #290e6f;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: 980px;
  text-decoration: none;
  margin-top: 12px;
  transition: all .2s ease;
}

.faq-cta:hover {
  background: #3b1a8f;
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.site-footer {
  background: linear-gradient(165deg, #0d0525 0%, #1a0a4e 50%, #0d0525 100%);
  color: rgba(255, 255, 255, 0.7);
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ─── Main Content ─── */
.footer-main {
  padding: 80px 0 60px;
}

.footer-main .footer-container {
  display: flex;
  gap: 0;
  justify-content: space-between;
}

/* ─── Left Brand Column ─── */
.footer-brand {
  flex: 0 0 300px;
}

.footer-logo {
  height: 28px;
  width: auto;
  display: block;
  margin-bottom: 20px;
  opacity: 0.4;
  /* Hafif silik, arka planda duruyor */
}

.footer-brand-title {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.footer-phone {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  text-decoration: none;
  margin-bottom: 22px;
  transition: color 0.2s;
}

.footer-phone:hover {
  color: #e84d0e;
}

.footer-brand-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  margin-bottom: 28px;
  font-weight: 300;
}

.footer-cta {
  display: inline-block;
  padding: 11px 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 980px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  margin-bottom: 28px;
}

.footer-cta:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
}

/* ─── Social Icons ─── */
.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
}

.footer-socials a:hover {
  color: #fff;
}

/* ─── Link Columns ─── */
.footer-links {
  flex: 0 0 auto;
  display: flex;
  gap: 72px;
  margin-left: auto;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 150px;
}

.footer-col h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.footer-col a {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 300;
  white-space: nowrap;
}

.footer-col a:hover {
  color: #fff;
}

/* ─── Bottom Bar ─── */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

.footer-bottom .footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 300;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-pill {
    padding: 0 20px;
  }

  .features-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .app-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .app-phone {
    flex: none;
    max-width: 220px;
  }

  .combo-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .combo-left {
    flex: none;
  }

  .cta-container {
    flex-direction: column;
    text-align: center;
  }

  .cta-image {
    flex: none;
    max-width: 320px;
    margin: 0 auto;
  }

  .tariffs-split {
    flex-direction: column;
    gap: 32px;
  }

  .tariff-hero {
    text-align: center;
  }

  .tariff-cards {
    justify-content: center;
  }

  .footer-main .footer-container {
    flex-direction: column;
    gap: 48px;
  }

  .footer-brand {
    flex: none;
  }

  .footer-links {
    margin-left: 0;
    gap: 40px;
  }

  /* ─── Hero Slider (1024px'te mobil moda geçiyor) ─── */
  .hero .swiper-slide picture {
    aspect-ratio: auto;
    min-height: 85vh;
    /* Mobilde daha uzun */
    display: block;
  }

  .hero .swiper-slide img {
    height: 85vh;
    min-height: 560px;
    object-fit: cover;
    object-position: center center;
  }

  .slide-overlay {
    background:
      linear-gradient(180deg,
        rgba(0, 0, 0, .55) 0%,
        rgba(0, 0, 0, .15) 35%,
        transparent 60%,
        rgba(0, 0, 0, .25) 100%) !important;
  }

  .slide-content {
    top: 33%;
    /* Biraz daha yukarı */
    bottom: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    align-items: center;
    padding: 0 32px;
    width: 100%;
    max-width: 100%;
  }

  .slide-content h2 {
    font-size: 2.2rem;
    max-width: 100%;
  }

  .slide-content p {
    font-size: 1rem;
    margin-bottom: 24px;
    max-width: 420px;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-ghost {
    padding: 14px 32px;
    font-size: 0.9rem;
  }

  .hero .swiper-button-prev,
  .hero .swiper-button-next {
    display: none !important;
  }

  .hero .swiper-pagination {
    bottom: 28px !important;
    display: flex;
    justify-content: center;
    gap: 6px;
  }

  .hero .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    opacity: 1;
    transition: all .3s ease;
  }

  .hero .swiper-pagination-bullet-active {
    width: 22px;
    border-radius: 4px;
    background: #f5a623;
  }
}

@media (max-width: 768px) {

  /* ─── Pre-header ─── */
  .pre-header {
    display: none;
  }

  /* ─── Nav ─── */
  .nav-pill {
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
    height: 48px;
    padding: 0 14px;
  }

  .nav-logo img {
    height: 22px;
  }

  .nav-cta {
    display: inline-flex !important;
    padding: 8px;
    margin-left: auto;
    margin-right: 8px;
    border-radius: 50%;
    background: none;
    color: #fff !important;
  }

  .nav-cta-text {
    display: none;
  }

  .nav-cta-icon {
    display: block !important;
    width: 20px;
    height: 20px;
  }

  .mobile-menu {
    max-width: 100%;
  }


  /* ─── Infra ─── */
  .infra-section {
    padding: 40px 0;
  }

  .infra-hero {
    flex-direction: column;
    gap: 28px;
    padding: 0 20px;
    text-align: center;
  }

  .infra-hero-text {
    text-align: center;
  }

  .infra-subtitle {
    max-width: 100%;
  }

  .infra-hero-right {
    max-width: 100%;
  }

  .infra-input-wrap {
    padding: 6px 6px 6px 18px;
  }

  .infra-input-text {
    font-size: 0.9rem;
  }

  .infra-input-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  /* ─── Combo ─── */
  .combo-section {
    padding: 60px 0;
  }

  .combo-container {
    gap: 32px;
    padding: 0 20px;
  }

  .combo-cards {
    flex: none;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    max-width: 100%;
    scrollbar-width: none;
  }

  .combo-cards::-webkit-scrollbar {
    display: none;
  }

  .combo-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
    padding: 0 28px;
    box-sizing: border-box;
  }

  .combo-card-img {
    max-width: 75%;
    margin: 0 auto;
  }

  .combo-card-img img {
    width: 100%;
    height: auto;
  }

  .combo-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
  }

  .combo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .15);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all .3s ease;
  }

  .combo-dot.active {
    background: #e84d0e;
    width: 22px;
    border-radius: 4px;
  }

  /* ─── Tariffs ─── */
  .tariffs {
    padding: 60px 0;
  }

  .tariffs-container {
    padding: 0 20px;
  }

  .tariffs-layout {
    flex-direction: column;
    min-height: auto;
    gap: 28px;
  }

  .tariff-hero {
    flex: none;
    text-align: center;
    padding: 0;
    align-items: center;
  }

  .tariff-hero-cta {
    align-self: center;
  }

  .tariff-cards {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    justify-content: flex-start;
    scrollbar-width: none;
    padding: 12px 4%;
  }

  .tariff-cards::-webkit-scrollbar {
    display: none;
  }

  .tariff-card {
    flex: 0 0 88%;
    max-width: none;
    scroll-snap-align: center;
    height: auto;
    min-height: auto;
  }

  .tariff-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
  }

  .tariff-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .15);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all .3s ease;
  }

  .tariff-dot.active {
    background: #e84d0e;
    width: 22px;
    border-radius: 4px;
  }

  /* ─── Elegant Referral Mobile ─── */
  .ns-refer-elegant {
    padding: 40px 16px;
  }

  .elegant-container {
    flex-direction: column-reverse;
    /* Resim YUKARIDA, yazı AŞAĞIDA */
    padding: 32px 20px;
    text-align: center;
    border-radius: 24px;
  }

  .el-title {
    font-size: 2rem;
  }

  .el-desc {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  /* Stats yanyana ve küçültülmüş */
  .el-stats {
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .el-stat-box {
    flex: 1;
  }

  .el-num {
    font-size: 1.35rem;
  }

  .el-lbl {
    font-size: 0.65rem;
  }

  .el-divider {
    width: 1px;
    height: 28px;
  }

  /* Ayırıcıları dikey ve kısa yaptık */

  .elegant-visual {
    margin-top: 0;
    margin-bottom: 32px;
    padding-left: 0;
    justify-content: center;
    /* Resmi merkeze al */
  }

  .floating-friends {
    width: 100%;
    max-width: 470px;
    /* Mobilde de bir tık daha toklaştı */
    margin-right: 0;
    transform: none !important;
  }

  /* ─── CTA ─── */
  .cta-section {
    padding: 60px 0;
  }

  .cta-container {
    padding: 0 20px;
    gap: 28px;
    text-align: center;
  }

  .cta-content {
    order: 1;
  }

  .cta-image {
    order: 2;
    max-width: 260px;
    margin: 0 auto;
  }

  .cta-title {
    font-size: 1.8rem !important;
  }

  .cta-subtitle {
    font-size: 1rem;
  }

  .cta-desc {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .cta-btn {
    margin: 0 auto;
  }

  /* ─── Features ─── */
  .features-section {
    padding: 60px 0;
  }

  .features-container {
    grid-template-columns: 1fr 1fr;
    padding: 0 16px;
    gap: 12px;
  }

  .feature-card {
    padding: 20px 16px;
  }

  .feature-icon img {
    width: 40px;
    height: 40px;
  }

  .feature-title {
    font-size: 0.85rem;
  }

  .feature-desc {
    font-size: 0.75rem;
  }

  /* ─── App ─── */
  .app-section {
    padding: 40px 0;
  }

  .app-container {
    margin: 0 16px;
    padding: 28px 20px;
    border-radius: 20px;
  }

  .app-phone {
    max-width: 160px;
  }

  .app-title {
    font-size: clamp(1.3rem, 4vw, 1.6rem);
  }

  .app-badges {
    justify-content: center;
  }

  .app-qr {
    display: none;
  }

  /* ─── FAQ ─── */
  .faq-section {
    padding: 60px 0;
  }

  .faq-container {
    padding: 0 16px;
  }

  .faq-header {
    margin-bottom: 32px;
    text-align: center;
  }

  .faq-title {
    font-size: clamp(1.3rem, 4vw, 1.6rem);
  }

  .faq-question span {
    font-size: 1rem;
  }

  .faq-list {
    max-width: 100%;
    overflow: hidden;
  }

  .faq-item {
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
  }

  .faq-answer {
    font-size: 0.8rem;
    box-sizing: border-box;
    overflow: hidden;
  }

  .faq-answer-inner {
    padding: 16px;
  }

  .faq-answer p {
    font-size: 0.82rem;
    line-height: 1.6;
  }

  /* ─── Footer ─── */
  .footer-main {
    padding: 48px 0 40px;
  }

  .footer-container {
    padding: 0 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 28px;
  }

  .footer-brand-desc {
    font-size: 0.82rem;
  }

  .footer-bottom .footer-container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}

/* ─── Slider overlay — left side only ─── */
.slide-overlay {
  background:
    linear-gradient(to right,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.55) 25%,
      rgba(0, 0, 0, 0.03) 50%,
      rgba(0, 0, 0, 0.08) 62%,
      rgba(0, 0, 0, 0.08) 75%,
      rgba(0, 0, 0, 0.08) 75%,
      rgba(0, 0, 0, 0.55) 88%,
      rgba(0, 0, 0, 0.92) 100%),
    linear-gradient(to bottom,
      rgba(0, 0, 0, 0.15) 0%,
      transparent 20%,
      transparent 80%,
      rgba(0, 0, 0, 0.15) 100%) !important;
}

/* ═══════════════════════════════════════
   SCROLL MICRO-ANIMATIONS (Staggered Children)
   ═══════════════════════════════════════ */
.reveal-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}
.reveal-parent.is-visible .reveal-child {
  opacity: 1;
  transform: translateY(0);
}