/* ==========================================================================
   PatenteFacile Bot — AutoPulse-inspired Design System
   Dark hero + light sections, blue/orange accents, premium automotive UI
   ========================================================================== */

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-glow: rgba(37, 99, 235, 0.4);
  --secondary: #f59e0b;
  --dark: #0f172a;
  --light: #f8fafc;
  --white: #ffffff;
  --gray: #64748b;
  --border: #e2e8f0;
  --success: #10b981;
  --danger: #ef4444;

  --color-text: var(--dark);
  --color-text-secondary: #475569;
  --color-text-muted: var(--gray);

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);

  --font: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 999px;

  --header-h: 80px;
  --container: 1200px;
  --container-narrow: 760px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s var(--ease);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-text-secondary);
  background: var(--light);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection {
  background: var(--primary);
  color: var(--white);
}

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

.text-gradient {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.88em;
  font-weight: 500;
  color: var(--primary);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 15px var(--primary-glow);
}

.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.55);
}

.btn--outline {
  background: var(--white);
  border-color: var(--border);
  color: var(--dark);
}

.btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn--outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.btn--outline-light:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
}

.btn--white:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
}
.btn--lg {
  padding: 14px 32px;
}
.btn--block {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition:
    background var(--transition),
    box-shadow var(--transition),
    backdrop-filter var(--transition);
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  border-radius: 10px;
  letter-spacing: -0.03em;
}

.logo__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}

.header.is-scrolled .logo__name {
  color: var(--dark);
}

.logo__accent {
  color: #60a5fa;
}
.header.is-scrolled .logo__accent {
  color: var(--primary);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav__link {
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-sm);
  transition: color var(--transition);
  position: relative;
}

.header.is-scrolled .nav__link {
  color: var(--dark);
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--primary) !important;
}

.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
}

.header__cta {
  flex-shrink: 0;
}

.header.is-scrolled .header__cta {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.header.is-scrolled .header__cta:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  cursor: pointer;
  margin-left: auto;
}

.header.is-scrolled .burger {
  background: var(--light);
  border-color: var(--border);
}

.burger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition:
    transform var(--transition),
    opacity var(--transition),
    background var(--transition);
}

.header.is-scrolled .burger span {
  background: var(--dark);
}

.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.is-open span:nth-child(2) {
  opacity: 0;
}
.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 40px) 0 100px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  /*  background: url('../images/ambient-scene.svg') center / cover no-repeat; */
  background: url("../images/tuscany-italy-road-trip.jpg") center / cover
    no-repeat;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.92) 0%,
    rgba(15, 23, 42, 0.75) 100%
  );
  z-index: 1;
}

.hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
}

.hero__title {
  margin: 0 0 20px;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
}

.hero__lead {
  margin: 0 0 28px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  max-width: 520px;
}

.hero__stats {
  display: flex;
  gap: 36px;
  margin-bottom: 32px;
}

.hero__stat strong {
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 6px;
}

.hero__stat span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.hero__note {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.hero__aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero__card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: 28px;
  text-align: center;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.hero__card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: var(--primary);
  border-radius: 50%;
}

.hero__card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}

.hero__card p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--white);
  z-index: 2;
}

.scroll-indicator__mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 12px;
  margin: 0 auto 10px;
  position: relative;
}

.scroll-indicator__mouse span {
  width: 4px;
  height: 8px;
  background: var(--white);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
  0% {
    opacity: 1;
    top: 8px;
  }
  100% {
    opacity: 0;
    top: 20px;
  }
}

.scroll-indicator p {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.65;
}

/* Features strip */
.features-strip {
  background: var(--dark);
  color: var(--white);
  padding: 20px 0;
  position: relative;
  z-index: 3;
}

.features-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px;
}

.feature-item__icon {
  font-size: 22px;
  line-height: 1;
}

.feature-item p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

/* Phone mockup */
.phone-mockup {
  display: flex;
  justify-content: center;
}

