:root {
  --surface: rgba(255, 255, 255, 0.84);
  --line: rgba(16, 110, 204, 0.14);
  --text: #123d6b;
  --muted: #627f9f;
  --primary: #1cc3ea;
  --secondary: #156fd1;
  --shadow: 0 24px 60px rgba(21, 77, 138, 0.12);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(28, 195, 234, 0.18), transparent 24%),
    radial-gradient(circle at top right, rgba(21, 111, 209, 0.14), transparent 22%),
    linear-gradient(180deg, #f8fbff 0%, #edf5ff 52%, #f8fbff 100%);
  -webkit-tap-highlight-color: transparent;
}
body::after {
  content: "";
  position: fixed;
  inset: auto 0 0 0;
  height: 320px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(28, 195, 234, 0.04));
  z-index: -1;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(18, 61, 107, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 61, 107, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 92%);
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(90deg, #0d67c7, #1dc4ea);
  color: #f8fcff;
}
.topbar-inner, .page-shell {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}
.topbar-inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.topbar-label {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.topbar-text { margin: 0; font-size: 0.95rem; }

.page-shell {
  width: 100%;
  max-width: none;
  padding: 0 24px 48px;
}
.site-header {
  position: sticky;
  top: 46px;
  z-index: 20;
  margin-top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  width: calc(100% + 48px);
  margin-left: -24px;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: linear-gradient(180deg, rgba(7, 19, 36, 0.96), rgba(9, 24, 43, 0.9));
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(7, 19, 36, 0.18);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.site-header.scrolled {
  background: linear-gradient(180deg, rgba(6, 17, 31, 0.98), rgba(7, 20, 38, 0.96));
  box-shadow: 0 18px 40px rgba(7, 19, 36, 0.24);
  border-bottom-color: rgba(127, 232, 255, 0.12);
}
.brand {
  display: inline-flex;
  align-items: flex-end;
  gap: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: #f4fbff;
  isolation: isolate;
}
.brand-logo {
  width: 68px;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(28, 195, 234, 0.16));
  transform-origin: center;
  animation: brandLogoFloat 4.8s ease-in-out infinite;
}
.brand-text {
  font-size: 1.02rem;
  line-height: 1;
  letter-spacing: -0.01em;
  padding-bottom: 8px;
  position: relative;
  display: inline-block;
  min-width: 8.5ch;
  color: transparent;
  background: linear-gradient(90deg, #f4fbff 0%, #e8f8ff 40%, #7fe8ff 72%, #f4fbff 100%);
  background-size: 220% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 0 0 24px rgba(28, 195, 234, 0.08);
}
.brand-text.is-typing::after,
.brand-text.is-complete::after {
  content: "";
  position: absolute;
  right: 1px;
  bottom: 9px;
  width: 2px;
  height: 18px;
  background: rgba(255, 255, 255, 0.95);
  animation: blinkCaret 0.85s step-end infinite;
}
.brand-text.is-complete {
  animation: brandTextGlow 3.8s ease-in-out infinite;
}
.brand:hover .brand-logo {
  filter: drop-shadow(0 14px 24px rgba(28, 195, 234, 0.26));
}
.brand:hover .brand-text {
  text-shadow: 0 0 28px rgba(28, 195, 234, 0.14);
}
.site-nav {
  justify-self: center;
  display: flex;
  gap: 28px;
  color: rgba(230, 242, 255, 0.78);
}
.site-nav a {
  position: relative;
  padding-bottom: 8px;
  font-size: 0.96rem;
  letter-spacing: 0.02em;
}
.site-nav a:hover { color: #ffffff; }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav a[aria-current="page"] { color: #ffffff; }
.menu-toggle {
  display: none;
  border: 0;
  padding: 0;
  background: transparent;
  transition: transform 0.2s ease;
}
.menu-toggle:hover { transform: scale(1.04); }
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background: #ffffff;
  border-radius: 999px;
}

.header-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.header-cta::before, .button::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -120%;
  width: 52%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: skewX(-18deg);
  transition: left 0.5s ease;
}
.header-cta, .button-primary {
  color: #f8fcff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 16px 32px rgba(22, 111, 209, 0.24);
}
.button-secondary {
  background: rgba(255, 255, 255, 0.74);
  border-color: var(--line);
  color: var(--text);
}
.header-cta:hover, .button:hover {
  transform: translateY(-2px);
}
.header-cta:hover::before, .button:hover::before {
  left: 118%;
}

.hero, .section {
  padding-top: 40px;
  width: 100%;
}
.hero { min-height: calc(100vh - 180px); }
.eyebrow {
  margin: 0 0 16px;
  color: var(--secondary);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
}
.hero h1, .company-main h2, .section-heading h2, .banner-copy h2, .contact-copy h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.08;
}
.hero h1 {
  font-size: clamp(2rem, 3vw, 3.35rem);
  max-width: 13ch;
  letter-spacing: -0.035em;
}
.hero-text, .company-main p, .trend-copy p, .news-item p, .contact-copy p, .builder-text {
  color: var(--muted);
  line-height: 1.75;
}
.hero-text {
  max-width: 54ch;
  margin-top: 18px;
  font-size: 0.98rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-slider-shell {
  position: relative;
  min-height: 647px;
  padding: 34px 34px 92px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: linear-gradient(90deg, #1b67c4 0%, #1887da 55%, #21b6e6 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-slider-shell::before,
.hero-slider-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(14px);
  opacity: 0.6;
  animation: heroGlowDrift 12s ease-in-out infinite;
}
.hero-slider-shell::before {
  width: 340px;
  height: 340px;
  left: -80px;
  top: -120px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.26), transparent 65%);
}
.hero-slider-shell::after {
  width: 320px;
  height: 320px;
  right: -70px;
  bottom: -140px;
  background: radial-gradient(circle, rgba(127, 232, 255, 0.22), transparent 68%);
  animation-delay: -4s;
}
.hero-slide {
  position: absolute;
  inset: 34px 34px 92px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
  opacity: 0;
  transform: translateX(30px);
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.hero-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.hero-copy { max-width: 620px; }
.hero-visual {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}
.hero-media-card, .hero-info-card, .hero-price-card, .company-main, .company-points, .corporate-banner, .service-option, .quote-builder, .trend-card, .news-slider, .contact-panel {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.hero-media-card {
  position: absolute;
  inset: 0 0 24px 56px;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 0.35s ease;
}
.hero-media-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  background: transparent;
  animation: floatMedia 7.5s ease-in-out infinite;
  filter: drop-shadow(0 30px 34px rgba(15, 72, 131, 0.16));
}
.mini-title {
  margin: 0 0 10px;
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-info-card {
  position: absolute;
  left: 8px;
  top: 12px;
  width: 220px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  transition: transform 0.3s ease, background 0.3s ease;
}
.hero-slide.is-active .hero-info-card {
  animation: infoCardLift 0.7s ease both;
}
.hero-info-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
  color: #ffffff;
}
.hero-info-card p { margin: 0; color: rgba(245, 250, 255, 0.9); line-height: 1.6; }
.hero-info-card .mini-title { color: rgba(255, 255, 255, 0.78); }
.hero-price-card {
  position: absolute;
  left: 8px;
  top: 16px;
  width: 258px;
  padding: 18px 18px 16px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 48px rgba(14, 59, 110, 0.18);
  color: var(--text);
}
.hero-slide.is-active .hero-price-card {
  animation: infoCardLift 0.7s ease both;
}
.hero-price-badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #14c4a9, #1cc3ea);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-price-plan {
  margin: 16px 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.38rem;
  font-weight: 700;
  line-height: 1.15;
}
.hero-price-amount {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.3rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #102f5a;
}
.hero-price-amount span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: top;
}
.hero-price-note {
  margin: 8px 0 14px;
  color: var(--muted);
  font-weight: 700;
}
.hero-price-list {
  margin: 0;
  padding: 14px 0 0;
  border-top: 1px solid rgba(21, 111, 209, 0.1);
  list-style: none;
  display: grid;
  gap: 10px;
}
.hero-price-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.5;
  font-size: 0.92rem;
}
.hero-price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}
.hero .eyebrow {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #f4fbff;
  font-size: 0.96rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
}
.hero h1 {
  color: #ffffff;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  max-width: 13ch;
}
.hero-text {
  max-width: 34ch;
  margin-top: 18px;
  color: rgba(245, 250, 255, 0.96);
  font-size: 1rem;
}
.hero-emphasis {
  margin: 16px 0 0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.6;
}
.hero .button-primary {
  background: #ffffff;
  color: #156fd1;
  box-shadow: none;
}
.hero .button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}
.hero-slider-controls {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.hero-dots { display: flex; gap: 10px; }
.hero-dot, .hero-control, .news-control { border: 0; cursor: pointer; }
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.36);
}
.hero-dot.is-active {
  width: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
}
.hero-control {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 1.1rem;
  font-weight: 800;
}

