/* ============================================
   SAVI Tech Solutions Corp — Design System
   ============================================ */
:root {
  --dark-blue: #020b18;
  --dark-green: #02101f;
  --mid-blue: #0d2a4a;
  --mid-green: #1e3a5f;
  --brand-blue: #1a56db;
  --brand-green: #1e40af;
  --brand-green-dark: #0c2447;
  --accent-cyan: #38bdf8;
  --accent-orange: #e8752a;
  --accent-orange-light: #fb923c;
  --light-bg: #eef2f7;
  --white: #ffffff;
  --text-dark: #0f172a;
  --text-body: #475569;
  --text-muted: #94a3b8;
  --footer-lightblue: #bfdbfe;
  --footer-tan: #c9a87c;
  --teal: #0d9488;
  --radius-card: 16px;
  --radius-pill: 999px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.14);
  --transition: 0.25s ease;
  --container: 1200px;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

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

/* Eyebrow labels */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-orange);
  flex-shrink: 0;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
}

.nav.scrolled {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav--dark {
  background: rgba(2, 16, 31, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav--dark.scrolled {
  background: rgba(2, 16, 31, 0.92);
}

.nav--light {
  background: rgba(238, 242, 247, 0.85);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav--light.scrolled {
  background: rgba(255, 255, 255, 0.92);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

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

.nav__logo-img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav--dark .nav__logo-img,
.nav--light .nav__logo-img {
  mix-blend-mode: normal;
}

.nav__logo-img--footer {
  height: 44px;
  mix-blend-mode: screen;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav__logo-name {
  font-weight: 700;
  font-size: 15px;
}

.nav--dark .nav__logo-name { color: var(--white); }
.nav--light .nav__logo-name { color: var(--text-dark); }

.nav__logo-sub {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav--dark .nav__logo-sub { color: var(--text-muted); }
.nav--light .nav__logo-sub { color: var(--text-muted); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border-radius: var(--radius-pill);
  border: 1px solid;
}

.nav--dark .nav__links {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.nav--light .nav__links {
  background: var(--white);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.nav__link {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}

.nav--dark .nav__link { color: rgba(255, 255, 255, 0.85); }
.nav--light .nav__link { color: var(--text-body); }

.nav__link:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav--light .nav__link:hover {
  background: var(--light-bg);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: var(--mid-green);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}

.nav__cta:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav--dark .nav__hamburger span { background: var(--white); }
.nav--light .nav__hamburger span { background: var(--text-dark); }

.nav__mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--white);
  padding: 24px;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-card);
  z-index: 999;
}

.nav__mobile-menu.open { display: flex; }

.nav__mobile-link {
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  border-radius: var(--radius-card);
  color: var(--text-dark);
}

.nav__mobile-link:hover { background: var(--light-bg); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn:hover { transform: translateY(-2px); }

.btn--primary-orange {
  background: var(--accent-orange);
  color: var(--white);
}

.btn--primary-orange:hover {
  background: var(--accent-orange-light);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
}

.btn--outline-dark {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn--outline-dark:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn--brand-green {
  background: var(--mid-green);
  color: var(--white);
  width: 100%;
  padding: 16px 28px;
  font-size: 16px;
}

.btn--brand-green:hover {
  background: #2563eb;
}

.btn--brand-blue {
  background: var(--brand-blue);
  color: var(--white);
}

.btn--brand-blue:hover {
  background: #2563eb;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--dark-green);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__terrain {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 280px;
  background: linear-gradient(to top, rgba(12, 36, 71, 0.9) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__terrain::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -10%;
  right: -10%;
  height: 200px;
  background: radial-gradient(ellipse 80% 100% at 50% 100%, rgba(26, 86, 219, 0.4) 0%, transparent 70%);
}

.hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 60px) 24px 40px;
}

.hero .eyebrow {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 820px;
  margin-bottom: 24px;
}

.hero__title-white { color: var(--white); }
.hero__title-orange { color: var(--accent-orange); }

.hero__typing-cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  margin-left: 2px;
  vertical-align: -0.05em;
  background: currentColor;
  animation: hero-cursor-blink 0.9s step-end infinite;
}

.hero__title-orange .hero__typing-cursor {
  background: var(--accent-orange);
}

@keyframes hero-cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__typing-cursor { display: none; }
}

.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 60px;
}

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

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
}

.stats-bar__item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-bar__item:last-child { border-right: none; }

.stats-bar__value {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 6px;
}

.stats-bar__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__ticker-label {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 20px 24px 12px;
}

.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 16px 0 48px;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee__item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  opacity: 0.5;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.marquee__logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  background: var(--light-bg);
  padding: 100px 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.about__visual { position: relative; }

.about__image-wrap {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.about__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-card);
}

.about__badges {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  z-index: 2;
}

.about__badge {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.about__badge--grey {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-dark);
}

.about__badge--green {
  background: var(--mid-green);
  color: var(--white);
}

.about__badge--orange {
  background: var(--accent-orange);
  color: var(--white);
}

.about__promise {
  margin-top: -40px;
  margin-left: 24px;
  margin-right: 24px;
  position: relative;
  z-index: 3;
  background: var(--dark-blue);
  border-radius: var(--radius-card);
  padding: 28px 32px;
}

.about__promise-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 12px;
}

.about__promise-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 12px;
}

