:root {
  --color-bg: #ffffff;
  --color-surface: #f8f9fc;
  --color-border: #e8ebf2;
  --color-text: #1a1d26;
  --color-muted: #5c6370;
  --color-primary: #2563eb;
  --color-primary-dark: #1d4ed8;
  --color-accent: #7c3aed;
  --color-dark: #111827;
  --color-brand: #059669;
  --gradient-hero: linear-gradient(135deg, #eef2ff 0%, #f5f3ff 40%, #ecfeff 100%);
  --gradient-banner: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
  --gradient-integration: linear-gradient(160deg, #312e81 0%, #4c1d95 40%, #0e7490 100%);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 8px 30px rgba(17,24,39,.08);
  --shadow-lg: 0 20px 60px rgba(17,24,39,.12);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 16px;
  --header-h: 88px;
  --header-float-h: 64px;
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --container: 1200px;
  --header-offset: 118px;
  --hero-video-opacity: 0.7;
  --hero-video-opacity-mobile: 0.7;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
h1,h2,h3,h4 { line-height: 1.2; margin: 0 0 .75rem; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  background: var(--color-dark); color: #fff; padding: .75rem 1rem;
}
.skip-link:focus { left: 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .65rem 1.25rem; border-radius: 999px; font-weight: 600; font-size: .9375rem;
  border: 2px solid transparent; cursor: pointer; text-decoration: none !important;
  transition: all .2s ease;
}
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-dark { background: var(--color-dark); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-outline { background: #fff; color: var(--color-text); border-color: var(--color-border); }
.btn-outline:hover { border-color: var(--color-primary); color: var(--color-primary); }
.btn-light { background: #fff; color: var(--color-primary); }
.btn-light:hover { box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--color-muted); border-color: transparent; }
.btn-ghost:hover { color: var(--color-primary); }
.btn-sm { padding: .45rem .9rem; font-size: .8125rem; }
.btn-lg { padding: .85rem 1.75rem; font-size: 1rem; }

.utility-bar {
  background: #2b2b2b;
  font-size: .8125rem;
}
.utility-inner {
  display: flex; align-items: center; justify-content: flex-end;
  min-height: 34px;
}
.utility-links { display: flex; align-items: center; gap: 1.5rem; }
.utility-links a {
  color: rgba(255,255,255,.88); text-decoration: none;
  font-weight: 500; transition: color .15s;
}
.utility-links a:hover { color: #fff; text-decoration: none; }

/* Floating header shell (Netgsm style) */
.header-shell {
  position: sticky; top: 0; z-index: 200;
  background: #fff;
}
.header-float-wrap {
  padding: .65rem 0 .75rem;
}
.header-float {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: var(--header-float-h);
  padding: .5rem 1.25rem .5rem 1rem;
  background: #fff;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 24px rgba(17,24,39,.08), 0 1px 3px rgba(17,24,39,.04);
  border: 1px solid rgba(0,0,0,.04);
  position: relative;
  overflow: visible;
}
.site-nav {
  flex: 1; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-width: 0; overflow: visible;
  position: relative;
}
.header-actions { overflow: visible; }

.brand--netgsm {
  display: flex; align-items: center; gap: .65rem;
  text-decoration: none !important; color: inherit; flex-shrink: 0;
}
.brand--logo .brand-logo {
  display: block;
  height: 42px;
  width: auto;
  max-width: min(200px, 42vw);
  object-fit: contain;
  object-position: left center;
}
.brand-mark--dark {
  width: 36px; height: 36px; border-radius: 8px;
  background: #111827; color: var(--color-brand);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.125rem;
}
.brand-name {
  font-size: 1.375rem; font-weight: 800; letter-spacing: -.02em;
  color: var(--color-text); line-height: 1;
}
.brand-sep {
  width: 1px; height: 28px; background: #d1d5db; margin: 0 .15rem;
}
.brand-tagline {
  display: flex; flex-direction: column; line-height: 1.15;
  font-size: .6875rem; font-weight: 500; color: #9ca3af;
  letter-spacing: .01em;
}

.site-header { display: none; }

.brand {
  display: flex; align-items: center; gap: .75rem; text-decoration: none !important; color: inherit;
}
.brand-mark {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--color-brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.25rem;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-size: 1.125rem; }
.brand-text span { font-size: .75rem; color: var(--color-muted); }

.menu-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: .5rem; cursor: pointer;
}
.menu-btn span {
  display: block; width: 22px; height: 2px; background: var(--color-text);
  transition: .2s;
}

.menu--netgsm {
  display: flex; align-items: center; gap: .15rem; list-style: none; margin: 0; padding: 0;
  flex: 1; justify-content: center;
}
.menu-link {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .55rem .75rem; border: none; background: none;
  font: inherit; font-weight: 600; font-size: .9375rem;
  color: var(--color-text); cursor: pointer; border-radius: 8px;
  text-decoration: none !important; white-space: nowrap;
}
.menu-link:hover, .menu-link.is-active { color: var(--color-text); background: transparent; }
.menu-link--toggle:hover { background: #f3f4f6; }
.menu-arrow { opacity: .45; margin-top: 1px; }

.header-actions {
  display: flex; align-items: center; gap: .5rem; flex-shrink: 0;
}
.header-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  padding: .55rem 1rem; border-radius: 10px;
  font: inherit; font-weight: 600; font-size: .875rem;
  cursor: pointer; text-decoration: none !important;
  white-space: nowrap; transition: all .15s ease;
  border: 1.5px solid transparent;
}
.header-btn--outline {
  background: #fff; color: var(--color-text);
  border-color: #e5e7eb;
}
.header-btn--outline:hover { border-color: #d1d5db; background: #f9fafb; }
.header-btn--dark {
  background: #111827; color: #fff; border-color: #111827;
}
.header-btn--dark:hover { background: #000; border-color: #000; }

.menu-item--action-drop { position: relative; z-index: 1; }
.menu-item--action-drop.is-open { z-index: 220; }
.menu-drop--action {
  min-width: 240px;
  left: auto;
  right: 0;
  padding-top: 8px;
  z-index: 230;
}
.menu-drop--action .menu-drop-panel {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(17, 24, 39, 0.14), 0 4px 12px rgba(17, 24, 39, 0.08);
  padding: .5rem;
  overflow: hidden;
}
.menu-drop--action .menu-drop-list { margin: 0; padding: 0; }
.menu-drop--action .menu-drop-list li { margin: 0; }
.menu-drop--action .menu-drop-list a {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .7rem .85rem;
  border-radius: 10px;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--color-text);
  transition: background .15s, color .15s;
}
.menu-drop--action .menu-drop-list a:hover {
  background: #f3f4f6;
  color: var(--color-primary);
}
.menu-drop--action .menu-drop-list li + li a {
  margin-top: 2px;
}
.menu-drop--action .menu-drop-list a[href^="tel:"]::before {
  content: '📞';
  font-size: 1rem;
  line-height: 1;
}
.menu-drop--action .menu-drop-list a[href*="contact"]::before,
.menu-drop--action .menu-drop-list a[href*="teklif"]::before {
  content: '📝';
  font-size: 1rem;
  line-height: 1;
}
.menu-drop--action .menu-drop-list a[href^="mailto:"]::before {
  content: '✉️';
  font-size: 1rem;
  line-height: 1;
}
.menu-item--action-drop.is-open .header-btn--outline {
  border-color: var(--color-primary);
  background: #f0f4ff;
}
.menu-item--action-drop::after {
  content: ''; position: absolute; left: 0; right: 0; top: 100%; height: 12px; z-index: 101;
}

.menu-item--actions { display: none; }

.menu-item { position: relative; }
.menu-item--mega { position: static; }
.menu-item--drop::after {
  content: '';
  position: absolute;
  left: -12px;
  right: -12px;
  top: 100%;
  height: 14px;
  z-index: 101;
}
.menu-drop {
  position: absolute; top: 100%; left: 0; z-index: 102;
  min-width: 260px;
  padding-top: 10px;
  background: transparent;
  border: none;
  box-shadow: none;
  opacity: 0; visibility: hidden; transform: translateY(4px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  pointer-events: none;
}
.menu-drop-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); border: 1px solid var(--color-border);
  padding: 1rem;
}
.menu-item--drop:hover .menu-drop,
.menu-item--drop.is-open .menu-drop { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.menu-drop--wide { min-width: 480px; }
.menu-drop h4 { font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; color: var(--color-muted); margin: 0 0 .75rem; }
.menu-drop-list { list-style: none; }
.menu-drop-list li { margin-bottom: .35rem; }
.menu-drop-list a { color: var(--color-text); text-decoration: none; font-size: .9rem; display: block; padding: .35rem 0; }
.menu-drop-list a:hover { color: var(--color-primary); }
.menu-drop-list--grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 .5rem; }

.mega-menu {
  position: absolute; top: 100%; left: 50%; z-index: 102;
  transform: translateX(-50%) translateY(4px);
  width: min(920px, calc(100vw - 2rem));
  padding-top: 12px;
  background: transparent;
  border: none;
  box-shadow: none;
  opacity: 0; visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  pointer-events: none;
}
.menu-item--mega:hover .mega-menu,
.menu-item--mega.is-open .mega-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto;
}
.mega-menu-inner {
  display: grid; grid-template-columns: 280px 1fr; min-height: 380px;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); border: 1px solid var(--color-border);
}
.mega-categories { list-style: none; border-right: 1px solid var(--color-border); padding: .5rem; margin: 0; }
.mega-cat-btn {
  display: flex; align-items: center; gap: .75rem; width: 100%;
  padding: .75rem; border: none; background: none; border-radius: 10px;
  cursor: pointer; text-align: left; font: inherit; transition: .15s;
}
.mega-cat-btn:hover, .mega-cat-btn.is-active { background: #f0f4ff; }
.mega-cat-icon { font-size: 1.25rem; flex-shrink: 0; }
.mega-cat-text { flex: 1; min-width: 0; }
.mega-cat-text strong { display: block; font-size: .875rem; }
.mega-cat-text small { display: block; font-size: .75rem; color: var(--color-muted); margin-top: 2px; }
.mega-panels { padding: 1.25rem; position: relative; }
.mega-panel { display: none; }
.mega-panel.is-active { display: block; animation: fadeIn .2s ease; }
.mega-panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.mega-panel-link {
  display: block; padding: .75rem 1rem; border-radius: 10px;
  color: var(--color-text); text-decoration: none !important; transition: .15s;
}
.mega-panel-link:hover { background: var(--color-surface); color: var(--color-primary); }
.mega-panel-link strong { font-size: .875rem; font-weight: 500; }
.mega-panel-footer { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--color-border); }
.mega-cta {
  display: inline-flex; padding: .5rem 1rem; background: var(--color-surface);
  border-radius: 999px; font-size: .875rem; font-weight: 600; color: var(--color-primary);
  text-decoration: none !important;
}
.mega-cta:hover { background: #eef2ff; }

/* Solutions mega menu */
.mega-menu--solutions {
  width: min(1080px, calc(100vw - 2.5rem));
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: transparent;
  border: none;
  box-shadow: none;
  padding-top: 12px;
}
.menu-item--solutions:hover .mega-menu,
.menu-item--solutions.is-open .mega-menu {
  transform: translateX(-50%) translateY(0);
}
.mega-menu--solutions .solutions-mega-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
  gap: 0;
  background: #fff;
  border-radius: 1.125rem 1.125rem 0 0;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  border-bottom: none;
  overflow: hidden;
}
.mega-menu--solutions .solutions-mega-col {
  padding: 1.75rem 1.75rem 1.5rem;
}
.mega-menu--solutions .solutions-mega-col--need {
  border-right: 1px solid var(--color-border);
  background: #fafbfc;
}
.mega-menu--solutions .solutions-mega-col--sector {
  padding-bottom: 1.25rem;
}
.mega-menu--solutions .solutions-mega-heading {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  margin: 0 0 1.25rem;
}
.mega-menu--solutions .solutions-need-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.875rem;
}
.mega-menu--solutions .solutions-need-card {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1rem 1.125rem;
  min-height: 5.5rem;
  border-radius: 14px;
  text-decoration: none !important;
  color: inherit;
  transition: background 0.18s, box-shadow 0.18s, border-color 0.18s;
  border: 1px solid transparent;
  position: relative;
}
.mega-menu--solutions .solutions-need-card:hover {
  background: #fff;
  border-color: #e0e7ff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
.mega-menu--solutions .solutions-need-icon {
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.mega-menu--solutions .solutions-need-icon .ui-icon--box {
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 0.75rem;
}
.mega-menu--solutions .solutions-need-icon .ui-icon--box i {
  font-size: 1rem;
}
.mega-menu--solutions .solutions-need-text {
  flex: 1;
  min-width: 0;
  padding-right: 1rem;
}
.mega-menu--solutions .solutions-need-text strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.35rem;
  line-height: 1.35;
}
.mega-menu--solutions .solutions-need-text small {
  display: -webkit-box;
  font-size: 0.8125rem;
  color: var(--color-muted);
  line-height: 1.5;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mega-menu--solutions .solutions-need-arrow {
  position: absolute;
  top: 1.125rem;
  right: 1rem;
  flex-shrink: 0;
  opacity: 0.3;
  transition: opacity 0.18s, transform 0.18s;
}
.mega-menu--solutions .solutions-need-card:hover .solutions-need-arrow {
  opacity: 0.75;
  transform: translateX(3px);
}
.mega-menu--solutions .solutions-sector-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}
.mega-menu--solutions .solutions-sector-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8125rem 0.9375rem;
  min-height: 3.25rem;
  border-radius: 12px;
  text-decoration: none !important;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.3;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  border: 1px solid transparent;
}
.mega-menu--solutions .solutions-sector-card:hover {
  background: #f0f4ff;
  border-color: #e0e7ff;
  color: var(--color-primary);
}
.mega-menu--solutions .solutions-sector-icon {
  flex-shrink: 0;
}
.mega-menu--solutions .solutions-sector-icon .ui-icon--box {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.625rem;
}
.mega-menu--solutions .solutions-sector-icon .ui-icon--box i {
  font-size: 0.875rem;
}
.mega-menu--solutions .solutions-mega-promo {
  margin-top: 1.5rem;
  padding: 1.125rem 1.25rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #eef2ff 0%, #f5f3ff 100%);
  border: 1px solid #e0e7ff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.mega-menu--solutions .solutions-mega-promo-text strong {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  line-height: 1.35;
}
.mega-menu--solutions .solutions-mega-promo-text span {
  font-size: 0.8125rem;
  color: var(--color-muted);
  line-height: 1.45;
}
.mega-menu--solutions .solutions-mega-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.75rem;
  background: #fff;
  border-radius: 0 0 1.125rem 1.125rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
}
.mega-menu--solutions .solutions-mega-all {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none !important;
}
.mega-menu--solutions .solutions-mega-all:hover { text-decoration: underline !important; }
.mega-menu--solutions .mega-cta {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.menu-item--solutions::after {
  content: '';
  position: absolute;
  left: -12px;
  right: -12px;
  top: 100%;
  height: 14px;
  z-index: 101;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.hero {
  position: relative; padding: 2rem 0 5rem; overflow: hidden;
}
.hero--video {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem 0 5.5rem;
  color: #fff;
}
body.page-home .hero--video {
  margin-top: calc(-1 * var(--header-offset));
  padding-top: calc(var(--header-offset) + 4rem);
  min-height: 100vh;
}
body.page-home .header-shell {
  background: transparent;
}
body.page-home .header-shell.is-scrolled {
  background: #fff;
}
body.page-home .utility-bar {
  background: rgba(17, 24, 39, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
  pointer-events: none;
}
.hero-video.is-playing,
.hero-video.is-ready {
  opacity: var(--hero-video-opacity, 0.4);
  visibility: visible;
}
.hero-video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.hero-video-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.hero-video-frame iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: max(100%, 177.78vh);
  min-height: max(100%, 56.25vw);
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none !important;
}
.hero-video-shield {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(10, 15, 28, 0.72) 0%,
    rgba(10, 15, 28, 0.38) 45%,
    rgba(10, 15, 28, 0.62) 100%
  );
}
body.page-home .hero--slide .hero-video-overlay {
  background: linear-gradient(
    180deg,
    rgba(244, 247, 249, 0.62) 0%,
    rgba(244, 247, 249, 0.78) 45%,
    rgba(244, 247, 249, 0.72) 100%
  );
}
.hero--video .hero-inner { position: relative; z-index: 3; }
.hero--slide .hero-slide-inner {
  max-width: 720px;
  text-align: center;
}
.hero--slide .hero-slide-content {
  position: relative;
}
.hero--slide .digital-band-title {
  color: var(--color-text);
  text-shadow: none;
}
.hero--slide .digital-band-lead {
  color: var(--color-muted);
}
.hero--video h1:not(.digital-band-title) { color: #fff; text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25); }
.hero--video .hero-lead { color: rgba(255, 255, 255, 0.88); }
.hero--video .hero-badge {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero--video .hero-stat span { color: rgba(255, 255, 255, 0.72); }
.hero--video .hero-stat strong {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
}
.hero--video .btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.hero--video .btn-outline:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
  color: #fff;
}
.hero--video .btn-ghost { color: rgba(255, 255, 255, 0.92); }
.hero--video .btn-ghost:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
.hero--video .avatar { border-color: rgba(255, 255, 255, 0.35); }
.hero-inner { position: relative; text-align: center; max-width: 820px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; border: 1px solid var(--color-border);
  padding: .4rem 1rem; border-radius: 999px; font-size: .875rem;
  font-weight: 500; margin-bottom: 1.5rem; box-shadow: var(--shadow-sm);
}
.star-icon { color: #f59e0b; }
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800;
  letter-spacing: -.02em; margin-bottom: 1rem;
}
.hero-lead {
  font-size: 1.125rem; color: var(--color-muted); max-width: 640px;
  margin: 0 auto 2rem;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center;
  margin-bottom: 2.5rem;
}
.hero-social-proof { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.avatar-stack { display: flex; align-items: center; }
.avatar {
  width: 36px; height: 36px; border-radius: 50%; border: 2px solid #fff;
  object-fit: cover; object-position: center;
  margin-left: -10px;
  display: block; flex-shrink: 0;
  background: #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.avatar:first-child { margin-left: 0; }
.hero-stats-row {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; justify-content: center;
}
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 1.25rem; font-weight: 800; }
.hero-stat span { font-size: .8125rem; color: var(--color-muted); }

.section { padding: 4rem 0; }
.section-badge {
  display: inline-block; font-size: .8125rem; font-weight: 600;
  color: var(--color-primary); margin-bottom: .75rem;
}

.service-tabs-section { background: var(--color-surface); }
.service-tabs {
  display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center;
  margin-bottom: 2rem;
}
.service-tab {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .65rem 1.1rem; border-radius: 999px;
  border: 1px solid var(--color-border); background: #fff;
  font: inherit; font-size: .875rem; font-weight: 500; cursor: pointer;
  transition: all .2s;
}
.service-tab:hover { border-color: var(--color-primary); }
.service-tab.is-active {
  background: var(--color-dark); color: #fff; border-color: var(--color-dark);
}
.service-tab-icon { font-size: 1rem; }
.service-panel { display: none; }
.service-panel.is-active { display: block; animation: fadeIn .3s ease; }
.service-panel-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center;
  background: #fff; border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow-md); border: 1px solid var(--color-border);
}
.service-panel-visual {
  border-radius: var(--radius); min-height: 280px; padding: 1.5rem;
  display: flex; align-items: center; justify-content: center;
}
.panel-network { background: linear-gradient(135deg, #dbeafe, #e0e7ff); }
.panel-server { background: linear-gradient(135deg, #d1fae5, #ccfbf1); }
.panel-security { background: linear-gradient(135deg, #fee2e2, #fce7f3); }
.panel-soc { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.panel-cctv { background: linear-gradient(135deg, #e0e7ff, #f3e8ff); }
.mock-dashboard {
  width: 100%; max-width: 320px; background: #fff; border-radius: 12px;
  padding: 1rem; box-shadow: var(--shadow-md);
}
.mock-bar { height: 8px; width: 40%; background: #e5e7eb; border-radius: 4px; margin-bottom: 1rem; }
.mock-chart { height: 120px; background: linear-gradient(180deg, #6366f1 0%, transparent 100%); border-radius: 8px; opacity: .3; margin-bottom: 1rem; }
.mock-lines span { display: block; height: 6px; background: #f3f4f6; border-radius: 3px; margin-bottom: .5rem; }
.mock-lines span:nth-child(2) { width: 80%; }
.mock-lines span:nth-child(3) { width: 60%; }
.service-panel-content h2 { font-size: 1.5rem; }
.service-panel-content p { color: var(--color-muted); }
.chip-row { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.25rem 0; }
.chip {
  padding: .35rem .75rem; background: var(--color-surface);
  border-radius: 999px; font-size: .8125rem; color: var(--color-muted);
  border: 1px solid var(--color-border);
}

.why-banner {
  background: var(--gradient-banner); color: #fff;
  padding: 5rem 0; position: relative; overflow: hidden;
}
.why-banner-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.why-banner .section-badge { color: rgba(255,255,255,.9); }
.why-banner h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); color: #fff; }
.why-banner p { color: rgba(255,255,255,.85); font-size: 1.0625rem; }
.orbit-hub {
  position: relative; width: 280px; height: 280px; margin: 0 auto;
}
.orbit-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 64px; height: 64px; background: #fff; color: var(--color-brand);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.5rem; box-shadow: var(--shadow-lg);
}
.orbit-item {
  position: absolute; width: 48px; height: 48px; background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
}
.orbit-item--1 { top: 10%; left: 50%; transform: translateX(-50%); }
.orbit-item--2 { top: 30%; right: 5%; }
.orbit-item--3 { bottom: 30%; right: 5%; }
.orbit-item--4 { bottom: 10%; left: 50%; transform: translateX(-50%); }
.orbit-item--5 { top: 30%; left: 5%; }

.features-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start;
}
.feature-accordion {
  border: 1px solid var(--color-border); border-radius: var(--radius);
  margin-bottom: .75rem; overflow: hidden; background: #fff;
}
.feature-accordion summary {
  padding: 1.25rem 1.5rem; cursor: pointer; list-style: none;
  display: flex; flex-direction: column; gap: .25rem;
}
.feature-accordion summary::-webkit-details-marker { display: none; }
.feature-accordion-title { font-weight: 700; font-size: 1.0625rem; }
.feature-accordion-sub { font-size: .875rem; color: var(--color-muted); }
.feature-accordion-body { padding: 0 1.5rem 1.25rem; color: var(--color-muted); font-size: .9375rem; }
.feature-accordion[open] { box-shadow: var(--shadow-sm); border-color: #c7d2fe; }
.features-visual { position: sticky; top: calc(var(--header-h) + 2rem); }
.support-card {
  background: linear-gradient(135deg, #f0f4ff, #faf5ff);
  border-radius: var(--radius-lg); padding: 2rem; min-height: 360px;
  position: relative; border: 1px solid var(--color-border);
}
.support-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #a855f7);
  margin: 2rem auto;
}
.support-bubble {
  position: absolute; background: #fff; padding: .5rem 1rem;
  border-radius: 999px; font-size: .8125rem; font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.support-bubble--1 { top: 2rem; right: 1rem; }
.support-bubble--2 { bottom: 4rem; left: 1rem; }
.support-rating { text-align: center; color: #f59e0b; font-size: 1.25rem; margin-top: 2rem; }

.corporate-card-section { padding: 3rem 0; }
.corporate-card-section--reverse .corporate-card-grid { direction: rtl; }
.corporate-card-section--reverse .corporate-card-grid > * { direction: ltr; }
.corporate-card-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.corporate-image-placeholder {
  min-height: 320px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #e0e7ff 0%, #fae8ff 100%);
  border: 1px solid var(--color-border);
}
.corporate-card-content h2 { font-size: 1.75rem; }

.integration-section {
  position: relative; color: #fff; padding: 5rem 0;
  overflow: hidden;
}
.integration-section--pro {
  padding: 5.5rem 0 6rem;
}
.integration-bg {
  position: absolute; inset: 0; background: var(--gradient-integration);
}
.integration-bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
}
.integration-bg__orb--1 {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -80px;
  background: #7c3aed;
}
.integration-bg__orb--2 {
  width: 360px;
  height: 360px;
  bottom: -100px;
  right: -60px;
  background: #0891b2;
}
.integration-section .container { position: relative; }
.integration-hub-visual { text-align: center; margin-bottom: 2.5rem; }
.integration-section--pro .integration-hub-visual {
  margin-bottom: 2rem;
  opacity: 0.92;
}
.integration-orbit {
  position: relative; width: 320px; height: 200px; margin: 0 auto;
}
.integration-logo {
  position: absolute; background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px); padding: .4rem .75rem;
  border-radius: 999px; font-size: .75rem; font-weight: 600;
  white-space: nowrap;
}
.integration-logo--center {
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 56px; height: 56px; padding: 0; border-radius: 14px;
  background: #fff; color: var(--color-brand); font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
}
.integration-logo--1 { top: 0; left: 20%; }
.integration-logo--2 { top: 0; right: 15%; }
.integration-logo--3 { bottom: 0; left: 10%; }
.integration-logo--4 { bottom: 0; right: 10%; }
.integration-logo--5 { top: 40%; right: 0; }
.integration-tabs {
  display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 2rem;
}
.integration-tabs--pro {
  gap: 0.625rem;
  margin-bottom: 2.5rem;
}
.integration-tab {
  padding: .5rem 1.25rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.3); background: transparent;
  color: #fff; font: inherit; font-weight: 500; cursor: pointer; transition: .2s;
}
.integration-tab--pro {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  font-size: 0.9375rem;
}
.integration-tab.is-active, .integration-tab:hover {
  background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.5);
}
.integration-tab--pro.is-active {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.55);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.integration-tab__icon.ui-icon--box {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
}
.integration-tab__icon.ui-icon--box i {
  font-size: 0.8125rem;
}
.integration-panel { display: none; text-align: center; }
.integration-panel.is-active { display: block; animation: fadeIn .3s ease; }
.integration-panel--pro.is-active {
  animation: panelSlideIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.integration-panel__header {
  max-width: 640px;
  margin: 0 auto 2.25rem;
}
.integration-panel__badge {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
}
.integration-panel h3 { font-size: 1.75rem; margin-bottom: .5rem; line-height: 1.25; }
.integration-desc {
  color: rgba(255,255,255,.82);
  margin-bottom: 0;
  font-size: 1.0625rem;
  line-height: 1.6;
}
.integration-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  text-align: left; margin-bottom: 2rem;
}
.integration-grid--pro {
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.integration-block {
  background: rgba(255,255,255,.1); border-radius: var(--radius);
  padding: 1.25rem; backdrop-filter: blur(8px);
}
.integration-block--pro {
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.integration-block--pro:hover {
  transform: translateY(-4px);
  background: rgba(15, 23, 42, 0.48);
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
  border-color: rgba(255,255,255,.2);
}
.integration-block__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.integration-block__icon.ui-icon--box {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
}
.integration-block h4 {
  font-size: 1rem;
  margin: 0;
  line-height: 1.35;
  color: #fff;
}
.integration-block ul { list-style: none; margin: 0; padding: 0; }
.integration-block__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,.88);
  padding: 0.35rem 0;
  line-height: 1.45;
}
.integration-block__check {
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.integration-block__check .ui-icon--check {
  color: #67e8f9;
  font-size: 0.75rem;
}
.integration-block li {
  font-size: .8125rem; color: rgba(255,255,255,.85);
  padding: .25rem 0 .25rem 1rem; position: relative;
}
.integration-block li::before {
  content: '•'; position: absolute; left: 0; color: #67e8f9;
}
.integration-block--pro li::before { content: none; }
.integration-panel__footer {
  display: flex;
  justify-content: center;
}
.integration-panel__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.integration-panel__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,.22);
}

.faq-section { background: var(--color-surface); }
.faq-title { text-align: center; font-size: 2rem; margin-bottom: 2rem; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius); margin-bottom: .75rem; overflow: hidden;
}
.faq-item summary {
  padding: 1.25rem 1.5rem; cursor: pointer; font-weight: 600;
  list-style: none; display: flex; align-items: center; justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.25rem; color: var(--color-muted); }
.faq-item[open] summary::after { content: '−'; }
.faq-answer { padding: 0 1.5rem 1.25rem; color: var(--color-muted); font-size: .9375rem; }

.cta-section { text-align: center; padding: 5rem 0; }
.cta-inner h2 { font-size: 2rem; margin-bottom: .75rem; }
.cta-inner p { color: var(--color-muted); margin-bottom: 2rem; }

/* Digital band content (inside hero slide) */
.hero-slide-content .digital-band-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.25;
  margin: 0 0 1rem;
  color: var(--color-text);
}
.digital-band-highlight {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.digital-sparkles {
  position: absolute;
  left: 50%;
  top: -1.35rem;
  transform: translateX(-50%);
  width: 4.5rem;
  height: 1.25rem;
  pointer-events: none;
}
.digital-sparkle {
  position: absolute;
  animation: sparkleFloat 2.8s ease-in-out infinite;
}
.digital-sparkle--1 { left: 0; top: 0.15rem; animation-delay: 0s; }
.digital-sparkle--2 { left: 50%; top: -0.35rem; transform: translateX(-50%); animation-delay: -0.9s; }
.digital-sparkle--3 { right: 0; top: 0.1rem; animation-delay: -1.6s; }
@keyframes sparkleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 1; }
  50% { transform: translateY(-3px) scale(1.08); opacity: 0.85; }
}
.digital-sparkle--2 {
  animation-name: sparkleFloatCenter;
}
@keyframes sparkleFloatCenter {
  0%, 100% { transform: translateX(-50%) translateY(0) scale(1); opacity: 1; }
  50% { transform: translateX(-50%) translateY(-3px) scale(1.08); opacity: 0.85; }
}
.digital-band-lead {
  font-size: 1.0625rem;
  color: var(--color-muted);
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.digital-band-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.btn-gradient {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(90deg, #7c3aed 0%, #6366f1 45%, #06b6d4 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
}
.btn-gradient:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(99, 102, 241, 0.45);
  filter: brightness(1.05);
}
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--color-text);
  border: 1.5px solid #111827;
}
.btn-outline-dark:hover {
  background: #111827;
  color: #fff;
  transform: translateY(-2px);
}
.digital-band-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.avatar-stack--light .avatar {
  border-color: #f4f7f9;
}
.digital-band-proof-text {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-muted);
  font-weight: 500;
}
.digital-band-proof-text strong {
  color: #7c3aed;
  font-weight: 800;
  font-size: 1rem;
}

.page-hero {
  background: var(--gradient-hero); padding: 3.5rem 0;
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}
.page-hero-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: center;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; margin-bottom: .75rem; }
.page-hero-lead { color: var(--color-muted); font-size: 1.125rem; max-width: 560px; margin-bottom: 1.5rem; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.page-hero-visual { display: flex; justify-content: center; align-items: center; }
.page-hero-orb {
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #6366f1, #8b5cf6 50%, #06b6d4);
  opacity: .25; filter: blur(2px);
  animation: orbPulse 4s ease-in-out infinite;
}
@keyframes orbPulse {
  0%, 100% { transform: scale(1); opacity: .25; }
  50% { transform: scale(1.08); opacity: .35; }
}
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; padding: 0; margin: 0 0 1rem; font-size: .875rem; }
.breadcrumb li:not(:last-child)::after { content: '/'; margin-left: .5rem; color: var(--color-muted); }
.breadcrumb a { color: var(--color-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--color-primary); }

.content-narrow { max-width: 800px; }
.prose h2 { font-size: 1.5rem; margin-top: 2rem; }
.prose h3 { font-size: 1.25rem; margin-top: 1.5rem; }
.prose ul { padding-left: 1.25rem; margin-bottom: 1rem; }
.prose li { margin-bottom: .35rem; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.5rem;
}
.stat-box {
  text-align: center; padding: 1.5rem 1rem;
  background: var(--color-surface); border-radius: var(--radius);
  border: 1px solid var(--color-border);
}
.stat-box strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--color-primary); }
.stat-box span { font-size: .8125rem; color: var(--color-muted); }

.service-block {
  padding: 2.5rem 0; border-bottom: 1px solid var(--color-border);
  scroll-margin-top: calc(var(--header-h) + 1rem);
}
.service-block:last-child { border-bottom: none; }
.service-block-header h2 { font-size: 1.75rem; color: var(--color-primary); }
.service-block-header p { color: var(--color-muted); max-width: 720px; }
.service-list {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: .5rem 1.5rem; list-style: none; padding: 0; margin: 1.5rem 0;
}
.service-list li {
  padding: .5rem 0 .5rem 1.25rem; position: relative; font-size: .9375rem;
}
.service-list li::before {
  content: '✓'; position: absolute; left: 0; color: var(--color-brand); font-weight: 700;
}

.solutions-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
.solutions-grid--wide { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.solution-card {
  display: block; padding: 1.5rem; background: #fff;
  border: 1px solid var(--color-border); border-radius: var(--radius);
  text-decoration: none !important; color: inherit; transition: .2s;
}
.solution-card:hover { border-color: var(--color-primary); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.solution-card h3 { font-size: 1.0625rem; margin-bottom: .5rem; }
.solution-link { font-size: .875rem; color: var(--color-primary); font-weight: 600; }
.solution-card--detail p { color: var(--color-muted); font-size: .9375rem; margin-bottom: 1rem; }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start;
}
.contact-details { list-style: none; }
.contact-details li { margin-bottom: 1.25rem; }
.contact-details strong { display: block; font-size: .8125rem; text-transform: uppercase; letter-spacing: .04em; color: var(--color-muted); margin-bottom: .25rem; }
.contact-form-wrap { background: var(--color-surface); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--color-border); }
.form-row { margin-bottom: 1.25rem; }
.form-row label { display: block; font-weight: 500; font-size: .875rem; margin-bottom: .35rem; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: .75rem 1rem; border: 1px solid var(--color-border);
  border-radius: 10px; font: inherit; background: #fff;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(37,99,235,.15);
}
.alert { padding: 1rem 1.25rem; border-radius: 10px; margin-bottom: 1.25rem; }
.alert-success { background: #d1fae5; color: #065f46; }
.alert-error { background: #fee2e2; color: #991b1b; }

.site-footer { background: var(--color-dark); color: rgba(255,255,255,.75); }
.footer-main { padding: 4rem 0 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem;
}
.footer-brand p { font-size: .9375rem; line-height: 1.7; margin-top: 1rem; }
.brand-footer .brand-mark { background: var(--color-brand); }
.brand-footer .brand-text strong { color: #fff; }
.brand-footer .brand-text span { color: rgba(255,255,255,.5); }
.footer-col h3 { color: #fff; font-size: .9375rem; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { color: rgba(255,255,255,.65); text-decoration: none; font-size: .875rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  font-size: .8125rem;
}
.footer-bottom nav { display: flex; gap: 1.25rem; }
.footer-bottom a { color: rgba(255,255,255,.55); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* Netgsm-style footer card */
.footer-shell {
  padding: 0 0 2.5rem;
  background: var(--color-surface);
}
.footer-shell .site-footer {
  background: #1e2124;
  border-radius: 20px;
  padding: 2.5rem 2.5rem 1.5rem;
  color: rgba(255,255,255,.72);
}
.footer-shell .footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.5rem;
  padding-bottom: 1.75rem;
}
.footer-shell .footer-col h3 {
  color: #fff;
  font-size: .9375rem;
  font-weight: 700;
  margin: 0 0 1rem;
}
.footer-shell .footer-subhead {
  color: rgba(255,255,255,.55);
  font-size: .8125rem;
  font-weight: 600;
  margin: 1.25rem 0 .65rem;
  text-transform: none;
}
.footer-shell .footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-shell .footer-col li { margin-bottom: .45rem; }
.footer-shell .footer-col a {
  color: rgba(255,255,255,.62);
  font-size: .8125rem;
  text-decoration: none;
  transition: color .15s;
}
.footer-shell .footer-col a:hover { color: #fff; text-decoration: none; }
.footer-accent { color: #fbbf24; font-weight: 700; }
.footer-col--phones .footer-phone-label {
  display: block;
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  margin-bottom: .1rem;
}
.footer-phones a {
  color: rgba(255,255,255,.88) !important;
  font-weight: 600;
  font-size: .875rem !important;
}
.footer-phones li { margin-bottom: .85rem !important; }
.footer-email { margin: 1rem 0 0; }
.footer-email a { color: #93c5fd !important; font-size: .8125rem !important; }

.footer-address {
  margin: 0;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .8125rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}
.footer-address strong { color: rgba(255,255,255,.75); font-weight: 600; }

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.25rem;
  flex-wrap: wrap;
}
.footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  margin-bottom: .65rem;
}
.footer-legal-nav a {
  color: rgba(255,255,255,.55);
  font-size: .8125rem;
  text-decoration: none;
}
.footer-legal-nav a:hover { color: #fff; }
.footer-copy {
  margin: 0;
  font-size: .75rem;
  color: rgba(255,255,255,.4);
}
.footer-badges {
  display: flex;
  align-items: center;
  gap: .65rem;
}
.footer-ssl-seal {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.footer-ssl-seal #siteseal {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.footer-ssl-seal #siteseal img {
  display: block;
  max-height: 52px;
  width: auto;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  padding: .35rem .65rem;
  border-radius: 6px;
  background: rgba(255,255,255,.08);
  font-size: .6875rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.1);
}
.footer-badge--blue {
  background: rgba(59,130,246,.15);
  border-color: rgba(59,130,246,.3);
  color: #93c5fd;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.65);
  transition: all .15s;
  text-decoration: none !important;
}
.footer-social-link:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
}

@media (max-width: 1100px) {
  .menu-link { padding: .5rem .55rem; font-size: .875rem; }
  .header-btn { padding: .5rem .75rem; font-size: .8125rem; }
  .brand-name { font-size: 1.2rem; }
  .brand--logo .brand-logo { height: 36px; max-width: 160px; }
  .brand--logo .brand-sep { display: none; }
  .brand-tagline { display: none; }
  .brand-sep { display: none; }
}

@media (max-width: 1024px) {
  .mega-menu-inner { grid-template-columns: 1fr; }
  .mega-categories { border-right: none; border-bottom: 1px solid var(--color-border); max-height: 200px; overflow-y: auto; }
  .why-banner-inner, .features-split, .corporate-card-grid,
  .service-panel-grid, .contact-grid,
  .page-hero-grid, .about-intro-grid, .contact-page-grid,
  .services-layout { grid-template-columns: 1fr; }
  .footer-shell .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .integration-grid { grid-template-columns: 1fr; }
  .integration-section--pro { padding: 4rem 0 4.5rem; }
  .integration-hub-visual { display: none; }
  .integration-panel h3 { font-size: 1.375rem; }
  .integration-tabs--pro { gap: 0.5rem; }
  .integration-tab--pro { width: 100%; justify-content: center; }
  .integration-block--pro { padding: 1.25rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .corporate-card-section--reverse .corporate-card-grid { direction: ltr; }
}

@media (max-width: 768px) {
  .utility-bar { display: none; }
  :root { --header-offset: 84px; }

  .menu-btn { display: flex; margin-left: auto; }
  .header-float {
    flex-wrap: nowrap; padding: .65rem 1rem; border-radius: 14px;
  }
  .brand--netgsm { flex: 1; min-width: 0; }
  .hero:not(.hero--video) { padding: 2.5rem 0 3rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .digital-band-actions { flex-direction: column; align-items: stretch; }
  .digital-band-actions .btn { width: 100%; justify-content: center; }
  .digital-band-proof { flex-direction: column; gap: 0.65rem; }
  .solutions-grid { grid-template-columns: 1fr; }
  .process-timeline--horizontal { grid-template-columns: 1fr; }
  .services-nav { position: static; }
  .footer-shell .footer-grid { grid-template-columns: 1fr; }
  .footer-legal { flex-direction: column; align-items: flex-start; }
  .footer-badges { order: 2; }
  .footer-social { order: 3; }
}

/* ── Subpage enhancements ── */
.section-alt { background: var(--color-surface); }
.section-compact-top { padding-top: 2.5rem; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-header h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: .5rem; }
.section-header p { color: var(--color-muted); margin: 0; }
.lead-text { font-size: 1.0625rem; color: var(--color-text); line-height: 1.7; }

.about-intro-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; align-items: start;
}
.about-intro-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.stat-box--lg { padding: 1.75rem 1rem; }
.stat-box--lg strong { font-size: 1.75rem; }

.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.value-card {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: 1.75rem; transition: .2s;
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: #c7d2fe; }
.value-icon { font-size: 2rem; display: block; margin-bottom: 1rem; }
.value-card h3 { font-size: 1.0625rem; margin-bottom: .5rem; }
.value-card p { color: var(--color-muted); font-size: .9375rem; margin: 0; }

.process-timeline { display: flex; flex-direction: column; gap: 0; max-width: 720px; margin: 0 auto; }
.process-step {
  display: flex; gap: 1.25rem; padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
}
.process-step:last-child { border-bottom: none; }
.process-num {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .875rem;
}
.process-body h3 { font-size: 1.0625rem; margin-bottom: .35rem; }
.process-body p { color: var(--color-muted); font-size: .9375rem; margin: 0; }

.process-timeline--horizontal {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; max-width: none;
}
.process-step--compact {
  flex-direction: column; border: 1px solid var(--color-border); border-radius: var(--radius);
  padding: 1.25rem; background: #fff; text-align: center;
}
.process-step--compact .process-num { margin: 0 auto .75rem; }
.process-step--compact h3 { font-size: .9375rem; }
.process-step--compact p { font-size: .8125rem; color: var(--color-muted); }

.about-side-card {
  background: linear-gradient(135deg, #f0f4ff, #faf5ff);
  border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: 2rem;
}
.about-side-card h3 { font-size: 1.25rem; margin: .75rem 0 1.25rem; }
.partner-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.25rem; }
.partner-tag {
  padding: .4rem .85rem; background: #fff; border-radius: 999px;
  font-size: .8125rem; font-weight: 500; border: 1px solid var(--color-border);
}
.about-side-note { color: var(--color-muted); font-size: .9375rem; margin-bottom: 1.25rem; }

.contact-channels {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.contact-channel-card {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: 1.75rem; text-align: center; transition: .2s;
}
.contact-channel-card:hover { box-shadow: var(--shadow-md); border-color: var(--color-primary); }
.contact-channel-icon { font-size: 2rem; display: block; margin-bottom: .75rem; }
.contact-channel-card h3 { font-size: .875rem; text-transform: uppercase; letter-spacing: .04em; color: var(--color-muted); margin-bottom: .5rem; }
.contact-channel-value {
  display: block; font-weight: 700; font-size: 1rem; color: var(--color-text);
  text-decoration: none !important; margin-bottom: .35rem;
}
a.contact-channel-value:hover { color: var(--color-primary); }
.contact-channel-card p { font-size: .8125rem; color: var(--color-muted); margin: 0; }

.contact-page-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start;
}
.contact-info-panel h2 { font-size: 1.75rem; margin: .75rem 0 1rem; }
.contact-benefits { list-style: none; margin: 1.5rem 0; }
.contact-benefits li {
  padding: .5rem 0; font-size: .9375rem; color: var(--color-muted);
  border-bottom: 1px solid var(--color-border);
}
.contact-benefits li:last-child { border-bottom: none; }
.contact-quick-links { margin-top: 2rem; }
.contact-quick-links h4 { font-size: .875rem; margin-bottom: .75rem; color: var(--color-muted); }
.chip--link {
  text-decoration: none !important; color: var(--color-muted);
  transition: .15s;
}
.chip--link:hover { border-color: var(--color-primary); color: var(--color-primary); background: #f0f4ff; }

.contact-form-wrap--elevated {
  background: #fff; box-shadow: var(--shadow-lg);
}
.contact-form-wrap h3 { font-size: 1.25rem; margin-bottom: .35rem; }
.form-intro { color: var(--color-muted); font-size: .9375rem; margin-bottom: 1.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-block { width: 100%; }

.services-layout {
  display: grid; grid-template-columns: 260px 1fr; gap: 2.5rem; align-items: start;
}
.services-nav {
  position: sticky; top: calc(var(--header-h) + 1.5rem);
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 1.25rem;
}
.services-nav-title { font-size: .8125rem; text-transform: uppercase; letter-spacing: .05em; color: var(--color-muted); margin-bottom: 1rem; }
.services-nav-list { list-style: none; }
.services-nav-link {
  display: flex; align-items: center; gap: .6rem;
  padding: .55rem .65rem; border-radius: 8px;
  font-size: .8125rem; color: var(--color-text); text-decoration: none !important;
  transition: .15s;
}
.services-nav-link:hover, .services-nav-link.is-active { background: #f0f4ff; color: var(--color-primary); }
.services-nav-cta {
  margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--color-border);
}
.services-nav-cta p { font-size: .8125rem; color: var(--color-muted); margin-bottom: .75rem; }

.service-card-block {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: 2rem; margin-bottom: 1.5rem;
  scroll-margin-top: calc(var(--header-h) + 1rem);
}
.service-card-block--alt { background: var(--color-surface); }
.service-card-header {
  display: flex; gap: 1.25rem; align-items: flex-start; margin-bottom: 1.5rem;
}
.service-card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, #eef2ff, #f5f3ff);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; flex-shrink: 0;
}
.service-card-header h2 { font-size: 1.5rem; color: var(--color-primary); margin-bottom: .5rem; }
.service-card-header p { color: var(--color-muted); margin: 0; font-size: .9375rem; }
.service-feature-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .65rem 1.5rem;
  list-style: none; padding: 0; margin: 0 0 1.5rem;
}
.service-feature-grid li {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .9375rem; color: var(--color-text);
}
.service-check { color: var(--color-brand); font-weight: 700; flex-shrink: 0; }
.service-card-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

.need-solutions-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
}
.need-card {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: 2rem; transition: .2s;
}
.need-card:hover { box-shadow: var(--shadow-md); border-color: #c7d2fe; }
.need-icon { font-size: 2rem; display: block; margin-bottom: 1rem; }
.need-card h3 { font-size: 1.125rem; margin-bottom: .5rem; }
.need-card > p { color: var(--color-muted); font-size: .9375rem; margin-bottom: 1rem; }
.need-features { list-style: none; margin: 0 0 1.25rem; }
.need-features li {
  padding: .35rem 0 .35rem 1.1rem; position: relative; font-size: .875rem; color: var(--color-muted);
}
.need-features li::before { content: '•'; position: absolute; left: 0; color: var(--color-primary); }

.sector-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.sector-card {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: 1.5rem; display: flex; flex-direction: column;
  scroll-margin-top: calc(var(--header-h) + 1rem);
  transition: .2s;
}
.sector-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.sector-card-top { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.sector-icon { font-size: 1.5rem; }
.sector-card h3 { font-size: 1rem; margin: 0; }
.sector-card > p { color: var(--color-muted); font-size: .875rem; flex: 1; margin-bottom: 1rem; }
.sector-features { list-style: none; margin: 0 0 1rem; }
.sector-features li {
  font-size: .8125rem; color: var(--color-muted); padding: .2rem 0 .2rem .9rem; position: relative;
}
.sector-features li::before { content: '✓'; position: absolute; left: 0; color: var(--color-brand); font-size: .7rem; }
.sector-link { font-size: .875rem; font-weight: 600; color: var(--color-primary); text-decoration: none !important; }
.sector-link:hover { text-decoration: underline !important; }

.why-banner--compact { padding: 3rem 0; border-radius: var(--radius-lg); margin: 0; }
.sector-icons-row {
  display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center;
}
.sector-icons-row span {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255,255,255,.2); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}

.cta-section--page { background: var(--color-surface); padding: 4rem 0; }

@media (max-width: 1024px) {
  .values-grid, .contact-channels, .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .need-solutions-grid { grid-template-columns: 1fr; }
  .service-feature-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .values-grid, .contact-channels, .sector-grid, .about-intro-stats { grid-template-columns: 1fr; }
  .page-hero-visual { display: none; }
  .svc-hero-grid, .svc-block-grid, .svc-why-inner { grid-template-columns: 1fr; }
  .svc-hero-visual { display: none; }
  .svc-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-use-grid, .svc-related-grid, .services-index-grid { grid-template-columns: 1fr; }
  .svc-block--reverse .svc-block-visual { order: 0; }
}

/* ——— Hizmet detay (Netgsm tarzı landing) ——— */
.svc-hero {
  background: linear-gradient(135deg, #1e2124 0%, #2d3748 50%, #1a365d 100%);
  color: #fff;
  padding: 2rem 0 3.5rem;
}
.svc-hero-inner { position: relative; }
.breadcrumb--light a { color: rgba(255,255,255,.75); }
.breadcrumb--light a:hover { color: #fff; }
.breadcrumb--light li + li::before { color: rgba(255,255,255,.4); }
.breadcrumb--light [aria-current="page"] { color: rgba(255,255,255,.9); }
.svc-hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem;
  align-items: center; margin-top: 1.5rem;
}
.svc-hero-icon { font-size: 2rem; display: block; margin-bottom: .75rem; }
.svc-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800;
  letter-spacing: -.02em; margin-bottom: .5rem;
}
.svc-hero-sub { font-size: 1.125rem; color: rgba(255,255,255,.9); margin-bottom: .75rem; font-weight: 600; }
.svc-hero-lead { color: rgba(255,255,255,.78); max-width: 560px; margin-bottom: 1.75rem; line-height: 1.65; }
.svc-hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.svc-hero-actions .btn-outline {
  border-color: rgba(255,255,255,.5); color: #fff; background: rgba(255,255,255,.06);
}
.svc-hero-actions .btn-outline:hover { background: rgba(255,255,255,.14); color: #fff; }
.svc-hero-actions .btn-ghost { color: rgba(255,255,255,.9); }
.svc-hero-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: 2.5rem; backdrop-filter: blur(12px);
  min-height: 280px; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1.5rem;
}
.svc-hero-card-icon { font-size: 4rem; }
.svc-hero-card-lines { display: flex; flex-direction: column; gap: .5rem; width: 100%; max-width: 200px; }
.svc-hero-card-lines span {
  height: 8px; border-radius: 4px; background: rgba(255,255,255,.15);
  animation: lineGrow 1s ease both;
}
.svc-hero-card-lines span:nth-child(1) { width: 100%; }
.svc-hero-card-lines span:nth-child(2) { width: 75%; animation-delay: .15s; }
.svc-hero-card-lines span:nth-child(3) { width: 50%; animation-delay: .3s; }

.svc-stats {
  background: #fff; border-bottom: 1px solid var(--color-border);
  padding: 2rem 0; margin-top: -1px;
}
.svc-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center;
}
.svc-stat strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--color-text); }
.svc-stat span { font-size: .8125rem; color: var(--color-muted); }

.svc-block-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.svc-block--reverse .svc-block-visual { order: 2; }
.svc-block--reverse .svc-block-content { order: 1; }
.svc-block-image {
  border-radius: var(--radius-lg); min-height: 280px;
  background: var(--gradient-banner); opacity: .85;
}
.svc-block-image--b { background: linear-gradient(135deg, #0e7490 0%, #6366f1 100%); }
.svc-block-content h2 { font-size: 1.75rem; margin-bottom: 1rem; }
.svc-block-content p { color: var(--color-muted); margin-bottom: 1.5rem; line-height: 1.65; }

.svc-use-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.svc-use-card {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius);
  padding: 1.5rem; transition: transform .3s ease, box-shadow .3s ease;
}
.svc-use-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.svc-use-icon { font-size: 1.75rem; display: block; margin-bottom: .75rem; }
.svc-use-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.svc-use-card p { font-size: .875rem; color: var(--color-muted); line-height: 1.55; margin: 0; }

.svc-feature-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem 2rem;
  list-style: none; max-width: 800px; margin: 0 auto;
}
.svc-feature-grid li {
  display: flex; align-items: flex-start; gap: .5rem; font-size: .9375rem;
}

.svc-why-inner {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3rem; align-items: center;
}
.svc-why-content h2 { font-size: 1.75rem; margin-bottom: .5rem; }
.svc-why-content > p { color: var(--color-muted); margin-bottom: 1.5rem; }
.svc-why-list { list-style: none; display: grid; gap: .65rem; }
.svc-why-list li { display: flex; gap: .5rem; font-size: .9375rem; }
.orbit-hub--sm { transform: scale(.85); }

.svc-related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.svc-related-card {
  display: flex; align-items: center; gap: .75rem; padding: 1rem 1.25rem;
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius);
  text-decoration: none; color: var(--color-text); transition: all .3s ease;
}
.svc-related-card:hover {
  border-color: var(--color-primary); transform: translateX(4px); box-shadow: var(--shadow-sm);
}
.svc-related-icon { font-size: 1.5rem; }
.svc-related-card strong { flex: 1; font-size: .9375rem; }
.svc-related-arrow { color: var(--color-primary); font-weight: 600; }

/* Hizmetler index */
.services-index-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.services-index-card {
  display: block; padding: 1.75rem; background: #fff;
  border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  text-decoration: none; color: inherit; transition: all .35s cubic-bezier(.16,1,.3,1);
}
.services-index-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md);
  border-color: rgba(37,99,235,.25);
}
.services-index-icon { font-size: 2rem; display: block; margin-bottom: .75rem; }
.services-index-card h2 { font-size: 1.125rem; margin-bottom: .5rem; color: var(--color-text); }
.services-index-card p {
  font-size: .875rem; color: var(--color-muted); line-height: 1.55;
  margin-bottom: 1rem;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.services-index-tags { list-style: none; margin-bottom: 1rem; }
.services-index-tags li {
  font-size: .75rem; color: var(--color-muted); padding: .2rem 0;
  border-bottom: 1px dashed var(--color-border);
}
.services-index-tags li:last-child { border: none; }
.services-index-link { font-size: .875rem; font-weight: 600; color: var(--color-primary); }

/* ===== Teklif Al sayfası ===== */
.quote-hero {
  background: linear-gradient(135deg, #eef2ff 0%, #f8fafc 50%, #ecfeff 100%);
  padding: 2.5rem 0 3rem;
  border-bottom: 1px solid var(--color-border);
}
.quote-hero-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: center;
}
.quote-hero-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800;
  letter-spacing: -.02em; margin: .75rem 0 1rem;
}
.quote-hero-lead { color: var(--color-muted); font-size: 1.0625rem; max-width: 540px; margin-bottom: 1.5rem; }
.quote-hero-stats { display: flex; flex-wrap: wrap; gap: 1.5rem 2rem; }
.quote-hero-stat strong { display: block; font-size: 1.375rem; font-weight: 800; color: var(--color-primary); }
.quote-hero-stat span { font-size: .8125rem; color: var(--color-muted); }
.quote-hero-card {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: 2rem; text-align: center; box-shadow: var(--shadow-md);
}
.quote-hero-card p { margin: 0 0 .5rem; color: var(--color-muted); font-size: .875rem; }
.quote-hero-phone {
  display: block; font-size: 1.375rem; font-weight: 800; color: var(--color-text);
  text-decoration: none !important; margin-bottom: .35rem;
}
.quote-hero-phone:hover { color: var(--color-primary); }
.quote-hero-card > span { font-size: .8125rem; color: var(--color-muted); }

.quote-layout {
  display: grid; grid-template-columns: 300px 1fr; gap: 2.5rem; align-items: start;
}
.quote-sidebar { position: sticky; top: calc(var(--header-h) + 1rem); }
.quote-steps-nav { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.25rem; }
.quote-steps-nav__item {
  display: flex; align-items: flex-start; gap: .75rem; width: 100%;
  padding: .85rem 1rem; border: 1px solid var(--color-border); border-radius: 12px;
  background: #fff; cursor: pointer; text-align: left; transition: .2s;
}
.quote-steps-nav__item:hover { border-color: #c7d2fe; }
.quote-steps-nav__item.is-active {
  border-color: var(--color-primary); background: #f0f4ff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.quote-steps-nav__item.is-done { border-color: #bbf7d0; background: #f0fdf4; }
.quote-steps-nav__num {
  width: 28px; height: 28px; border-radius: 50%; background: var(--color-surface);
  border: 1px solid var(--color-border); display: flex; align-items: center; justify-content: center;
  font-size: .8125rem; font-weight: 700; flex-shrink: 0;
}
.quote-steps-nav__item.is-active .quote-steps-nav__num {
  background: var(--color-primary); color: #fff; border-color: var(--color-primary);
}
.quote-steps-nav__item.is-done .quote-steps-nav__num {
  background: #22c55e; color: #fff; border-color: #22c55e;
}
.quote-steps-nav__text strong { display: block; font-size: .9375rem; margin-bottom: .15rem; }
.quote-steps-nav__text small { display: block; font-size: .75rem; color: var(--color-muted); line-height: 1.35; }

.quote-progress { margin-bottom: 1.5rem; }
.quote-progress__track {
  height: 4px; background: var(--color-border); border-radius: 999px; overflow: hidden;
}
.quote-progress__bar {
  height: 100%; width: 25%; background: linear-gradient(90deg, #6366f1, #06b6d4);
  border-radius: 999px; transition: width .35s ease;
}

.quote-benefits-list { list-style: none; margin: 0; padding: 0; }
.quote-benefits-list li {
  display: flex; gap: .75rem; padding: .85rem 0;
  border-bottom: 1px solid var(--color-border); font-size: .8125rem;
}
.quote-benefits-list li:last-child { border-bottom: none; }
.quote-benefits-list__icon { font-size: 1.25rem; flex-shrink: 0; }
.quote-benefits-list strong { display: block; font-size: .875rem; margin-bottom: .2rem; }
.quote-benefits-list span { color: var(--color-muted); line-height: 1.45; }

.quote-form-panel {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow-lg);
}
.quote-step-head { margin-bottom: 1.5rem; }
.quote-step-head h2 { font-size: 1.375rem; margin-bottom: .35rem; }
.quote-step-head p { color: var(--color-muted); font-size: .9375rem; margin: 0; }

.quote-service-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem;
}
.quote-service-card {
  display: flex; align-items: flex-start; gap: .75rem; padding: 1rem;
  border: 1.5px solid var(--color-border); border-radius: 12px; cursor: pointer;
  transition: .2s; position: relative;
}
.quote-service-card:hover { border-color: #c7d2fe; background: #fafbff; }
.quote-service-card input { position: absolute; opacity: 0; pointer-events: none; }
.quote-service-card:has(input:checked) {
  border-color: var(--color-primary); background: #f0f4ff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.quote-service-card__icon { font-size: 1.5rem; flex-shrink: 0; }
.quote-service-card__text strong { display: block; font-size: .875rem; margin-bottom: .25rem; line-height: 1.3; }
.quote-service-card__text small { display: block; font-size: .75rem; color: var(--color-muted); line-height: 1.4; }
.quote-service-card__check {
  position: absolute; top: .65rem; right: .65rem; width: 18px; height: 18px;
  border: 2px solid var(--color-border); border-radius: 50%; flex-shrink: 0;
}
.quote-service-card:has(input:checked) .quote-service-card__check {
  background: var(--color-primary); border-color: var(--color-primary);
  box-shadow: inset 0 0 0 3px #fff;
}

.quote-form-actions {
  display: flex; flex-wrap: wrap; gap: .75rem; justify-content: flex-end;
  margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border);
}
.quote-form-actions [data-quote-submit] { margin-left: auto; }

.quote-summary {
  display: grid; gap: 0; margin: 0 0 1.5rem;
  background: var(--color-surface); border-radius: 12px; overflow: hidden;
  border: 1px solid var(--color-border);
}
.quote-summary-row {
  display: grid; grid-template-columns: 160px 1fr; gap: 1rem;
  padding: .75rem 1rem; border-bottom: 1px solid var(--color-border); font-size: .9375rem;
}
.quote-summary-row:last-child { border-bottom: none; }
.quote-summary-row dt { font-weight: 600; color: var(--color-muted); margin: 0; }
.quote-summary-row dd { margin: 0; color: var(--color-text); word-break: break-word; }

.quote-kvkk {
  display: flex; align-items: flex-start; gap: .65rem; font-size: .875rem;
  color: var(--color-muted); cursor: pointer; line-height: 1.5;
}
.quote-kvkk input { margin-top: .2rem; flex-shrink: 0; }
.quote-kvkk a { color: var(--color-primary); }

.quote-success { text-align: center; padding: 2rem 1rem; }
.quote-success__icon {
  width: 64px; height: 64px; border-radius: 50%; background: #dcfce7; color: #16a34a;
  display: flex; align-items: center; justify-content: center; font-size: 1.75rem;
  font-weight: 800; margin: 0 auto 1.25rem;
}
.quote-success h2 { font-size: 1.5rem; margin-bottom: .75rem; }
.quote-success p { color: var(--color-muted); max-width: 480px; margin: 0 auto 1.5rem; }
.quote-success-actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }

.quote-process-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
}
.quote-process-card {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius);
  padding: 1.25rem; transition: .2s;
}
.quote-process-card:hover { box-shadow: var(--shadow-sm); border-color: #c7d2fe; }
.quote-process-card__step {
  display: inline-block; font-size: .75rem; font-weight: 800; color: var(--color-primary);
  background: #eef2ff; padding: .2rem .5rem; border-radius: 6px; margin-bottom: .65rem;
}
.quote-process-card h3 { font-size: .9375rem; margin-bottom: .35rem; }
.quote-process-card p { font-size: .8125rem; color: var(--color-muted); margin: 0; line-height: 1.45; }
.quote-contact-alt { text-align: center; margin-top: 2rem; color: var(--color-muted); font-size: .9375rem; }

.form-row label { display: block; font-size: .875rem; font-weight: 600; margin-bottom: .4rem; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: .7rem .85rem; border: 1px solid var(--color-border);
  border-radius: 10px; font-family: inherit; font-size: .9375rem;
  transition: border-color .15s, box-shadow .15s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.alert-error {
  background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c;
  padding: 1rem 1.25rem; border-radius: 10px; margin-bottom: 1.25rem; font-size: .9375rem;
}

@media (max-width: 1024px) {
  .quote-layout { grid-template-columns: 1fr; }
  .quote-sidebar { position: static; }
  .quote-steps-nav { flex-direction: row; overflow-x: auto; padding-bottom: .5rem; }
  .quote-steps-nav__item { min-width: 200px; flex-shrink: 0; }
  .quote-benefits-list { display: none; }
  .quote-process-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-hero-grid { grid-template-columns: 1fr; }
  .quote-hero-aside { display: none; }
}

@media (max-width: 768px) {
  .quote-service-grid { grid-template-columns: 1fr; }
  .quote-summary-row { grid-template-columns: 1fr; gap: .25rem; }
  .quote-form-panel { padding: 1.25rem; }
  .quote-form-actions { flex-direction: column; }
  .quote-form-actions .btn { width: 100%; justify-content: center; }
  .quote-process-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .svc-use-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