.home-page .hero-slider-shell {
  border-color: rgba(21, 111, 209, 0.1);
  background:
    linear-gradient(118deg, #ffffff 0%, #ffffff 48%, rgba(222, 247, 255, 0.92) 48.2%, rgba(28, 195, 234, 0.2) 100%);
  box-shadow: 0 24px 58px rgba(21, 77, 138, 0.12);
}
.home-page .hero-slider-shell::before {
  display: none;
}
.home-page .hero-slider-shell::after {
  right: -80px;
  bottom: -100px;
  width: 58%;
  height: 132%;
  border-radius: 0;
  background: linear-gradient(135deg, rgba(21, 111, 209, 0.84), rgba(28, 195, 234, 0.88));
  clip-path: polygon(24% 0, 100% 0, 100% 78%, 70% 100%, 0 62%);
  filter: none;
  opacity: 1;
  animation: none;
}
.home-page .hero-slide {
  z-index: 1;
}
.home-page .hero .eyebrow {
  border-color: rgba(21, 111, 209, 0.14);
  background: rgba(21, 111, 209, 0.06);
  color: var(--secondary);
}
.home-page .hero h1 {
  color: #102f5a;
  max-width: 15ch;
  font-size: clamp(2rem, 3vw, 2.95rem);
  line-height: 1.05;
}
.home-page .hero-text {
  color: var(--muted);
}
.home-page .hero-emphasis {
  color: var(--text);
}
.home-page .hero .button-primary {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(22, 111, 209, 0.22);
}
.home-page .hero .button-secondary {
  border-color: rgba(21, 111, 209, 0.16);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
}
.home-page .hero-dot {
  background: rgba(21, 111, 209, 0.24);
}
.home-page .hero-dot.is-active {
  background: var(--secondary);
}
.home-page .hero-media-card {
  inset: 0 -54px 20px 166px;
}
.home-page .hero-media-card img {
  -webkit-mask-image: radial-gradient(ellipse 76% 76% at center, #000 58%, rgba(0, 0, 0, 0.94) 70%, transparent 100%);
  mask-image: radial-gradient(ellipse 76% 76% at center, #000 58%, rgba(0, 0, 0, 0.94) 70%, transparent 100%);
}
.home-page .hero-price-card {
  left: 0;
  top: 30px;
  width: 238px;
}

.company-section {
  padding-top: 42px;
  width: 100%;
}
.company-layout {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 26px;
  align-items: start;
  width: 100%;
}
.company-main, .company-points, .corporate-banner, .quote-builder, .contact-panel {
  border-radius: var(--radius-lg);
  padding: 28px;
}
.company-main, .company-points {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(28, 195, 234, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(239, 247, 255, 0.92));
}
.company-main h2 {
  max-width: 11.5ch;
  font-size: clamp(1.7rem, 2.55vw, 2.45rem);
  text-wrap: balance;
}
.section-heading h2, .banner-copy h2, .contact-copy h2 {
  font-size: clamp(1.9rem, 3vw, 2.9rem);
}
.company-main p {
  position: relative;
  z-index: 1;
  max-width: 60ch;
  color: var(--muted);
  margin: 0;
  line-height: 1.9;
  font-size: 1.05rem;
}
.company-main p + p {
  margin-top: 22px;
}
.company-main::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -8%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 195, 234, 0.18), transparent 68%);
  pointer-events: none;
}
.company-main::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 28px;
  width: 160px;
  height: 160px;
  border-radius: 28px;
  border: 1px solid rgba(21, 111, 209, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(28, 195, 234, 0.05));
  transform: rotate(10deg);
  pointer-events: none;
}
.company-divider {
  display: block;
  width: 86px;
  height: 2px;
  margin: 26px 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.company-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
  perspective: 1200px;
}
.company-stats article {
  position: relative;
  padding: 22px 18px;
  border: 1px solid rgba(21, 111, 209, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  overflow: hidden;
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}
.company-stats article::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(28, 195, 234, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 45%, rgba(28, 195, 234, 0.08));
  opacity: 0;
  transition: opacity 0.32s ease;
  pointer-events: none;
}
.company-stats article:hover {
  transform: translateY(-8px) rotateX(4deg);
  border-color: rgba(28, 195, 234, 0.3);
  box-shadow: 0 24px 42px rgba(21, 111, 209, 0.14);
}
.company-stats article:hover::before {
  opacity: 1;
}
.company-stats strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  color: var(--secondary);
}
.company-stats span {
  color: var(--muted);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.company-points {
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(240, 248, 255, 0.9));
  overflow: hidden;
}
.company-points article {
  position: relative;
  padding: 26px 26px 24px;
  border-left: 3px solid transparent;
  border-bottom: 1px solid rgba(21, 111, 209, 0.08);
  transition: background 0.3s ease, border-left-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.company-points article:last-child { border-bottom: 0; }
.company-points article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28, 195, 234, 0.08), transparent 30%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.company-points article:hover {
  border-left-color: var(--primary);
  background: rgba(236, 246, 255, 0.72);
  transform: translateX(8px);
  box-shadow: inset 0 0 0 1px rgba(28, 195, 234, 0.08);
}
.company-points article:hover::before {
  opacity: 1;
}
.company-points h3 {
  margin: 0 0 12px;
  font-size: 1.24rem;
  position: relative;
  z-index: 1;
}
.company-points p {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
  position: relative;
  z-index: 1;
}

.company-page .company-layout {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 20px;
}

.company-page .company-main {
  padding: 26px;
}

.company-page .company-main h2 {
  max-width: 16ch;
  font-size: clamp(1.8rem, 2.25vw, 2.35rem);
}

.company-page .company-main p {
  max-width: 66ch;
  font-size: 1rem;
  line-height: 1.75;
}

.company-page .company-main p + p {
  margin-top: 16px;
}

.company-page .company-divider {
  margin: 20px 0;
}

.company-page .company-points article {
  padding: 20px 22px 18px;
}

.company-page .company-points h3 {
  margin-bottom: 8px;
}

.company-page .company-points p {
  line-height: 1.65;
}

