/* NGS Bilişim — Kurumsal */

:root {
  --navy: #152238;
  --navy-2: #1c2e4a;
  --blue: #0d6efd;
  --blue-light: #4d94ff;
  --blue-soft: rgba(13, 110, 253, 0.1);
  --bg: #ffffff;
  --white: #ffffff;
  --text: #1a1a2e;
  --muted: #5b6575;
  --line: rgba(21, 34, 56, 0.1);
  --font: "Montserrat", "Segoe UI", sans-serif;
  --max: 1180px;
  --header: 74px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 16px);
}
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16.5px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Topbar */
.topbar {
  background: #f3f5f8;
  color: #5b6575;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.42rem 0;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--line);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}
.topbar-left, .topbar-right {
  display: flex;
  gap: 1.1rem;
  align-items: center;
}
.topbar a:hover { color: var(--blue); }
.topbar .dot::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  margin-right: 0.4rem;
  vertical-align: 1px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header);
  display: flex;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.35s ease, background 0.35s ease;
}
.header.scrolled {
  box-shadow: 0 8px 28px rgba(10,26,58,0.08);
  background: rgba(255,255,255,0.97);
}
.header .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  background: transparent;
  padding: 0;
  border-radius: 0;
  flex-shrink: 0;
  grid-column: 1;
}
.logo-img {
  height: 38px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
}
.logo-footer {
  margin-bottom: 1rem;
  display: inline-flex;
  background: transparent;
  padding: 0;
  border-radius: 0;
}
.logo-footer .logo-img {
  height: 40px;
  max-width: 220px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem 1.75rem;
  grid-column: 2;
}
.nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  padding: 0.35rem 0;
  position: relative;
  white-space: nowrap;
  transition: color 0.25s ease;
}
.nav a:hover, .nav a.active { color: var(--navy); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.3s ease;
}
.nav a:hover::after,
.nav a.active::after { width: 100%; }

.nav > .nav-cta { display: none; }
.nav a.header-phone::after { display: none !important; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  grid-column: 3;
  justify-self: end;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}
.header-phone-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: none;
}
.header-phone-icon svg {
  width: 19px;
  height: 19px;
  display: block;
}
.header-phone:hover { color: var(--blue); }
.header-phone:hover .header-phone-icon { background: #0b5ed7; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.25rem;
  font-family: var(--font);
  font-weight: 650;
  font-size: 0.88rem;
  border: 1.5px solid transparent;
  border-radius: 40px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover {
  background: #156db8;
  box-shadow: 0 12px 26px rgba(26, 127, 212, 0.35);
}
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.45);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--navy-2);
  box-shadow: 0 12px 26px rgba(10, 26, 58, 0.28);
}

.nav-cta {
  padding: 0.55rem 1.05rem;
  font-size: 0.84rem;
}
.nav a.nav-cta::after,
.nav-cta::after { display: none !important; }

.menu-toggle {
  display: none;
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 6px;
}
.menu-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--navy);
}

/* Hero */
.hero, .page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  display: grid;
  align-items: center;
}
.hero { min-height: min(72vh, 640px); }
.hero.hero-home {
  min-height: min(78vh, 700px);
  overflow: hidden;
}
.hero.hero-home .hero-media {
  overflow: hidden;
  border-radius: 0;
  inset: 0;
}
.hero.hero-home .hero-media::after {
  background: rgba(12, 18, 32, 0.58);
}
.hero.hero-home .hero-content {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 5.5rem 0 5.25rem;
}
.hero.hero-home .hero-eyebrow {
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: none;
  font-size: 0.95rem;
}
.hero.hero-home h1 {
  font-size: clamp(2rem, 4.4vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero.hero-home p {
  margin-inline: auto;
  max-width: 58ch;
  color: rgba(255,255,255,0.88);
  font-size: 1.02rem;
}
.hero.hero-home .hero-actions { justify-content: center; }
.hero.hero-home .hero-meta { justify-content: center; border-top-color: rgba(255,255,255,0.18); }
.hero-curve {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 3;
  width: 100%;
  height: 72px;
  display: block;
  pointer-events: none;
}
.page-hero {
  min-height: 28vh;
  align-items: end;
}
.page-hero:has(img[src*="team.jpg"]) {
  display: none !important;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  will-change: transform;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(10,26,58,0.94) 0%, rgba(10,26,58,0.78) 42%, rgba(10,26,58,0.45) 100%);
}

.hero > .container,
.page-hero > .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 640px;
  padding: 3rem 0 2.75rem;
}
.page-hero .hero-content { padding: 2.75rem 0 2rem; }

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 1rem;
  animation: fadeUp 0.7s ease both;
}

.hero h1, .page-hero h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.55rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--white);
  animation: fadeUp 0.75s ease 0.08s both;
}

.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 48ch;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.75s ease 0.16s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: fadeUp 0.75s ease 0.24s both;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  animation: fadeUp 0.8s ease 0.36s both;
}
.hero-meta > div {
  position: relative;
  padding-top: 0.55rem;
}
.hero-meta > div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 2px;
  background: var(--blue);
  transform-origin: left;
  animation: lineGrow 0.7s ease 0.55s both;
}
.hero-meta strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}
.hero-meta span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

