/*
Theme Name: Harstech
Theme URI: https://harstech.com
Author: Harstech
Description: Harstech B2B teknoloji ajansı için özel WordPress teması.
Version: 1.6
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: harstech
*/

:root {
  --navy: #1E3A8A;
  --navy-dark: #142a66;
  --red: #B10710;
  --red-dark: #870509;
  --red-light: #FCE9EA;
  --navy-light: #EAF0FC;
  --dark: #14161A;
  --gray: #64676D;
  --gray-light: #F7F7F6;
  --border: #E9E9E7;
  --white: #FFFFFF;
  --shadow: 0 1px 2px rgba(20,22,26,0.04), 0 8px 24px rgba(20,22,26,0.05);
  --shadow-lg: 0 4px 8px rgba(20,22,26,0.05), 0 20px 40px rgba(20,22,26,0.08);
  --radius: 16px;
  --font-display: 'Fraunces', 'Outfit', serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.12;
  margin: 0 0 18px;
  color: var(--dark);
  font-optical-sizing: auto;
}

h1 { font-size: clamp(38px, 4.8vw, 60px); font-weight: 600; font-style: normal; }
h2 { font-size: clamp(28px, 3.2vw, 40px); }
h3 { font-size: 21px; font-family: 'Outfit', sans-serif; font-weight: 700; }

p { margin: 0 0 16px; color: var(--gray); font-size: 16.5px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
}

ul.check-list { list-style: none; margin: 0 0 24px; padding: 0; }
ul.check-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 16px;
  color: var(--dark);
  font-size: 16px;
}
ul.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 2px;
  width: 22px; height: 22px;
  border-radius: 7px;
  background: var(--red-light);
}
ul.check-list li::after {
  content: "";
  position: absolute;
  left: 7px; top: 8px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(-45deg);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: all .25s cubic-bezier(.22,1,.36,1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-primary { background: var(--navy); color: var(--white); box-shadow: 0 6px 16px rgba(30,58,138,0.25); }
.btn-primary:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(30,58,138,0.32); }
.btn-outline { border: 1.5px solid var(--border); color: var(--dark); background: var(--white); }
.btn-outline:hover { border-color: var(--navy); color: var(--navy); transform: translateY(-2px); }
.btn-red { background: var(--red); color: var(--white); box-shadow: 0 6px 16px rgba(177,7,16,0.25); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(177,7,16,0.32); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(20,22,26,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
}
.site-logo img, .site-logo .custom-logo { height: auto; display: block; }

.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0; padding: 0;
  gap: 4px;
}
.main-nav li { position: relative; }
.main-nav a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dark);
  padding: 10px 16px;
  border-radius: 8px;
  transition: color .2s ease;
}
.main-nav a .nav-icon { width: 15px; height: 15px; flex-shrink: 0; opacity: .75; }
.main-nav a:hover .nav-icon, .main-nav li.current-menu-item > a .nav-icon { opacity: 1; }
.main-nav a .nav-caret { flex-shrink: 0; margin-left: -2px; transition: transform .2s ease; opacity: .6; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 5px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.main-nav a:hover { color: var(--red); }
.main-nav a:hover::after { transform: scaleX(1); }
.main-nav li.current-menu-item > a { color: var(--navy); }
.main-nav li.current-menu-item > a::after { transform: scaleX(1); background: var(--navy); }

/* Açılır alt menü (dropdown) — aşağı doğru açılır */
.main-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  list-style: none;
  margin: 10px 0 0;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 60;
}
.main-nav li.menu-item-has-children:hover > .sub-menu,
.main-nav li.menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-nav li.menu-item-has-children:hover > a .nav-caret,
.main-nav li.menu-item-has-children:focus-within > a .nav-caret {
  transform: rotate(180deg);
}
.main-nav .sub-menu li { width: 100%; }
.main-nav .sub-menu a {
  text-transform: none;
  letter-spacing: normal;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 8px;
}
.main-nav .sub-menu a::after { display: none; }
.main-nav .sub-menu a:hover { background: var(--navy-light); color: var(--navy); }
.main-nav .sub-menu a .nav-icon { width: 14px; height: 14px; }