.about__promise-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.about__content .eyebrow {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text-body);
  margin-bottom: 20px;
}

.about__title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.about__title-accent { color: var(--mid-green); }

.about__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.about__tab {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.about__tab:hover { color: var(--text-dark); }

.about__tab.active {
  border-color: var(--text-dark);
  color: var(--text-dark);
  font-weight: 600;
}

.about__tab-content { display: none; }
.about__tab-content.active { display: block; }

.about__tab-content p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about__tab-content p:last-child { margin-bottom: 0; }

.about__mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.about__mini-stat {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-card);
  padding: 20px 16px;
  text-align: center;
}

.about__mini-stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.about__mini-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products {
  background: var(--dark-blue);
  padding: 100px 0;
}

.products__header {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}

.products .eyebrow {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}

.products__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.products__subtitle {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  padding-bottom: 8px;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.product-card__image-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__status {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card__status--live-green {
  background: var(--mid-green);
  color: var(--white);
}

.product-card__status--live-orange {
  background: var(--accent-orange);
  color: var(--white);
}

.product-card__status--pipeline {
  background: var(--white);
  color: var(--text-dark);
}

.product-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.product-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 12px;
}

.product-card__desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 20px;
}

.product-card__features {
  margin-bottom: 20px;
}

.product-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: 8px;
}

.product-card__check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.12);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
}

.product-card__link {
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition);
}

.product-card__link:hover { color: var(--mid-green); }

/* ============================================
   WHY SAVI
   ============================================ */
.why {
  background: var(--light-bg);
  padding: 100px 0;
}

.why__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.why .eyebrow {
  background: rgba(126, 179, 240, 0.2);
  border: 1px solid rgba(126, 179, 240, 0.3);
  color: var(--text-body);
  margin-bottom: 20px;
}

.why__title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.why__title-accent { color: var(--mid-green); }

.why__subtitle {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
}

.why__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

.why-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  min-height: 280px;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.why-card--highlight {
  background: var(--mid-green);
  color: var(--white);
}

.why-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.why-card--highlight .why-card__icon {
  background: rgba(255, 255, 255, 0.15);
}

.why-card__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}

.why-card__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-body);
  flex: 1;
  margin-bottom: 20px;
}

.why-card--highlight .why-card__desc { color: rgba(255, 255, 255, 0.8); }

.why-card__link {
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: opacity var(--transition);
}

.why-card__link:hover { opacity: 0.8; }

.why-card--highlight .why-card__link { color: var(--white); }

/* Testimonial */
.testimonial {
  background: var(--dark-blue);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 340px 1fr;
  min-height: 360px;
}

.testimonial__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

.testimonial__content {
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial__quote-mark {
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent-orange);
  line-height: 1;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}

.testimonial__text {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 24px;
}

.testimonial__author {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.testimonial__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.testimonial__link:hover { color: var(--accent-cyan); }

/* ============================================
   CONTACT
   ============================================ */
.contact {
  position: relative;
  background: var(--dark-green);
  padding: 88px 0 96px;
  overflow: hidden;
}

.contact__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/contact-bg.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.contact__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(2, 32, 22, 0.82) 0%,
      rgba(2, 16, 31, 0.78) 45%,
      rgba(1, 10, 24, 0.85) 100%
    );
}

