/* Inner pages — premium corporate layout */

.page-hero {
  position: relative;
  padding: 3.25rem 0 4rem;
  background: #0f172a;
  border-bottom: none;
  overflow: hidden;
  color: #fff;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(99, 102, 241, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(6, 182, 212, 0.2) 0%, transparent 50%),
    linear-gradient(165deg, #0f172a 0%, #1e293b 48%, #0f172a 100%);
}
.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.page-hero .breadcrumb ol { margin-bottom: 1.25rem; }
.page-hero .breadcrumb a { color: rgba(255, 255, 255, 0.55); }
.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero .breadcrumb li:not(:last-child)::after { color: rgba(255, 255, 255, 0.35); }
.page-hero .breadcrumb [aria-current="page"] { color: rgba(255, 255, 255, 0.88); }
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 1rem;
  color: #fff;
}
.page-hero-lead {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.125rem;
  line-height: 1.65;
  max-width: 540px;
  margin: 0 0 1.75rem;
}
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.page-hero-actions .btn-primary {
  background: linear-gradient(90deg, #6366f1, #06b6d4);
  border: none;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
}
.page-hero-actions .btn-primary:hover { filter: brightness(1.06); }
.page-hero-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.page-hero-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.page-hero__aside {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.page-hero__stat {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.25rem 1.1rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.25s ease, background 0.25s ease;
}
.page-hero__stat:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}
.page-hero__stat:nth-child(1) { grid-column: 1 / -1; }
.page-hero__stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(90deg, #a5b4fc, #67e8f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.2rem;
}
.page-hero__stat span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 500;
}

/* Section headers */
.section-header--pro { max-width: 680px; margin-bottom: 3rem; }
.section-header--pro .section-badge {
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.section-header--pro h2 {
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
  margin: 0.85rem 0 0.65rem;
}
.section-header--pro p { font-size: 1.0625rem; line-height: 1.65; }

.section--pro { padding: 5rem 0; }
.section--pro-alt { background: #f8fafc; }
.section--pro + .section--pro-alt,
.section--pro-alt + .section--pro { border-top: 1px solid var(--color-border); }

/* About */
.about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-mission__visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 360px;
  background: linear-gradient(145deg, #1e293b 0%, #312e81 50%, #0e7490 100%);
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.18);
}
.about-mission__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.about-mission__badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.about-mission__badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #6366f1, #06b6d4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}
.about-mission__badge strong { display: block; font-size: 0.9375rem; }
.about-mission__badge span { font-size: 0.8125rem; color: var(--color-muted); }

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.about-stat-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.about-stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.about-stat-card strong {
  display: block;
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}
.about-stat-card span { font-size: 0.8125rem; color: var(--color-muted); }

.values-grid--pro {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.value-card--pro {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.value-card--pro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #06b6d4);
  opacity: 0;
  transition: opacity 0.25s;
}
.value-card--pro:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.08);
  border-color: #c7d2fe;
}
.value-card--pro:hover::before { opacity: 1; }
.value-card--pro .value-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #f0f4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.15rem;
}
.value-card--pro h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.value-card--pro p { color: var(--color-muted); font-size: 0.9375rem; line-height: 1.6; margin: 0; }

.process-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-rail::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, #6366f1, #06b6d4);
  opacity: 0.25;
  z-index: 0;
}
.process-rail__step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 0.75rem;
}
.process-rail__num {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e0e7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--color-primary);
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.15);
  transition: transform 0.2s, border-color 0.2s;
}
.process-rail__step:hover .process-rail__num {
  transform: scale(1.06);
  border-color: var(--color-primary);
}
.process-rail__step h3 { font-size: 0.9375rem; margin-bottom: 0.4rem; }
.process-rail__step p { font-size: 0.8125rem; color: var(--color-muted); line-height: 1.5; margin: 0; }