/* Sections */
.section {
  padding: 5.5rem 0;
  position: relative;
  scroll-margin-top: calc(var(--header) + 12px);
}
.section-alt {
  background: #f7f9fc;
}

.section-head {
  max-width: 580px;
  margin-bottom: 2.85rem;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.7rem;
}
.section-head h2, .section h2, .section h1 {
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.section-head p, .lead {
  color: var(--muted);
  font-size: 1.02rem;
}

/* Trust */
.trust {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  padding: 1.75rem 1.35rem;
  border-right: 1px solid var(--line);
  transition: background 0.35s ease, transform 0.35s ease;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover {
  background: linear-gradient(180deg, rgba(26,127,212,0.06), transparent);
}
.trust-item .label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #0f4f8f;
  margin-bottom: 0.5rem;
}
.trust-item strong {
  display: block;
  font-size: 0.98rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.trust-item span {
  font-size: 0.84rem;
  color: var(--muted);
}

/* Home services showcase — list + one dominant image */
.services-home .section-head { max-width: 640px; }
.svc-showcase {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(10, 26, 58, 0.06);
}
.svc-showcase-list {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 100%);
}
.svc-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  transition: background 0.35s ease, color 0.35s ease, padding 0.35s ease;
}
.svc-item:last-child { border-bottom: 0; }
.svc-num {
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  color: var(--muted);
  min-width: 1.6rem;
  transition: color 0.3s ease;
}
.svc-copy {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-width: 0;
}
.svc-copy strong {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}
.svc-copy span {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.4;
}
.svc-go {
  font-size: 1.15rem;
  color: var(--blue);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.svc-item:hover,
.svc-item.is-active {
  background: var(--white);
}
.svc-item.is-active {
  box-shadow: inset 3px 0 0 var(--blue);
}
.svc-item:hover .svc-go,
.svc-item.is-active .svc-go {
  opacity: 1;
  transform: none;
}
.svc-item.is-active .svc-num { color: var(--blue); }
.svc-item.is-active .svc-copy strong { color: var(--blue); }

.svc-showcase-media {
  position: relative;
  min-height: 520px;
  background: var(--navy);
  overflow: hidden;
}
.svc-showcase-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transform: scale(1.04);
  transition: opacity 0.45s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.svc-showcase-media img.is-switching {
  opacity: 0;
  transform: scale(1.08);
}
.svc-showcase-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 40%), rgba(61,180,255,0.22), transparent 42%),
    linear-gradient(90deg, rgba(10,26,58,0.22) 0%, transparent 35%),
    linear-gradient(180deg, transparent 45%, rgba(10,26,58,0.72) 100%);
  pointer-events: none;
  transition: background 0.15s ease;
}
.svc-showcase-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  color: #fff;
}
.svc-showcase-caption span {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.svc-showcase-caption .link {
  color: var(--blue-light);
  font-weight: 650;
  font-size: 0.9rem;
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.split-media {
  overflow: hidden;
  min-height: 400px;
  border-radius: 10px;
}
.split-media img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}
.feature-list {
  display: grid;
  gap: 1.15rem;
  margin-top: 1.75rem;
}
.feature-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0.85rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}
.feature-item:last-child { border-bottom: none; padding-bottom: 0; }
.feature-num {
  font-weight: 750;
  color: var(--blue);
  font-size: 1.05rem;
}
.feature-item h3 {
  font-size: 1.02rem;
  margin-bottom: 0.25rem;
  color: var(--navy);
}
.feature-item p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Sectors */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.95rem;
}
.sector {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  color: var(--white);
  border-radius: 10px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.45s ease;
}
.sector img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.sector:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(10, 26, 58, 0.18);
}
.sector:hover img { transform: scale(1.1); }
.sector-label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.35rem;
  background: linear-gradient(to top, rgba(10,26,58,0.94), transparent);
  z-index: 1;
}
.sector-label h3 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}
.sector-label p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}

/* Partners */
.partners {
  background: #0a1a3a;
  color: var(--white);
  padding: 4.75rem 0;
}
.partners .section-head h2 { color: var(--white); }
.partners .section-head p { color: rgba(255,255,255,0.55); }
.partner-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.25rem;
  width: 100%;
  max-width: 100%;
  overflow: visible;
  align-items: center;
}
.partner {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0.5rem;
  min-height: 72px;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  min-width: 0;
  overflow: visible;
  transition: transform 0.35s ease;
}
.partner:hover {
  transform: translateY(-3px);
}
.partner img {
  display: block;
  width: 140px;
  max-width: 100%;
  height: 40px;
  object-fit: contain;
  object-position: center;
  background: transparent !important;
  transition: transform 0.3s ease;
}
.partner:hover img {
  transform: scale(1.04);
}

/* Referanslar */
.refs-wrap {
  width: min(100% - 2rem, 1480px);
  margin-inline: auto;
}
.refs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}
.ref-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  text-align: center;
  color: var(--navy);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