.contact__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: 48px;
  align-items: center;
}

.contact__intro {
  grid-column: 1 / -1;
  max-width: 720px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 0;
  margin-top: 0;
  max-width: 520px;
}

.contact__qr {
  justify-self: end;
  align-self: center;
  width: 100%;
  max-width: 240px;
  padding: 16px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-hover);
  text-align: center;
}

.contact__qr img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.contact__qr-caption {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-body);
  letter-spacing: 0.01em;
}

.contact .eyebrow {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0;
  margin-bottom: 20px;
}

.contact-form-card {
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-hover);
  width: 100%;
  grid-column: 1 / -1;
}

.contact__title {
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
}

.contact__title-accent { color: var(--accent-orange); }

.contact__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 420px;
}

.contact__details { margin-bottom: 28px; }

.contact__detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--white);
  font-size: 14px;
}

.contact__detail a {
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition);
}

.contact__detail a:hover {
  color: var(--accent-orange);
}

.contact__detail-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
}

.contact__socials {
  display: flex;
  gap: 8px;
}

.contact__social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  transition: background var(--transition);
}

.contact__social:hover { background: rgba(255, 255, 255, 0.15); }

/* Contact Form */

.contact-form-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-form-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-form-card__subtitle {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-form-card__online {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}

.contact-form-card__online--online {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}

.contact-form-card__online--offline {
  background: rgba(148, 163, 184, 0.15);
  color: #64748b;
}

.contact-form-card__online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.contact-form-card__online--online .contact-form-card__online-dot {
  background: #22c55e;
}

.contact-form-card__online--offline .contact-form-card__online-dot {
  background: #94a3b8;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.contact-form-card .form-row .form-group {
  margin-bottom: 0;
}

.form-group { margin-bottom: 12px; }

.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  background: var(--light-bg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  color: var(--text-dark);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group select {
  appearance: none;
  padding-right: 40px;
  background-color: var(--light-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--mid-green);
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 104px;
}

.form-group__counter {
  text-align: right;
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 4px;
}

.form-error {
  margin-bottom: 12px;
  font-size: 13px;
  color: #b91c1c;
}

.contact-form__fields .btn--brand-green {
  margin-top: 4px;
  padding: 14px 24px;
  font-size: 15px;
}

.contact-form__fields .btn--brand-green:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-interests { margin-bottom: 12px; }

.form-interests__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-interests__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.interest-pill {
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  background: var(--light-bg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--text-body);
  cursor: pointer;
  transition: all var(--transition);
}

.interest-pill:hover { border-color: var(--mid-green); }

.interest-pill.active {
  background: var(--mid-green);
  border-color: var(--mid-green);
  color: var(--white);
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show { display: block; }
.form-success.show ~ .contact-form__fields { display: none; }

.form-success__icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.form-success__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-success__text {
  color: var(--text-muted);
  font-size: 14px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark-blue);
  padding: 64px 0 0;
  overflow: hidden;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 0.8fr 0.8fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__brand-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer__heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--footer-tan);
  margin-bottom: 20px;
}

.footer__newsletter {
  display: flex;
  gap: 0;
  margin-bottom: 12px;
}

.footer__newsletter input {
  flex: 1;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  color: var(--white);
  outline: none;
  font-size: 14px;
}

.footer__newsletter input::placeholder { color: var(--text-muted); }

.footer__newsletter-btn {
  width: 44px;
  height: 44px;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  background: var(--accent-orange);
  border: none;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.footer__newsletter-btn:hover { background: var(--accent-orange-light); }

.footer__newsletter-note {
  font-size: 13px;
  color: var(--text-muted);
}

.footer__links li { margin-bottom: 10px; }

.footer__links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer__links a:hover { color: var(--white); }

.footer .container {
  container-type: inline-size;
}

.footer__wordmark {
  width: 100%;
  font-size: clamp(1.5rem, 18.5cqi, 14rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--footer-tan);
  line-height: 0.85;
  text-align: center;
  white-space: nowrap;
  margin: 0;
  padding: 20px 0 0;
  user-select: none;
  opacity: 0.85;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: -20px;
  position: relative;
  z-index: 1;
}

.footer__copyright {
  font-size: 13px;
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__legal a:hover { color: var(--white); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .products__header { grid-template-columns: 1fr; }
  .products__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .why__cards { grid-template-columns: repeat(2, 1fr); }
  .testimonial { grid-template-columns: 1fr; }
  .testimonial__photo { min-height: 280px; max-height: 320px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__item:nth-child(2) { border-right: none; }
  .stats-bar__item:nth-child(1),
  .stats-bar__item:nth-child(2) { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }

  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__promise { margin-left: 16px; margin-right: 16px; }
  .about__mini-stats { grid-template-columns: 1fr; }

  .why__cards { grid-template-columns: 1fr; }
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
  }

  .contact__info {
    max-width: none;
  }

  .contact__qr {
    justify-self: center;
    max-width: 200px;
  }

  .contact-form-card {
    padding: 28px 24px;
    grid-column: auto;
  }
  .form-row { grid-template-columns: 1fr; }
  .testimonial__content { padding: 32px 28px; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 320px; }
}

@media (max-width: 480px) {
  .about__mini-stats { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px; }
}

/* ============================================
   CHECKED PRODUCT PAGE
   ============================================ */
.checked-page {
  background: var(--white);
}

.checked-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  margin-bottom: 32px;
  transition: color var(--transition);
}

.checked-back:hover { color: var(--brand-blue); }

.checked-hero {
  padding: calc(var(--nav-height) + 48px) 0 80px;
  background: linear-gradient(160deg, #eef6ff 0%, var(--white) 55%, #f0fdf4 100%);
}

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

.checked-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.checked-brand__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-blue), #059669);
  color: var(--white);
  font-weight: 800;
  font-size: 18px;
}

.checked-brand__name {
  font-size: 28px;
  font-weight: 800;
  color: var(--brand-blue);
  letter-spacing: -0.02em;
}

.checked-brand--light .checked-brand__name { color: var(--white); }

.checked-hero__tagline {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.checked-hero__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.checked-hero__intro {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 520px;
}

.checked-hero__slogan {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 28px;
}

.checked-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.checked-btn--outline {
  background: transparent;
  color: var(--brand-blue);
  border: 2px solid var(--brand-blue);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
}

.checked-btn--outline:hover {
  background: var(--brand-blue);
  color: var(--white);
}

.checked-hero__brochure {
  width: 100%;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-hover);
}

.checked-highlights {
  padding: 64px 0;
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.checked-highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.checked-highlight {
  padding: 28px 24px;
  border-radius: var(--radius-card);
  background: var(--light-bg);
  transition: transform var(--transition), box-shadow var(--transition);
}

.checked-highlight:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.checked-highlight__icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.checked-highlight__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.checked-highlight__desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

.checked-section {
  padding: 80px 0;
}

.checked-section--light {
  background: var(--light-bg);
}

.checked-section--dark {
  background: var(--dark-green);
}

.checked-section--pricing {
  background: linear-gradient(135deg, #ecfdf5 0%, #eff6ff 100%);
}

.checked-section__header {
  margin-bottom: 48px;
  max-width: 640px;
}

.checked-section__header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.checked-section__title {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-top: 16px;
  margin-bottom: 12px;
}

.checked-section__title--light { color: var(--white); }

.checked-section__subtitle {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.7;
}

.checked-section__subtitle--light {
  color: rgba(255, 255, 255, 0.72);
}

.checked-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  counter-reset: none;
  list-style: none;
}

.checked-step {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.checked-section--light .checked-step {
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: none;
}

.checked-step__number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-blue);
  color: var(--white);
  font-weight: 800;
  font-size: 16px;
}

.checked-step__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.checked-step__desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

.checked-sms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.checked-sms__phone {
  background: #1a1a2e;
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.checked-sms__statusbar {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  padding: 4px 8px 12px;
}

.checked-sms__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  padding: 0 12px 8px;
}

.checked-sms__bubble {
  background: #2d3748;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.55;
  padding: 14px 16px;
  border-radius: 16px 16px 16px 4px;
  margin: 0 8px 8px;
}

.checked-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.checked-benefit {
  border-radius: var(--radius-card);
  padding: 36px 32px;
  color: var(--white);
}

.checked-benefit--school {
  background: linear-gradient(145deg, #059669, #047857);
}

.checked-benefit--parents {
  background: linear-gradient(145deg, var(--brand-blue), #1d4ed8);
}

.checked-benefit__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 8px;
}

.checked-benefit__title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 24px;
}

.checked-benefit__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.checked-benefit__list li:last-child { border-bottom: none; }

.checked-benefit__check {
  flex-shrink: 0;
  font-weight: 700;
}

.checked-pricing {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.checked-pricing__intro { margin-bottom: 36px; }

.checked-pricing__tagline {
  font-size: 16px;
  color: var(--text-body);
  font-style: italic;
  margin-top: 12px;
}

.checked-pricing__cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.checked-price-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px 40px;
  box-shadow: var(--shadow-card);
  min-width: 220px;
}

.checked-price-card--primary {
  border: 2px solid var(--brand-blue);
  transform: scale(1.04);
}

.checked-price-card__amount {
  font-size: 42px;
  font-weight: 900;
  color: var(--brand-blue);
  letter-spacing: -0.02em;
}

.checked-price-card__label {
  font-size: 14px;
  color: var(--text-body);
  margin-top: 4px;
}

.checked-price-card__or {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
}

.checked-pricing__values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.checked-pricing__value {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--text-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.checked-included__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
}

.checked-included__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
  max-width: 720px;
  margin: 0 auto;
}