.about-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}
.partners-panel {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}
.partners-panel h3 { font-size: 1.375rem; margin: 0.75rem 0 1.25rem; letter-spacing: -0.02em; }
.partner-tags--pro { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.partner-tag--pro {
  padding: 0.5rem 1rem;
  background: #f8fafc;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text);
  transition: border-color 0.15s, background 0.15s;
}
.partner-tag--pro:hover { border-color: #c7d2fe; background: #f0f4ff; }

.feature-accordion--pro {
  border: 1px solid var(--color-border);
  border-radius: 14px;
  margin-bottom: 0.65rem;
  background: #fff;
  overflow: hidden;
}
.feature-accordion--pro summary {
  padding: 1.15rem 1.35rem;
  cursor: pointer;
  list-style: none;
}
.feature-accordion--pro summary::-webkit-details-marker { display: none; }
.feature-accordion--pro[open] { border-color: #c7d2fe; box-shadow: 0 4px 20px rgba(99, 102, 241, 0.08); }
.feature-accordion--pro[open] summary { background: #fafbff; }

/* Services index */
.services-hero-strip {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
}
.services-hero-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 3rem;
}
.services-hero-strip__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9375rem;
  color: var(--color-muted);
}
.services-hero-strip__item strong { color: var(--color-text); font-weight: 700; }
.services-hero-strip__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #06b6d4);
}

.services-index-grid--pro {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.services-index-card--pro {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 2rem;
  text-decoration: none !important;
  color: inherit;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.services-index-card--pro::after {
  content: '→';
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--color-muted);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.services-index-card--pro:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.1);
  border-color: #c7d2fe;
}
.services-index-card--pro:hover::after {
  background: var(--color-primary);
  color: #fff;
  transform: translateX(3px);
}
.services-index-card--pro .services-index-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eef2ff, #ecfeff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.15rem;
}
.services-index-card--pro h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
  padding-right: 2.5rem;
}
.services-index-card--pro > p {
  color: var(--color-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}
.services-index-tags--pro {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.services-index-tags--pro li {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.3rem 0.65rem;
  background: #f8fafc;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-muted);
  border-bottom: none;
}

/* Services page — enhanced */
.services-trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(17, 24, 39, 0.04);
}
.services-trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.services-trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--color-muted);
}
.services-trust-bar__item strong { color: var(--color-text); }
.services-trust-bar__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.services-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.services-featured-card {
  position: relative;
  border-radius: 20px;
  padding: 2rem 1.75rem;
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.15);
}
.services-featured-card--1 {
  background: linear-gradient(145deg, #1e3a8a 0%, #2563eb 55%, #06b6d4 100%);
}
.services-featured-card--2 {
  background: linear-gradient(145deg, #4c1d95 0%, #7c3aed 55%, #6366f1 100%);
}
.services-featured-card--3 {
  background: linear-gradient(145deg, #0f766e 0%, #0d9488 55%, #14b8a6 100%);
}
.services-featured-card__badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin-bottom: 1rem;
  align-self: flex-start;
}
.services-featured-card__icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  line-height: 0;
}
.services-featured-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  row-gap: 0.65rem;
  margin-top: auto;
  padding-top: 0.25rem;
}
.services-featured-card h2 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}
.services-featured-card > p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}
.services-featured-card__list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}
.services-featured-card__list li {
  font-size: 0.8125rem;
  padding: 0.35rem 0 0.35rem 1.1rem;
  position: relative;
  color: rgba(255, 255, 255, 0.88);
}
.services-featured-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
  opacity: 0.85;
}
.services-featured-card__cta-outline {
  border-color: rgba(255, 255, 255, 0.5) !important;
  color: #fff !important;
  background: transparent !important;
}
.services-featured-card__cta-outline:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
}

.services-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.services-filter__btn {
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: #fff;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}
.services-filter__btn:hover {
  border-color: #c7d2fe;
  color: var(--color-primary);
}
.services-filter__btn.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.services-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.08);
  border-color: #c7d2fe;
}
.svc-card.is-hidden { display: none; }
.svc-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.svc-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 0;
}
.svc-card__badge {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  background: #eef2ff;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
}
.svc-card__title {
  font-size: 1.1875rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}