a.ref-card:hover {
  transform: translateY(-6px);
  border-color: rgba(21, 101, 184, 0.28);
  box-shadow: 0 18px 40px rgba(10, 26, 58, 0.12);
}
.ref-card img {
  width: 100%;
  max-width: none;
  height: 320px;
  object-fit: cover;
  object-position: center;
  background: #eef2f7;
}
.ref-card span {
  font-size: 1.15rem;
  font-weight: 700;
  padding: 1.1rem 1rem 1.2rem;
}
.refs-copy {
  max-width: 760px;
  margin: 1.5rem auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.75;
}
.refs-copy p + p { margin-top: 0.85rem; }

.mt-lg { margin-top: 1.75rem; }
.contact-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.35rem;
}
.btn-submit-full {
  margin-top: 1.15rem;
  width: 100%;
}
.panel-actions-spaced { margin-top: 1.5rem; }
.btn-wa-full {
  margin-top: 0.75rem;
  width: 100%;
  justify-content: center;
}
.contact-card-follow { margin-top: 1rem; }
.section-head-left {
  text-align: left;
  max-width: none;
  margin-bottom: 1.5rem;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.process-step {
  padding: 0.25rem 0.15rem;
  transition: transform 0.35s ease;
}
.process-step:hover { transform: translateY(-4px); }
.process-step .num {
  font-size: 2.1rem;
  font-weight: 800;
  color: rgba(26,127,212,0.28);
  line-height: 1;
  margin-bottom: 0.9rem;
  transition: color 0.35s ease, transform 0.35s ease;
}
.process-step:hover .num {
  color: var(--blue);
  transform: translateX(2px);
}
.process-step h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.process-step p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* CTA */
.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: 5rem 0;
}
.cta-band .bg { position: absolute; inset: 0; }
.cta-band .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-band .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(10,26,58,0.94), rgba(10,26,58,0.7));
}
.cta-band > .container { position: relative; z-index: 2; }
.cta-inner { max-width: 540px; }
.cta-inner h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  color: var(--white);
}
.cta-inner p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 1.5rem;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Service detail (legacy rows kept for safety) */
.service-detail-grid { display: grid; gap: 1.25rem; }
.service-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}
.service-row.reverse { grid-template-columns: 1.1fr 0.9fr; }
.service-row.reverse .service-row-media { order: 2; }
.service-row-media { min-height: 280px; }
.service-row-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}
.service-row-body { padding: 2rem; }
.service-row-body h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 0.65rem;
}
.service-row-body p {
  color: var(--muted);
  margin-bottom: 1rem;
}
.service-row-body ul { display: grid; gap: 0.45rem; }
.service-row-body li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.service-row-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  background: var(--blue);
}

/* Service tabs — full-width segmented bar */
.services-tabs-section {
  padding-top: 3.5rem;
  scroll-margin-top: calc(var(--header) + 12px);
}
.service-tabs-wrap {
  margin-top: 0.75rem;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(10, 26, 58, 0.07);
}
.service-tabs {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  width: 100%;
  gap: 1px;
  padding: 0;
  margin: 0;
  background: rgba(10, 26, 58, 0.1);
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  overflow: hidden;
  isolation: isolate;
}
.service-tabs-indicator {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 0;
  background: linear-gradient(160deg, var(--navy) 0%, #163a6e 55%, #0f2a52 100%);
  box-shadow: inset 0 -3px 0 var(--blue);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
  pointer-events: none;
}
.service-tab {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  width: 100%;
  min-width: 0;
  min-height: 88px;
  border: 0;
  background: linear-gradient(180deg, #f8fbfe 0%, #eef3f9 100%);
  color: var(--muted);
  font-family: inherit;
  font-size: clamp(0.72rem, 1.05vw, 0.88rem);
  font-weight: 650;
  padding: 0.95rem 0.4rem;
  border-radius: 0;
  cursor: pointer;
  white-space: normal;
  transition: color 0.3s ease, background 0.3s ease;
}
.service-tab .tab-num {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0.55;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.service-tab .tab-label {
  display: block;
  line-height: 1.25;
  text-align: center;
  max-width: 11em;
}
.service-tab:hover {
  color: var(--navy);
  background: #fff;
}
.service-tab:hover .tab-num { opacity: 0.9; color: var(--blue); }
.service-tab.is-active {
  color: #fff;
  background: transparent;
}
.service-tab.is-active .tab-num {
  opacity: 0.8;
  color: var(--blue-light);
}
.service-panels {
  position: relative;
  min-height: 440px;
  width: 100%;
  background: var(--white);
  border-radius: 0 0 17px 17px;
  overflow: hidden;
}
.service-panel {
  display: none;
  flex-direction: column;
  width: 100%;
  background: var(--white);
  border: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
}
.service-panel.is-active {
  display: flex !important;
  flex-direction: column;
  animation: panelIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.service-panel.is-leaving {
  display: flex !important;
  flex-direction: column;
  animation: panelOut 0.28s ease both;
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.service-panel[hidden] { display: none !important; }
.service-panel.is-leaving[hidden] { display: flex !important; }
.service-panel-media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}
.service-panel-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,26,58,0.18), transparent 55%);
  pointer-events: none;
}
.service-panel-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-panel.is-active .service-panel-media img {
  animation: kenBurns 8s ease-in-out infinite alternate;
}
.service-panel-body {
  padding: clamp(1.6rem, 3vw, 2.6rem) clamp(1.4rem, 3vw, 2.8rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.panel-tag {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
  animation: fadeUp 0.45s ease both;
}
.service-panel-body h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 0.7rem;
}
.service-panel-body > p {
  color: var(--muted);
  margin-bottom: 1.15rem;
  max-width: 48ch;
}
.panel-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1rem;
  margin-bottom: 1.4rem;
}
.panel-features li {
  position: relative;
  padding: 0.55rem 0.65rem 0.55rem 1.55rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  background: linear-gradient(180deg, #f8fbff, #f3f7fc);
  border: 1px solid var(--line);
  border-radius: 10px;
  opacity: 0;
  transform: translateY(10px);
}
.service-panel.is-active .panel-features li {
  animation: featureIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.service-panel.is-active .panel-features li:nth-child(1) { animation-delay: 0.08s; }
.service-panel.is-active .panel-features li:nth-child(2) { animation-delay: 0.12s; }
.service-panel.is-active .panel-features li:nth-child(3) { animation-delay: 0.16s; }
.service-panel.is-active .panel-features li:nth-child(4) { animation-delay: 0.2s; }
.service-panel.is-active .panel-features li:nth-child(5) { animation-delay: 0.24s; }
.service-panel.is-active .panel-features li:nth-child(6) { animation-delay: 0.28s; }
.panel-features li::before {
  content: "";
  position: absolute;
  left: 0.65rem;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  transform: translateY(-50%);
  box-shadow: 0 0 0 3px var(--blue-soft);
}
.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.panel-actions .btn { min-height: 44px; }
.service-anchors { position: absolute; width: 0; height: 0; overflow: hidden; }

/* Long-form panel detail */
.service-panel-top {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  width: 100%;
}
.service-panel-top .service-panel-media { min-height: 320px; }
.service-panel-top .service-panel-media img { min-height: 320px; }
.panel-deep {
  padding: clamp(1.6rem, 3vw, 2.5rem) clamp(1.4rem, 3vw, 2.8rem) clamp(2rem, 3.5vw, 3rem);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #f7fafd 0%, #fff 100%);
}
.panel-deep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.5rem;
}
.panel-deep h4 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}
.panel-deep p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 0.85rem;
}
.panel-deep p:last-child { margin-bottom: 0; }

