:root {
  --primary: #1CB7B8;
  --primary-dark: #0E7C7D;
  --primary-soft: #E7F8F8;
  --dark: #1E1E1E;
  --dark-2: #252A2E;
  --bg: #FFFFFF;
  --bg-soft: #F5F8FA;
  --border: #E5E7EB;
  --muted: #6B7280;
  --font-display: "Manrope", "Segoe UI", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --container: 1200px;
  --radius: 16px;
  --shadow: 0 12px 30px rgba(15, 40, 45, .08);
  --mobile-bar-h: 64px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--bg);
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-dark); text-decoration: none; }
a:hover { color: var(--primary); }
.container-site {
  width: min(var(--container), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ========== TOP BAR ========== */
.topbar {
  background: var(--primary);
  color: #fff;
  font-size: .86rem;
}
.topbar-inner {
  width: min(var(--container), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: .45rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.topbar-left, .topbar-right {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem 1.25rem;
  align-items: center;
}
.topbar-right {
  margin-left: auto;
  justify-content: flex-end;
}
.topbar a { color: #fff; opacity: .95; }
.topbar a:hover { opacity: 1; color: #fff; }
.topbar i { margin-right: .35rem; }
.topbar-social { display: flex; gap: .65rem; }
.topbar-social a {
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.15);
}

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 18px rgba(0,0,0,.04);
}
.header-inner {
  width: min(var(--container), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: .75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand-link { display: inline-flex; align-items: center; line-height: 0; }
.brand-link img {
  height: 54px;
  width: auto;
  max-width: min(220px, 55vw);
  object-fit: contain;
}
.nav-desktop {
  display: flex;
  gap: .15rem 1.05rem;
  align-items: center;
}
.nav-desktop > a,
.nav-desktop .nav-drop > button {
  color: var(--dark);
  font-weight: 650;
  font-size: .94rem;
  background: none;
  border: 0;
  padding: .35rem 0;
  font-family: inherit;
}
.nav-desktop > a.active,
.nav-desktop > a:hover,
.nav-desktop .nav-drop > button:hover { color: var(--primary); }
.nav-drop { position: relative; }
.nav-drop-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: .55rem 0 0;
  z-index: 20;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease, visibility .15s ease;
  transition-delay: .18s;
}
.nav-drop-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: .55rem;
}
.nav-drop-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: .45rem;
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}
.nav-drop-menu a {
  display: block;
  padding: .65rem .85rem;
  border-radius: 8px;
  color: var(--dark);
  font-weight: 600;
}
.nav-drop-menu a:hover { background: var(--primary-soft); color: var(--primary-dark); }

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  background: var(--primary);
  color: #fff !important;
  border: 0;
  border-radius: 999px;
  padding: .72rem 1.3rem;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn-cta:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 8px 18px rgba(28,183,184,.28); }
.btn-cta.btn-cta-outline {
  background: transparent;
  color: var(--primary) !important;
  border: 1.5px solid var(--primary);
}
.btn-cta.btn-cta-outline:hover { background: var(--primary); color: #fff !important; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  border: 1.5px solid rgba(255,255,255,.7);
  color: #fff !important;
  border-radius: 999px;
  padding: .72rem 1.3rem;
  font-weight: 700;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,.16); color: #fff !important; }
.btn-cta-nav {
  margin-left: .35rem;
  font-size: .9rem;
  background: var(--primary) !important;
  color: #fff !important;
  border-radius: 999px;
  font-weight: 700;
}
.nav-desktop > a.btn-cta-nav {
  padding: .68rem calc(1.15rem + 15px);
  background: var(--primary) !important;
  color: #fff !important;
}
.btn-cta-nav:hover,
.nav-desktop > a.btn-cta-nav:hover {
  background: var(--primary-dark) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(28,183,184,.28);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  width: 44px;
  height: 44px;
}

/* Mobil sidebar menü */
.mobile-sidebar-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 24, .5);
  z-index: 1400;
}
.mobile-sidebar-backdrop.show { display: block; }

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: min(320px, 86vw);
  height: 100%;
  z-index: 1500;
  background: #fff;
  box-shadow: 12px 0 40px rgba(0,0,0,.18);
  transform: translateX(-105%);
  transition: transform .32s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-sidebar.open {
  transform: translateX(0);
}
.mobile-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--border);
}
.mobile-sidebar-logo img {
  height: 42px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
.mobile-sidebar-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  display: grid;
  place-items: center;
}
.mobile-sidebar-nav {
  padding: .75rem 1.1rem 1rem;
  flex: 1;
}
.mobile-sidebar-nav a {
  display: block;
  padding: .8rem 0;
  color: var(--dark);
  font-weight: 650;
  border-bottom: 1px solid #EEF2F4;
}
.mobile-sidebar-nav a:hover { color: var(--primary); }
.mobile-sidebar-nav .btn-cta {
  margin-top: 1rem;
  width: 100%;
  border-bottom: 0;
  justify-content: center;
  text-align: center;
  font-size: 1.05rem;
  padding: .9rem 1.2rem;
}
.mobile-sidebar-contact {
  margin-top: auto;
  padding: 1.1rem;
  border-top: 1px solid var(--border);
  background: #F7F9FB;
}
.mobile-sidebar-contact h4 {
  font-family: var(--font-display);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 .85rem;
  font-weight: 800;
}
.mobile-sidebar-contact a,
.mobile-sidebar-contact p {
  display: flex;
  gap: .55rem;
  align-items: flex-start;
  margin: 0 0 .7rem;
  color: #334155;
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.45;
}
.mobile-sidebar-contact a:last-child,
.mobile-sidebar-contact p:last-child { margin-bottom: 0; }
.mobile-sidebar-contact i { color: var(--primary); margin-top: .1rem; flex-shrink: 0; }
body.sidebar-open { overflow: hidden; }