.checked-included__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-dark);
  padding: 10px 0;
}

.checked-included__check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #dcfce7;
  color: #059669;
  font-size: 12px;
  font-weight: 700;
}

.checked-included__note {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-blue);
  margin-top: 32px;
  padding: 16px 24px;
  background: rgba(26, 86, 219, 0.08);
  border-radius: var(--radius-card);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.checked-cta {
  padding: 64px 0;
  background: var(--dark-green);
}

.checked-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.checked-cta__title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--white);
  margin: 12px 0 8px;
}

.checked-cta__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 480px;
  margin-bottom: 16px;
}

.checked-cta__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.checked-cta__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-cyan);
  transition: color var(--transition);
}

.checked-cta__link:hover { color: var(--white); }

@media (max-width: 1024px) {
  .checked-hero__grid { grid-template-columns: 1fr; }
  .checked-hero__visual { order: -1; max-width: 560px; margin: 0 auto; }
  .checked-highlights__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .checked-highlights__grid,
  .checked-steps,
  .checked-sms-grid,
  .checked-benefits,
  .checked-included__grid {
    grid-template-columns: 1fr;
  }

  .checked-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .checked-price-card--primary { transform: none; }
}

/* ============================================
   IT SOLUTIONS PRODUCT PAGE
   ============================================ */