.mobile-nav-cta { display: none !important; }

.header-right { display: flex; align-items: center; gap: 16px; }

.header-cta {
  display: inline-block;
  background: var(--navy);
  color: var(--white) !important;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 9px;
  white-space: nowrap;
  transition: background .15s, transform .15s;
  box-shadow: 0 4px 12px rgba(30,58,138,0.2);
}
.header-cta:hover { background: var(--navy-dark); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  background: none; border: none; cursor: pointer; padding: 0;
}
.nav-toggle span {
  height: 2px; width: 100%; background: var(--dark); border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 940px) {
  .main-nav {
    position: fixed; inset: 88px 0 0 0;
    background: var(--white);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease, transform .28s ease;
    padding: 28px 28px;
    z-index: 190;
  }
  .main-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a {
    font-size: 19px; padding: 16px 18px;
    opacity: 0; transform: translateX(-10px);
    transition: opacity .3s ease, transform .3s ease, color .2s ease;
  }
  .main-nav.is-open a { opacity: 1; transform: translateX(0); }
  .main-nav.is-open li:nth-child(1) a { transition-delay: .05s; }
  .main-nav.is-open li:nth-child(2) a { transition-delay: .1s; }
  .main-nav.is-open li:nth-child(3) a { transition-delay: .15s; }
  .main-nav.is-open li:nth-child(4) a { transition-delay: .2s; }
  .main-nav.is-open li:nth-child(5) a { transition-delay: .25s; }
  .main-nav a::after { display: none; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .mobile-nav-cta {
    display: block !important;
    margin-top: 20px;
    text-align: center;
    background: var(--navy);
    color: var(--white) !important;
    font-weight: 600;
    font-size: 16px !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    padding: 16px;
    border-radius: 10px;
    opacity: 0; transform: translateX(-10px);
    transition: opacity .3s ease, transform .3s ease;
    transition-delay: .25s;
  }
  .mobile-nav-cta:hover { color: var(--white) !important; }
  .mobile-nav-cta::after { display: none !important; }
  .main-nav.is-open .mobile-nav-cta { opacity: 1; transform: translateX(0); }

  /* Mobilde açılır menü davranışı yerine, alt öğeler her zaman
     "Meta Reklam" başlığının altında girintili şekilde görünür. */
  .main-nav .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 2px 0 6px 20px;
    margin: 0 0 6px;
  }
  .main-nav .sub-menu a { font-size: 16px; padding: 10px 12px; color: var(--gray); }
  .main-nav .sub-menu a:hover { background: var(--navy-light); color: var(--navy); }
  .main-nav .nav-caret { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 108px 0 120px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(150deg, #1E3A8A 0%, #2A3E9E 40%, #8B1220 78%, #B10710 100%);
}
.hero-divider {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 60px;
  z-index: 2;
  pointer-events: none;
}
.hero-divider svg { width: 100%; height: 100%; display: block; }
.hero .eyebrow { color: #FFD166; }
.hero .eyebrow::before { background: #FFD166; }
.hero h1 { color: #FFFFFF; }
.hero p.lead { color: rgba(255,255,255,0.86); }
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
  animation: blob-float 14s ease-in-out infinite;
}
.hero-blob.b1 { width: 440px; height: 440px; top: -160px; left: -110px; background: radial-gradient(circle, #6FA8FF 0%, transparent 72%); }
.hero-blob.b2 { width: 400px; height: 400px; top: -100px; right: -130px; background: radial-gradient(circle, #FF8A80 0%, transparent 72%); animation-delay: -4s; }
.hero-blob.b3 { width: 320px; height: 320px; bottom: -180px; left: 42%; background: radial-gradient(circle, #FFD166 0%, transparent 72%); opacity: 0.35; animation-delay: -8s; }
@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(18px, -14px) scale(1.05); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-blob { animation: none; }
}
.hero > .container { position: relative; z-index: 1; }

/* Not: Hero'nun giriş animasyonu artık GSAP (animations.js) tarafından yönetiliyor.
   GSAP yüklenemezse elementler burada varsayılan olarak görünür kalır (güvenli geri dönüş). */


.hero h1 { max-width: 820px; margin: 0 auto 22px; color: #FFFFFF; }
.hero p.lead {
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: 19px;
  font-weight: 450;
  color: rgba(255,255,255,0.94);
}
.hero .btn-outline {
  border-color: rgba(255,255,255,0.55);
  color: #FFFFFF;
  background: rgba(255,255,255,0.08);
}
.hero .btn-outline:hover {
  border-color: #FFFFFF;
  color: #FFFFFF;
  background: rgba(255,255,255,0.16);
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 760px;
  margin: 0 auto;
}
.hero-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 22px;
  box-shadow: var(--shadow);
}
.hero-stats .stat-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.hero-stats .stat-num {
  font-size: 20px; font-weight: 800; color: var(--navy);
  letter-spacing: -0.02em;
}
.hero-stats .stat-label { font-size: 12.5px; color: var(--gray); }

/* ---------- Trust bar (hero altı, taşan 4'lü şerit) ---------- */
.trust-bar-wrap { padding: 0 0 60px; }
.trust-bar {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -66px;
  position: relative;
  z-index: 3;
}
.trust-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 28px 24px;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-item .icon-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy-light);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-item:nth-child(2) .icon-circle { background: var(--red-light); color: var(--red); }
.trust-item:nth-child(4) .icon-circle { background: var(--red-light); color: var(--red); }
.trust-item .icon-circle svg { width: 21px; height: 21px; }
.trust-item h4 { font-size: 15px; margin-bottom: 4px; color: var(--dark); }
.trust-item p { font-size: 13.5px; margin: 0; color: var(--gray); line-height: 1.5; }
@media (max-width: 900px) {
  .trust-bar { grid-template-columns: repeat(2, 1fr); margin-top: -40px; }
  .trust-item:nth-child(2n) { border-right: none; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom: 1px solid var(--border); }
}
@media (max-width: 560px) {
  .trust-bar { grid-template-columns: 1fr; }
  .trust-item { border-right: none !important; border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: none; }
}

/* ---------- Hakkımızda istatistik kutuları ---------- */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 30px 0 28px;
}
.about-stats .stat-box {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 16px;
  background: var(--white);
}
.about-stats .stat-box .stat-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 4px;
}
.about-stats .stat-box:nth-child(2) .stat-num,
.about-stats .stat-box:nth-child(4) .stat-num { color: var(--red); }
.about-stats .stat-box .stat-label { font-size: 12.5px; color: var(--gray); line-height: 1.4; }
@media (max-width: 700px) {
  .about-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Sektörler (koyu, ikon kartlı) ---------- */
.sectors-dark {
  background: linear-gradient(160deg, #0F1B3D 0%, #0A0F1F 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.sectors-dark::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(500px 280px at 85% 0%, rgba(111,168,255,0.14), transparent 70%);
  pointer-events: none;
}
.sectors-dark > .container { position: relative; z-index: 1; }
.sectors-dark .section-head .eyebrow { color: #FFD166; justify-content: center; }
.sectors-dark .section-head .eyebrow::before { background: #FFD166; }
.sectors-dark .section-head h2 { color: #FFFFFF; }
.sectors-dark .section-head p { color: rgba(255,255,255,0.68); }
.sector-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.sector-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 3px solid var(--accent, rgba(255,255,255,0.2));
  border-radius: 16px;
  padding: 30px 20px 26px;
  text-align: center;
  transition: background .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.sector-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.22);
  border-top-color: var(--accent, rgba(255,255,255,0.4));
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.04);
}
.sector-card .icon-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent-bg, rgba(255,255,255,0.08));
  color: var(--accent, #6FA8FF);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 0 0 1px var(--accent-glow, rgba(255,255,255,0.15)), 0 8px 20px var(--accent-glow, rgba(0,0,0,0.2));
}
.sector-card .icon-circle svg { width: 25px; height: 25px; }
.sector-card span.sector-name { display: block; font-size: 15px; font-weight: 700; color: #FFFFFF; line-height: 1.4; margin-bottom: 6px; }
.sector-card p.sector-desc { font-size: 12.5px; color: rgba(255,255,255,0.6); line-height: 1.5; margin: 0; }

.sector-card--amber   { --accent: #FFD166; --accent-bg: rgba(255,209,102,0.16); --accent-glow: rgba(255,209,102,0.22); }
.sector-card--blue    { --accent: #6FA8FF; --accent-bg: rgba(111,168,255,0.16); --accent-glow: rgba(111,168,255,0.22); }
.sector-card--red     { --accent: #FF6B6B; --accent-bg: rgba(255,107,107,0.16); --accent-glow: rgba(255,107,107,0.22); }
.sector-card--teal     { --accent: #4FD1C5; --accent-bg: rgba(79,209,197,0.16); --accent-glow: rgba(79,209,197,0.22); }
.sector-card--violet   { --accent: #A78BFA; --accent-bg: rgba(167,139,250,0.16); --accent-glow: rgba(167,139,250,0.22); }
.sector-card--green   { --accent: #4ADE80; --accent-bg: rgba(74,222,128,0.16); --accent-glow: rgba(74,222,128,0.22); }
@media (max-width: 900px) {
  .sector-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Sector strip ---------- */
.sector-strip {
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, #F5F7FD 0%, #FDF7ED 50%, #FBF1F1 100%);
}
.sector-strip .strip-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.sector-strip .strip-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.sector-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13.5px;
  font-weight: 600;
  border: none;
}
.sector-chip:nth-child(2) { background: var(--navy-light); color: var(--navy); }
.sector-chip:nth-child(3) { background: var(--red-light); color: var(--red); }
.sector-chip:nth-child(4) { background: var(--navy-light); color: var(--navy); }
.sector-chip:nth-child(5) { background: var(--red-light); color: var(--red); }
.sector-chip svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ---------- Section shared ---------- */
.section { padding: 60px 0; }
.section:first-child { padding-top: 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head .eyebrow { justify-content: center; }

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  background: var(--white);
  transition: border-color .25s, transform .25s, box-shadow .25s;
  overflow: hidden;
}
.service-card .card-index {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 46px;
  font-weight: 500;
  color: var(--gray-light);
  z-index: 0;
  line-height: 1;
}
.service-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { border-color: transparent; transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card .icon-box {
  position: relative;
  z-index: 1;
  width: 56px; height: 56px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--navy) 0%, #24308F 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: #FFFFFF;
  transition: transform .25s;
  box-shadow: 0 8px 18px rgba(30,58,138,0.28);
}
.service-card:nth-child(2) .icon-box { background: linear-gradient(135deg, var(--red) 0%, #8f0a10 100%); box-shadow: 0 8px 18px rgba(177,7,16,0.28); }
.service-card:nth-child(3) .icon-box { background: linear-gradient(135deg, var(--navy) 0%, #24308F 100%); box-shadow: 0 8px 18px rgba(30,58,138,0.28); }
.service-card:hover .icon-box { transform: scale(1.08) rotate(-4deg); }
.service-card .icon-box svg { width: 27px; height: 27px; }
.service-card h3 { margin-bottom: 12px; font-family: var(--font-display); font-weight: 600; font-size: 22px; }
.service-card p { font-size: 15px; margin-bottom: 20px; }
.service-card .card-link {
  color: var(--navy); font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .15s;
}
.service-card .card-link:hover { gap: 10px; }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
}
.services-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1080px) {
  .services-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-grid-4 { grid-template-columns: 1fr; }
}

.services-grid-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1200px) {
  .services-grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 780px) {
  .services-grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .services-grid-5 { grid-template-columns: 1fr; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: 76px 0 44px;
  background: linear-gradient(155deg, #EAF0FC 0%, #FDF3D9 50%, #FCE9EA 100%);
  overflow: hidden;
}
.page-hero .hero-blob.b1 { width: 320px; height: 320px; top: -160px; left: -80px; }
.page-hero .hero-blob.b2 { width: 280px; height: 280px; top: -120px; right: -100px; }
.page-hero > .container { position: relative; z-index: 1; }
.page-hero .breadcrumb {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 8px;
}
.page-hero .breadcrumb a { color: var(--red); font-weight: 500; }
.page-hero h1 { max-width: 780px; font-size: clamp(30px, 3.6vw, 44px); }
.page-hero p.lead { max-width: 700px; font-size: 17.5px; margin-bottom: 28px; }

/* ---------- In-page sub navigation ---------- */
.page-subnav {
  position: sticky;
  top: 88px;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.page-subnav .container {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-top: 4px; padding-bottom: 4px;
}
.page-subnav .container::-webkit-scrollbar { display: none; }
.page-subnav a {
  flex-shrink: 0;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray);
  padding: 14px 16px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color .15s, border-color .15s;
}
.page-subnav a:hover { color: var(--navy); }
.page-subnav a.is-active { color: var(--navy); border-bottom-color: var(--red); }

/* ---------- Content blocks ---------- */
.content-block { padding: 60px 0; }
.content-block.alt {
  background: linear-gradient(180deg, #F5F7FD 0%, #FBF1F1 100%);
  position: relative;
}
.content-block.alt::before, .content-block.alt::after {
  content: "";
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
}
.content-block.alt::before { top: 0; }
.content-block.alt::after { bottom: 0; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 700px) {
  .feature-grid { grid-template-columns: 1fr; }
}
.feature-item {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 26px 26px 30px;
  background: var(--white);
  transition: box-shadow .25s, border-color .25s, transform .25s;
}
.feature-item::before {
  content: "";
  position: absolute; left: 0; top: 26px; bottom: 26px;
  width: 3px; border-radius: 3px;
  background: var(--navy);
}
.feature-item:nth-child(3n+2)::before { background: var(--red); }
.feature-item:nth-child(3n+3)::before { background: #D4A72C; }
.feature-item:hover { box-shadow: var(--shadow); border-color: transparent; transform: translateY(-2px); }
.feature-item .icon-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy-light);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.feature-item:nth-child(3n+2) .icon-circle { background: var(--red-light); color: var(--red); }
.feature-item:nth-child(3n+3) .icon-circle { background: #FBF3DC; color: #B8860B; }
.feature-item .icon-circle svg { width: 19px; height: 19px; }
.feature-item h4 { font-size: 16.5px; margin-bottom: 8px; color: var(--dark); }
.feature-item p { font-size: 14.5px; margin: 0; }

/* ---------- Sayfa hero altı mini istatistik/vurgu şeridi ---------- */
.page-hero-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.page-hero-stats .mini-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: var(--shadow);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark);
}
.page-hero-stats .mini-item .icon-circle {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--navy-light);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.page-hero-stats .mini-item:nth-child(2) .icon-circle { background: var(--red-light); color: var(--red); }
.page-hero-stats .mini-item:nth-child(3) .icon-circle { background: #FBF3DC; color: #B8860B; }
.page-hero-stats .mini-item .icon-circle svg { width: 15px; height: 15px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: linear-gradient(150deg, #1E3A8A 0%, #2A3E9E 45%, #8B1220 85%, #B10710 100%);
  color: var(--white);
  padding: 56px 48px;
  text-align: center;
  border-radius: 24px;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(380px 220px at 5% 115%, rgba(255,255,255,0.12), transparent 70%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: #C7D3F0; max-width: 560px; margin: 0 auto 30px; }
.cta-band .btn-primary {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.cta-band .btn-primary:hover { background: #F0F3FC; transform: translateY(-2px); }

/* ---------- Contact / keşif ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; } }

.step-list { counter-reset: step; list-style: none; margin: 0; padding: 0; }
.step-list li {
  counter-increment: step;
  position: relative;
  padding-left: 52px;
  margin-bottom: 28px;
}
.step-list li::before {
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--navy-light);
  color: var(--navy);
  font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s;
}
.step-list li:nth-child(even)::before { background: var(--red-light); color: var(--red); }
.step-list li:hover::before { transform: scale(1.08); }
.step-list h4 { margin-bottom: 4px; font-size: 16.5px; }
.step-list p { margin: 0; font-size: 14.5px; }

.form-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 7px;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 9px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color .15s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--navy);
}
.form-row textarea { min-height: 110px; resize: vertical; }
.form-submit {
  width: 100%;
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 15px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background .15s;
}
.form-submit:hover { background: var(--red-dark); }

.form-feedback { margin-top: 16px; font-size: 14px; font-weight: 600; display: none; }
.form-feedback:not(:empty) { display: block; }
.form-feedback.is-success { color: #1a7f37; }
.form-feedback.is-error { color: var(--red); }

/* ---------- WhatsApp yüzen buton ---------- */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: transform .2s;
}
.whatsapp-float:hover { transform: scale(1.08); }
@media (max-width: 600px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}

/* ---------- Aşamalı lead popup'ı ---------- */
.hs-popup-launcher {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px 22px 14px 18px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(30,58,138,0.32);
  transition: transform .2s ease, background .2s ease, padding .35s ease, width .35s ease;
}
.hs-popup-launcher:hover { transform: translateY(-2px); background: var(--navy-dark); }
.hs-popup-launcher svg { width: 18px; height: 18px; flex-shrink: 0; }
.hs-popup-launcher-text {
  max-width: 200px;
  opacity: 1;
  transition: max-width .3s ease, opacity .2s ease, margin .3s ease;
  overflow: hidden;
}

/* Sayfa açıldıktan birkaç saniye sonra JS bu sınıfı ekleyip butonu
   küçük, sadece ikon gösteren bir daireye küçültür (sayfa içeriğiyle
   çakışmayı azaltmak için). */
.hs-popup-launcher.is-collapsed {
  padding: 0;
  width: 58px;
  height: 58px;
  justify-content: center;
  gap: 0;
}
.hs-popup-launcher.is-collapsed .hs-popup-launcher-text {
  max-width: 0;
  opacity: 0;
  margin: 0;
}

@media (max-width: 600px) {
  .hs-popup-launcher { right: 16px; bottom: 80px; }
  .hs-popup-launcher.is-collapsed { width: 52px; height: 52px; }
}

.hs-popup {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.hs-popup.is-open { display: flex; }
body.hs-popup-open { overflow: hidden; }

.hs-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,14,26,0.6);
  backdrop-filter: blur(2px);
  animation: hsFadeIn .2s ease;
}

.hs-popup-box {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 22px;
  width: 100%;
  max-width: 460px;
  max-height: 88vh;
  overflow-y: auto;
  padding: 40px 32px 32px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
  animation: hsPopIn .25s ease;
}
@keyframes hsFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes hsPopIn { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }

.hs-popup-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--gray-light);
  color: var(--gray);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
}
.hs-popup-close:hover { background: var(--red-light); color: var(--red); }

.hs-popup-progress {
  height: 4px;
  background: var(--gray-light);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 24px;
}
.hs-popup-progress-bar {
  display: block;
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--navy), var(--red));
  border-radius: 4px;
  transition: width .3s ease;
}

.hs-popup-step { display: none; }
.hs-popup-step.is-active { display: block; animation: hsFadeIn .25s ease; }
.hs-popup-step h3 { font-size: 24px; margin-bottom: 10px; }
.hs-popup-step p { font-size: 14.5px; margin-bottom: 20px; }
.hs-popup-question { font-size: 16.5px; font-family: 'Outfit', sans-serif; font-weight: 700; margin-bottom: 18px; color: var(--dark); }

.hs-popup-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}
.hs-popup-option {
  text-align: left;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  background: var(--white);
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  transition: border-color .15s, background .15s, transform .15s;
}
.hs-popup-option:hover { border-color: var(--navy); background: var(--navy-light); transform: translateX(2px); }

.hs-popup-hint { font-size: 12.5px; color: var(--gray); margin: -6px 0 12px; }

/* ---------- Takvim (uygun gün seçimi) ---------- */
.hs-calendar { margin-bottom: 6px; }
.hs-calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.hs-calendar-month-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  text-transform: capitalize;
}
.hs-calendar-arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--dark);
  font-size: 15px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, border-color .15s;
}
.hs-calendar-arrow:hover:not(:disabled) { background: var(--navy-light); border-color: var(--navy); }
.hs-calendar-arrow:disabled { opacity: .3; cursor: not-allowed; }

.hs-calendar-month { display: none; }
.hs-calendar-month.is-active { display: block; animation: hsFadeIn .2s ease; }

.hs-calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 6px;
}
.hs-calendar-weekdays span {
  text-align: center;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
}
.hs-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.hs-calendar-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 600;
}
.hs-calendar-cell.is-empty { visibility: hidden; }
.hs-calendar-cell.is-disabled {
  color: #D1D5DB;
  font-weight: 500;
}
button.hs-calendar-cell.hs-popup-option-check {
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--dark);
  cursor: pointer;
  transition: border-color .15s, background .15s, transform .15s, color .15s;
}
button.hs-calendar-cell.hs-popup-option-check:hover {
  border-color: var(--navy);
  background: var(--navy-light);
  transform: none;
}
button.hs-calendar-cell.hs-popup-option-check.is-selected {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
@media (max-width: 480px) {
  .hs-calendar-cell { font-size: 12.5px; border-radius: 7px; }
}

.hs-popup-option-check {
  display: flex;
  align-items: center;
  gap: 12px;
  transform: none !important;
}
.hs-popup-option-check:hover { transform: none; }
.hs-popup-checkbox {
  width: 20px; height: 20px;
  flex-shrink: 0;
  border-radius: 6px;
  border: 1.5px solid var(--border);
  background: var(--white);
  position: relative;
  transition: border-color .15s, background .15s;
}
.hs-popup-option-check.is-selected {
  border-color: var(--navy);
  background: var(--navy-light);
}
.hs-popup-option-check.is-selected .hs-popup-checkbox {
  background: var(--navy);
  border-color: var(--navy);
}
.hs-popup-option-check.is-selected .hs-popup-checkbox::after {
  content: "";
  position: absolute;
  left: 6px; top: 2px;
  width: 5px; height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.hs-popup-next {
  width: 100%;
  margin-top: 18px;
}
.hs-popup-next:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.hs-popup-optional { font-weight: 400; color: var(--gray); font-size: 12.5px; }
.hs-popup-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 9px;
  font-family: inherit;
  font-size: 14.5px;
  min-height: 76px;
  resize: vertical;
  transition: border-color .15s;
}
.hs-popup-form textarea:focus { outline: none; border-color: var(--navy); }

.hs-popup-back {
  margin-top: 16px;
  border: none;
  background: none;
  color: var(--gray);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}
.hs-popup-back:hover { color: var(--navy); }

.hs-popup-form .form-row { margin-bottom: 14px; }
.hs-popup-form-feedback { font-size: 13.5px; font-weight: 600; margin-bottom: 10px; display: none; }
.hs-popup-form-feedback:not(:empty) { display: block; }
.hs-popup-form-feedback.is-error { color: var(--red); }

.hs-popup-step-final { text-align: center; }
.hs-popup-success-icon {
  width: 60px; height: 60px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #E6F4EA;
  color: #1a7f37;
  display: flex; align-items: center; justify-content: center;
}
.hs-popup-success-icon svg { width: 30px; height: 30px; }

@media (max-width: 480px) {
  .hs-popup-box { padding: 32px 22px 24px; border-radius: 18px; }
  .hs-popup-step h3 { font-size: 21px; }
}

/* ---------- About mission/vision cards ---------- */
.info-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  padding: 36px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.info-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--red));
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.info-card .icon-box {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy) 0%, #24308F 100%);
  color: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 6px 16px rgba(30,58,138,0.25);
}
.info-card:nth-child(2) .icon-box { background: linear-gradient(135deg, var(--red) 0%, #8f0a10 100%); box-shadow: 0 6px 16px rgba(177,7,16,0.25); }

/* ---------- Görsel alanı (placeholder) — zarif, davetkar tasarım ---------- */
.image-slot {
  position: relative;
  width: 100%;
  border-radius: 28px;
  background: linear-gradient(155deg, #F0F4FD 0%, #FDF0F1 100%);
  border: 1.5px dashed rgba(30,58,138,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color .25s, background .25s;
}
.image-slot:hover {
  border-color: rgba(30,58,138,0.4);
}
.image-slot-inner {
  position: relative;
  text-align: center;
  padding: 40px;
}
.image-slot-inner .slot-icon {
  width: 60px; height: 60px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--red) 100%);
  display: flex; align-items: center; justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 10px 24px rgba(30,58,138,0.25), 0 0 0 6px rgba(255,255,255,0.6);
}
.image-slot-inner .slot-icon svg { width: 26px; height: 26px; }
.image-slot-inner .slot-title { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 6px; letter-spacing: -0.01em; }
.image-slot-inner .slot-meta { font-size: 12.5px; color: var(--gray); max-width: 260px; margin: 0 auto; line-height: 1.5; }

.image-slot.ratio-hero { aspect-ratio: 21 / 9; }
.image-slot.ratio-wide { aspect-ratio: 16 / 9; }
.image-slot.ratio-square { aspect-ratio: 1 / 1; }
.image-slot.ratio-portrait { aspect-ratio: 4 / 5; }

.image-slot.has-image { background: none; border: none; }
.image-slot.has-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 700px) {
  .image-slot.ratio-hero { aspect-ratio: 4 / 3; }
  .image-slot.ratio-portrait { aspect-ratio: 4 / 3; }
  .two-col { gap: 32px; }
  .content-block { padding: 44px 0; }
  .section { padding: 52px 0; }
}
/* Not: gizlenme durumu SADECE JS bunu .js-reveal ile işaretlediğinde devreye girer.
   JS çalışmazsa (hata, engelleme vb.) içerik varsayılan olarak görünür kalır. */
.js-reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .32s ease, transform .32s ease;
}
.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(160deg, #0F1B3D 0%, #0A0F1F 100%);
  color: #9AA3B8;
  padding: 56px 0 30px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr 0.9fr;
  gap: 32px;
  margin-bottom: 44px;
}
.footer-grid h4 { color: var(--white); font-size: 14px; margin-bottom: 18px; letter-spacing: 0.02em; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 12px; font-size: 14.5px; }
.footer-grid a { transition: color .15s; }
.footer-grid a:hover { color: var(--white); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #C7CEDC;
  transition: background .2s, color .2s, transform .2s;
}
.footer-social a:hover { background: var(--red); color: #fff; transform: translateY(-2px); }
.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
}
.footer-logo img {
  display: block;
  filter: brightness(0) invert(1);
}
.footer-bottom {
  border-top: 1px solid #23262C;
  padding-top: 26px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