/* ========== HERO SLIDER ========== */
.hero-swiper {
  position: relative;
  min-height: min(88vh, 760px);
  color: #fff;
  overflow: visible;
  z-index: 1;
}
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
  overflow: hidden;
}
.hero-swiper .swiper-slide {
  min-height: min(88vh, 760px);
  background-size: cover;
  background-position: center right;
  position: relative;
}
/* Sağdan sola kararma — metin sol için */
.hero-swiper .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 22, 28, .88) 0%,
    rgba(10, 22, 28, .72) 28%,
    rgba(10, 22, 28, .42) 55%,
    rgba(10, 22, 28, .18) 78%,
    rgba(10, 22, 28, .08) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 2.5rem));
  margin: 0 auto;
  min-height: min(88vh, 760px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0;
}
.hero-kicker {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--font-display);
  letter-spacing: .04em;
  font-size: .82rem;
  font-weight: 700;
  color: #7FE0E1;
  background: rgba(28,183,184,.16);
  border: 1px solid rgba(28,183,184,.35);
  border-radius: 999px;
  padding: .4rem .9rem;
  margin-bottom: 1rem;
  animation: fadeUp .7s ease both;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.8vw, 3.45rem);
  line-height: 1.12;
  max-width: 14ch;
  margin: 0 0 1rem;
  font-weight: 800;
  animation: fadeUp .8s ease .05s both;
}
.hero-content p {
  max-width: 40ch;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  opacity: .94;
  margin: 0 0 1.7rem;
  animation: fadeUp .85s ease .1s both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  animation: fadeUp .9s ease .15s both;
}
.hero-swiper .swiper-pagination { bottom: 3.6rem !important; }
.hero-swiper .swiper-pagination-bullet {
  width: 28px; height: 4px; border-radius: 4px;
  background: rgba(255,255,255,.45); opacity: 1;
}
.hero-swiper .swiper-pagination-bullet-active { background: var(--primary); }
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  color: #fff;
  width: 46px; height: 46px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  backdrop-filter: blur(4px);
}
.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after { font-size: 1rem; font-weight: 700; }

/* ========== PAGE HERO ========== */
.page-hero {
  position: relative;
  min-height: 38vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background-size: cover;
  background-position: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,22,28,.82), rgba(10,22,28,.45));
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 4.5rem 0 2.4rem;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.8rem);
  margin: 0 0 .55rem;
  font-weight: 800;
}
.page-hero-about {
  min-height: 46vh;
  align-items: flex-end;
}
.page-hero-about .page-hero-inner {
  padding: 5rem 0 2.6rem;
  width: min(var(--container), calc(100% - 2.5rem));
  margin: 0 auto;
}
.page-hero-kicker {
  display: inline-block;
  color: var(--primary);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: .85rem;
}
.page-hero-about p {
  margin: 0 0 1.35rem;
  max-width: 42rem;
  color: rgba(255,255,255,.88);
  font-size: 1.05rem;
  line-height: 1.65;
}
.page-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem;
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.78);
}
.page-breadcrumb a { color: #fff; opacity: .9; }
.page-breadcrumb a:hover { color: var(--primary); opacity: 1; }

/* ========== HAKKIMIZDA SAYFASI ========== */
.about-detail-section {
  background: #fff;
}
.about-detail-grid {
  display: grid;
  grid-template-columns: 1.4fr .85fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}
.about-detail-copy .section-eyebrow { margin-bottom: .85rem; }
.about-detail-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.22;
  margin: 0 0 1.2rem;
  color: var(--dark);
  max-width: 22ch;
}
.about-detail-copy h2 span { color: var(--primary); }
.about-detail-copy p {
  color: #5b6770;
  margin: 0 0 1rem;
  line-height: 1.75;
  max-width: none;
}
.about-detail-media {
  position: relative;
  padding: 1rem .5rem 1.5rem 1rem;
}
.about-detail-media > img {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 560px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}
.about-dots-tr {
  top: -.2rem;
  right: -.1rem;
  left: auto;
  width: 110px;
  height: 110px;
  background-image: radial-gradient(var(--primary) 1.6px, transparent 1.7px);
  background-size: 12px 12px;
  opacity: .45;
  z-index: 0;
}
.about-center-card {
  position: absolute;
  right: 0;
  bottom: .35rem;
  width: min(260px, 78%);
  background: var(--primary);
  color: #fff;
  border-radius: 16px;
  padding: 1.15rem 1.2rem;
  box-shadow: 0 14px 32px rgba(14,124,125,.28);
  z-index: 2;
}
.about-center-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: .45rem;
}
.about-center-card p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.55;
  opacity: .95;
}