.it-page .it-back:hover { color: var(--accent-orange); }

.it-hero {
  background: linear-gradient(160deg, #fff7ed 0%, var(--white) 55%, #fef3c7 100%);
}

.it-brand__icon {
  background: linear-gradient(135deg, var(--accent-orange), #c2410c);
}

.it-brand__name { color: var(--accent-orange); }

.it-hero__tagline { color: var(--accent-orange); }

.it-hero__slogan { color: var(--accent-orange); }

.it-btn--outline {
  color: var(--accent-orange);
  border-color: var(--accent-orange);
}

.it-btn--outline:hover {
  background: var(--accent-orange);
  color: var(--white);
}

.it-step__number { background: var(--accent-orange); }

.it-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.it-service {
  padding: 32px 28px;
  background: var(--white);
  border-radius: var(--radius-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.it-service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.it-service__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.it-service__desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 20px;
}

.it-service__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--text-dark);
  padding: 6px 0;
}

.it-service__check {
  flex-shrink: 0;
  color: var(--accent-orange);
  font-weight: 700;
}

.it-service--clickable {
  cursor: pointer;
}

.it-service--clickable:focus-visible {
  outline: 2px solid var(--accent-orange);
  outline-offset: 2px;
}

.it-service__example-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-orange);
}

.it-example-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.it-example-modal[hidden] {
  display: none;
}

.it-example-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 42, 74, 0.72);
}

.it-example-modal__panel {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-card);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-card);
}

.it-example-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  color: var(--text-dark);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
}

.it-example-modal__close:hover {
  background: rgba(0, 0, 0, 0.12);
}

.it-example-modal__visual img {
  width: 100%;
  display: block;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
}

.it-example-modal__body {
  padding: 28px 32px 32px;
}