.phone-mockup__frame {
  width: 100%;
  max-width: 300px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-xl);
}

.phone-mockup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

.phone-mockup__back,
.phone-mockup__menu {
  opacity: 0.85;
}

.phone-mockup__body {
  padding: 16px;
  background: rgba(15, 23, 42, 0.85);
}

.phone-mockup__question,
.phone-mockup__hint {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px 14px 14px 4px;
  padding: 12px;
  margin-bottom: 10px;
}

.phone-mockup__q-text {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
}

.phone-mockup__sign {
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.25),
    rgba(96, 165, 250, 0.15)
  );
  border-radius: 10px;
  border: 1px solid rgba(96, 165, 250, 0.25);
}

.phone-mockup__hint {
  border-left: 3px solid var(--secondary);
}

.phone-mockup__hint-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 6px;
}

.phone-mockup__hint p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.8);
}

.phone-mockup__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}

.phone-mockup__btn {
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  cursor: default;
  background: rgba(255, 255, 255, 0.05);
}

.phone-mockup__btn--v {
  color: #6ee7b7;
  border-color: rgba(16, 185, 129, 0.35);
}
.phone-mockup__btn--f {
  color: #fca5a5;
  border-color: rgba(239, 68, 68, 0.35);
}

.phone-mockup__hint-btn {
  width: 100%;
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(37, 99, 235, 0.2);
  color: #93c5fd;
  border: 1px solid rgba(37, 99, 235, 0.35);
  border-radius: 10px;
  cursor: default;
}

/* Sections */
.section {
  padding: 96px 0;
  background: var(--light);
}

.section--alt {
  background: var(--white);
}

/* Spotlight sections — Certified Auto Service style */
.section--spotlight {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.78);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section--spotlight-alt {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.section--spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 100% 0%,
      rgba(37, 99, 235, 0.12),
      transparent 55%
    ),
    radial-gradient(
      ellipse 50% 40% at 0% 100%,
      rgba(245, 158, 11, 0.06),
      transparent 50%
    );
  pointer-events: none;
}

/* Double-class selectors give (0,2,0) specificity — always beat the base (0,1,0) rules below. */
.section__label.section__label--light {
  color: #60a5fa;
}
.section__title.section__title--light {
  color: var(--white);
}
.section__desc.section__desc--light {
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
}

.section--spotlight .mono {
  color: #93c5fd;
}

.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.spotlight--reverse .spotlight__content {
  order: 2;
}
.spotlight--reverse .spotlight__visual {
  order: 1;
}

.spotlight__content .section__head {
  margin-bottom: 0;
}

.spotlight__content .section__label {
  margin-bottom: 14px;
}
.spotlight__content .section__title {
  margin-bottom: 16px;
}
.spotlight__content .section__desc {
  margin-bottom: 28px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.service-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(96, 165, 250, 0.25);
  transform: translateX(4px);
}

.service-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  color: #93c5fd;
}

.service-item__body p {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray); /* overridden below for dark/light section contexts */
}

.service-item__body small {
  display: block;
  font-size: 13px;
  line-height: 1.55;
  /* color: rgba(255, 255, 255, 0.55); */
  color: var(--gray);
}

.spotlight__note {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  padding-left: 14px;
  border-left: 3px solid var(--secondary);
}

.spotlight__cta {
  margin-top: 8px;
}

.spotlight__visual {
  position: relative;
}

.spotlight__gallery {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.spotlight__gallery--stats {
  background: rgba(255, 255, 255, 0.04);
  padding: 8px;
}

.spotlight__slide {
  display: none;
  padding: 32px;
  min-height: 280px;
  background:
    linear-gradient(160deg, rgba(15, 23, 42, 0.6), rgba(30, 41, 59, 0.9)),
    url("../images/meshpdd.jpg") center / cover no-repeat;
}

.spotlight__slide--active {
  display: block;
}

.spotlight__mock {
  padding: 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  line-height: 1.55;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.spotlight__mock--it {
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(96, 165, 250, 0.25);
}

.spotlight__mock--ru {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.2);
}

.spotlight__mock--verdict {
  background: rgba(164, 2, 10, 0.3);
  border-color: rgba(121, 1, 7, 0.3);
}

.spotlight__mock-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.55);
}