.founder-section {
  background: #1a1f22;
  color: #fff;
}
.founder-inner {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: clamp(1.75rem, 3.5vw, 3rem);
  align-items: center;
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
.founder-photo-wrap {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(28,183,184,.65);
  flex-shrink: 0;
  box-shadow: 0 0 0 10px rgba(28,183,184,.12);
  background: #2a3035;
}
.founder-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.founder-copy {
  min-width: 0;
}
.founder-copy .section-eyebrow-light { color: var(--primary); }
.founder-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  margin: 0 0 .25rem;
  font-weight: 800;
  color: #fff;
}
.founder-role {
  display: block;
  color: var(--primary);
  font-style: italic;
  font-weight: 600;
  margin-bottom: .9rem;
}
.founder-copy p {
  margin: 0 0 .85rem;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  max-width: none;
}
.founder-copy p:last-of-type { margin-bottom: 0; }
.founder-sign {
  display: block;
  margin-top: 1.15rem;
  margin-left: auto;
  width: fit-content;
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 1.15rem;
  line-height: 1.2;
  color: rgba(255,255,255,.78);
  white-space: nowrap;
  transform: rotate(-4deg);
  opacity: .92;
  text-align: right;
}

.mv-section { background: #fff; }
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}
.mv-card {
  display: flex;
  align-items: stretch;
  gap: 1.35rem;
  background: #f2f7f9;
  border: 0;
  border-radius: 16px;
  padding: 1.65rem 1.55rem;
}
.mv-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  width: auto;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: none;
  color: var(--primary);
  line-height: 0;
}
.mv-icon svg {
  height: 100%;
  width: auto;
  aspect-ratio: 1;
  display: block;
}
.mv-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mv-card h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: .02em;
  margin: 0 0 .55rem;
  color: var(--dark);
}
.mv-card p {
  margin: 0;
  color: #3f4a52;
  line-height: 1.65;
  font-size: .98rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  position: relative;
}
.why-item {
  text-align: center;
  padding: .5rem .35rem 0;
  position: relative;
}
.why-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 34px;
  left: calc(50% + 34px);
  width: calc(100% - 68px);
  border-top: 2px dotted rgba(28,183,184,.45);
  pointer-events: none;
}
.why-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto .85rem;
  border-radius: 50%;
  border: 2px solid var(--primary);
  color: var(--primary);
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  position: relative;
  z-index: 1;
}
.why-item h3 {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 750;
  margin: 0;
  line-height: 1.3;
  color: var(--dark);
}

.about-stats-band .stats-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.about-stats-band .stat-item { justify-content: center; text-align: center; }
.about-stats-band .stat-item .num span {
  color: var(--primary);
  display: inline;
  font-size: .85em;
  opacity: 1;
  font-weight: 800;
}
.about-stats-band .stat-item span {
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}
.process-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem 1.2rem 1.4rem;
  text-align: center;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.process-num {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: .02em;
  margin: 0 auto .95rem;
}
.process-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 750;
  margin: 0 0 .45rem;
}
.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
}