.corporate-banner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: center;
  width: 100%;
  margin-top: 48px;
  background: linear-gradient(135deg, rgba(9, 105, 200, 0.96), rgba(28, 195, 234, 0.9));
  color: #f8fcff;
}
.corporate-banner .eyebrow, .corporate-banner span { color: rgba(248, 252, 255, 0.84); }
.banner-copy h2 { color: #ffffff; }
.banner-metrics { display: grid; gap: 14px; }
.banner-metrics article {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.banner-metrics strong {
  display: block;
  margin-top: 6px;
  color: #ffffff;
}
.section-heading { max-width: 760px; margin-bottom: 28px; }
.section-heading-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.value-section {
  position: relative;
  overflow: hidden;
}

.value-showcase {
  position: relative;
  width: calc(100% + 48px);
  margin-left: -24px;
  padding: 56px 0 20px;
  border-top: 1px solid rgba(21, 111, 209, 0.06);
  border-bottom: 1px solid rgba(21, 111, 209, 0.06);
}

.value-copy {
  position: relative;
  z-index: 2;
}

.value-copy-centered {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.value-copy-centered h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.value-lead {
  max-width: 30ch;
  margin: 18px auto 0;
  color: var(--text);
  font-size: clamp(1.04rem, 1.6vw, 1.25rem);
  line-height: 1.6;
}

.value-showcase-media {
  position: relative;
  z-index: 0;
  margin: -230px 0 0;
  min-height: 520px;
}

.value-showcase-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 28px 40px rgba(17, 63, 116, 0.1));
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.process-card {
  position: relative;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  text-align: center;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.process-card::before,
.reason-card::before,
.trend-card::before,
.service-option::before,
.quote-builder::before,
.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 38%, transparent 62%, rgba(28, 195, 234, 0.08));
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}
.process-card:hover,
.trend-card:hover,
.contact-panel:hover,
.quote-builder:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 58px rgba(21, 77, 138, 0.14);
}
.process-card:hover::before,
.reason-card:hover::before,
.trend-card:hover::before,
.service-option:hover::before,
.quote-builder:hover::before,
.contact-panel:hover::before {
  opacity: 1;
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #f8fcff;
  font-weight: 800;
  font-size: 1.05rem;
}

.process-card h3 {
  margin: 0;
  font-size: 1.28rem;
}

.process-card img {
  width: 100%;
  height: 160px;
  margin: 18px 0;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 18px;
  background: linear-gradient(180deg, #fafdff, #eef6ff);
  transition: transform 0.35s ease;
}
.process-card:hover img,
.trend-card:hover img {
  transform: scale(1.04);
}

.process-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.02rem;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

.reason-card {
  padding: 28px 24px 26px;
  border: 1px solid rgba(21, 111, 209, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 255, 0.96));
  box-shadow: 0 22px 44px rgba(21, 77, 138, 0.08);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.reason-card:hover {
  transform: translateY(-6px);
  border-color: rgba(28, 195, 234, 0.28);
  box-shadow: 0 28px 52px rgba(21, 77, 138, 0.12);
}

.reason-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 18px 34px rgba(28, 195, 234, 0.2);
}

.reason-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.35;
}

.reason-card p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.service-layout {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 18px;
  align-items: start;
  width: 100%;
}
.service-cards { display: grid; gap: 14px; }
.service-cards-title {
  margin: 0 0 2px;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}
.services-section {
  position: relative;
  padding-bottom: 26px;
}
.services-section::before {
  content: "";
  position: absolute;
  inset: 40px 0 auto;
  height: 520px;
  background:
    radial-gradient(circle at 18% 12%, rgba(28, 195, 234, 0.18), transparent 28%),
    radial-gradient(circle at 82% 0%, rgba(21, 111, 209, 0.12), transparent 22%);
  pointer-events: none;
}
.services-section .section-heading {
  max-width: 980px;
  margin-inline: auto;
  margin-bottom: 28px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.services-section .section-heading h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  max-width: 21ch;
  margin-inline: auto;
  text-wrap: balance;
}
.services-page .services-section .section-heading {
  max-width: 860px;
}
.services-page .services-section .section-heading h1 {
  max-width: 22ch;
  margin: 0 auto;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.1rem, 3.4vw, 3.65rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-wrap: balance;
}
.service-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  min-height: 470px;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(118deg, #ffffff 0%, #ffffff 47%, rgba(222, 247, 255, 0.88) 47.2%, rgba(28, 195, 234, 0.2) 100%);
  box-shadow: 0 24px 58px rgba(21, 77, 138, 0.12);
}
.service-showcase::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -80px;
  width: 54%;
  height: 130%;
  background: linear-gradient(135deg, rgba(21, 111, 209, 0.82), rgba(28, 195, 234, 0.86));
  clip-path: polygon(24% 0, 100% 0, 100% 78%, 70% 100%, 0 62%);
}
.service-showcase-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 52px 18px 52px 48px;
}
.service-showcase-copy h1 {
  max-width: 14ch;
  margin: 0;
  color: #102f5a;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.3rem, 3.7vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.service-showcase-copy > p:last-of-type {
  max-width: 54ch;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.78;
}
.service-showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.service-showcase-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 44px 42px 44px 18px;
}
.service-showcase-visual img {
  width: min(100%, 650px);
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 30px 32px rgba(7, 48, 98, 0.2));
  animation: floatMedia 7.5s ease-in-out infinite;
}
.service-showcase-badge {
  position: absolute;
  top: 26px;
  right: 30px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(7, 34, 70, 0.18);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}
.service-shortcuts {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  max-width: 1120px;
  margin: -42px auto 42px;
  padding: 0 18px;
}
.service-shortcuts a {
  position: relative;
  display: grid;
  min-height: 136px;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 16px 12px;
  border: 1px solid rgba(21, 111, 209, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 34px rgba(21, 77, 138, 0.12);
  text-align: center;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}
.service-shortcuts a:hover,
.service-shortcuts a.is-active {
  transform: translateY(-6px);
  border-color: rgba(28, 195, 234, 0.46);
  box-shadow: 0 24px 42px rgba(21, 111, 209, 0.16);
}
.service-shortcuts a.is-active::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-style: solid;
  border-width: 0 24px 24px 0;
  border-color: transparent var(--primary) transparent transparent;
}
.service-shortcuts strong {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(21, 111, 209, 0.12), rgba(28, 195, 234, 0.2));
  color: var(--secondary);
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
}
.service-shortcuts span {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
}
.service-catalog-heading {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}
.service-catalog-heading h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}
.service-catalog-heading > p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}
.internal-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  min-height: 420px;
  overflow: hidden;
  border-radius: 0 0 30px 30px;
  background:
    linear-gradient(118deg, #ffffff 0%, #ffffff 47%, rgba(222, 247, 255, 0.88) 47.2%, rgba(28, 195, 234, 0.2) 100%);
  box-shadow: 0 24px 58px rgba(21, 77, 138, 0.12);
}
.internal-showcase::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -80px;
  width: 54%;
  height: 130%;
  background: linear-gradient(135deg, rgba(21, 111, 209, 0.82), rgba(28, 195, 234, 0.86));
  clip-path: polygon(24% 0, 100% 0, 100% 78%, 70% 100%, 0 62%);
}
.internal-showcase-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 48px 18px 48px 46px;
}
.internal-showcase h1 {
  max-width: 14ch;
  margin: 0;
  color: #102f5a;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.35rem, 3.8vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.internal-showcase .hero-text {
  max-width: 54ch;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}
