:root {
  --primary: #00a6ff;
  --secondary: #0078ff;
  --accent: #ff8a00;
  --ink: #1d1d1f;
  --muted: #5b667a;
  --bg: #f8fafc;
  --card: #ffffff;
  --border: #e8eef5;
  --footer: #08111f;
  --success: #16a34a;
  --warning: #f59e0b;
  --danger: #ef4444;
  --shadow: 0 22px 60px rgba(8, 17, 31, 0.12);
  --soft-shadow: 0 12px 34px rgba(8, 17, 31, 0.08);
  --radius: 20px;
  --container: 1280px;
  --font-ui: "Space Grotesk", "Neue Machina", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--ink);
  background: var(--bg);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.page {
  min-height: 100vh;
  overflow-x: clip;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.navbar {
  position: sticky;
  top: 16px;
  z-index: 50;
  margin: 16px auto 0;
  width: min(var(--container), calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  border: 1px solid rgba(232, 238, 245, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 34px rgba(8, 17, 31, 0.08);
  transform: translateY(0);
  will-change: transform;
  transition: transform 0.35s cubic-bezier(0.76, 0, 0.24, 1), background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.is-hidden {
  transform: translateY(calc(-100% - 24px));
}

.navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 36px rgba(8, 17, 31, 0.1);
}

.logo {
  display: block;
  width: 224px;
  max-width: 48vw;
  height: auto;
}

.navbar > a:first-child {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 14px;
  background: var(--footer);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link,
.menu-button {
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 15px;
  border-radius: 12px;
  color: var(--ink);
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
  line-height: 1.28;
  transition: color 360ms cubic-bezier(0.76, 0, 0.24, 1), background-color 360ms cubic-bezier(0.76, 0, 0.24, 1);
}

.nav-link.active,
.menu-button.active {
  color: var(--secondary);
  background: #eef8ff;
}

.nav-link:hover,
.menu-button:hover {
  color: var(--secondary);
}

.nav-text-wrapper {
  display: inline-flex;
  flex-direction: column;
  height: 1.28em;
  overflow: hidden;
  line-height: 1.28;
  vertical-align: top;
}

.nav-text-wrapper > span {
  display: block;
  flex: 0 0 1.28em;
  height: 1.28em;
  white-space: nowrap;
  transform: translateY(0);
  transition: transform 360ms cubic-bezier(0.76, 0, 0.24, 1);
}

.nav-link:hover .nav-text-wrapper > span,
.menu-button:hover .nav-text-wrapper > span,
.nav-cta:hover .nav-text-wrapper > span,
.nav-link:focus-visible .nav-text-wrapper > span,
.menu-button:focus-visible .nav-text-wrapper > span,
.nav-cta:focus-visible .nav-text-wrapper > span {
  transform: translateY(-100%);
}

.nav-link:focus-visible,
.menu-button:focus-visible,
.nav-cta:focus-visible {
  outline: 3px solid rgba(0, 120, 255, 0.38);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mega-wrap {
  position: relative;
}

.mega-menu {
  position: absolute;
  right: 0;
  top: 48px;
  width: 560px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.mega-wrap:hover .mega-menu,
.mega-wrap:focus-within .mega-menu {
  display: grid;
}

.mega-item {
  padding: 14px;
  border-radius: 14px;
  background: #f8fbff;
}

.mega-item strong {
  display: block;
  margin-bottom: 6px;
}

.mega-item span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--secondary);
  font-size: 24px;
}

.cta,
.ghost,
.danger-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.cta {
  color: #fff;
  background: linear-gradient(110deg, var(--primary), var(--secondary) 48%, var(--accent));
  box-shadow: 0 16px 36px rgba(0, 120, 255, 0.22);
}

.nav-cta {
  min-height: 42px;
  padding: 10px 18px;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.28;
  white-space: nowrap;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 360ms cubic-bezier(0.76, 0, 0.24, 1);
}

.ghost {
  color: var(--secondary);
  background: #fff;
  border-color: #bfe9ff;
}

.danger-button {
  color: #fff;
  background: var(--danger);
}

.cta:hover,
.ghost:hover,
.danger-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0, 120, 255, 0.2);
}

@media (hover: none), (pointer: coarse) {
  .nav-link:hover .nav-text-wrapper > span,
  .menu-button:hover .nav-text-wrapper > span,
  .nav-cta:hover .nav-text-wrapper > span {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .navbar {
    transition: none;
  }

  .nav-link,
  .menu-button,
  .nav-cta,
  .nav-text-wrapper > span {
    transition: none;
  }

  .nav-link:hover .nav-text-wrapper > span,
  .menu-button:hover .nav-text-wrapper > span,
  .nav-cta:hover .nav-text-wrapper > span,
  .nav-link:focus-visible .nav-text-wrapper > span,
  .menu-button:focus-visible .nav-text-wrapper > span,
  .nav-cta:focus-visible .nav-text-wrapper > span {
    transform: translateY(0);
  }
}

.cta:disabled,
.ghost:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.hero {
  position: relative;
  padding: 80px 0 88px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -120px -10vw auto;
  height: 720px;
  background:
    radial-gradient(circle at 82% 22%, rgba(0, 166, 255, 0.22), transparent 32%),
    radial-gradient(circle at 24% 16%, rgba(255, 138, 0, 0.12), transparent 34%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 560px;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  color: var(--secondary);
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 14px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  font-size: 64px;
  line-height: 1.12;
  letter-spacing: 0;
  margin-bottom: 22px;
}

h2 {
  font-size: 42px;
  line-height: 1.18;
  letter-spacing: 0;
  margin-bottom: 16px;
}

h3 {
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions,
.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--secondary);
  background: #eaf8ff;
  font-size: 14px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-card {
  position: absolute;
  inset: 40px 0 auto auto;
  width: 520px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-card img {
  display: block;
  width: 100%;
  border-radius: 22px;
}

.floating-tag {
  position: absolute;
  min-width: 112px;
  padding: 12px 16px;
  border: 1px solid rgba(232, 238, 245, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
  color: var(--secondary);
  font-weight: 800;
}

.tag-one { left: 0; top: 74px; }
.tag-two { right: 4px; top: 0; }
.tag-three { left: 52px; bottom: 84px; }
.tag-four { right: 34px; bottom: 36px; }
.tag-five { left: 218px; top: 16px; }

section {
  padding: 76px 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.info-panel,
.card,
.glass-form,
.legal-shell,
.table-shell {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--soft-shadow);
}

.info-panel {
  padding: 28px;
}

.info-list {
  display: grid;
  gap: 18px;
}

.info-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}

.icon-box {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-weight: 900;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-head p {
  max-width: 560px;
  margin-bottom: 0;
}

.service-grid,
.feature-grid,
.industry-grid,
.product-grid,
.utility-grid {
  display: grid;
  gap: 22px;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.industry-grid {
  grid-template-columns: repeat(4, 1fr);
}

.product-grid {
  grid-template-columns: repeat(2, 1fr);
}

.utility-grid {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  padding: 20px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 166, 255, 0.45);
  box-shadow: var(--shadow);
}

.service-card img,
.product-hero img,
.media-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 18px;
}

.link {
  color: var(--secondary);
  font-weight: 900;
}

.products-section {
  scroll-margin-top: 154px;
  background:
    radial-gradient(circle at 8% 18%, rgba(0, 166, 255, 0.08), transparent 26%),
    radial-gradient(circle at 92% 82%, rgba(255, 138, 0, 0.08), transparent 24%);
}

.section-intro {
  max-width: 720px !important;
  margin-top: 12px !important;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.product-showcase {
  display: block;
  isolation: isolate;
  padding-bottom: clamp(160px, 24vh, 260px);
}

.product-stack-item {
  position: sticky;
  top: calc(154px + var(--stack-offset, 0px));
  z-index: 1;
  margin-bottom: 34px;
}

.product-stack-item:last-child {
  margin-bottom: 0;
}

.product-category-panel {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}



.product-category-head {
  padding-bottom: 22px;
  margin-bottom: 16px;
  border-bottom: 1px solid #e5edf7;
}

.product-category-title {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.product-category-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 12px 28px rgba(0, 120, 255, 0.24);
}

.product-category-panel.voice .product-category-icon {
  background: linear-gradient(135deg, #7357ff, #0078ff);
}

.product-category-panel.calling .product-category-icon {
  background: linear-gradient(135deg, var(--accent), #ff5c35);
  box-shadow: 0 12px 28px rgba(255, 111, 0, 0.22);
}

.product-category-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-category-kicker {
  margin: 0 0 4px;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-category-title h3 {
  margin: 0 0 7px;
  font-size: 24px;
}

.product-category-title p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.product-link-list {
  display: grid;
  gap: 11px;
}

.product-category-panel.calling .product-link-list {
  grid-template-columns: minmax(0, 1fr);
}

.product-list-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 30px;
  align-items: center;
  gap: 14px;
  min-height: 108px;
  padding: 14px;
  border: 1px solid #e7eef7;
  border-radius: 18px;
  background: linear-gradient(135deg, #fbfdff, #f5f9ff);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.product-list-item:hover,
.product-list-item:focus-visible {
  transform: translateX(5px);
  border-color: rgba(0, 120, 255, 0.4);
  background: #fff;
  box-shadow: 0 12px 26px rgba(8, 17, 31, 0.09);
  outline: none;
}

.product-monogram {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: var(--secondary);
  background: #e9f5ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.voice .product-monogram {
  color: #6547db;
  background: #f0edff;
}

.calling .product-monogram {
  color: #d85d00;
  background: #fff0df;
}

.product-list-copy {
  min-width: 0;
}

.product-list-copy strong,
.product-list-copy small {
  display: block;
}

.product-list-copy strong {
  margin-bottom: 5px;
  color: #17233a;
  font-size: 16px;
}

.product-list-copy small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.product-list-arrow {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--secondary);
  background: #e9f5ff;
  font-size: 18px;
  transition: transform 180ms ease;
}

.product-list-item:hover .product-list-arrow,
.product-list-item:focus-visible .product-list-arrow {
  transform: translateX(3px);
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat strong {
  display: block;
  color: var(--secondary);
  font-size: 44px;
  line-height: 1;
  margin-bottom: 8px;
}

.testimonial {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--soft-shadow);
}

.talk-section {
  scroll-margin-top: 110px;
  background:
    linear-gradient(90deg, rgba(8, 17, 31, 0.78), rgba(8, 17, 31, 0.58)),
    var(--talk-bg, url("/assets/voice.png")) center / cover;
}

.glass-form {
  width: min(680px, 100%);
  margin: 0 auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full,
.checkbox-line.full,
.recaptcha.full {
  grid-column: 1 / -1;
}

.field label,
.checkbox-line {
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
  outline: none;
}

.field textarea {
  min-height: 96px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 166, 255, 0.13);
}

.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.checkbox-line a {
  color: var(--secondary);
  text-decoration: underline;
}

.recaptcha {
  width: 304px;
  min-height: 78px;
  max-width: 100%;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

@media (max-width: 380px) {
  .recaptcha {
    height: 69px;
    transform: scale(0.88);
    transform-origin: left top;
  }
}

.form-message {
  margin-top: 12px;
  font-weight: 800;
}

.form-message.error {
  color: var(--danger);
}

.form-message.success {
  color: var(--success);
}

.footer {
  padding: 54px 0 24px;
  color: #c7d4e6;
  background: var(--footer);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer h4 {
  color: #fff;
  margin: 0 0 12px;
}

.footer a,
.footer p {
  display: block;
  color: #c7d4e6;
  line-height: 1.9;
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  margin-top: 36px;
  border-top: 1px solid #21344d;
  font-size: 14px;
}

.product-hero {
  padding: 42px;
}

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

.step-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #fff;
  background: var(--secondary);
  font-weight: 900;
  margin-bottom: 12px;
}

.legal-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  padding: 28px;
}

.toc {
  position: sticky;
  top: 120px;
  align-self: start;
  display: grid;
  gap: 10px;
}

.legal-content {
  display: grid;
  gap: 22px;
}

.thank-card {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.checkmark {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  margin: 0 auto 22px;
  border-radius: 999px;
  color: #fff;
  background: var(--success);
  font-size: 44px;
  font-weight: 900;
}

.not-found {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
}

@media (max-width: 980px) {
  h1 {
    font-size: 48px;
  }

  .hero-grid,
  .split,
  .legal-shell {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-card {
    position: relative;
    width: 100%;
    inset: auto;
  }

  .service-grid,
  .feature-grid,
  .product-grid,
  .utility-grid,
  .stats,
  .footer-grid,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .navbar {
    top: 8px;
    width: calc(100% - 20px);
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .mega-menu {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    box-shadow: none;
  }

  .logo {
    width: 168px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 31px;
  }

  .hero {
    padding-top: 48px;
  }

  .form-grid,
  .service-grid,
  .feature-grid,
  .industry-grid,
  .product-grid,
  .utility-grid,
  .stats,
  .footer-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .footer-bottom,
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-tag {
    display: none;
  }
}


.cover-page {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
  overflow: hidden;
  color: #fff;
  background: var(--footer);
  transition: opacity 320ms ease, transform 320ms ease;
}

.cover-page.is-leaving {
  opacity: 0;
  transform: scale(1.02);
  pointer-events: none;
}

.cover-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(0, 166, 255, 0.26), transparent 38%),
    radial-gradient(circle at 78% 28%, rgba(255, 138, 0, 0.22), transparent 30%),
    url("/assets/rcs.png") center / cover;
  opacity: 0.32;
  transform: scale(1.04);
}

.cover-panel {
  position: relative;
  width: min(720px, 100%);
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  text-align: center;
  background: rgba(8, 17, 31, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.cover-logo {
  width: min(420px, 86vw);
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.38);
}

.cover-panel h1 {
  margin: 22px 0 12px;
  color: #fff;
  font-size: 54px;
}

.cover-panel p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 auto 24px;
  color: #d7e7f8;
  font-size: 18px;
  line-height: 1.7;
}

.cover-loader {
  width: min(420px, 100%);
  height: 8px;
  margin: 0 auto 24px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.cover-loader span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(110deg, var(--primary), var(--secondary), var(--accent));
  animation: cover-load 1400ms ease-in-out infinite;
}

@keyframes cover-load {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(250%); }
}

@media (max-width: 720px) {
  .cover-panel {
    padding: 28px 20px;
  }

  .cover-panel h1 {
    font-size: 36px;
  }
}

.submit-page {
  padding: 52px 0 76px;
  background:
    radial-gradient(circle at 14% 10%, rgba(0, 166, 255, 0.12), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(0, 120, 255, 0.12), transparent 26%),
    linear-gradient(180deg, #eef6ff 0%, #f8fbff 38%, #ffffff 100%);
}

.submit-shell {
  position: relative;
  padding: 58px 62px 34px;
  border: 1px solid #cfe0ff;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
    radial-gradient(circle at 84% 10%, rgba(0, 120, 255, 0.08), transparent 30%);
  box-shadow: 0 28px 90px rgba(33, 91, 170, 0.16);
  overflow: hidden;
}

.submit-shell::before,
.submit-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.submit-shell::before {
  width: 260px;
  height: 260px;
  right: -92px;
  bottom: -104px;
  border: 1px solid rgba(0, 120, 255, 0.14);
  border-radius: 50%;
}

.submit-shell::after {
  width: 190px;
  height: 190px;
  left: -80px;
  top: -76px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 166, 255, 0.11), transparent 68%);
}

.submit-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 500px;
  gap: 52px;
  align-items: center;
}

.submit-copy h1 {
  margin: 24px 0 2px;
  color: #08214a;
  font-size: 70px;
  line-height: 1;
}

.submit-copy h2 {
  margin: 0 0 26px;
  color: #315cff;
  font-size: 36px;
  line-height: 1.2;
}

.submit-copy p {
  max-width: 540px;
  color: #263b5f;
  font-size: 18px;
  line-height: 1.8;
}

.success-orbit {
  position: relative;
  display: grid;
  place-items: center;
  width: 142px;
  height: 142px;
  margin-left: 92px;
  border-radius: 50%;
  background: rgba(55, 211, 90, 0.12);
  box-shadow: 0 0 0 22px rgba(55, 211, 90, 0.08), 0 0 0 46px rgba(55, 211, 90, 0.04);
}

.success-orbit span {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #59df76, #16a34a);
  box-shadow: 0 16px 32px rgba(22, 163, 74, 0.28);
  font-weight: 900;
}

.safe-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: #315cff;
  font-weight: 800;
}

.safe-note span:first-child {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #eef4ff;
  font-size: 11px;
}

.safe-note span:last-child {
  color: #315cff;
  font-weight: 700;
}

.submit-illustration {
  position: relative;
  min-height: 430px;
}

.envelope-scene {
  position: absolute;
  right: 28px;
  bottom: 34px;
  width: 360px;
  height: 280px;
  filter: drop-shadow(0 28px 34px rgba(44, 88, 204, 0.22));
}

.envelope-scene::before {
  content: "";
  position: absolute;
  inset: -90px -56px auto auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: #edf3ff;
  z-index: -1;
}

.letter-card {
  position: absolute;
  left: 82px;
  top: 0;
  width: 210px;
  height: 180px;
  padding-top: 48px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(49, 92, 255, 0.16);
  transform: rotate(3deg);
}

.letter-card span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 26px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #76c5ff, #315cff);
  font-size: 15px;
  font-weight: 900;
}

.letter-card i {
  display: block;
  width: 132px;
  height: 10px;
  margin: 12px auto;
  border-radius: 999px;
  background: #dbe7ff;
}

.letter-card i:last-child {
  width: 104px;
}

.envelope-back,
.envelope-front {
  position: absolute;
  inset: 96px 0 0;
  border-radius: 22px;
}

.envelope-back {
  background: linear-gradient(135deg, #37c9ff, #315cff 62%, #7546ff);
  clip-path: polygon(0 0, 50% 48%, 100% 0, 100% 100%, 0 100%);
}

.envelope-front {
  background: linear-gradient(140deg, #2ebdff, #395fff 58%, #743cff);
  clip-path: polygon(0 22%, 50% 78%, 100% 22%, 100% 100%, 0 100%);
}

.paper-plane {
  position: absolute;
  left: 42px;
  top: 94px;
  width: 78px;
  height: 58px;
  background: linear-gradient(135deg, #28baff, #4d46ff);
  clip-path: polygon(0 42%, 100% 0, 62% 100%, 44% 58%);
  transform: rotate(-12deg);
}

.float-icon {
  position: absolute;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border: 1px solid #d4e2ff;
  border-radius: 16px;
  color: #315cff;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 28px rgba(49, 92, 255, 0.12);
  font-weight: 900;
  font-size: 13px;
}

.float-icon.chat { right: 4px; top: 74px; }
.float-icon.phone { right: -26px; top: 242px; }
.float-icon.user { right: 36px; bottom: 8px; }

.message-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #60a5fa;
}

.message-dot.one { left: 150px; top: 202px; }
.message-dot.two { left: 190px; top: 282px; }
.message-dot.three { right: 76px; top: 172px; opacity: 0.45; }

.summary-title {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 38px 0 26px;
  color: #263b5f;
  font-size: 18px;
  font-weight: 800;
}

.summary-title p {
  margin: 0;
}

.summary-title span {
  width: 86px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #315cff, transparent);
}

.submission-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.submission-card {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 118px;
  padding: 24px;
  border: 1px solid #dce8ff;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(33, 91, 170, 0.08);
}

.submission-card:nth-child(4),
.submission-card:nth-child(5) {
  grid-column: span 3;
}

.summary-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #1767ff;
  background: #edf3ff;
  font-size: 13px;
  font-weight: 900;
}

.summary-icon.large {
  width: 70px;
  height: 70px;
  font-size: 14px;
}

.submission-card h3,
.work-note h3 {
  margin: 0 0 8px;
  color: #08214a;
  font-size: 18px;
}

.submission-card p,
.work-note p {
  margin: 0;
  color: #263b5f;
  font-size: 16px;
  line-height: 1.55;
}

.submission-card p {
  color: #1767ff;
  font-weight: 800;
}

.work-note {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 76px 1fr 210px;
  gap: 20px;
  align-items: center;
  margin-top: 30px;
  padding: 24px;
  border: 1px solid #cfe0ff;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.94), rgba(255, 255, 255, 0.94));
}

.growth-bars {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 12px;
  min-height: 90px;
}

.growth-bars span {
  width: 18px;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, #8bdfff, #315cff);
}

.growth-bars span:nth-child(1) { height: 18px; opacity: 0.6; }
.growth-bars span:nth-child(2) { height: 34px; background: linear-gradient(180deg, #75f0c4, #22c55e); }
.growth-bars span:nth-child(3) { height: 56px; }
.growth-bars span:nth-child(4) { height: 76px; background: linear-gradient(180deg, #b498ff, #5b4bff); }

.growth-bars b {
  width: 22px;
  height: 22px;
  margin-bottom: 78px;
  border-radius: 6px;
  background: #ffc93d;
  transform: rotate(18deg);
}

.submit-actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 34px 0 48px;
}

.submit-primary,
.submit-secondary {
  min-width: 260px;
  min-height: 64px;
  font-size: 18px;
}

.submit-trustbar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid #dce8ff;
  border-radius: 18px;
  background: rgba(248, 251, 255, 0.88);
  overflow: hidden;
}

.submit-trustbar div {
  padding: 20px 24px;
  border-right: 1px solid #dce8ff;
}

.submit-trustbar div:last-child {
  border-right: 0;
}

.submit-trustbar strong,
.submit-trustbar span {
  display: block;
}

.submit-trustbar strong {
  color: #1767ff;
  margin-bottom: 4px;
}

.submit-trustbar span {
  color: #263b5f;
}

@media (max-width: 980px) {
  .submit-shell {
    padding: 38px 28px 28px;
  }

  .submit-hero {
    grid-template-columns: 1fr;
  }

  .submit-copy h1 {
    font-size: 54px;
  }

  .submit-illustration {
    min-height: 360px;
  }

  .submission-grid,
  .submit-trustbar {
    grid-template-columns: 1fr 1fr;
  }

  .submission-card,
  .submission-card:nth-child(4),
  .submission-card:nth-child(5) {
    grid-column: span 1;
  }

  .work-note {
    grid-template-columns: 76px 1fr;
  }

  .growth-bars {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .submit-page {
    padding: 24px 0 42px;
  }

  .submit-shell {
    width: calc(100% - 24px);
    padding: 28px 18px 22px;
  }

  .success-orbit {
    margin-left: 44px;
    width: 108px;
    height: 108px;
  }

  .success-orbit span {
    width: 68px;
    height: 68px;
  }

  .submit-copy h1 {
    font-size: 42px;
  }

  .submit-copy h2 {
    font-size: 27px;
  }

  .submit-illustration {
    min-height: 310px;
  }

  .envelope-scene {
    right: -24px;
    width: 300px;
    transform: scale(0.82);
    transform-origin: right bottom;
  }

  .float-icon.phone,
  .float-icon.user {
    display: none;
  }

  .summary-title span {
    width: 34px;
  }

  .submission-grid,
  .submit-trustbar,
  .work-note {
    grid-template-columns: 1fr;
  }

  .submission-card {
    grid-template-columns: 56px 1fr;
    padding: 18px;
  }

  .submit-actions {
    flex-direction: column;
    gap: 14px;
  }

  .submit-primary,
  .submit-secondary {
    width: 100%;
    min-width: 0;
  }

  .submit-trustbar div {
    border-right: 0;
    border-bottom: 1px solid #dce8ff;
  }

  .submit-trustbar div:last-child {
    border-bottom: 0;
  }
}



/* Premium animated border system */
@property --glow-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.glow-border {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(0, 166, 255, 0.28) !important;
}

.glow-border::before,
.glow-border::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: inherit;
}

.glow-border::before {
  inset: -2px;
  z-index: -2;
  background: conic-gradient(from var(--glow-angle), transparent 0 18%, var(--primary), var(--secondary), var(--accent), transparent 82% 100%);
  filter: blur(7px);
  opacity: 0.72;
  animation: glow-spin 6s linear infinite;
}

.glow-border::after {
  inset: 2px;
  z-index: -1;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.hero-card.glow-border::after {
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(18px);
}

.glass-form.glow-border::after {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.glow-border > * {
  position: relative;
  z-index: 1;
}

@keyframes glow-spin {
  to { --glow-angle: 360deg; }
}

.hover-zoom img {
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hover-zoom:hover img {
  transform: scale(1.045);
}

.hover-zoom .icon-box {
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 520ms ease;
}

.hover-zoom:hover .icon-box {
  transform: scale(1.08);
  box-shadow: 0 12px 26px rgba(0, 120, 255, 0.2);
}

/* Premium cover screen */
.cover-page {
  background: #07101d;
}

.cover-bg {
  background:
    linear-gradient(120deg, rgba(3, 10, 24, 0.84), rgba(4, 18, 36, 0.58) 48%, rgba(0, 120, 255, 0.28)),
    radial-gradient(circle at 76% 24%, rgba(255, 138, 0, 0.18), transparent 30%),
    url("/assets/telecom-cover.png") center / cover;
  opacity: 1;
  transform: scale(1.04);
  animation: cover-drift 8s ease-in-out infinite alternate;
}

.cover-panel {
  width: min(680px, 100%);
  background: rgba(8, 17, 31, 0.58);
  border-color: rgba(138, 213, 255, 0.24);
  box-shadow: 0 32px 110px rgba(0, 0, 0, 0.46), 0 0 70px rgba(0, 166, 255, 0.18);
}

.cover-logo {
  background: rgba(0, 0, 0, 0.34);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.cover-loader {
  height: 10px;
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.cover-loader span {
  width: 48%;
  background: linear-gradient(110deg, var(--primary), var(--secondary), var(--accent));
  box-shadow: 0 0 22px rgba(0, 166, 255, 0.62);
}

@keyframes cover-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
}

/* Compact staggered testimonial conversations */
.customer-story-section {
  padding: 52px 0;
  background: linear-gradient(180deg, #f8fafc, #f3f8fd 54%, #f8fafc);
}

.testimonial-container {
  max-width: 1240px;
}

.testimonial-heading {
  margin-bottom: 18px;
  text-align: center;
}

.testimonial-heading h2 {
  margin: 4px 0 0;
  font-size: 32px;
}

.testimonial-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(288px, 310px);
  gap: 18px;
  overflow-x: auto;
  padding: 5px 8px 22px;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-color: rgba(0, 120, 255, 0.28) transparent;
  scrollbar-width: thin;
}

.testimonial-rail::-webkit-scrollbar {
  height: 6px;
}

.testimonial-rail::-webkit-scrollbar-track {
  background: transparent;
}

.testimonial-rail::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(0, 120, 255, 0.28);
}

.testimonial-card-wrap {
  padding-top: 0;
  scroll-snap-align: start;
}

.testimonial-card-wrap:nth-child(even) {
  padding-top: 22px;
}

.testimonial-chat-card {
  min-height: 246px;
  overflow: hidden;
  border: 1px solid #e1e7ef;
  border-radius: 18px;
  opacity: 0;
  transform: translateY(22px) scale(0.97);
  background: #fff;
  box-shadow: 0 12px 30px rgba(8, 17, 31, 0.085);
}

.testimonial-chat-card.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 560ms ease, transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.chat-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 13px;
  border-bottom: 1px solid #e9edf3;
  background: #fff;
}

.chat-avatar {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.customer-avatar {
  background: linear-gradient(135deg, #6f7f92, #26384f);
}

.brand-avatar {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.chat-avatar.mini {
  width: 24px;
  height: 24px;
  margin-top: 4px;
  font-size: 7px;
}

.chat-profile-copy {
  min-width: 0;
}

.chat-profile-copy strong,
.chat-profile-copy small {
  display: block;
}

.chat-profile-copy strong {
  overflow: hidden;
  color: #111827;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-profile-copy small {
  margin-top: 1px;
  overflow: hidden;
  color: #7b8492;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.verified-client {
  margin-left: auto;
  padding: 4px 7px;
  border-radius: 999px;
  color: #1677d2;
  background: #eaf5ff;
  font-size: 9px;
  font-weight: 800;
}

.chat-thread {
  display: grid;
  align-content: space-between;
  gap: 22px;
  min-height: 193px;
  padding: 15px 13px 13px;
  background: #fbfcfe;
}

.chat-message {
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.chat-message.outgoing {
  justify-content: flex-end;
}

.chat-message-stack {
  position: relative;
  max-width: 82%;
}

.chat-bubble {
  position: relative;
  padding: 9px 11px;
  border-radius: 13px;
}

.incoming .chat-bubble {
  border-bottom-left-radius: 5px;
  color: #263244;
  background: #eef0f3;
}

.outgoing .chat-bubble {
  border-bottom-right-radius: 5px;
  color: #fff;
  background: #0997eb;
}

.chat-bubble p {
  margin: 0;
  color: inherit;
  font-size: 11px;
  line-height: 1.45;
}

.chat-reaction {
  position: absolute;
  right: 7px;
  bottom: -12px;
  padding: 1px 5px;
  border: 1px solid #e7eaf0;
  border-radius: 999px;
  color: #f0445c;
  background: #fff;
  box-shadow: 0 3px 8px rgba(8, 17, 31, 0.08);
  font-size: 9px;
}

.chat-reaction b {
  color: #5896d5;
}

.chat-status {
  display: block;
  margin: 3px 3px 0 0;
  color: #9aa2ad;
  font-size: 8px;
  text-align: right;
}

.testimonial-scroll-hint {
  margin: 5px 8px 0;
  color: #8792a1;
  font-size: 11px;
  font-weight: 700;
  text-align: right;
}

.testimonial-scroll-hint span {
  color: var(--secondary);
  font-size: 15px;
}

@media (max-width: 720px) {
  .customer-story-section {
    padding: 42px 0;
  }

  .testimonial-heading h2 {
    font-size: 28px;
  }

  .testimonial-rail {
    grid-auto-columns: minmax(278px, 86vw);
    gap: 14px;
    margin: 0 -4px;
    padding-bottom: 18px;
  }

  .testimonial-card-wrap:nth-child(even) {
    padding-top: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-chat-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Footer social updates */
.footer-grid {
  grid-template-columns: 1.35fr 0.85fr 0.85fr 1fr 0.9fr;
}

.social-links {
  display: grid;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  color: var(--primary);
}

.footer-bottom span:last-child {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .cover-panel p:not(.eyebrow) {
    font-size: 16px;
  }


  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .glow-border::before,
  .cover-bg,
  .cover-loader span {
    animation: none;
  }

  .hover-zoom:hover img,
  .hover-zoom:hover .icon-box {
    transform: none;
  }
}

/* Extended glow treatment for inner website pages */
.text-panel {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
}

.text-panel.glow-border::after,
.info-panel.glow-border::after,
.legal-shell.glow-border::after,
.submission-card.glow-border::after,
.work-note.glow-border::after,
.submit-trustbar.glow-border::after {
  background: rgba(255, 255, 255, 0.94);
}

.submit-shell.glow-border::after {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
    radial-gradient(circle at 84% 10%, rgba(0, 120, 255, 0.08), transparent 30%);
}

.product-hero.glow-border::after {
  background: rgba(255, 255, 255, 0.96);
}

.product-hero.glow-border img {
  overflow: hidden;
}

.legal-shell.glow-border,
.submit-shell.glow-border,
.submit-trustbar.glow-border {
  overflow: hidden;
}

/* Minimal enquiry confirmation page */
.thank-you-page {
  padding: 48px 0 64px;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 66%);
}

.thank-you-shell {
  width: min(100% - 32px, 620px);
}

.thank-you-card {
  padding: 40px;
  border: 1px solid #dce8f5;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(20, 72, 130, 0.1);
  text-align: center;
}

.thank-you-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--success);
  font-size: 28px;
  font-weight: 900;
}

.thank-you-card h1 {
  margin: 8px 0 14px;
  font-size: clamp(30px, 4vw, 42px);
}

.thank-you-intro {
  max-width: 470px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.thank-you-next {
  margin: 26px 0;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.thank-you-next h2 {
  margin-bottom: 18px;
  font-size: 19px;
}

.thank-you-next ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.thank-you-next li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: center;
}

.thank-you-next li span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--primary);
  background: rgba(0, 166, 255, 0.1);
  font-size: 13px;
  font-weight: 900;
}

.thank-you-next li p,
.thank-you-help {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.thank-you-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.thank-you-help {
  margin-top: 24px;
  font-size: 14px;
}

.thank-you-help a {
  color: var(--secondary);
  font-weight: 800;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .thank-you-page {
    padding: 34px 0 48px;
  }

  .thank-you-card {
    padding: 34px 22px;
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .thank-you-actions a {
    width: 100%;
  }
}

.submission-card.glow-border,
.work-note.glow-border {
  overflow: hidden;
}

.stat.glow-border::after {
  background: #fff;
}

@media (max-width: 720px) {
  .text-panel {
    padding: 22px;
  }
}

/* Product catalog responsiveness */
.mega-menu {
  max-height: min(70vh, 680px);
  overflow-y: auto;
}

@media (max-width: 980px) {
  .product-category-panel.calling {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .nav-links.open {
    max-height: calc(100vh - 106px);
    overflow-y: auto;
  }

  .products-section .section-head {
    margin-bottom: 24px;
  }

  .product-category-panel {
    padding: 20px;
    border-radius: 22px;
  }

  .product-category-title {
    gap: 13px;
  }

  .product-category-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .product-category-title h3 {
    font-size: 21px;
  }

  .product-list-item {
    grid-template-columns: 72px minmax(0, 1fr) 26px;
    gap: 11px;
    min-height: 96px;
    padding: 12px;
  }

  .product-monogram {
    width: 42px;
    height: 42px;
  }

  .product-list-copy small {
    font-size: 12px;
  }

  .product-list-arrow {
    width: 26px;
    height: 26px;
  }
}
/* Catalog imagery */
.product-list-image {
  display: block;
  width: 92px;
  height: 62px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 7px 18px rgba(8, 17, 31, 0.12);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 420ms ease;
}

.product-list-item:hover .product-list-image,
.product-list-item:focus-visible .product-list-image {
  transform: scale(1.05);
  box-shadow: 0 10px 24px rgba(0, 120, 255, 0.2);
}

.product-category-panel.digital .product-category-icon {
  background: linear-gradient(135deg, #0f9d78, #00a6ff);
  box-shadow: 0 12px 28px rgba(15, 157, 120, 0.22);
}

.industry-card.card {
  min-width: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
}

.industry-card.glow-border::after {
  background: #fff;
}

.industry-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0;
}

.industry-card-copy {
  padding: 20px;
}

.industry-card-copy h3 {
  margin: 0 0 8px;
}

.industry-card-copy .lead {
  margin-bottom: 0;
  font-size: 15px;
}

@media (max-width: 720px) {
  .product-showcase {
    display: grid;
    gap: 18px;
    padding-bottom: 0;
  }

  .product-stack-item {
    position: relative;
    top: auto;
    z-index: auto !important;
    margin: 0;
  }

  .product-list-image {
    width: 72px;
    height: 52px;
  }

  .industry-card-copy {
    padding: 16px;
  }
}

/* Homepage conversion and trust add-ons */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 10px 16px 10px 11px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  color: #fff;
  background: #1ca64d;
  box-shadow: 0 16px 34px rgba(28, 166, 77, 0.28);
  font-size: 14px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
  background: #168d40;
  box-shadow: 0 20px 38px rgba(28, 166, 77, 0.34);
  outline: none;
}

.whatsapp-float-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.whatsapp-float svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-showcase {
  padding: 12px 0 48px;
}

.trust-showcase .container {
  padding: 24px 28px;
  border: 1px solid #ddecf9;
  border-radius: 22px;
  background: linear-gradient(120deg, #fff 0%, #f5fbff 100%);
  box-shadow: var(--soft-shadow);
}

.trust-kicker {
  margin: 0 0 17px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.sector-logo-strip,
.platform-badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.sector-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid #e5edf7;
  border-radius: 12px;
  color: #334155;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.sector-logo b {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  color: var(--secondary);
  background: #e7f6ff;
  font-size: 10px;
}

.platform-badge-row {
  margin-top: 18px;
}

.platform-badge-row span {
  color: var(--secondary);
  font-size: 12px;
  font-weight: 900;
}

.platform-badge-row span::before {
  content: "✓";
  margin-right: 6px;
  color: var(--success);
}

.comparison-section {
  scroll-margin-top: 110px;
  background: linear-gradient(180deg, #f5fbff 0%, #fff 100%);
}

.comparison-head {
  margin-bottom: 22px;
}

.comparison-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.comparison-tab {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid #cfe5f8;
  border-radius: 999px;
  color: #3a526e;
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.comparison-tab:hover,
.comparison-tab:focus-visible,
.comparison-tab.is-active {
  border-color: var(--secondary);
  color: #fff;
  background: var(--secondary);
  outline: none;
}

.comparison-tab:hover,
.comparison-tab:focus-visible {
  transform: translateY(-1px);
}

.comparison-shell {
  overflow: hidden;
  padding: 0;
}

.comparison-table-wrap {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  min-width: 850px;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  min-width: 175px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  vertical-align: top;
  transition: background 180ms ease, color 180ms ease;
}

.comparison-table thead th {
  color: var(--ink);
  background: #f8fbff;
  font-size: 13px;
}

.comparison-table thead th:first-child,
.comparison-table tbody th {
  min-width: 160px;
  color: #334155;
  font-weight: 900;
}

.comparison-table thead th span,
.comparison-table thead th strong {
  display: block;
}

.comparison-table thead th span {
  margin-bottom: 4px;
  color: var(--secondary);
  font-size: 12px;
}

.comparison-table thead th strong {
  font-size: 15px;
}

.comparison-table [data-comparison-cell].is-selected {
  color: #113f74;
  background: #eaf8ff;
}

.comparison-table thead [data-comparison-cell].is-selected {
  background: #dff4ff;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-insight {
  margin: 0;
  padding: 18px 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  background: #fff;
  line-height: 1.6;
}

.comparison-insight strong {
  color: var(--ink);
}

.case-studies-section {
  background: radial-gradient(circle at 8% 24%, rgba(0, 166, 255, 0.08), transparent 28%);
}

.case-studies-head {
  align-items: end;
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.case-study-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 312px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid #dceaf7;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.case-study-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: rgba(0, 166, 255, 0.07);
}

.case-study-card:nth-child(2)::after {
  background: rgba(117, 87, 255, 0.08);
}

.case-study-card:nth-child(3)::after {
  background: rgba(255, 138, 0, 0.1);
}

.case-study-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: #c8d8e8;
  font-size: 24px;
  font-weight: 900;
}

.case-study-sector {
  margin: 0 0 12px;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-study-card h3 {
  max-width: 300px;
  margin-bottom: 18px;
  font-size: 23px;
}

.case-study-detail {
  display: grid;
  gap: 5px;
  margin-bottom: 14px;
}

.case-study-detail span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.case-study-detail strong {
  color: #334155;
  font-size: 14px;
}

.case-study-card > p:not(.case-study-sector) {
  color: var(--muted);
  line-height: 1.6;
}

.case-study-card .link {
  margin-top: auto;
}

.case-study-card .link span {
  display: inline-block;
  margin-left: 4px;
  transition: transform 180ms ease;
}

.case-study-card .link:hover span {
  transform: translateX(4px);
}

.faq-section {
  background: #f8fbff;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 58px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 118px;
}

.faq-intro .ghost {
  margin-top: 10px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid #dbe8f4;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(8, 17, 31, 0.04);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 20px;
  color: #21334c;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-toggle {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--secondary);
  background: #e8f7ff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.faq-item[open] .faq-toggle {
  color: #fff;
  background: var(--secondary);
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 980px) {
  .case-study-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .case-study-grid {
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .case-study-card {
    min-width: 250px;
  }

  .faq-intro {
    position: static;
  }
}

@media (max-width: 720px) {
  .cover-page {
    place-items: center;
    padding: 16px;
  }

  .cover-panel {
    width: 100%;
    max-width: 680px;
    padding: 28px 20px;
    border-radius: 22px;
  }

  .cover-logo {
    width: min(100%, 320px);
    padding: 10px 12px;
  }

  .cover-panel h1 {
    max-width: 100%;
    font-size: clamp(32px, 9vw, 36px);
    overflow-wrap: anywhere;
  }

  .cover-panel p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.6;
  }

  .talk-section .container,
  .glass-form,
  .form-grid,
  .form-grid > *,
  .field,
  .checkbox-line,
  .checkbox-line > span {
    min-width: 0;
    max-width: 100%;
  }

  .glass-form {
    width: 100%;
    padding: 24px 20px;
  }

  .form-grid {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }

  .field input,
  .field select,
  .field textarea {
    min-width: 0;
    max-width: 100%;
  }

  .recaptcha {
    width: min(304px, 100%);
    min-width: 0;
    max-width: 100%;
  }

  .checkbox-line {
    align-items: flex-start;
  }

  .row-actions {
    margin: 24px 0 0;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    padding: 10px;
  }

  .whatsapp-float > span:last-child {
    display: none;
  }

  .trust-showcase {
    padding: 4px 0 34px;
  }

  .trust-showcase .container {
    padding: 20px 16px;
  }

  .sector-logo-strip {
    justify-content: flex-start;
  }

  .platform-badge-row {
    justify-content: flex-start;
  }

  .comparison-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .comparison-tab {
    flex: 0 0 auto;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 15px 16px;
  }

  .case-study-grid {
    grid-template-columns: repeat(3, minmax(82vw, 1fr));
    gap: 14px;
  }

  .case-study-card {
    min-height: 294px;
    padding: 24px;
  }

  .faq-layout {
    gap: 28px;
  }

  .faq-item summary {
    padding: 17px;
  }

  .faq-item p {
    padding: 0 17px 18px;
  }
}

@media (max-width: 380px) {
  .cover-page {
    padding: 12px;
  }

  .cover-panel {
    padding: 24px 16px;
  }

  .glass-form {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .checkbox-line {
    gap: 8px;
    font-size: 13px;
  }
}