/* ========== PARTNERLER SAYFASI ========== */
.page-hero-partners {
  min-height: 46vh;
}
.page-hero-partners .page-hero-inner {
  padding: 5rem 0 2.6rem;
}
.partners-page-brands {
  background: #fff;
}
.partners-brands-head {
  max-width: min(58rem, 100%);
  margin-bottom: 2.35rem;
}
.partners-brands-head h2 {
  white-space: nowrap;
  margin-bottom: .85rem;
}
.partners-brands-head p {
  max-width: 46rem;
  margin-inline: auto;
  line-height: 1.7;
  font-size: 1.02rem;
}
.partners-logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.partners-logo-card {
  flex: 0 1 calc((100% - 4rem) / 5);
  width: calc((100% - 4rem) / 5);
  max-width: 220px;
  min-height: 110px;
  background: #fff;
  border: 1px solid #EEF2F4;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .05);
  display: grid;
  place-items: center;
  padding: 1.1rem 1rem;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  color: inherit;
  text-decoration: none;
}
.partners-logo-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 12px 28px rgba(28,183,184,.14);
  color: inherit;
}
.partners-logo-card img {
  max-height: 48px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(.12);
}
.partners-logo-fallback {
  font-weight: 800;
  letter-spacing: .03em;
  color: #334155;
  text-align: center;
  font-size: .95rem;
}
.partners-empty { padding: 1rem 0 2rem; }

.partners-features-section {
  background: #f2f7f9;
}
.partners-features-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}
.partners-features-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 800;
  margin: 0 0 1.1rem;
  line-height: 1.25;
  color: var(--dark);
  max-width: 16ch;
}
.partners-features-copy p {
  color: #5b6770;
  line-height: 1.75;
  margin: 0 0 1rem;
}
.partners-feature-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;
}
.partners-feature-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(226,232,240,.9);
}
.partners-feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.partners-feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 750;
  margin: 0 0 .3rem;
  color: var(--dark);
}
.partners-feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
}

.partners-why-section {
  background: #1a1f22;
  color: #fff;
}
.partners-why-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}
.partners-why-copy .section-eyebrow-light { color: var(--primary); }
.partners-why-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 800;
  margin: 0 0 .9rem;
  line-height: 1.25;
  color: #fff;
  max-width: min(22ch, 100%);
}
.partners-why-lead {
  margin: 0 0 1.5rem;
  color: rgba(255,255,255,.88);
  line-height: 1.65;
  max-width: min(48ch, 100%);
  font-size: 1.02rem;
}
.partners-why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.partners-why-list li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  color: rgba(255,255,255,.92);
  line-height: 1.5;
  font-weight: 500;
}
.partners-why-list i {
  color: var(--primary);
  font-size: 1.25rem;
  margin-top: .05rem;
  flex-shrink: 0;
  font-weight: 800;
}
.partners-why-media {
  position: relative;
  padding: .35rem .35rem 1.5rem 0;
}
.partners-why-media > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}
.partners-why-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(280px, 86%);
  background: var(--primary);
  color: #fff;
  border-radius: 16px;
  padding: 1.2rem 1.25rem;
  box-shadow: 0 14px 32px rgba(14,124,125,.28);
}
.partners-why-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: .7rem;
}
.partners-why-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: .4rem;
}
.partners-why-card p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.55;
  opacity: .95;
}

.partners-cta-section {
  background: #fff;
  border-top: 1px solid #1E1E1E;
  border-bottom: 1px solid #1E1E1E;
  overflow: hidden;
}
.partners-cta-inner {
  display: grid;
  grid-template-columns: 200px minmax(0, 1.2fr) auto;
  gap: clamp(1.25rem, 3vw, 2.75rem);
  align-items: center;
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
  position: relative;
}
.partners-cta-visual {
  position: relative;
  align-self: stretch;
  min-height: 220px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: -2.75rem; /* üst kenardan sarksın */
  padding-top: 0;
}
.partners-cta-dots {
  position: absolute;
  left: 58%;
  top: 18%;
  width: 72px;
  height: 110px;
  background-image: radial-gradient(var(--primary) 1.5px, transparent 1.6px);
  background-size: 11px 11px;
  opacity: .55;
  pointer-events: none;
  z-index: 0;
}
.partners-cta-visual img {
  position: relative;
  z-index: 1;
  width: min(170px, 100%);
  height: auto;
  max-height: 260px;
  object-fit: contain;
  object-position: top center;
  display: block;
  border-radius: 0;
  margin: 0;
}
.partners-cta-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  font-weight: 800;
  margin: 0 0 .85rem;
  line-height: 1.22;
  max-width: min(34ch, 100%);
  color: var(--dark);
}
.partners-cta-copy h2 span {
  color: var(--primary);
}
.partners-cta-copy p {
  margin: 0;
  color: #5b6770;
  line-height: 1.7;
  max-width: 46ch;
  font-size: 1rem;
}
.partners-cta-actions {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  min-width: 190px;
}
.partners-cta-actions .btn-cta,
.partners-cta-actions .btn-cta-outline {
  justify-content: center;
  white-space: nowrap;
  border-radius: 12px;
}