.internal-showcase-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 38px 38px 38px 18px;
}
.internal-showcase-visual img {
  width: min(100%, 650px);
  max-height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 30px 32px rgba(7, 48, 98, 0.2));
  animation: floatMedia 7.5s ease-in-out infinite;
}
.company-showcase {
  overflow: visible;
  margin-bottom: 60px;
}
.company-showcase::after {
  top: 0;
  right: 0;
  width: 53%;
  height: 100%;
  border-radius: 0 0 30px 0;
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
}
.company-showcase .company-hero-stats {
  position: absolute;
  right: 28px;
  bottom: -42px;
  left: 28px;
  z-index: 4;
  background: linear-gradient(90deg, rgba(13, 103, 199, 0.96), rgba(28, 195, 234, 0.94));
  box-shadow: 0 18px 34px rgba(21, 111, 209, 0.2);
}
.contact-showcase {
  margin-bottom: 0;
}
.contact-shortcuts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 720px;
}
.services-lead {
  max-width: 62ch;
  margin: 18px auto 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}
.services-hero-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.88fr;
  gap: 22px;
  align-items: stretch;
  max-width: 1280px;
  margin: 0 auto 22px;
  padding: 28px;
  border: 1px solid rgba(28, 195, 234, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(127, 232, 255, 0.24), transparent 26%),
    linear-gradient(135deg, rgba(10, 29, 54, 0.98), rgba(15, 49, 88, 0.96));
  box-shadow: 0 32px 70px rgba(10, 29, 54, 0.18);
  overflow: hidden;
}
.services-hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -6% -24% auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 195, 234, 0.24), transparent 66%);
  pointer-events: none;
}
.services-hero-copy {
  position: relative;
  z-index: 1;
  padding: 10px 8px 10px 4px;
  color: #f2f8ff;
}
.services-kicker {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(127, 232, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #7fe8ff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.services-hero-copy h3,
.services-hero-copy h2 {
  margin: 18px 0 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 12ch;
}
.services-hero-copy p {
  max-width: 56ch;
  margin: 0;
  color: rgba(236, 245, 255, 0.82);
  line-height: 1.8;
}
.services-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.services-proof-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}
.services-proof-card {
  padding: 20px 20px 18px;
  border-radius: 24px;
  border: 1px solid rgba(127, 232, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(18px);
}
.services-proof-card strong {
  display: block;
  color: #ffffff;
  font-size: 1.02rem;
}
.services-proof-card p {
  margin: 10px 0 0;
  color: rgba(236, 245, 255, 0.76);
  line-height: 1.7;
}
.services-marquee {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1160px;
  margin: 0 auto 26px;
  position: relative;
  z-index: 1;
}
.services-marquee span,
.services-marquee a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(21, 111, 209, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
  box-shadow: 0 18px 32px rgba(21, 77, 138, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.services-marquee a:hover {
  transform: translateY(-2px);
  border-color: rgba(21, 111, 209, 0.3);
  background: #ffffff;
}
.service-option {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 15px 18px;
  border-radius: 22px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.service-option:hover {
  transform: translateY(-2px);
  border-color: rgba(21, 111, 209, 0.24);
}
.service-option input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--secondary);
}
.service-option:has(input:checked) {
  border-color: rgba(21, 111, 209, 0.42);
  background: rgba(235, 247, 255, 0.96);
  box-shadow: 0 16px 34px rgba(21, 111, 209, 0.12);
}
.service-option-copy strong {
  display: block;
  font-size: 1rem;
}
.service-option-copy small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.5;
}
.quote-builder {
  padding: 24px;
}
.quote-builder h3 { margin: 0; font-size: 1.45rem; }
.builder-field {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: var(--muted);
}
.builder-field small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 500;
}
.builder-field input, .builder-field textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 18px;
  border: 1px solid rgba(21, 111, 209, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  outline: none;
}
.builder-field input:focus, .builder-field textarea:focus { border-color: rgba(21, 111, 209, 0.36); }
.builder-summary { margin-top: 14px; }
.builder-summary span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.88rem;
  color: var(--muted);
}
.selected-services {
  min-height: 0;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px dashed rgba(21, 111, 209, 0.2);
  background: rgba(248, 252, 255, 0.88);
  color: var(--text);
  line-height: 1.55;
}
.builder-button { width: 100%; margin-top: 14px; }
.builder-button.is-disabled {
  opacity: 0.5;
  pointer-events: none;
  box-shadow: none;
}

.service-store {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.service-product {
  grid-column: span 4;
  position: relative;
  display: grid;
  align-content: start;
  min-height: 100%;
  padding: 28px 24px 24px;
  border: 1px solid rgba(28, 195, 234, 0.22);
  border-radius: 30px;
  background:
    radial-gradient(circle at bottom right, rgba(28, 195, 234, 0.2), transparent 36%),
    radial-gradient(circle at top left, rgba(127, 232, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #0a1a31 0%, #12355d 100%);
  box-shadow: 0 26px 56px rgba(11, 34, 63, 0.18);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.service-product-featured {
  grid-column: span 8;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.7fr);
  gap: 20px;
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(127, 232, 255, 0.24), transparent 26%),
    radial-gradient(circle at bottom left, rgba(28, 195, 234, 0.16), transparent 34%),
    linear-gradient(135deg, #07182d 0%, #0d2b4a 52%, #124a73 100%);
}
.service-product-compact {
  grid-column: span 6;
}
.services-page .service-product-featured {
  grid-column: 1 / -1;
}
.services-page .service-product:not(.service-product-featured) {
  grid-column: span 6;
}
.service-product::before {
  content: "";
  position: absolute;
  inset: auto -10% -18% -10%;
  height: 180px;
  background:
    radial-gradient(circle at center, rgba(28, 195, 234, 0.2), transparent 58%);
  pointer-events: none;
}
.service-product::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 24%, transparent 72%, rgba(28, 195, 234, 0.12));
  pointer-events: none;
}

.service-product:hover {
  transform: translateY(-6px);
  border-color: rgba(127, 232, 255, 0.38);
  box-shadow: 0 34px 72px rgba(11, 34, 63, 0.24);
}

.service-product-copy h3 {
  margin: 10px 0 10px;
  font-size: 1.55rem;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #ffffff;
}
.service-product-description {
  margin: 0;
  color: rgba(236, 245, 255, 0.74);
  line-height: 1.72;
}
.service-product-headline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.service-product-price {
  display: flex;
  align-items: end;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.service-product-price span {
  color: #7fe8ff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-product-price strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.service-product-price small {
  color: rgba(229, 239, 255, 0.76);
  font-size: 0.84rem;
  font-weight: 700;
}

.service-product-badge {
  display: inline-flex;
  margin-top: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1799de, #1cc3ea);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(28, 195, 234, 0.18);
}
.service-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.service-product-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(236, 245, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 700;
}

.service-product-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.service-product-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(241, 247, 255, 0.92);
  line-height: 1.5;
  font-size: 0.92rem;
}

.service-product-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7fe8ff, #1cc3ea);
}