.spotlight__mock p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.spotlight__mock mark {
  background: rgba(37, 99, 235, 0.25);
  color: #bfdbfe;
  padding: 1px 4px;
  border-radius: 4px;
}

.spotlight__verdict {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  background: rgba(164, 2, 10, 0.3);
  color: #ff7a7a;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(164, 2, 10, 0.3);
}

.spotlight__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.35);
}

.spotlight__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
}

.spotlight__dots span.is-active {
  background: var(--primary);
  transform: scale(1.2);
}

/* Double-class specificity (0,2,0) beats base .stats-mock (0,1,0) regardless of cascade order. */
.stats-mock.stats-mock--dark {
  padding: 28px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: calc(var(--radius-xl) - 8px);
}

.stats-mock.stats-mock--dark .stats-mock__header {
  color: var(--white);
}

.stats-mock.stats-mock--dark .stats-mock__readiness,
.stats-mock.stats-mock--dark .stats-mock__chapters {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.stats-mock.stats-mock--dark .stats-mock__readiness span,
.stats-mock.stats-mock--dark .stats-mock__chapters span {
  color: rgba(255, 255, 255, 0.55);
}

.stats-mock.stats-mock--dark .stats-mock__readiness strong {
  color: var(--secondary);
}

.stats-mock.stats-mock--dark .stats-mock__bar {
  background: rgba(255, 255, 255, 0.1);
  border: none;
}

.stats-mock.stats-mock--dark .stats-mock__mini {
  background: rgba(255, 255, 255, 0.1);
}

.stats-mock.stats-mock--dark .stats-mock__top {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.25);
  color: #fca5a5;
}

.section__head {
  max-width: 720px;
  margin-bottom: 48px;
}

.section__label {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.section__title {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

.section__desc {
  margin: 0;
  font-size: 18px;
  color: var(--gray);
  line-height: 1.65;
}

/* Compare */
.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 28px;
}

.compare__card {
  padding: 32px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.compare__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.compare__card--bad {
  border-top: 4px solid var(--danger);
}
.compare__card--good {
  border-top: 4px solid var(--primary);
}

.compare__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.compare__header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}

.compare__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
}

.compare__icon--bad {
  background: rgba(239, 68, 68, 0.12);
  color: var(--danger);
}
.compare__icon--good {
  background: rgba(37, 99, 235, 0.12);
  color: var(--primary);
}

.compare__intro {
  margin: 0 0 16px;
  font-size: 15px;
}

.compare__list,
.compare__steps {
  margin: 0 0 20px;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.75;
}

.compare__example {
  padding: 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  margin-bottom: 16px;
}

.compare__example--bad {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.15);
}

.compare__example-tag {
  display: inline-block;
  padding: 3px 10px;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  background: var(--danger);
  border-radius: var(--radius-pill);
}

.compare__example p {
  margin: 0;
}

.compare__flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 11px;
  font-family: var(--font-mono);
}

.compare__flow span:not(:nth-child(even)) {
  padding: 6px 12px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: var(--radius-pill);
  color: var(--primary);
}

.compare__verdict {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--danger);
}

.compare__verdict--good {
  color: var(--primary);
}

.compare__divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare__divider span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 20px 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

/* Callout */
.callout {
  margin: 0;
  padding: 26px 30px;
  border-radius: var(--radius-lg);
  font-size: 15px;
  line-height: 1.65;
  background: var(--white);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
}

.callout--shield {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  margin-top: 40px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.06),
    rgba(96, 165, 250, 0.04)
  );
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-left: 4px solid var(--primary);
}

.callout__icon {
  font-size: 32px;
  flex-shrink: 0;
}