/* Prose / articles */
.prose {
  max-width: 72ch;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}
.prose.wide { max-width: none; }
.prose p { margin-bottom: 1.15rem; }
.prose h3 {
  color: var(--navy);
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
  letter-spacing: -0.02em;
}
.prose h4 {
  color: var(--navy);
  font-size: 1.05rem;
  margin: 1.5rem 0 0.55rem;
}
.prose ul {
  display: grid;
  gap: 0.45rem;
  margin: 0 0 1.25rem;
}
.prose li {
  position: relative;
  padding-left: 1.15rem;
  font-weight: 500;
  color: var(--text);
}
.prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  background: var(--blue);
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.insight-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(10, 26, 58, 0.08);
}
.insight-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.insight-body { padding: 1.35rem 1.4rem 1.5rem; }
.insight-body .meta {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.55rem;
}
.insight-body h3 {
  font-size: 1.12rem;
  color: var(--navy);
  margin-bottom: 0.55rem;
  letter-spacing: -0.02em;
  line-height: 1.35;
}
.insight-body p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1rem;
  line-height: 1.65;
}
.insight-body .link { font-weight: 650; color: var(--blue); font-size: 0.9rem; }

.article-block {
  padding: 2.75rem 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: calc(var(--header) + 16px);
}
.article-block:first-of-type { border-top: 0; padding-top: 0; }
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.85rem;
}
.article-block h2 {
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  max-width: 30ch;
}
.article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  align-items: start;
}
.article-aside {
  position: sticky;
  top: calc(var(--header) + 20px);
  padding: 1.35rem;
  background: linear-gradient(180deg, #f7fafd, #eef3f9);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.article-aside h4 {
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 0.65rem;
}
.article-aside p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.value-card {
  padding: 1.75rem 1.7rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  border-top: 3px solid var(--blue);
}
.value-card h3 {
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.value-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.98rem;
}

.approach-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}
.approach-points { display: grid; gap: 1.15rem; }
.approach-point h3 {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.approach-point p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.sector-detail {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.sector-detail article {
  padding: 1.5rem 1.45rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.sector-detail h3 {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.sector-detail p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.75rem;
  align-items: start;
}
.contact-info { display: grid; gap: 0.75rem; }
.contact-card {
  background: var(--white);
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
}
.contact-card h3 {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.35rem;
  font-weight: 700;
}
.contact-card p,
.contact-card a {
  font-size: 1.05rem;
  font-weight: 650;
  color: var(--navy);
}
.contact-card a:hover { color: var(--blue); }
.contact-form {
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--line);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
.form-group { display: grid; gap: 0.35rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: var(--bg);
  font-family: var(--font);
  font-size: 0.95rem;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-soft);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.map-section {
  width: 100%;
  margin: 0;
  background: #0a1a3a;
}
.map-embed {
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  border: 0;
  background: #0a1a3a;
  min-height: 0;
  padding: 0;
  display: block;
  color: var(--white);
  text-align: left;
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: min(70vh, 620px);
  min-height: 420px;
  border: 0;
}
.map-caption {
  padding: 1.1rem 1.25rem 1.25rem;
  background: var(--navy);
  color: var(--white);
}
.map-caption strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}
.map-caption p {
  margin: 0 0 0.65rem;
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
}
.map-caption a {
  color: var(--blue-light);
  font-weight: 600;
  font-size: 0.88rem;
}
.map-caption a:hover { text-decoration: underline; }

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.85rem;
  max-width: 820px;
}
.btn-icon {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}
.btn-wa {
  gap: 0.5rem;
}
.btn-outline.btn-wa:hover {
  color: #128c7e;
}
.btn-outline.btn-wa:hover .btn-icon {
  color: #25d366;
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 300;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  box-shadow: 0 0 12px rgba(26, 127, 212, 0.55);
  pointer-events: none;
  transition: width 0.05s linear;
}

/* Back to top */
.back-top {
  position: fixed;
  right: 1.35rem;
  bottom: 5.4rem;
  z-index: 199;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background 0.25s ease;
  box-shadow: 0 10px 24px rgba(10, 26, 58, 0.28);
}
.back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-top:hover { background: var(--blue); }
.back-top svg { width: 18px; height: 18px; }

/* FAQ accordion */
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.faq-item:hover {
  border-color: rgba(26, 127, 212, 0.35);
  box-shadow: 0 8px 22px rgba(10, 26, 58, 0.06);
}
.faq-item.open {
  border-color: rgba(26, 127, 212, 0.4);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.35rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  color: inherit;
}
.faq-q h3 {
  font-size: 1.02rem;
  color: var(--navy);
  margin: 0;
  font-weight: 700;
}
.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue-soft);
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--blue);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::before {
  width: 10px;
  height: 2px;
}
.faq-icon::after {
  width: 2px;
  height: 10px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq-item.open .faq-icon {
  background: rgba(26, 127, 212, 0.2);
  transform: rotate(180deg);
}
.faq-item.open .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item.open .faq-a {
  max-height: 220px;
}
.faq-a p {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.65;
  padding: 0 1.35rem 1.2rem;
  margin: 0;
}

.detail-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.detail-chips span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 0.35rem 0.7rem;
}