.svc-card__title a {
  color: var(--color-text);
  text-decoration: none !important;
}
.svc-card__title a:hover { color: var(--color-primary); }
.svc-card__desc {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0 0 1rem;
}
.svc-card__features {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  flex: 1;
}
.svc-card__features li {
  font-size: 0.8125rem;
  padding: 0.3rem 0 0.3rem 1.1rem;
  position: relative;
  color: var(--color-text);
  border-bottom: 1px dashed #eef0f4;
}
.svc-card__features li:last-child { border-bottom: none; }
.svc-card__features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}
.svc-card__more {
  color: var(--color-muted) !important;
  font-style: italic;
}
.svc-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}
.svc-card__count {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.svc-card__actions {
  display: flex;
  gap: 0.5rem;
}
.services-catalog-empty {
  text-align: center;
  color: var(--color-muted);
  padding: 2rem;
  font-size: 0.9375rem;
}

.services-partners-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}
.services-partners-bar__text strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.services-partners-bar__text span {
  font-size: 0.875rem;
  color: var(--color-muted);
}
.services-partners-bar__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}
.services-partners-bar__tags span {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  background: #f8fafc;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  color: var(--color-text);
}

.services-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.services-why-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.services-why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.services-why-card__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.85rem;
}
.services-why-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.services-why-card p {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.55;
  margin: 0;
}

/* Solutions */
.need-grid-pro {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.need-card--pro {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.need-card--pro:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: #c7d2fe;
}
.need-card--pro .need-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #f0f4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.need-card--pro h3 { font-size: 1.1875rem; margin-bottom: 0.5rem; }
.need-card--pro > p { color: var(--color-muted); font-size: 0.9375rem; line-height: 1.6; margin-bottom: 1rem; }
.need-features--pro { list-style: none; margin: 0 0 1.5rem; flex: 1; }
.need-features--pro li {
  padding: 0.4rem 0 0.4rem 1.35rem;
  position: relative;
  font-size: 0.875rem;
  color: var(--color-text);
}
.need-features--pro li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-brand);
  font-weight: 700;
}

.sector-grid--pro {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.sector-card--pro {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 100%;
}
.sector-card--pro:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #a5b4fc;
}
.sector-card--pro .sector-card-top { margin-bottom: 0.65rem; }
.sector-card--pro .sector-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 0;
}
.sector-card--pro h3 { font-size: 1rem; }
.sector-card--pro h3 a {
  color: inherit;
  text-decoration: none;
}
.sector-card--pro h3 a:hover { color: var(--color-primary); }
.sector-card__foot { margin-top: auto; padding-top: 0.75rem; }
.sector-card--pro > p { font-size: 0.8125rem; line-height: 1.55; flex: 1; }
.sector-link--pro {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none !important;
  margin-top: auto;
  padding-top: 0.75rem;
}
.sector-features {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  flex: 1;
}
.sector-features li {
  padding: 0.35rem 0 0.35rem 1.1rem;
  position: relative;
  font-size: 0.8125rem;
  color: var(--color-text);
}
.sector-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-brand);
  font-weight: 700;
}

/* Solutions catalog cards */
.solutions-filter { margin-bottom: 1.75rem; }
#solutions-need-catalog.solutions-need-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.sol-need-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.sol-need-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: #c7d2fe;
}
.sol-need-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.sol-need-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 0;
}
.sol-need-card__badge {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #4338ca;
  background: #eef2ff;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}
.sol-need-card__title {
  font-size: 1.0625rem;
  margin: 0 0 0.5rem;
  line-height: 1.35;
}
.sol-need-card__title a {
  color: inherit;
  text-decoration: none;
}
.sol-need-card__title a:hover { color: var(--color-primary); }
.sol-need-card__desc {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0 0 1rem;
}
.sol-need-card__features {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  flex: 1;
}
.sol-need-card__features li {
  font-size: 0.8125rem;
  padding: 0.3rem 0 0.3rem 1.1rem;
  position: relative;
}
.sol-need-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-brand);
  font-weight: 700;
}
.sol-need-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}
.sol-need-card__count {
  font-size: 0.75rem;
  color: var(--color-muted);
  font-weight: 600;
}
.sol-need-card__actions {
  display: flex;
  gap: 0.75rem;
  row-gap: 0.65rem;
  flex-wrap: wrap;
}