.callout__code {
  display: block;
  margin-top: 14px;
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--primary);
}

/* Rails */
.rails {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.rails__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  justify-content: center;
}

.rails__tab {
  padding: 10px 20px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition);
}

.rails__tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.rails__tab.is-active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.rails__panel {
  animation: fadeIn 0.35s var(--ease);
}
.rails__panel[hidden] {
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rails__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: start;
}

.rails__text h3 {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
}

.rails__text p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.6;
}

.rails__solves,
.rails__user {
  color: var(--dark) !important;
}

/* Admin mock */
.admin-mock {
  padding: 22px;
  border-radius: var(--radius-lg);
  font-size: 12px;
  background: var(--light);
  border: 1px solid var(--border);
}

.admin-mock__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  color: var(--dark);
}

.admin-mock__tab-active {
  padding: 5px 12px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  border-radius: var(--radius-pill);
}

.admin-mock__field {
  margin-bottom: 12px;
}

.admin-mock__field label {
  display: block;
  margin-bottom: 5px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray);
}

.admin-mock__textarea {
  padding: 11px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.5;
  min-height: 52px;
  color: var(--color-text-secondary);
}

.admin-mock__table {
  width: 100%;
  margin-bottom: 12px;
  border-collapse: collapse;
  font-size: 11px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.admin-mock__table th,
.admin-mock__table td {
  padding: 9px 11px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.admin-mock__table th {
  background: var(--white);
  font-weight: 600;
  color: var(--dark);
}

.admin-mock__edit {
  background: rgba(245, 158, 11, 0.1);
}

.admin-mock__save {
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  background: var(--primary);
  border: none;
  border-radius: var(--radius-pill);
  cursor: default;
}

.admin-mock__filter,
.admin-mock__search {
  margin-bottom: 12px;
  padding: 10px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.admin-mock__tags {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.admin-mock__tags span {
  padding: 4px 10px;
  font-size: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--gray);
}

.admin-mock__priority {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  background: var(--danger);
  border-radius: var(--radius-pill);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
  margin-bottom: 28px;
}

.step-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.step-card__num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 18px;
}

.step-card__mock {
  padding: 16px;
  margin-bottom: 18px;
  border-radius: var(--radius-md);
  font-size: 13px;
  line-height: 1.5;
  border: 1px solid var(--border);
}

.step-card__mock--it {
  background: rgba(37, 99, 235, 0.05);
  border-color: rgba(37, 99, 235, 0.15);
}

.step-card__mock--ru {
  background: rgba(245, 158, 11, 0.06);
  border-color: rgba(245, 158, 11, 0.15);
}

.step-card__mock--verdict {
  background: rgba(16, 185, 129, 0.06);
  border-color: rgba(16, 185, 129, 0.15);
}

.step-card__mock-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gray);
}

.step-card__mock p {
  margin: 0;
}

.step-card__mock mark {
  background: rgba(37, 99, 235, 0.12);
  color: var(--primary);
  padding: 1px 4px;
  border-radius: 4px;
}

.step-card__sign-mini {
  height: 44px;
  margin-top: 10px;
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.12),
    rgba(239, 68, 68, 0.06)
  );
  border-radius: 10px;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.step-card__verdict {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-pill);
}

.step-card__verdict--v {
  background: rgba(16, 185, 129, 0.12);
  color: var(--success);
}

.step-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}

.step-card__sub,
.step-card__why {
  margin: 0 0 8px;
  font-size: 14px;
}

.steps__arrow {
  display: flex;
  align-items: center;
  font-size: 22px;
  color: var(--gray);
  opacity: 0.4;
  padding-top: 90px;
}

.steps__note {
  text-align: center;
  font-size: 14px;
  color: var(--gray);
  margin: 0;
  padding: 14px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 52px;
}