/* ========== SECTIONS ========== */
.section {
  width: min(var(--container), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 4.25rem 0;
}
.section-soft { background: var(--bg-soft); }
.section-soft > .section { padding-top: 4.25rem; padding-bottom: 4.25rem; }
.section-head {
  margin-bottom: 2rem;
  max-width: 42rem;
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  margin: 0 0 .55rem;
  font-weight: 800;
  line-height: 1.2;
}
.section-head p { color: var(--muted); margin: 0; }
.section-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.section-row .section-head { margin-bottom: 0; }

/* Quick info — tam genişlik beyaz şerit, %30 hero üzerine biner */
.below-hero {
  --quick-bar-h: 5.75rem;
  --quick-overlap: calc(var(--quick-bar-h) * 0.30);
  position: relative;
  background: transparent;
  z-index: 4;
  padding-bottom: 0;
  margin-bottom: 0;
}

.quick-strip {
  position: relative;
  z-index: 6;
  background: transparent;
  border: 0;
  box-shadow: none;
  margin: calc(var(--quick-overlap) * -1) 0 0;
  padding: 0;
}

.quick-grid {
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: var(--quick-bar-h);
  background: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: 1.15rem clamp(1rem, 3vw, 2.5rem);
  position: relative;
  z-index: 2;
  align-items: center;
}

/* Hakkımızda — soft vignette / renk geçişli arka plan */
.about-section {
  position: relative;
  margin-top: 0;
  padding-top: 0;
  background:
    radial-gradient(ellipse 75% 65% at 50% 42%, #ffffff 0%, rgba(241,248,249,.7) 45%, rgba(209,226,231,.95) 100%),
    linear-gradient(165deg, #f2f8f9 0%, #eaf3f5 40%, #d8e7eb 78%, #cfe0e5 100%);
  overflow: hidden;
}

.section-about {
  padding-top: 3.75rem;
  padding-bottom: 4.75rem;
}

.quick-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  text-align: left;
  padding: .35rem .75rem;
  border-right: 1px solid #EEF2F4;
}

.quick-item:last-child { border-right: 0; }

.quick-icon {
  width: 52px;
  height: 52px;
  margin: 0;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
}

.quick-item strong {
  display: block;
  font-size: .95rem;
  font-family: var(--font-display);
  line-height: 1.25;
  font-weight: 800;
  color: var(--dark);
  max-width: 11ch;
}

/* About split */
.about-split {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.about-copy .section-eyebrow { margin-bottom: .85rem; }
.about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 1.15rem;
  color: var(--dark);
  max-width: 16ch;
}
.about-copy h2 span { color: var(--primary); }
.about-copy p {
  color: #5b6770;
  margin: 0 0 1rem;
  max-width: 46ch;
  line-height: 1.7;
}
.about-copy .btn-cta { margin-top: .6rem; border-radius: 12px; }

.about-media {
  position: relative;
  padding: 1.25rem 1rem 1.25rem 1.5rem;
}
.about-media > img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(15, 40, 45, .14);
  position: relative;
  z-index: 1;
}

.about-dots {
  position: absolute;
  width: 110px;
  height: 110px;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(28,183,184,.45) 1.6px, transparent 1.8px);
  background-size: 14px 14px;
  pointer-events: none;
}
.about-dots-tl { top: 0; left: 0; }
.about-dots-bl { bottom: 8%; left: 4%; width: 90px; height: 90px; }

.about-stat {
  position: absolute;
  z-index: 2;
  width: 112px;
  height: 112px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 14px 30px rgba(15, 40, 45, .16);
  font-family: var(--font-display);
}
.about-stat strong {
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: .35rem;
}
.about-stat span {
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.2;
  max-width: 9ch;
}
.about-stat-light {
  left: 0;
  bottom: 12%;
  background: #fff;
  color: var(--dark);
}
.about-stat-teal {
  right: 0;
  top: 10%;
  background: var(--primary);
  color: #fff;
}

/* Partners */
.partners-section {
  background: #fff;
}
.partners-section > .section {
  padding-top: 4.25rem;
  padding-bottom: 4.25rem;
}
.section-eyebrow {
  display: inline-block;
  color: var(--primary);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .65rem;
}
.partners-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.partners-head-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
  max-width: 16ch;
}
.partners-head-desc {
  margin: 0;
  max-width: 34ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}