.it-example-modal__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent-orange);
  margin-bottom: 8px;
}

.it-example-modal__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.it-example-modal__desc {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 16px;
}

.it-example-modal__features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--text-dark);
  padding: 6px 0;
}

.it-industries__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.it-industries__tag {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background var(--transition);
}

.it-industries__tag:hover {
  background: rgba(232, 117, 42, 0.25);
  border-color: var(--accent-orange);
}

.it-benefit--business {
  background: linear-gradient(145deg, var(--accent-orange), #c2410c);
}

.it-benefit--it {
  background: linear-gradient(145deg, #0d2a4a, var(--brand-blue));
}

.it-engagement {
  background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%);
}

.it-engagement__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.it-engagement__card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  text-align: center;
  border-top: 3px solid var(--accent-orange);
}

.it-engagement__name {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.it-engagement__desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
}

.it-cta {
  background: linear-gradient(135deg, #1a0a00 0%, var(--dark-blue) 100%);
}

.it-cta .checked-cta__link { color: var(--accent-orange-light); }
.it-cta .checked-cta__link:hover { color: var(--white); }

@media (max-width: 1024px) {
  .it-services,
  .it-engagement__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PIPELINE PRODUCT PAGE
   ============================================ */
.pipeline-page .pipeline-back:hover { color: var(--accent-cyan); }

.pipeline-hero {
  background: linear-gradient(160deg, #ecfeff 0%, var(--white) 55%, #ede9fe 100%);
}

.pipeline-brand__icon {
  background: linear-gradient(135deg, var(--accent-cyan), var(--brand-blue));
}

.pipeline-brand__name { color: var(--brand-blue); }

.pipeline-hero__tagline { color: var(--teal); }

.pipeline-hero__slogan { color: var(--brand-blue); }

.pipeline-btn--outline {
  color: var(--brand-blue);
  border-color: var(--brand-blue);
}

.pipeline-btn--outline:hover {
  background: var(--brand-blue);
  color: var(--white);
}

.pipeline-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pipeline-product {
  padding: 32px 28px;
  background: var(--white);
  border-radius: var(--radius-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.pipeline-product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.pipeline-product__status {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: var(--light-bg);
  color: var(--text-body);
  margin-bottom: 16px;
}

.pipeline-product__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.pipeline-product__desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 20px;
}

.pipeline-product__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--text-dark);
  padding: 6px 0;
}

.pipeline-product__check {
  flex-shrink: 0;
  color: var(--brand-blue);
  font-weight: 700;
}

.pipeline-roadmap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
}

.pipeline-roadmap__item {
  padding: 32px 28px;
  background: var(--light-bg);
  border-radius: var(--radius-card);
  border-top: 3px solid var(--accent-cyan);
}

.pipeline-roadmap__phase {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 12px;
}

.pipeline-roadmap__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.pipeline-roadmap__desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
}

.pipeline-vision__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
  max-width: 800px;
  margin: 0 auto;
}

.pipeline-vision__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pipeline-vision__check {
  flex-shrink: 0;
  color: var(--accent-cyan);
  font-weight: 700;
}

.pipeline-early {
  background: linear-gradient(135deg, #ecfeff 0%, #ede9fe 100%);
}

.pipeline-early__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.pipeline-early__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-dark);
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pipeline-early__benefits li:last-child { border-bottom: none; }

.pipeline-early__check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.15);
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 700;
}

.pipeline-cta {
  background: linear-gradient(135deg, var(--dark-blue) 0%, #1e1b4b 100%);
}

.pipeline-cta .checked-cta__link { color: var(--accent-cyan); }
.pipeline-cta .checked-cta__link:hover { color: var(--white); }

@media (max-width: 1024px) {
  .pipeline-products,
  .pipeline-roadmap {
    grid-template-columns: 1fr;
  }

  .pipeline-early__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .pipeline-vision__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.scroll-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal--left {
  transform: translateX(-40px);
}

.scroll-reveal--left.is-visible {
  transform: translateX(0);
}

.scroll-reveal--right {
  transform: translateX(40px);
}

.scroll-reveal--right.is-visible {
  transform: translateX(0);
}

.scroll-reveal--scale {
  transform: scale(0.92);
}

.scroll-reveal--scale.is-visible {
  transform: scale(1);
}

.scroll-reveal--fade {
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}