.coverage {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2rem 0;
}
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.coverage-item {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  clip-path: none !important;
}
.coverage-item h3 {
  font-size: 1rem;
  color: #0a1a3a;
  margin-bottom: 0.35rem;
  font-weight: 700;
}
.coverage-item p {
  font-size: 0.9rem;
  color: #334155;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
  margin-top: 2rem;
}
.stat {
  background: var(--bg);
  padding: 1.15rem;
  text-align: center;
  border: 1px solid var(--line);
}
.stat strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--blue);
}
.stat span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Footer */
.footer {
  background-color: #f3f5f8;
  background-image: radial-gradient(rgba(13, 110, 253, 0.08) 1.15px, transparent 1.15px);
  background-size: 16px 16px;
  color: var(--muted);
  padding: 4.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1.1fr 1.2fr;
  gap: 2.5rem 2rem;
  padding-bottom: 3rem;
}
.footer p {
  font-size: 0.95rem;
  max-width: 40ch;
  line-height: 1.75;
}
.footer h4,
.footer .footer-title {
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 1.15rem;
}
.footer .footer-title::before {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  background: var(--blue);
  margin-bottom: 0.7rem;
  border-radius: 2px;
}
.footer ul { display: grid; gap: 0.55rem; font-size: 0.95rem; }
.footer a { color: var(--muted); }
.footer a:hover { color: var(--blue); }
.footer-call {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.15rem;
  background: var(--blue);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.72rem 1.2rem;
  border-radius: 40px;
  box-shadow: 0 10px 22px rgba(13, 110, 253, 0.25);
}
.footer-call svg {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
}
.footer-contact-list { gap: 1rem; }
.footer-contact-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.65rem;
  align-items: start;
}
.footer-ico {
  color: var(--blue);
  margin-top: 0.15rem;
}
.footer-contact-list strong {
  display: block;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.12rem;
}
.footer-menu-grid {
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.25rem;
}
.footer-bottom {
  background: #1a1d24;
  color: rgba(255,255,255,0.72);
  padding: 0.95rem 0;
  font-size: 0.8rem;
}
.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom a { color: rgba(255,255,255,0.78); }
.footer-bottom a:hover { color: #fff; }

.wa-float {
  position: fixed;
  left: 1.15rem;
  right: auto;
  bottom: 1.15rem;
  z-index: 200;
  width: auto;
  height: auto;
  min-height: 52px;
  border-radius: 40px;
  padding: 0.45rem 1.05rem 0.45rem 0.5rem;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  box-shadow: 0 10px 28px rgba(37,211,102,0.4);
  animation: waPulse 2.6s ease-in-out infinite;
  transition: transform 0.3s ease;
  font-weight: 700;
  font-size: 0.82rem;
}
.wa-float:hover {
  transform: scale(1.05);
  animation: none;
}
.wa-float svg { width: 28px; height: 28px; flex-shrink: 0; }
.wa-float-label { white-space: nowrap; }

/* ===== Motion ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInBlur {
  from { opacity: 0; filter: blur(8px); transform: translateY(18px); }
  to { opacity: 1; filter: blur(0); transform: translateY(0); }
}
@keyframes lineGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 12px 36px rgba(37,211,102,0.65), 0 0 0 12px rgba(37,211,102,0.12); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes shine {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
@keyframes clipReveal {
  from { clip-path: inset(0 0 100% 0); opacity: 0.4; }
  to { clip-path: inset(0 0 0 0); opacity: 1; }
}
@keyframes partnerDrift {
  from { transform: translateY(12px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes panelIn {
  from { opacity: 0; transform: translateY(22px) scale(0.985); }
  to { opacity: 1; transform: none; }
}
@keyframes panelOut {
  from { opacity: 1; transform: none; }
  to { opacity: 0; transform: translateY(-10px) scale(0.99); }
}
@keyframes featureIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
@keyframes kenBurns {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.65; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes riseSoft {
  from { opacity: 0; transform: translateY(40px) rotate(-0.4deg); }
  to { opacity: 1; transform: none; }
}
@keyframes glowSweep {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-28px); }
  to { opacity: 1; transform: none; }
}
@keyframes slideRotate {
  from { opacity: 0; transform: translateY(28px) rotate(-2deg); }
  to { opacity: 1; transform: none; }
}
@keyframes zoomOut {
  from { opacity: 0; transform: scale(1.12); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes flipIn {
  from { opacity: 0; transform: perspective(800px) rotateX(18deg) translateY(20px); }
  to { opacity: 1; transform: none; }
}
@keyframes wipeRight {
  from { opacity: 0; clip-path: inset(0 100% 0 0); }
  to { opacity: 1; clip-path: inset(0 0 0 0); }
}
@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.86) translateY(24px); }
  60% { opacity: 1; transform: scale(1.03) translateY(-4px); }
  100% { opacity: 1; transform: none; }
}
@keyframes wordPop {
  from { opacity: 0; transform: translateY(0.6em); }
  to { opacity: 1; transform: none; }
}
@keyframes underlineGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(12px, -18px); }
}
@keyframes imagePop {
  from { opacity: 0; transform: scale(1.15); filter: blur(6px); }
  to { opacity: 1; transform: scale(1); filter: none; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.85s ease,
              clip-path 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
  filter: none;
  clip-path: none;
}
.reveal-left { transform: translateX(-48px); }
.reveal-right { transform: translateX(48px); }
.reveal-up { transform: translateY(40px); }
.reveal-down { transform: translateY(-32px); }
.reveal-scale { transform: scale(0.9); }
.reveal-blur { filter: blur(10px); transform: translateY(22px); }
.reveal-rotate { transform: translateY(24px) rotate(-2.5deg); }
.reveal-zoom { transform: scale(1.1); filter: blur(4px); }
.reveal-flip { transform: perspective(900px) rotateX(16deg) translateY(18px); }
.reveal-wipe { clip-path: inset(0 85% 0 0); }
.reveal-bounce { transform: scale(0.88) translateY(20px); }

.reveal-left.visible,
.reveal-right.visible,
.reveal-up.visible,
.reveal-down.visible,
.reveal-scale.visible,
.reveal-rotate.visible,
.reveal-zoom.visible,
.reveal-flip.visible,
.reveal-bounce.visible { transform: none; filter: none; }
.reveal-wipe.visible { clip-path: inset(0 0 0 0); }

.reveal[data-delay="1"] { transition-delay: 0.06s; }
.reveal[data-delay="2"] { transition-delay: 0.12s; }
.reveal[data-delay="3"] { transition-delay: 0.18s; }
.reveal[data-delay="4"] { transition-delay: 0.24s; }
.reveal[data-delay="5"] { transition-delay: 0.3s; }
.reveal[data-delay="6"] { transition-delay: 0.36s; }
.reveal[data-delay="7"] { transition-delay: 0.42s; }
.reveal[data-delay="8"] { transition-delay: 0.48s; }

/* Extra motion polish */
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(120deg, transparent 30%, rgba(61,180,255,0.12) 50%, transparent 70%);
  background-size: 200% 200%;
  animation: shine 8s ease-in-out infinite alternate;
  pointer-events: none;
}
.hero-content .hero-word {
  display: inline-block;
  opacity: 0;
  animation: wordPop 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-content h1 .hero-word:nth-child(1) { animation-delay: 0.12s; }
.hero-content h1 .hero-word:nth-child(2) { animation-delay: 0.18s; }
.hero-content h1 .hero-word:nth-child(3) { animation-delay: 0.24s; }
.hero-content h1 .hero-word:nth-child(4) { animation-delay: 0.3s; }
.hero-content h1 .hero-word:nth-child(5) { animation-delay: 0.36s; }
.hero-content h1 .hero-word:nth-child(6) { animation-delay: 0.42s; }
.hero-content h1 .hero-word:nth-child(7) { animation-delay: 0.48s; }
.hero-content h1 .hero-word:nth-child(8) { animation-delay: 0.54s; }
.hero-content h1 .hero-word:nth-child(n + 9) { animation-delay: 0.6s; }

.section-head h2 {
  position: relative;
  display: inline-block;
}
.section-head.reveal.visible h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 0.65rem;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform-origin: left;
  animation: underlineGrow 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.sector.visible { animation: bounceIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) both; }