.service-product .button {
  margin-top: 22px;
  min-width: 0;
  width: 100%;
  background: linear-gradient(135deg, #1692db, #1cc3ea);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(21, 111, 209, 0.24);
}
.service-product-footer {
  display: grid;
  gap: 12px;
  margin-top: auto;
}
.service-product-footer p {
  margin: 0;
  color: rgba(236, 245, 255, 0.72);
  line-height: 1.65;
}
.service-highlight-panel {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(127, 232, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}
.service-highlight-label {
  color: #7fe8ff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.service-highlight-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.service-highlight-list li {
  padding: 14px 14px 14px 44px;
  border-radius: 20px;
  background: rgba(8, 25, 47, 0.34);
  color: #f4f9ff;
  position: relative;
  line-height: 1.55;
}
.service-highlight-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #7fe8ff, #1cc3ea);
  box-shadow: 0 0 0 6px rgba(28, 195, 234, 0.12);
}
.services-closing {
  max-width: 980px;
  margin: 28px auto 0;
  padding: 24px 26px;
  border: 1px solid rgba(21, 111, 209, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 40px rgba(21, 77, 138, 0.08);
  text-align: center;
}
.services-closing p {
  max-width: 52ch;
  margin: 0 auto 18px;
  color: var(--text);
  line-height: 1.75;
}

.trends-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}
.trend-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: 28px;
}
.trend-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  background: linear-gradient(180deg, #fafdff, #e7f2ff);
  transition: transform 0.35s ease, filter 0.35s ease;
}
.trend-card:hover img {
  filter: saturate(1.05);
}
.trend-copy {
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.project-tag {
  color: var(--secondary);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}
.trend-copy h3, .news-item h3 {
  margin: 10px 0 0;
  font-size: 1.22rem;
  line-height: 1.35;
}
.trends-lead {
  max-width: 66ch;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.75;
}
.trend-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  padding-top: 16px;
  color: var(--secondary);
  font-size: 0.9rem;
  font-weight: 800;
}
.trend-link::after {
  content: ">";
  margin-left: 8px;
  transition: transform 0.2s ease;
}
.trend-link:hover::after {
  transform: translateX(4px);
}