/* Service & solution detail landing (pro) — shared hero */
.svc-landing--pro,
.sol-landing--pro { background: var(--color-bg); }
.page-hero.svc-hero-pro {
  padding-bottom: 3.5rem;
}
.page-hero.svc-hero-pro .page-hero__inner {
  align-items: start;
}
.page-hero.svc-hero-pro .page-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 640px;
}
.page-hero.svc-hero-pro .breadcrumb ol {
  margin-bottom: 1rem;
}
.svc-hero-pro__badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.svc-hero-pro__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  margin: 0 0 1.25rem;
  line-height: 0;
}
.page-hero.svc-hero-pro h1 {
  margin-top: 0;
  margin-bottom: 1rem;
}
.page-hero.svc-hero-pro .page-hero-lead {
  margin-bottom: 2.5rem;
}
.page-hero.svc-hero-pro .page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  row-gap: 1rem;
  width: 100%;
  max-width: 100%;
  margin-top: 0.5rem;
  padding-bottom: 1rem;
}
.svc-hero-pro__ghost {
  border-color: rgba(255, 255, 255, 0.35) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  background: transparent !important;
}
.svc-hero-pro__ghost:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}
.svc-hero-sub--dark {
  color: var(--color-muted);
  font-size: 0.9375rem;
  margin: 1rem 0 1.25rem;
  line-height: 1.65;
}
.svc-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.svc-split--reverse { direction: rtl; }
.svc-split--reverse > * { direction: ltr; }
.svc-split__visual {
  border-radius: 20px;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}