.feature-card {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.feature-card--accent {
  border-top: 4px solid var(--primary);
  box-shadow: var(--shadow-lg);
}

.feature-card__icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.feature-card h3 {
  margin: 0 0 6px;
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
}

.feature-card__tagline {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

.feature-card ul {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.75;
}

/* Stats */
.stats-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  padding: 40px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.stats-block h3 {
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
}

.stats-block__lead {
  margin: 0 0 28px;
  font-size: 15px;
}

.stats-block__metrics {
  display: grid;
  gap: 18px;
  margin: 0;
}

.stats-block__metrics div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.stats-block__metrics div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.stats-block__metrics dt {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--dark);
}

.stats-block__metrics dd {
  margin: 0;
  font-size: 14px;
}

.stats-mock {
  padding: 22px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.stats-mock__header {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--dark);
}

.stats-mock__readiness,
.stats-mock__chapters {
  padding: 16px;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  background: var(--white);
  border: 1px solid var(--border);
}

.stats-mock__readiness span {
  font-size: 12px;
  color: var(--gray);
}

.stats-mock__readiness strong {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--secondary);
  margin: 4px 0 12px;
}

.stats-mock__bar {
  height: 8px;
  background: var(--border);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.stats-mock__bar div {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-pill);
}

.stats-mock__chapters > div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 12px;
}

.stats-mock__chapters > div:last-child {
  margin-bottom: 0;
}
.stats-mock__chapters span {
  flex: 1;
  min-width: 0;
}

.stats-mock__mini {
  width: 80px;
  height: 6px;
  background: var(--border);
  border-radius: var(--radius-pill);
  overflow: hidden;
  flex-shrink: 0;
}

.stats-mock__mini div {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-pill);
}

.stats-mock__top {
  font-size: 12px;
  font-weight: 600;
  color: var(--danger);
  padding: 12px 16px;
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: var(--radius-md);
}

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 28px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.price-card--featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-xl);
  transform: scale(1.02);
}

.price-card--featured:hover {
  transform: scale(1.02) translateY(-6px);
}

.price-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 16px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--primary);
  border-radius: var(--radius-pill);
}

.price-card h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
}

.price-card__label {
  margin: 4px 0 18px;
  font-size: 14px;
  color: var(--gray);
}

.price-card__amount {
  font-size: 44px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.price-card__amount span {
  font-size: 22px;
  color: var(--gray);
}
.price-card__amount--tbd {
  font-size: 30px;
  color: var(--gray);
}

.price-card__for {
  margin: 0 0 26px;
  font-size: 14px;
  min-height: 44px;
}

.price-card ul {
  flex: 1;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  font-size: 14px;
  line-height: 1.85;
}

.price-card ul li {
  padding-left: 26px;
  position: relative;
}

.price-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.pricing__note {
  text-align: center;
  font-size: 14px;
  color: var(--gray);
  margin: 0;
  padding: 16px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

/* FAQ */
.faq {
  padding: 8px 28px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item:last-child {
  border-bottom: none;
}

.faq__item summary {
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color var(--transition);
}

.faq__item summary:hover {
  color: var(--primary);
}
.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 20px;
  color: var(--gray);
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all var(--transition);
}

.faq__item[open] summary::after {
  content: "−";
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}

.faq__item p {
  margin: 0 0 22px;
  padding-right: 48px;
  font-size: 15px;
  line-height: 1.65;
}

/* CTA */
.cta-section {
  padding: 96px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.15), transparent 60%),
    url("../images/tuscany-italy-road-trip.jpg") center / cover no-repeat;
  opacity: 0.15;
}