.svc-showcase.visible { animation: fadeInBlur 0.85s cubic-bezier(0.22, 1, 0.36, 1) both; }
.insight-card.visible { animation: flipIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) both; }
.partner.visible { animation: partnerDrift 0.65s cubic-bezier(0.22, 1, 0.36, 1) both; }
.faq-item.visible { animation: slideRotate 0.65s cubic-bezier(0.22, 1, 0.36, 1) both; }
.trust-item.visible { animation: bounceIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both; }
.value-card.visible { animation: wipeRight 0.8s cubic-bezier(0.22, 1, 0.36, 1) both; }
.article-card.visible,
.article-block.visible { animation: fadeInBlur 0.75s ease both; }

.process-step.visible .num { animation: fadeUp 0.6s ease both; }
.process-step {
  position: relative;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.process-step:hover { transform: translateY(-8px) scale(1.02); }
.process-step.visible { animation: riseSoft 0.7s cubic-bezier(0.22, 1, 0.36, 1) both; }

.split-media.reveal.visible img,
.service-panel-media img,
.svc-showcase-media img {
  animation: imagePop 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.wa-float {
  animation: waPulse 2.6s ease-in-out infinite, floatSoft 3.2s ease-in-out infinite;
}
.btn-primary,
.btn-dark,
.btn-outline {
  position: relative;
  overflow: hidden;
}
.btn-primary::after,
.btn-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}
.btn-primary:hover::after,
.btn-dark:hover::after { transform: translateX(120%); }

.coverage-item {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.coverage-item:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 14px 30px rgba(10, 26, 58, 0.08);
}

.cta-band .reveal.visible {
  animation: scaleIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.svc-item {
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
.svc-item:hover { transform: translateX(4px); }
.svc-item.is-active { transform: translateX(6px); }

.service-tab {
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.service-tab:hover { transform: translateY(-3px); }
.service-tab.is-active { transform: none; }

.insight-card:hover img {
  transform: scale(1.06);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.insight-card img { transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }

.orb {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,180,255,0.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: floatOrb 7s ease-in-out infinite;
}
.orb-a { top: 10%; right: 8%; animation-delay: 0s; }
.orb-b { bottom: 15%; left: 6%; width: 140px; height: 140px; animation-delay: -2.5s; }

.section > .container,
.partners > .container,
.cta-band > .container { position: relative; z-index: 1; }

.split-media,
.service-row-media {
  overflow: hidden;
  border-radius: 10px;
}
.split-media img,
.service-row-media img {
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.split:hover .split-media img,
.service-row:hover .service-row-media img {
  transform: scale(1.05);
}

.page-hero .hero-eyebrow,
.page-hero h1 {
  animation: fadeInBlur 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.page-hero h1 { animation-delay: 0.12s; }

.eyebrow {
  background: linear-gradient(90deg, var(--blue), var(--blue-light), var(--blue));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: glowSweep 4s linear infinite;
}

.trust-item {
  transition: transform 0.35s ease, background 0.35s ease;
}
.trust-item:hover { transform: translateY(-3px); }
.trust-item .dot,
.topbar .dot::before {
  animation: pulseDot 2.4s ease-in-out infinite;
}

.section-head h2 {
  transition: letter-spacing 0.4s ease;
}


.stat strong {
  display: inline-block;
}
.stat.counting strong {
  animation: pulseDot 0.35s ease;
}

.nav a {
  position: relative;
}
.back-top.show {
  animation: fadeUp 0.35s ease both;
}

.link {
  position: relative;
}
.link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.35s ease;
}
.link:hover::after { width: 100%; }

.sector {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}
.sector:hover { transform: translateY(-8px) scale(1.01); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal,
  .reveal-wipe,
  .reveal-blur,
  .reveal-zoom {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
  }
  .hero-media img { transform: none !important; }
  .wa-float { animation: none; }
  .scroll-progress { display: none; }
  .service-panel.is-active .service-panel-media img { animation: none; }
  .eyebrow { animation: none; color: var(--blue); background: none; }
  .orb { display: none; }
  .hero-content .hero-word { opacity: 1; animation: none; }
}

@media (max-width: 980px) {
  .trust-grid, .sectors-grid,
  .process-grid, .stats, .footer-grid, .coverage-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .refs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ref-card img { height: 220px; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--line); }
  .split, .contact-grid, .service-row, .service-row.reverse,
  .service-panel-top, .svc-showcase,
  .panel-deep-grid, .insight-grid, .value-grid,
  .approach-band, .sector-detail, .article-layout { grid-template-columns: 1fr; }
  .svc-showcase-list { border-right: 0; border-top: 1px solid var(--line); order: 2; }
  .svc-showcase-media { order: 1; }
  .svc-showcase-media,
  .svc-showcase-media img { min-height: 280px; }
  .service-row.reverse .service-row-media { order: 0; }
  .service-panel-media,
  .service-panel-media img { min-height: 240px; }
  .service-panel-body { padding: 1.5rem; }
  .panel-features { grid-template-columns: 1fr; }
  .article-aside { position: static; }
  .service-tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .service-tab {
    min-height: 70px;
    padding: 0.85rem 0.3rem;
  }
  .service-tabs-indicator { display: none; }
  .service-tab.is-active {
    background: linear-gradient(160deg, var(--navy), #163a6e);
    color: #fff;
  }
  .service-tab.is-active .tab-num { color: var(--blue-light); }
}

@media (max-width: 780px) {
  .menu-toggle { display: flex; }
  .logo-img { height: 32px; max-width: 160px; }
  .header .container {
    grid-template-columns: 1fr auto;
  }
  .header-actions {
    grid-column: 2;
  }
  .header-actions .nav-cta { display: none; }
  .nav {
    position: fixed;
    inset: calc(var(--header) + 28px) 0 auto 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    grid-column: 1 / -1;
    padding: 0.65rem 1.1rem 1.1rem;
    gap: 0;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 99;
  }
  .nav.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav a {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--line);
  }
  .nav a.active::after { display: none; }
  .header-actions .nav-cta { display: none; }
  .nav > .nav-cta {
    margin: 0.75rem 0 0;
    width: auto;
    justify-content: flex-start;
    display: inline-flex !important;
  }
  .wa-float-label { display: none; }
  .wa-float {
    padding: 0.55rem;
    width: 54px;
    height: 54px;
    min-height: 54px;
    justify-content: center;
    border-radius: 50%;
  }
  .topbar-right { display: none; }
  .header-phone-num { display: none; }
  .form-grid { grid-template-columns: 1fr; }
}

/* Bilgi Merkezi */
.article-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.article-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(10, 26, 58, 0.1);
}
.article-card-media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.article-card:hover .article-card-media img { transform: scale(1.05); }
.article-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.65rem;
}
.article-card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}
.article-card-body h3 {
  font-size: 1.12rem;
  color: var(--navy);
  line-height: 1.35;
}
.article-card-body p {
  font-size: 0.92rem;
  color: var(--muted);
  flex: 1;
}
.article-card-link {
  font-size: 0.88rem;
  font-weight: 650;
  color: var(--blue);
  margin-top: 0.35rem;
}
.article-card-link:hover { color: var(--navy); }
.article-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  scroll-margin-top: calc(var(--header) + 24px);
}
.article-block:last-child { margin-bottom: 0; }
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}
.article-meta .tag {
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}
.article-block > h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--navy);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}
.prose h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin: 2rem 0 0.85rem;
}
.prose h3:first-child { margin-top: 0; }
.prose p {
  color: var(--muted);
  margin-bottom: 1.1rem;
  font-size: 0.98rem;
  line-height: 1.75;
}
.prose p:last-child { margin-bottom: 0; }
.prose ul {
  margin: 0.75rem 0 1.25rem;
  display: grid;
  gap: 0.45rem;
}
.prose li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
}
.prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
}
.bilgi-intro .lead + .lead { margin-top: 1.15rem; }