.svc-split__visual--a {
  background: linear-gradient(145deg, #eef2ff 0%, #e0e7ff 50%, #f0f9ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-split__visual--b {
  background: linear-gradient(145deg, #f0fdf4 0%, #ecfdf5 50%, #f0f9ff 100%);
}
.svc-split__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  line-height: 0;
}
.svc-split__content h2 {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  margin: 0.75rem 0 1rem;
  letter-spacing: -0.02em;
}
.svc-split__content p {
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.svc-use-grid-pro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.svc-use-card-pro {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.svc-use-card-pro:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #c7d2fe;
}
.svc-use-card-pro__icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.85rem;
}
.svc-use-card-pro h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.svc-use-card-pro p {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0;
}
.svc-features-pro {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.svc-feature-pill {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  font-size: 0.9375rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.svc-feature-pill:hover {
  border-color: #c7d2fe;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.06);
}
.svc-feature-pill__check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.svc-benefits-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(17, 24, 39, 0.06);
}
.svc-benefits-panel__content h2 {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  margin: 0.75rem 0 1.25rem;
}
.svc-benefits-panel__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.svc-benefits-panel__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9375rem;
}
.svc-benefits-panel__list li:last-child { border-bottom: none; }
.svc-benefits-panel__list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #eef2ff;
  color: #4338ca;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc-benefits-panel__process {
  background: linear-gradient(145deg, #111827 0%, #1e293b 100%);
  border-radius: 18px;
  padding: 1.75rem;
  color: #fff;
}
.svc-benefits-panel__process h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}
.svc-mini-process {
  list-style: none;
  margin: 0;
  padding: 0;
}
.svc-mini-process li {
  display: flex;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.svc-mini-process li:last-child { border-bottom: none; }
.svc-mini-process__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.35);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc-mini-process li strong {
  display: block;
  font-size: 0.875rem;
  color: #fff;
  margin-bottom: 0.2rem;
}
.svc-mini-process li span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}
.svc-related-pro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.svc-related-pro__card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  text-decoration: none !important;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.svc-related-pro__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #c7d2fe;
}
.svc-related-pro__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f0f4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.svc-related-pro__card strong {
  display: block;
  font-size: 0.9375rem;
  margin-bottom: 0.15rem;
}
.svc-related-pro__card span {
  font-size: 0.8125rem;
  color: var(--color-muted);
  display: block;
  line-height: 1.4;
}
.svc-related-pro__arrow {
  margin-left: auto;
  color: var(--color-primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* 404 page */
.page-not-found-pro {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 1rem 0 2rem;
}
.page-not-found-pro__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.page-not-found-pro h2 {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  margin-bottom: 0.75rem;
}
.page-not-found-pro > p {
  color: var(--color-muted);
  margin-bottom: 2rem;
  line-height: 1.65;
}
.page-not-found-pro__links {
  grid-template-columns: 1fr;
  text-align: left;
}

/* ===== Teklif Al (pro) ===== */
.quote-trust-bar { border-bottom: 1px solid var(--color-border); }
.quote-section-pro { padding-top: 3rem; }
.quote-layout-pro {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2.5rem;
  align-items: start;
}
.quote-sidebar-pro {
  position: sticky;
  top: calc(var(--header-h, 72px) + 1rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.quote-sidebar-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 12px 40px rgba(17, 24, 39, 0.06);
}
.quote-sidebar-card--contact {
  background: linear-gradient(145deg, #111827 0%, #1e293b 100%);
  border-color: transparent;
  color: #fff;
}
.quote-sidebar-card__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.quote-sidebar-card__head strong {
  display: block;
  color: #fff;
  font-size: 0.9375rem;
}
.quote-sidebar-card__head span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
}
.avatar-stack--quote .avatar {
  width: 32px;
  height: 32px;
  border-color: #1e293b;
}
.quote-sidebar-card__lead {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0 0 1rem;
}
.quote-sidebar-phone {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff !important;
  text-decoration: none !important;
  margin-bottom: 0.35rem;
}
.quote-sidebar-phone:hover { color: #a5b4fc !important; }
.quote-sidebar-email {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none !important;
}
.quote-sidebar-email:hover { color: #fff !important; }
.quote-steps-nav--pro { margin-bottom: 0; }
.quote-progress--pro {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.quote-progress--pro .quote-progress__track { flex: 1; margin-bottom: 0; }
.quote-progress__label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-muted);
  white-space: nowrap;
}
.quote-benefits-list--pro {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 0.5rem 1.25rem;
}
.quote-sidebar-card--partners strong {
  display: block;
  font-size: 0.8125rem;
  margin-bottom: 0.75rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.quote-partners-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.quote-partners-tags span {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
}

.quote-form-panel--pro {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 2.25rem;
  box-shadow: 0 24px 80px rgba(17, 24, 39, 0.08);
}
.quote-form-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}
.quote-form-header__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.quote-form-header__title {
  font-size: 1.5rem;
  margin: 0.5rem 0 0;
  letter-spacing: -0.02em;
}
.quote-form-header__meta {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.quote-form-header__pill {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #eef2ff;
  color: #4338ca;
}
.quote-form-header__pill--green {
  background: #dcfce7;
  color: #15803d;
}
.quote-form-header__desc {
  color: var(--color-muted);
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.6;
}

.quote-step-head {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}
.quote-step-head__num {
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--color-primary);
  background: #eef2ff;
  padding: 0.45rem 0.65rem;
  border-radius: 10px;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}
.quote-step-head h3 {
  font-size: 1.25rem;
  margin: 0 0 0.35rem;
  letter-spacing: -0.01em;
}
.quote-step-head p {
  color: var(--color-muted);
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.55;
}

.quote-service-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.quote-service-filter { margin-bottom: 0; }
.quote-service-toolbar__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.quote-service-count {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-muted);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid var(--color-border);
}
.quote-service-count.has-selection {
  background: #eef2ff;
  border-color: #c7d2fe;
  color: #4338ca;
}
.quote-service-action {
  background: none;
  border: none;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  font-family: inherit;
}
.quote-service-action:hover { text-decoration: underline; }

.quote-quick-picks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.quote-quick-picks__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-muted);
}
.quote-quick-pick {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
}
.quote-quick-pick:hover {
  border-color: #c7d2fe;
  background: #fafbff;
}

.quote-service-card.is-filtered-out { display: none; }
.quote-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.form-hint {
  display: block;
  font-size: 0.8125rem;
  color: var(--color-muted);
  margin-top: 0.4rem;
}

.quote-summary-wrap {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.quote-summary-section {
  background: #f8fafc;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 1.25rem;
}
.quote-summary-section__title {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted);
  margin: 0 0 0.85rem;
}
.quote-summary-section .quote-summary {
  background: transparent;
  border: none;
  border-radius: 0;
}
.quote-summary-section .quote-summary-row {
  padding: 0.55rem 0;
  border-bottom-color: rgba(0, 0, 0, 0.06);
}
.quote-summary-services {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.quote-summary-services li {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: #eef2ff;
  color: #4338ca;
  border: 1px solid #c7d2fe;
}
.quote-summary-empty {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin: 0;
}

.quote-form-actions--pro {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}
.quote-form-actions--pro [data-quote-submit] { margin-left: auto; }

.quote-success--pro {
  text-align: center;
  padding: 1rem 0 0.5rem;
}
.quote-success--pro .quote-success__icon {
  width: 72px;
  height: 72px;
  font-size: 2rem;
}
.quote-success--pro h2 {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  margin: 0.75rem 0;
}
.quote-success-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin: 2rem 0;
  text-align: left;
}
.quote-success-timeline__item {
  background: #f8fafc;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 1rem;
  position: relative;
}
.quote-success-timeline__item.is-done {
  background: #f0fdf4;
  border-color: #bbf7d0;
}
.quote-success-timeline__icon {
  font-size: 1.25rem;
  display: block;
  margin-bottom: 0.5rem;
}
.quote-success-timeline__item strong {
  display: block;
  font-size: 0.8125rem;
  margin-bottom: 0.25rem;
}
.quote-success-timeline__item span {
  font-size: 0.75rem;
  color: var(--color-muted);
  line-height: 1.45;
  display: block;
}

.quote-contact-alt {
  text-align: center;
  margin-top: 2rem;
  color: var(--color-muted);
  font-size: 0.9375rem;
}
.quote-process-section-pro { padding-top: 0; }

.promo-banner {
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #312e81 0%, #4c1d95 45%, #0e7490 100%);
  color: #fff;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: center;
  box-shadow: 0 24px 60px rgba(49, 46, 129, 0.25);
}
.promo-banner h2 { font-size: clamp(1.5rem, 3vw, 2rem); color: #fff; margin: 0.75rem 0 1rem; }
.promo-banner p { color: rgba(255, 255, 255, 0.82); font-size: 1.0625rem; line-height: 1.65; margin-bottom: 1.5rem; }
.promo-banner .section-badge { background: rgba(255, 255, 255, 0.15); color: #fff; border: 1px solid rgba(255, 255, 255, 0.2); }
.promo-banner__icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}
.promo-banner__icons span {
  aspect-ratio: 1;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: transform 0.2s;
}
.promo-banner__icons span:hover { transform: scale(1.08); background: rgba(255, 255, 255, 0.16); }

.contact-section--channels { padding-top: 0; }
.contact-channels--pro {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
}
.contact-channel-card--pro {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: 0 12px 40px rgba(17, 24, 39, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.contact-channel-card--pro:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.12);
  border-color: #c7d2fe;
}
.contact-channel-card--pro .contact-channel-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  border-radius: 14px;
  background: #f0f4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.contact-channel-card--pro h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.contact-channel-card--pro .contact-channel-value { font-size: 1.0625rem; }
.contact-channel-card--pro p { font-size: 0.8125rem; margin-top: 0.35rem; }

.contact-layout-pro {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-panel--pro {
  padding: 2rem 0;
}
.contact-info-panel--pro h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  margin: 0.75rem 0 1rem;
}
.contact-benefits--pro { list-style: none; margin: 1.75rem 0; padding: 0; }
.contact-benefits--pro li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9375rem;
}
.contact-benefits--pro li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.contact-form-wrap--pro {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 2.25rem;
  box-shadow: 0 20px 60px rgba(17, 24, 39, 0.08);
}

/* CTA banner */
.cta-banner-pro {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, #111827 0%, #1e293b 50%, #0f172a 100%);
  padding: 3.5rem 3rem;
  text-align: center;
  color: #fff;
}
.cta-banner-pro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(6, 182, 212, 0.2) 0%, transparent 45%);
}
.cta-banner-pro .cta-inner { position: relative; z-index: 1; animation: none; }
.cta-banner-pro h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.75rem; }
.cta-banner-pro p { color: rgba(255, 255, 255, 0.72); margin-bottom: 1.75rem; font-size: 1.0625rem; }
.cta-banner-pro .btn-primary {
  background: linear-gradient(90deg, #6366f1, #06b6d4);
  border: none;
}
.cta-banner-pro .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  background: transparent;
}
.cta-banner-pro .btn-outline:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }

.alert-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
}
.alert-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
}

.faq-section--pro .faq-list { max-width: 800px; margin: 0 auto; }
.faq-section--pro .faq-item {
  border-radius: 14px;
  margin-bottom: 0.65rem;
  border: 1px solid var(--color-border);
}
.faq-section--pro .faq-item[open] {
  border-color: #c7d2fe;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.06);
}

@media (max-width: 1024px) {
  .page-hero__inner { grid-template-columns: 1fr; }
  .page-hero__aside { grid-template-columns: repeat(3, 1fr); }
  .page-hero__stat:nth-child(1) { grid-column: auto; }
  .about-mission { grid-template-columns: 1fr; }
  .about-stats-row { grid-template-columns: repeat(2, 1fr); }
  .values-grid--pro { grid-template-columns: repeat(2, 1fr); }
  .process-rail { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .process-rail::before { display: none; }
  .about-split { grid-template-columns: 1fr; }
  .partners-panel { position: static; }
  .services-index-grid--pro { grid-template-columns: 1fr; }
  .services-featured-grid { grid-template-columns: 1fr; }
  .services-catalog-grid { grid-template-columns: 1fr; }
  .services-trust-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .services-why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-partners-bar { flex-direction: column; align-items: flex-start; }
  .services-partners-bar__tags { justify-content: flex-start; }
  .sector-grid--pro { grid-template-columns: repeat(2, 1fr); }
  #solutions-need-catalog.solutions-need-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-split { grid-template-columns: 1fr; }
  .svc-split--reverse { direction: ltr; }
  .svc-use-grid-pro { grid-template-columns: repeat(2, 1fr); }
  .svc-related-pro { grid-template-columns: 1fr; }
  .svc-benefits-panel { grid-template-columns: 1fr; }
  .quote-layout-pro { grid-template-columns: 1fr; }
  .quote-sidebar-pro { position: static; }
  .quote-success-timeline { grid-template-columns: repeat(2, 1fr); }
  .contact-channels--pro { grid-template-columns: repeat(2, 1fr); margin-top: 0; }
  .contact-layout-pro { grid-template-columns: 1fr; }
  .promo-banner { grid-template-columns: 1fr; padding: 2rem; }
}

@media (max-width: 768px) {
  .page-hero { padding: 2.5rem 0 3rem; }
  .page-hero__aside { grid-template-columns: 1fr; }
  .section--pro { padding: 3.5rem 0; }
  .values-grid--pro,
  .about-stats-row,
  .need-grid-pro,
  .sector-grid--pro,
  #solutions-need-catalog.solutions-need-grid,
  .svc-use-grid-pro,
  .svc-features-pro,
  .contact-channels--pro,
  .services-why-grid,
  .services-trust-bar__inner,
  .quote-service-grid,
  .quote-success-timeline { grid-template-columns: 1fr; }
  .quote-form-panel--pro { padding: 1.35rem; }
  .quote-form-actions--pro { flex-direction: column; }
  .quote-form-actions--pro .btn { width: 100%; justify-content: center; }
  .quote-form-header__top { flex-direction: column; }
  .quote-service-toolbar { flex-direction: column; align-items: stretch; }
  .quote-benefits-list--pro { display: none; }
  .quote-sidebar-card--partners { display: none; }
  .process-rail { grid-template-columns: 1fr; }
  .cta-banner-pro { padding: 2.5rem 1.5rem; border-radius: 18px; }
  .promo-banner__icons { grid-template-columns: repeat(4, 1fr); }
}

/* Legal pages */
.container--legal {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 2.5rem;
  align-items: start;
}
.legal-doc {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 2rem 2.25rem;
  color: var(--color-text);
  line-height: 1.75;
}
.legal-doc h2 {
  font-size: 1.125rem;
  margin: 2rem 0 0.75rem;
  letter-spacing: -0.02em;
}
.legal-doc h2:first-of-type { margin-top: 1.25rem; }
.legal-doc h3 {
  font-size: 1rem;
  margin: 1.25rem 0 0.5rem;
}
.legal-doc p { margin: 0 0 1rem; color: var(--color-muted); }
.legal-doc ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--color-muted);
}
.legal-doc li { margin-bottom: 0.35rem; }
.legal-doc a { color: var(--color-primary); }
.legal-doc__company {
  background: #f8fafc;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--color-text) !important;
}
.legal-doc-nav {
  position: sticky;
  top: 120px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1.25rem;
}
.legal-doc-nav h3 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-muted);
  margin: 0 0 0.85rem;
}
.legal-doc-nav ul { list-style: none; margin: 0; padding: 0; }
.legal-doc-nav li { margin-bottom: 0.35rem; }
.legal-doc-nav a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--color-text);
  text-decoration: none;
}
.legal-doc-nav a:hover,
.legal-doc-nav a.is-active {
  background: #eef2ff;
  color: var(--color-primary);
}
@media (max-width: 1024px) {
  .container--legal { grid-template-columns: 1fr; }
  .legal-doc-nav { position: static; }
}