.news-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  width: 100%;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.news-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(28, 195, 234, 0.08), transparent 28%);
  pointer-events: none;
}
.news-control {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  border: 1px solid var(--line);
  font-size: 1rem;
  font-weight: 800;
}
.news-track { position: relative; min-height: 200px; }
.news-item {
  position: absolute;
  inset: 0;
  padding: 8px 6px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.news-item .trend-link {
  margin-top: 12px;
  padding-top: 0;
}

.blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.68fr);
  gap: 24px;
  align-items: end;
  padding: 58px 44px 42px;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
  background:
    linear-gradient(118deg, #ffffff 0%, #ffffff 58%, rgba(222, 247, 255, 0.88) 58.2%, rgba(28, 195, 234, 0.2) 100%);
  color: var(--text);
  box-shadow: 0 24px 58px rgba(21, 77, 138, 0.12);
}
.blog-hero h1 {
  max-width: 14ch;
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.blog-hero-copy > p:last-child {
  max-width: 58ch;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.75;
}
.blog-hero .eyebrow {
  color: var(--secondary);
}
.blog-hero-note {
  padding: 22px;
  border: 1px solid rgba(21, 111, 209, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
}
.blog-hero-note span,
.blog-hero-note strong {
  display: block;
}
.blog-hero-note span {
  color: var(--secondary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.blog-hero-note strong {
  margin-top: 10px;
  color: var(--text);
  font-size: 1.12rem;
}
.blog-hero-note p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.blog-card {
  overflow: hidden;
  border: 1px solid rgba(21, 111, 209, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 44px rgba(21, 77, 138, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(28, 195, 234, 0.3);
  box-shadow: 0 28px 54px rgba(21, 77, 138, 0.14);
}
.blog-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
}
.blog-card-visual {
  display: grid;
  min-height: 260px;
  place-items: center;
}
.blog-visual-agentic {
  background:
    radial-gradient(circle at 35% 32%, rgba(127, 232, 255, 0.42), transparent 24%),
    linear-gradient(135deg, #09213e, #1269a1);
}
.blog-card-visual span {
  display: grid;
  width: 110px;
  height: 110px;
  place-items: center;
  border: 1px solid rgba(127, 232, 255, 0.28);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.35rem;
  font-weight: 700;
  box-shadow: 0 24px 44px rgba(6, 27, 52, 0.22);
}
.blog-card-copy {
  display: flex;
  flex-direction: column;
  padding: 24px;
}
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--secondary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.blog-meta time {
  color: var(--muted);
}
.blog-card h2,
.blog-card h3 {
  margin: 14px 0 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.16;
  letter-spacing: -0.035em;
}
.blog-card h2 {
  max-width: 20ch;
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
}
.blog-card h3 {
  font-size: 1.34rem;
}
.blog-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.72;
}
.blog-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  padding-top: 18px;
  color: var(--secondary);
  font-size: 0.9rem;
  font-weight: 800;
}
.blog-link::after {
  content: ">";
  margin-left: 8px;
  transition: transform 0.2s ease;
}
.blog-link:hover::after {
  transform: translateX(4px);
}
.blog-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(21, 111, 209, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 40px rgba(21, 77, 138, 0.08);
}
.blog-cta h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem, 2.6vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.blog-cta p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}
.news-item.is-active {
  opacity: 1;
  transform: translateY(0);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero-slide {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    max-width: none;
  }
  .hero-visual {
    min-height: 280px;
  }
}

.site-footer {
  position: relative;
  margin-top: 88px;
  padding: 68px 20px 34px;
  background:
    radial-gradient(circle at top center, rgba(28, 195, 234, 0.12), transparent 26%),
    linear-gradient(180deg, #06111f 0%, #081628 100%);
  color: rgba(224, 241, 255, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  width: min(100% - 32px, 1280px);
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  margin: 0;
  color: #1cc3ea;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 26px;
}

.footer-nav a {
  color: rgba(232, 245, 255, 0.82);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(28, 195, 234, 0.28);
  color: #7fdfff;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.82rem;
  font-weight: 800;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
}
.footer-social a:hover {
  transform: translateY(-3px);
  border-color: rgba(127, 232, 255, 0.48);
  background: rgba(28, 195, 234, 0.08);
  color: #ffffff;
}

.footer-meta {
  max-width: 760px;
  margin: 26px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-meta p {
  margin: 10px 0;
  line-height: 1.8;
}

.floating-whatsapp {
  position: absolute;
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.24);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  animation: whatsappPulse 2.8s ease-in-out infinite;
}

.floating-whatsapp span {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
}

.floating-whatsapp strong {
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}
.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 36px rgba(37, 211, 102, 0.3);
}

.page-hero-shell {
  min-height: auto;
}

.page-hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
}

.secondary-page .hero {
  min-height: auto;
}

.secondary-page .page-hero-shell {
  padding: 30px 34px;
}

.secondary-page .page-hero .hero-visual {
  min-height: 320px;
}

.secondary-page .page-hero .hero-media-card {
  inset: 0 20px 0 48px;
}

.company-page .page-hero-shell {
  display: grid;
  gap: 24px;
  padding: 34px;
}

.company-page .page-hero {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 20px;
}

.company-page .page-hero .hero-visual {
  min-height: 240px;
}

.company-page .page-hero .hero-media-card {
  inset: 0 34px 0 56px;
}

.company-page .hero h1 {
  max-width: 13ch;
}

.company-page .hero-text {
  max-width: 48ch;
}

.company-hero-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(7, 34, 70, 0.18);
  backdrop-filter: blur(12px);
}

.company-hero-stats article {
  position: relative;
  overflow: hidden;
  padding: 16px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
  animation: companyStatReveal 0.65s ease both;
}

.company-hero-stats article:last-child {
  border-right: 0;
}

.company-hero-stats article:nth-child(2) {
  animation-delay: 0.1s;
}

.company-hero-stats article:nth-child(3) {
  animation-delay: 0.2s;
}

.company-hero-stats article:nth-child(4) {
  animation-delay: 0.3s;
}

.company-hero-stats article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -70%;
  width: 48%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-18deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.company-hero-stats article:hover {
  z-index: 1;
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 30px rgba(6, 48, 102, 0.18);
}

.company-hero-stats article:hover::before {
  left: 125%;
}

.company-hero-stats strong,
.company-hero-stats span {
  position: relative;
  z-index: 1;
  display: block;
}

.company-hero-stats strong {
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  text-shadow: 0 0 20px rgba(127, 232, 255, 0.2);
  transition: transform 0.28s ease, text-shadow 0.28s ease;
}

.company-hero-stats article:hover strong {
  transform: scale(1.08);
  transform-origin: left center;
  text-shadow: 0 0 24px rgba(127, 232, 255, 0.52);
}

.company-hero-stats span {
  margin-top: 5px;
  color: rgba(245, 250, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes blinkCaret {
  0%, 45% { opacity: 1; }
  46%, 100% { opacity: 0; }
}
@keyframes heroGlowDrift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(18px, 12px, 0) scale(1.06); }
}

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

@keyframes brandTextGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes floatMedia {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes infoCardLift {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 16px 30px rgba(37, 211, 102, 0.24); }
  50% { box-shadow: 0 20px 40px rgba(37, 211, 102, 0.34); }
}
@keyframes companyStatReveal {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .site-header, .company-layout, .corporate-banner, .service-layout, .trends-grid, .contact-panel, .process-grid, .reasons-grid {
    grid-template-columns: 1fr;
  }
  .service-store {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .service-product {
    grid-column: span 6;
  }
  .service-product-featured,
  .service-product-compact {
    grid-column: span 12;
  }
  .service-product-featured {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .hero-slider-shell { min-height: 700px; }
  .hero-slide { grid-template-columns: 1fr; }
  .hero-copy { max-width: none; }
  .hero-visual { min-height: 320px; }
  .hero-media-card { inset: 0 0 10px 80px; }
  .page-hero {
    grid-template-columns: 1fr;
  }
  .company-page .page-hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr);
  }
  .service-showcase {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    min-height: 420px;
  }
  .service-showcase-copy {
    padding: 42px 12px 42px 36px;
  }
  .service-showcase-copy h1 {
    font-size: clamp(2.15rem, 4.2vw, 3.4rem);
  }
  .service-shortcuts {
    overflow-x: auto;
    grid-template-columns: repeat(5, minmax(154px, 1fr));
    justify-content: start;
    padding-bottom: 10px;
  }
  .internal-showcase {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    min-height: 390px;
  }
  .internal-showcase-copy {
    padding: 40px 12px 40px 36px;
  }
  .internal-showcase h1 {
    font-size: clamp(2.15rem, 4.2vw, 3.4rem);
  }
  .trends-grid,
  .process-grid,
  .reasons-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .topbar-inner, .page-shell { width: min(100% - 20px, var(--max-width)); }
  .page-shell {
    width: 100%;
    max-width: none;
    padding: 0 12px 36px;
  }
  .topbar-inner {
    min-height: 52px;
    gap: 10px;
  }
  .topbar-label {
    padding: 5px 9px;
    font-size: 0.66rem;
  }
  .topbar-text {
    font-size: 0.8rem;
    line-height: 1.35;
  }
  .site-header {
    top: 54px;
    grid-template-columns: auto auto;
    justify-content: space-between;
    width: calc(100% + 24px);
    margin-left: -12px;
    padding: 14px 14px;
    backdrop-filter: blur(22px);
  }
  .brand {
    gap: 6px;
  }
  .brand-logo {
    width: 58px;
  }
  .brand-text {
    min-width: 8ch;
    font-size: 0.94rem;
    padding-bottom: 7px;
  }
  .menu-toggle {
    display: inline-flex;
    width: 46px;
    height: 46px;
    position: relative;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  .menu-toggle span {
    position: absolute;
    margin: 0;
    transition: transform 0.24s ease, opacity 0.2s ease;
  }
  .menu-toggle span:first-child {
    transform: translateY(-4px);
  }
  .menu-toggle span:last-child {
    transform: translateY(4px);
  }
  .site-header.menu-open .menu-toggle span:first-child {
    transform: rotate(45deg);
  }
  .site-header.menu-open .menu-toggle span:last-child {
    transform: rotate(-45deg);
  }
  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    justify-self: stretch;
    gap: 4px;
    width: 100%;
    margin-top: 2px;
    padding: 12px 0 2px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .site-header.menu-open .site-nav { display: flex; }
  .site-nav a {
    width: 100%;
    padding: 13px 14px;
    border-radius: 12px;
    background: transparent;
    border: 1px solid transparent;
    color: rgba(232, 244, 255, 0.8);
    font-size: 0.94rem;
  }
  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(127, 232, 255, 0.12);
    color: #ffffff;
  }
  .site-nav a::after {
    left: 14px;
    right: auto;
    width: 34px;
  }
  .header-cta { display: none; }
  .hero, .section { padding-top: 26px; }
  .home-page .hero {
    padding-top: 34px;
  }
  .hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.7rem);
    max-width: none;
  }
  .hero-slider-shell, .company-main, .company-points, .corporate-banner, .quote-builder, .trend-card, .news-slider, .contact-panel {
    border-radius: 24px;
  }
  .hero-slider-shell {
    min-height: 0;
    padding: 22px 20px 82px;
  }
  .home-page .hero-slider-shell {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 60%, rgba(222, 247, 255, 0.94) 100%);
  }
  .home-page .hero-slider-shell::after {
    right: -28%;
    bottom: -20%;
    width: 156%;
    height: 48%;
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  }
  .hero-slide {
    position: relative;
    inset: auto;
    gap: 20px;
    transform: none;
  }
  .home-page .hero-slide {
    padding-top: 10px;
  }
  .hero-slide:not(.is-active) {
    display: none;
  }
  .hero-text { max-width: none; }
  .hero .eyebrow {
    margin-bottom: 18px;
    padding: 12px 15px;
    font-size: 0.9rem;
  }
  .hero-emphasis {
    font-size: 0.95rem;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 22px;
  }
  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }
  .hero-visual { min-height: 220px; }
  .hero-media-card {
    position: relative;
    inset: auto;
    min-height: 220px;
  }
  .home-page .hero-media-card {
    inset: auto;
  }
  .page-hero {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero-info-card {
    left: 0;
    top: 0;
    width: min(180px, 64vw);
    padding: 14px 16px;
    border-radius: 18px;
  }
  .hero-info-card strong { font-size: 1rem; }
  .hero-price-card {
    left: 0;
    top: 0;
    width: min(220px, 72vw);
    padding: 14px 14px 12px;
    border-radius: 20px;
  }
  .home-page .hero-price-card {
    left: 0;
    top: 0;
    width: min(196px, 64vw);
    padding: 12px 12px 10px;
    border-radius: 18px;
  }
  .hero-price-plan {
    font-size: 1.02rem;
  }
  .hero-price-amount {
    font-size: 1.75rem;
  }
  .hero-price-note,
  .hero-price-list li {
    font-size: 0.82rem;
  }
  .home-page .hero-price-badge {
    padding: 6px 10px;
    font-size: 0.68rem;
  }
  .home-page .hero-price-plan {
    margin: 12px 0 6px;
    font-size: 0.96rem;
  }
  .home-page .hero-price-amount {
    font-size: 1.6rem;
  }
  .home-page .hero-price-note {
    margin: 6px 0 10px;
  }
  .home-page .hero-price-list {
    gap: 7px;
    padding-top: 10px;
  }
  .home-page .hero-price-list li {
    padding-left: 15px;
    font-size: 0.74rem;
    line-height: 1.4;
  }
  .home-page .hero-price-list li::before {
    top: 7px;
    width: 7px;
    height: 7px;
  }
  .hero-slider-controls {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
  .hero-dot {
    width: 10px;
    height: 10px;
  }
  .hero-dot.is-active {
    width: 30px;
  }
  .service-option { padding: 16px; }
  .service-option-copy strong {
    font-size: 1rem;
  }
  .services-section::before {
    height: 360px;
  }
  .services-section .section-heading h2 {
    font-size: clamp(1.85rem, 7.2vw, 2.45rem);
    line-height: 1.08;
    max-width: 18ch;
  }
  .services-lead {
    font-size: 0.98rem;
  }
  .services-hero-panel {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    border-radius: 28px;
  }
  .services-hero-copy h3 {
    max-width: none;
  }
  .services-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .services-hero-actions .button {
    width: 100%;
  }
  .services-proof-card {
    border-radius: 22px;
  }
  .services-marquee {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
  }
  .services-marquee span {
    white-space: nowrap;
  }
  .services-marquee a {
    white-space: nowrap;
  }
  .service-product {
    grid-column: 1 / -1;
    padding: 24px 18px 20px;
    border-radius: 24px;
  }
  .service-product-featured {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 18px 20px;
  }
  .service-highlight-panel {
    padding: 18px;
    border-radius: 22px;
  }
  .service-store {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .service-product-copy h3 {
    font-size: 1.6rem;
  }
  .service-product-price strong {
    font-size: 1.8rem;
  }
  .service-product .button {
    width: 100%;
    min-width: 0;
  }
  .services-closing {
    padding: 22px 18px;
    border-radius: 24px;
  }
  .company-stats { grid-template-columns: 1fr; }
  .value-showcase {
    width: calc(100% + 24px);
    margin-left: -12px;
    padding: 40px 0 12px;
  }
  .value-copy-centered {
    padding: 0 18px;
  }
  .value-copy-centered h2 {
    font-size: clamp(1.7rem, 8vw, 2.8rem);
  }
  .value-lead {
    max-width: 28ch;
    font-size: 1rem;
  }
  .value-showcase-media {
    min-height: 240px;
    margin-top: 22px;
  }
  .company-stats article { border-right: 0; }
  .company-stats article:nth-last-child(-n + 2) { border-bottom: 1px solid rgba(21, 111, 209, 0.12); }
  .company-stats article:last-child { border-bottom: 0; }
  .trends-grid,
  .process-grid,
  .reasons-grid { grid-template-columns: 1fr; }
  .process-card,
  .reason-card,
  .service-option,
  .quote-builder,
  .contact-panel {
    box-shadow: 0 18px 34px rgba(21, 77, 138, 0.1);
  }
  .news-slider { grid-template-columns: 1fr; }
  .news-control {
    width: 100%;
    border-radius: 16px;
  }
  .news-track { min-height: 260px; }
  .contact-actions { flex-direction: column; }
  .contact-actions .button { width: 100%; }
  .site-footer {
    margin-top: 64px;
    padding: 52px 16px 98px;
  }
  .footer-brand {
    font-size: 1.6rem;
  }
  .footer-nav {
    gap: 18px;
  }
  .floating-whatsapp {
    left: 16px;
    right: 16px;
    bottom: 18px;
    justify-content: center;
    min-height: 58px;
    border-radius: 22px;
    backdrop-filter: blur(16px);
  }

  .secondary-page .hero {
    padding-top: 18px;
  }
  .secondary-page .page-hero-shell {
    padding: 24px 20px;
  }
  .secondary-page .page-hero {
    gap: 14px;
  }
  .secondary-page .page-hero .hero-visual {
    min-height: 180px;
  }
  .secondary-page .page-hero .hero-media-card {
    inset: auto;
    min-height: 180px;
  }
  .company-page .page-hero-shell {
    gap: 16px;
    padding: 20px 18px;
  }
  .company-page .page-hero {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .company-page .page-hero .hero-visual,
  .company-page .page-hero .hero-media-card {
    min-height: 138px;
  }
  .company-page .hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.45rem);
    line-height: 1.04;
  }
  .company-page .hero-text {
    margin-top: 14px;
    font-size: 0.94rem;
    line-height: 1.65;
  }
  .company-page .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
  }
  .company-page .hero-actions .button {
    min-height: 48px;
    padding: 0 14px;
    font-size: 0.9rem;
  }
  .company-hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 18px;
  }
  .company-hero-stats article {
    padding: 13px 11px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
  .company-hero-stats article:nth-child(2n) {
    border-right: 0;
  }
  .company-hero-stats article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
  .company-hero-stats strong {
    font-size: 1.3rem;
  }
  .company-hero-stats span {
    font-size: 0.66rem;
    line-height: 1.4;
  }
  .company-page .company-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .company-page .company-main {
    padding: 20px 18px;
  }
  .company-page .company-main h2 {
    max-width: 15ch;
    font-size: clamp(1.7rem, 7.4vw, 2.15rem);
    line-height: 1.08;
  }
  .company-page .company-main p {
    font-size: 0.94rem;
    line-height: 1.68;
  }
  .company-page .company-points article {
    padding: 18px 16px;
  }
  .company-page .company-points h3 {
    font-size: 1.08rem;
  }
  .company-page .company-points p {
    font-size: 0.92rem;
    line-height: 1.62;
  }
  .secondary-page .company-section {
    padding-top: 22px;
  }
  .secondary-page .company-main,
  .secondary-page .company-points,
  .secondary-page .contact-panel {
    padding: 20px 18px;
  }
  .secondary-page .company-main h2,
  .secondary-page .section-heading h2,
  .secondary-page .contact-copy h2 {
    font-size: clamp(1.7rem, 7.5vw, 2.35rem);
  }
  .secondary-page .company-main p,
  .secondary-page .contact-copy p {
    font-size: 0.96rem;
    line-height: 1.72;
  }
  .secondary-page .company-divider {
    margin: 20px 0;
  }
  .secondary-page .company-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
  }
  .secondary-page .company-stats article {
    padding: 16px 12px;
    border-radius: 18px;
  }
  .secondary-page .company-stats strong {
    font-size: 1.65rem;
  }
  .secondary-page .company-stats span {
    font-size: 0.72rem;
    line-height: 1.45;
  }
  .secondary-page .company-points {
    padding: 0;
  }
  .secondary-page .company-points article {
    padding: 20px 18px;
  }
  .secondary-page .trend-card img {
    height: 180px;
  }
  .secondary-page .trend-copy {
    padding: 18px;
  }
  .trends-page .page-hero .hero-visual,
  .trends-page .page-hero .hero-media-card {
    min-height: 145px;
  }
  .trends-page .trends-section .section-heading {
    margin-bottom: 20px;
  }
  .trends-page .trends-lead {
    font-size: 0.94rem;
    line-height: 1.68;
  }
  .trends-page .trend-copy h3 {
    font-size: 1.12rem;
  }
  .trends-page .trend-copy p {
    line-height: 1.65;
  }
  .secondary-page .news-slider {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 16px;
  }
  .secondary-page .news-track {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 240px;
  }
  .trends-page .news-track {
    min-height: 270px;
  }
  .blog-hero {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 30px 20px 22px;
    border-radius: 0 0 24px 24px;
  }
  .blog-hero h1 {
    max-width: 13ch;
    font-size: clamp(2.1rem, 9vw, 3rem);
    line-height: 1.02;
  }
  .blog-hero-copy > p:last-child {
    margin-top: 14px;
    font-size: 0.94rem;
    line-height: 1.68;
  }
  .blog-hero-note {
    padding: 18px;
    border-radius: 18px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .blog-card-featured {
    grid-template-columns: 1fr;
  }
  .blog-card-visual {
    min-height: 150px;
  }
  .blog-card-visual span {
    width: 82px;
    height: 82px;
    border-radius: 24px;
    font-size: 1.85rem;
  }
  .blog-card-copy {
    padding: 18px;
  }
  .blog-card h2 {
    font-size: 1.75rem;
  }
  .blog-card h3 {
    font-size: 1.2rem;
  }
  .blog-card p {
    font-size: 0.94rem;
    line-height: 1.65;
  }
  .blog-cta {
    grid-template-columns: 1fr;
    padding: 22px 18px;
    border-radius: 24px;
  }
  .blog-cta .button {
    width: 100%;
  }
  .secondary-page .news-control {
    grid-row: 2;
    min-height: 48px;
  }
  .secondary-page .contact-panel {
    gap: 18px;
  }
  .secondary-page .services-section {
    padding-top: 22px;
  }
  .secondary-page .services-section .section-heading {
    margin-bottom: 22px;
  }
  .secondary-page .services-section .section-heading h2 {
    max-width: none;
    font-size: clamp(1.9rem, 8vw, 2.8rem);
    line-height: 1.04;
  }
  .services-page .services-section .section-heading h1 {
    max-width: 18ch;
    font-size: clamp(1.95rem, 8vw, 2.65rem);
    line-height: 1.06;
  }
  .services-page .services-section {
    padding-top: 12px;
  }
  .service-showcase {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 58%, rgba(222, 247, 255, 0.92) 100%);
  }
  .service-showcase::after {
    top: auto;
    right: -24%;
    bottom: -26%;
    width: 150%;
    height: 54%;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
  }
  .service-showcase-copy {
    padding: 26px 20px 14px;
  }
  .service-showcase-copy h1 {
    max-width: 15ch;
    font-size: clamp(2rem, 8.6vw, 2.75rem);
    line-height: 1.04;
  }
  .service-showcase-copy > p:last-of-type {
    margin-top: 14px;
    font-size: 0.94rem;
    line-height: 1.68;
  }
  .service-showcase-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }
  .service-showcase-actions .button {
    width: 100%;
  }
  .service-showcase-visual {
    min-height: 190px;
    padding: 16px 18px 24px;
  }
  .service-showcase-visual img {
    max-height: 190px;
  }
  .service-showcase-badge {
    top: 4px;
    right: 14px;
    font-size: 0.62rem;
  }
  .service-shortcuts {
    grid-template-columns: repeat(5, 142px);
    gap: 10px;
    margin: -12px -12px 30px;
    padding: 0 12px 10px;
  }
  .service-shortcuts a {
    min-height: 116px;
    border-radius: 16px;
  }
  .service-shortcuts strong {
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }
  .contact-shortcuts {
    grid-template-columns: repeat(3, 136px);
    justify-content: start;
  }
  .service-catalog-heading {
    margin-bottom: 20px;
  }
  .service-catalog-heading h2 {
    font-size: clamp(1.75rem, 7.4vw, 2.35rem);
  }
  .internal-showcase {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 0 0 24px 24px;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 58%, rgba(222, 247, 255, 0.92) 100%);
  }
  .internal-showcase::after {
    top: auto;
    right: -24%;
    bottom: -26%;
    width: 150%;
    height: 54%;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
  }
  .internal-showcase-copy {
    padding: 26px 20px 14px;
  }
  .internal-showcase h1 {
    max-width: 15ch;
    font-size: clamp(2rem, 8.6vw, 2.75rem);
    line-height: 1.04;
  }
  .internal-showcase .hero-text {
    margin-top: 14px;
    font-size: 0.94rem;
    line-height: 1.68;
  }
  .internal-showcase .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }
  .internal-showcase .hero-actions .button {
    width: 100%;
  }
  .internal-showcase-visual {
    min-height: 180px;
    padding: 12px 18px 22px;
  }
  .internal-showcase-visual img {
    max-height: 180px;
  }
  .company-showcase {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
  }
  .company-showcase .company-hero-stats {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: calc(100% - 24px);
    margin: -44px auto 14px;
  }
  .contact-showcase {
    margin-bottom: 18px;
  }
  .services-page .services-lead {
    margin-top: 14px;
    font-size: 0.94rem;
    line-height: 1.7;
  }
  .secondary-page .services-hero-panel {
    padding: 20px 18px;
  }
  .services-page .services-hero-panel {
    gap: 16px;
  }
  .services-page .services-hero-copy {
    padding: 0;
  }
  .services-page .services-hero-copy h2 {
    margin: 14px 0 10px;
    font-size: clamp(1.65rem, 7vw, 2.15rem);
    line-height: 1.06;
  }
  .services-page .services-hero-copy p,
  .services-page .services-proof-card p {
    line-height: 1.62;
  }
  .services-page .services-proof-grid {
    gap: 10px;
  }
  .services-page .services-proof-card {
    padding: 16px;
  }
  .secondary-page .service-product {
    padding: 22px 18px 20px;
  }
  .services-page .service-product-description {
    line-height: 1.62;
  }
  .services-page .service-product-list {
    gap: 8px;
    margin-top: 16px;
  }
  .secondary-page .services-closing .button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .home-page .topbar-label {
    display: none;
  }
  .home-page .topbar-inner {
    min-height: 44px;
  }
  .home-page .site-header {
    top: 44px;
  }
  .home-page .hero-slider-shell {
    padding: 18px 16px 74px;
  }
  .home-page .hero h1 {
    font-size: clamp(1.75rem, 8.4vw, 2.2rem);
  }
  .home-page .hero-price-card {
    width: min(196px, 68vw);
  }
  .secondary-page .topbar-label {
    display: none;
  }
  .secondary-page .topbar-inner {
    min-height: 44px;
  }
  .secondary-page .site-header {
    top: 44px;
  }
  .secondary-page .brand-logo {
    width: 52px;
  }
  .secondary-page .page-hero-shell {
    padding: 20px 16px;
  }
  .secondary-page .page-hero .hero-visual,
  .secondary-page .page-hero .hero-media-card {
    min-height: 150px;
  }
  .secondary-page .floating-whatsapp {
    left: 12px;
    right: 12px;
  }
  .company-page .hero-actions {
    grid-template-columns: 1fr;
  }
  .company-showcase {
    margin-bottom: 14px;
  }
  .company-showcase .company-hero-stats {
    width: calc(100% - 16px);
    margin-top: -38px;
  }
  .internal-showcase-visual {
    min-height: 150px;
  }
  .internal-showcase-visual img {
    max-height: 150px;
  }
  .service-shortcuts {
    grid-template-columns: repeat(5, 126px);
  }
  .contact-shortcuts {
    grid-template-columns: repeat(3, 126px);
  }
  .company-hero-stats article {
    min-height: 72px;
    padding: 11px 9px;
  }
  .company-hero-stats span {
    letter-spacing: 0.04em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .company-hero-stats article {
    animation: none;
    transition: none;
  }
  .company-hero-stats article::before,
  .company-hero-stats strong {
    transition: none;
  }
}