.partners-swiper-wrap {
  position: relative;
  padding: .85rem 3rem;
}
.partners-swiper {
  overflow: hidden;
  padding: .35rem 0 .2rem;
}
.partner-card {
  min-height: 110px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #EEF2F4;
  box-shadow: none;
  display: grid;
  place-items: center;
  padding: 1rem 1.1rem;
  transition: transform .2s ease, border-color .2s ease;
}
.partner-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: none;
}
.partner-card img {
  max-height: 48px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(.15);
}
.partner-name-fallback {
  font-weight: 800;
  letter-spacing: .03em;
  color: #334155;
  text-align: center;
  font-size: .95rem;
}
.partners-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #E5E7EB;
  background: #F3F4F6;
  color: #4B5563;
  display: grid;
  place-items: center;
  z-index: 3;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.partners-nav:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.partners-prev { left: 0; }
.partners-next { right: 0; }

.partner-track {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}
.partner-chip {
  min-height: 88px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  padding: .75rem;
  font-weight: 800;
  letter-spacing: .03em;
  color: #334155;
  box-shadow: none;
}
.partner-chip img { max-height: 42px; width: auto; }

/* References */
.ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.ref-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.ref-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.ref-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.ref-card-body { padding: 1rem 1.05rem 1.15rem; }
.ref-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  margin: 0 0 .25rem;
  font-weight: 750;
}
.ref-card-body p { margin: 0; color: var(--muted); font-size: .92rem; }

/* Stats */
.stats-band {
  background: #1a1f22;
  color: #fff;
  padding: 3.25rem 0;
}
.stats-grid {
  width: min(var(--container), calc(100% - 2.5rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 2rem;
  align-items: center;
}
.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: left;
}
.stat-icon {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  color: var(--primary);
  display: grid;
  place-items: center;
}
.stat-icon img,
.stat-icon svg {
  width: 58px;
  height: 58px;
  display: block;
}
.stat-text { min-width: 0; }
.stat-item .num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.55rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: .28rem;
  color: #fff;
}
.stat-item span {
  opacity: .88;
  font-size: .95rem;
  font-weight: 600;
  display: block;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card img { width: 100%; height: 180px; object-fit: cover; }
.blog-card-body { padding: 1.1rem 1.15rem 1.25rem; display: flex; flex-direction: column; flex: 1; }
.blog-date { color: var(--primary); font-size: .82rem; font-weight: 700; margin-bottom: .4rem; }
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 .5rem;
  font-weight: 750;
  line-height: 1.35;
}
.blog-card p { color: var(--muted); flex: 1; margin: 0 0 1rem; }
.blog-card .more { font-weight: 700; color: var(--primary-dark); }

/* CTA band */
/* Footer üstü iletişim CTA — tam genişlik */
.contact-cta {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 4rem 0;
  background-color: #1CB7B8;
  background-image:
    linear-gradient(90deg, rgba(14, 124, 125, .55) 0%, rgba(28, 183, 184, .35) 42%, rgba(28, 183, 184, .12) 68%, rgba(28, 183, 184, .05) 100%),
    url('images/cta-contact-lights.jpg');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  color: #fff;
  overflow: hidden;
}
.contact-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at left center, rgba(12, 90, 92, .25), transparent 55%);
  pointer-events: none;
}
.contact-cta-inner {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 2.5rem));
  margin: 0 auto;
  display: block;
}
.contact-cta-copy {
  max-width: min(640px, 54%);
}
.contact-cta-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .92;
  margin-bottom: .85rem;
}
.contact-cta-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 1rem;
  max-width: none;
  color: #fff;
}
.contact-cta-copy p {
  margin: 0 0 1.5rem;
  max-width: none;
  opacity: .92;
  line-height: 1.65;
}
.contact-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.btn-cta-dark {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: #1E1E1E;
  color: #fff !important;
  border-radius: 12px;
  padding: .85rem 1.35rem;
  font-weight: 750;
  border: 0;
  transition: transform .2s ease, background .2s ease;
}
.btn-cta-dark:hover { background: #000; transform: translateY(-1px); color: #fff !important; }
.btn-cta-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: transparent;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.85);
  border-radius: 12px;
  padding: .85rem 1.35rem;
  font-weight: 750;
  transition: background .2s ease;
}
.btn-cta-ghost-light:hover { background: rgba(255,255,255,.12); color: #fff !important; }

.contact-cta-card {
  background: #f4f6f7;
  border-radius: 24px;
  padding: 1.75rem 1.6rem;
  box-shadow: 0 16px 40px rgba(0,0,0,.16);
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.contact-cta-row {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
}
.contact-cta-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.05rem;
}
.contact-cta-row strong {
  display: block;
  color: var(--dark);
  font-size: .92rem;
  margin-bottom: .15rem;
}
.contact-cta-row a,
.contact-cta-row span {
  color: #334155;
  font-weight: 600;
  font-size: .95rem;
  line-height: 1.45;
  word-break: break-word;
}
.contact-cta-row a:hover { color: var(--primary-dark); }

/* eski cta sınıfları (başka sayfada kalmış olabilir) */
.cta-band { display: none; }

/* Content */
.content-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem;
}
.content-block p:first-child { margin-top: 0; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}
.product-item, .feature-item, .partner-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.2rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-item:hover, .feature-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-item h3, .feature-item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 .4rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.5rem;
}
.form-control, .form-select, textarea.form-control {
  border-radius: 12px;
  border-color: var(--border);
  padding: .75rem 1rem;
}
.alert { border-radius: 12px; }