@media (max-width: 980px) {
  .article-cards-grid { grid-template-columns: 1fr; }
  .article-block { padding: 1.75rem; }
}

@media (max-width: 560px) {
  .trust-grid, .sectors-grid,
  .process-grid, .stats, .footer-grid, .coverage-grid { grid-template-columns: 1fr; }
  .partner-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .refs-grid { grid-template-columns: 1fr; }
  .ref-card img { height: 240px; }
  .map-embed iframe { height: 52vh; min-height: 320px; }
  .section { padding: 3.75rem 0; }
  .split-media, .split-media img { min-height: 260px; }
  .service-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-tab { min-height: 64px; }
  .service-tab .tab-num { font-size: 0.62rem; }
}

/* Service landing pages */
.crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.85rem;
}
.crumb a { color: rgba(255,255,255,0.85); }
.crumb a:hover { color: #fff; }
.page-hero .hero-lead {
  max-width: 38rem;
  margin: 0.85rem 0 1.25rem;
  color: rgba(255,255,255,0.82);
  font-size: 1.02rem;
  line-height: 1.6;
}
.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.8fr);
  gap: 2rem;
  align-items: start;
}
.service-detail-side .side-links {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.75rem;
  font-size: 0.92rem;
}
.service-detail-side .side-links a:hover { color: var(--blue); }
@media (max-width: 900px) {
  .service-detail { grid-template-columns: 1fr; }
}

/* İçerik koruma (formlar hariç) */
.protect-content {
  -webkit-user-select: none;
  user-select: none;
}
.protect-content input,
.protect-content textarea,
.protect-content select,
.protect-content [contenteditable="true"] {
  -webkit-user-select: text;
  user-select: text;
}
.protect-content img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: auto;
}