.cta-section__inner {
  max-width: 640px;
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-section h2 {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

.cta-section p {
  margin: 0 0 32px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.cta-section .btn--primary {
  margin-bottom: 28px;
}

.cta-section__meta {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.45) !important;
  margin: 0 !important;
}

/* Footer */
.footer {
  padding: 48px 0 56px;
  background: #0b1220;
  color: rgba(255, 255, 255, 0.72);
}

.footer__inner {
  text-align: center;
  padding: 0 24px;
}

.footer .logo {
  justify-content: center;
  margin-bottom: 14px;
}

.footer .logo__name {
  color: var(--white);
}
.footer .logo__accent {
  color: #60a5fa;
}

.footer p {
  margin: 0 0 8px;
  font-size: 14px;
}
.footer__copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero__aside {
    order: -1;
  }
  .features-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .spotlight {
    gap: 44px;
  }
  .compare {
    grid-template-columns: 1fr;
  }
  .compare__divider span {
    writing-mode: horizontal-tb;
    transform: none;
    width: 100%;
    text-align: center;
  }
  .rails__grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .steps__arrow {
    display: none;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .stats-block {
    grid-template-columns: 1fr;
    padding: 28px;
  }
  .pricing {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
  .price-card--featured {
    transform: none;
  }
  .price-card--featured:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 72px;
  }

  .nav {
    position: fixed;
    top: calc(var(--header-h) + 12px);
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    margin-left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    transition:
      transform 0.35s var(--ease),
      opacity 0.35s var(--ease),
      visibility 0.35s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__link {
    padding: 14px 16px;
    font-size: 15px;
    color: var(--dark) !important;
    border-radius: var(--radius-md);
  }

  .header__cta {
    display: none;
  }
  .burger {
    display: flex;
  }

  .section {
    padding: 72px 0;
  }
  .hero {
    min-height: auto;
    padding-bottom: 72px;
  }
  .hero__stats {
    gap: 24px;
    flex-wrap: wrap;
  }
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .btn {
    width: 100%;
  }

  .hero__aside {
    display: none;
  }

  .rails__tabs {
    justify-content: flex-start;
  }

  .admin-mock {
    display: none;
  }

  .features-strip__grid {
    grid-template-columns: 1fr;
  }
  .scroll-indicator {
    display: none;
  }
  .spotlight {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .spotlight--reverse .spotlight__content,
  .spotlight--reverse .spotlight__visual {
    order: unset;
  }
  .spotlight__visual {
    order: -1;
    display: none;
  }
  .compare__card {
    padding: 24px;
  }
  .callout--shield {
    flex-direction: column;
  }
  .faq {
    padding: 4px 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }
  .logo__name {
    font-size: 15px;
  }
  .hero__stat strong {
    font-size: 1.75rem;
  }
}

/* ===== Light-theme overrides for spotlight sub-components ===== */
/* When a block with spotlight layout is placed in a light section (no .section--spotlight),
   all whitened child elements must fall back to dark readable colors. */

.section:not(.section--spotlight) .spotlight__note {
  color: var(--gray);
}

.section:not(.section--spotlight) .service-item {
  background: var(--white);
  border-color: var(--border);
}

.section:not(.section--spotlight) .service-item:hover {
  background: #f1f5f9;
  border-color: rgba(37, 99, 235, 0.25);
  transform: translateX(4px);
}

.section:not(.section--spotlight) .service-item__icon {
  background: rgba(37, 99, 235, 0.09);
  color: var(--primary);
  border-color: rgba(37, 99, 235, 0.15);
}

.section:not(.section--spotlight) .service-item__body p {
  color: var(--dark);
}

.section:not(.section--spotlight) .service-item__body small {
  color: var(--gray);
}

.section:not(.section--spotlight) .spotlight__cta {
  /* primary button is already readable on light bg */
}

/* Dark spotlight sections: service-item text must be light, not gray */
.section--spotlight .service-item__body p {
  color: rgba(255, 255, 255, 0.92);
}

.section--spotlight .service-item__body small {
  color: rgba(255, 255, 255, 0.6);
}

.section--spotlight .service-item {
  border-color: rgba(255, 255, 255, 0.08);
}

.section--spotlight .service-item__icon {
  background: rgba(96, 165, 250, 0.15);
  color: #93c5fd;
  border-color: rgba(96, 165, 250, 0.2);
}