/* ========== FOOTER ========== */
/* ========== FOOTER ========== */
.site-footer {
  background: #111416;
  color: rgba(255,255,255,.88);
  border-top: 3px solid var(--primary);
  margin-bottom: 0;
}
.footer-inner {
  width: min(var(--container), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 3.6rem 0 2.4rem;
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1.25fr;
  gap: 2rem 1.75rem;
}
.footer-logo {
  height: 52px;
  width: auto;
  max-width: 240px;
  margin-bottom: 1.1rem;
  object-fit: contain;
}
.footer-brand p {
  margin: 0;
  max-width: 34ch;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
  font-size: .95rem;
}
.site-footer h3 {
  font-family: var(--font-display);
  font-size: .82rem;
  margin: 0 0 1.15rem;
  color: var(--primary);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 800;
}
.site-footer a { color: rgba(255,255,255,.82); }
.site-footer a:hover { color: #fff; }
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col li { margin: 0 0 .7rem; }
.footer-col li:last-child { margin-bottom: 0; }
.footer-contact li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  margin-bottom: .95rem;
}
.footer-contact i {
  color: #fff;
  margin-top: .15rem;
  flex-shrink: 0;
}
.footer-contact span,
.footer-contact a {
  line-height: 1.5;
  font-size: .94rem;
}
.footer-social {
  display: flex;
  gap: .55rem;
  margin-top: 1.25rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #22272b;
  color: #fff !important;
  transition: background .2s ease;
}
.footer-social a:hover { background: var(--primary); }
.footer-bottom-wrap {
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-bottom {
  width: min(var(--container), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 1.05rem 0 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  font-size: .88rem;
  color: rgba(255,255,255,.78);
}
.footer-legal {
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
  align-items: center;
}
.footer-legal .sep { opacity: .45; }
.back-top {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff !important;
  display: grid;
  place-items: center;
  margin-left: .35rem;
}
.back-top:hover { background: var(--primary-dark); color: #fff !important; }

/* Favicon scroll-top — boşalan bardak efekti */
.scroll-top-fav {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 1300;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  background: #111;
  box-shadow: 0 8px 20px rgba(0,0,0,.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}
.scroll-top-fav.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top-fav img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}
.scroll-top-drain {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 0%;
  z-index: 2;
  background: rgba(196, 201, 206, .78);
  pointer-events: none;
  will-change: height;
}

/* Mobile sticky phone + whatsapp */
.mobile-contact-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1200;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgba(0,0,0,.12);
  padding: .55rem .75rem calc(.55rem + env(safe-area-inset-bottom, 0px));
  grid-template-columns: 1fr 1fr;
  gap: .55rem;
}
.mobile-contact-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  border-radius: 12px;
  padding: .8rem .5rem;
  font-weight: 750;
  color: #fff !important;
}
.mobile-contact-bar .m-phone { background: var(--primary); }
.mobile-contact-bar .m-wa { background: #25D366; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .partners-head { align-items: start; }
  .partners-head-desc { max-width: none; }
  .partners-swiper-wrap { padding: .85rem 2.5rem; }
  .below-hero { --quick-bar-h: 10.5rem; }
  .quick-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: .75rem; }
  .quick-item { justify-content: flex-start; border-right: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 991.98px) {
  .topbar-right span:nth-child(2) { display: none; }
  .nav-desktop { display: none; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: .25rem;
  }
  .quick-item { border-right: 0; }
  .quick-item:nth-child(odd) { border-right: 1px solid #EEF2F4; }
  .quick-item:nth-last-child(-n+2) { border-bottom: 0; }
  .below-hero { --quick-bar-h: 11rem; }
  .about-split, .contact-grid, .about-detail-grid { grid-template-columns: 1fr; }
  .founder-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: 1.35rem;
  }
  .founder-photo-wrap {
    width: 160px;
    height: 160px;
  }
  .founder-copy p { max-width: none; }
  .founder-sign {
    transform: none;
    margin-top: .9rem;
    margin-inline: auto 0;
    font-size: 1.05rem;
  }
  .mv-grid { grid-template-columns: 1fr; }
  .mv-icon svg { max-height: 5.5rem; }
  .why-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem .75rem; }
  .why-item:not(:last-child)::after { display: none; }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-stats-band .stats-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .about-detail-media { max-width: 480px; margin-inline: auto; }
  .about-detail-media > img { max-height: 480px; }
  .about-detail-copy h2 { max-width: none; }
  .partners-logo-card {
    flex: 0 1 calc((100% - 2rem) / 3);
    width: calc((100% - 2rem) / 3);
  }
  .partners-brands-head h2 { white-space: normal; }
  .partners-features-grid,
  .partners-why-inner { grid-template-columns: 1fr; }
  .partners-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .partners-cta-visual {
    margin-top: -2rem;
    min-height: 180px;
    justify-content: center;
  }
  .partners-cta-dots { left: 56%; }
  .partners-cta-copy h2,
  .partners-cta-copy p,
  .partners-features-copy h2,
  .partners-why-copy h2 { max-width: none; margin-inline: auto; }
  .partners-cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .partners-why-media { max-width: 560px; margin-inline: auto; }
  .contact-cta-copy { max-width: min(680px, 92%); }
  .contact-cta {
    background-position: right -40px center;
    padding: 3rem 0;
  }
  .about-media { max-width: 520px; margin-inline: auto; }
  .about-media > img { max-height: 420px; }
  .about-stat { width: 96px; height: 96px; }
  .about-stat strong { font-size: 1.55rem; }
  .ref-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem 1.5rem; }
  .stat-item { justify-content: flex-start; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-swiper, .hero-swiper .swiper-slide, .hero-content { min-height: 72vh; }
  .hero-swiper .swiper-button-prev,
  .hero-swiper .swiper-button-next { display: none; }
  .mobile-contact-bar { display: grid; }
  body.has-mobile-bar {
    padding-bottom: 0;
  }
  .site-footer {
    padding-bottom: calc(var(--mobile-bar-h) + env(safe-area-inset-bottom, 0px));
  }
  .scroll-top-fav {
    bottom: calc(10px + var(--mobile-bar-h) + env(safe-area-inset-bottom, 0px));
    right: 10px;
  }
}
@media (max-width: 675px) {
  .below-hero { --quick-bar-h: 11.5rem; }
  .quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: .85rem .75rem;
    row-gap: .35rem;
  }
  .quick-item {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid #EEF2F4;
    padding: .7rem .4rem;
  }
  .quick-item:nth-child(odd) { border-right: 1px solid #EEF2F4; }
  .quick-item:nth-last-child(-n+2) { border-bottom: 0; }
  .quick-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    border-right: 0;
    justify-content: center;
  }
  .quick-item strong { max-width: none; font-size: .86rem; }
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1.35rem 1rem;
  }
  .stat-item { justify-content: flex-start; }
  .stat-icon,
  .stat-icon img,
  .stat-icon svg {
    width: 46px;
    height: 46px;
  }
  .hero-swiper .swiper-pagination { bottom: 5.5rem !important; }
  .partners-swiper-wrap { padding: .85rem 2.25rem; }
  .partner-track, .ref-grid, .blog-grid, .product-grid, .footer-inner {
    grid-template-columns: 1fr;
  }
  .topbar { display: none; }
  .brand-link img { height: 44px; }
  .section { padding: 3rem 0; }
  .contact-cta-actions { flex-direction: column; align-items: stretch; }
  .btn-cta-dark, .btn-cta-ghost-light { justify-content: center; }
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: 1fr; }
  .about-stats-band .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .about-stats-band .stat-item:last-child {
    grid-column: 1 / -1;
  }
  .about-center-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 1rem;
  }
  .page-hero-about { min-height: 38vh; }
  .page-hero-about .page-hero-inner { padding: 3.5rem 0 1.85rem; }
  .founder-photo-wrap { width: 140px; height: 140px; }
  .partners-logo-card {
    flex: 0 1 calc((100% - 1rem) / 2);
    width: calc((100% - 1rem) / 2);
  }
  .partners-cta-actions { flex-direction: column; align-items: stretch; }
  .partners-why-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 1rem;
  }
  .page-hero-partners { min-height: 38vh; }
  .page-hero-partners .page-hero-inner { padding: 3.5rem 0 1.85rem; }
}
