:root {
  --bg: #eef3f8;
  --bg-accent: #dde7f2;
  --surface: #ffffff;
  --surface-alt: #f6f9fc;
  --surface-soft: #edf3f8;
  --text: #172433;
  --muted: #5c6d80;
  --line: #d5e0ea;
  --line-strong: #b9cad8;
  --blue: #2f9fe4;
  --blue-deep: #1e6fa4;
  --magenta: #9a2b69;
  --steel: #6c7d89;
  --navy: #17324f;
  --white: #ffffff;
  --shadow: 0 22px 54px rgba(29, 56, 82, 0.08);
  --shadow-soft: 0 14px 34px rgba(29, 56, 82, 0.06);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)),
    linear-gradient(135deg, #edf3f8 0%, #f8fbfd 48%, #e8eff6 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(47, 159, 228, 0.04), transparent 24%),
    linear-gradient(180deg, transparent, rgba(154, 43, 105, 0.03));
}

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

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

.site-shell {
  width: min(calc(100% - 32px), 1320px);
  margin: 0 auto;
}

.topbar,
.hero,
.trusted-strip,
.section,
.footer {
  width: min(100%, var(--content-width));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 16px 22px;
  border: 1px solid rgba(185, 202, 216, 0.8);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__logo-mark {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.brand__name,
.brand__sub,
.eyebrow,
.trusted-strip span,
.hero-panel__label,
.footer span:last-child {
  font-family: "Sora", sans-serif;
}

.brand__name {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand__sub {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.nav-toggle,
.nav-toggle-button {
  display: none;
}

.nav-toggle-button {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f8fbfd);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.nav-toggle-button span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav a,
.nav__item > a,
.nav__summary {
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a::after,
.nav__item > a::after,
.nav__summary::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--blue), var(--magenta));
  transition: transform 180ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav__item > a:hover,
.nav__item > a:focus-visible,
.nav__summary:hover,
.nav__summary:focus-visible {
  color: var(--navy);
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav__item > a:hover::after,
.nav__item > a:focus-visible::after,
.nav__summary:hover::after,
.nav__summary:focus-visible::after {
  transform: scaleX(1);
}

.nav__item {
  position: relative;
}

.nav__summary {
  display: block;
  list-style: none;
  cursor: pointer;
}

.nav__summary::-webkit-details-marker {
  display: none;
}

.nav__item--submenu > a,
.nav__summary {
  padding-right: 14px;
}

.nav__item--submenu > a::before,
.nav__summary::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
}

.submenu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  min-width: 190px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.submenu::before {
  content: "";
  position: absolute;
  left: 18px;
  top: -7px;
  width: 12px;
  height: 12px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  transform: rotate(45deg);
}

.submenu a {
  display: block;
  padding: 11px 12px;
  border-radius: 12px;
  color: var(--navy);
  font-size: 0.92rem;
}

.submenu a::after {
  display: none;
}

.submenu a:hover,
.submenu a:focus-visible {
  background: var(--surface-soft);
  color: var(--blue-deep);
}

.nav-disclosure[open] .submenu,
.nav__item--submenu:hover .submenu,
.nav__item--submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 38px;
  padding: 72px 0 42px;
  align-items: start;
}

.hero__content {
  padding-top: 18px;
}

.hero__content h1,
.section-heading h2,
.product-showcase__content h2,
.about-copy h2,
.contact-card__copy h2,
.hero-panel__copy h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.hero__content h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 5.6vw, 5.2rem);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__lede,
.section-heading p,
.product-showcase__content > p,
.about-copy p,
.contact-card__copy p,
.service-card p,
.process-card p,
.feature-list span,
.hero-panel__copy span,
.hero-panel--contact span,
.hero__stats span {
  color: var(--muted);
  line-height: 1.75;
}

.hero__lede {
  max-width: 62ch;
  margin: 24px 0 0;
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

.button--primary {
  background: linear-gradient(135deg, var(--blue) 0%, #5db7ef 100%);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(47, 159, 228, 0.2);
}

.button--ghost {
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--navy);
}

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

.hero__stats div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #ffffff, #f7fbfe);
  box-shadow: var(--shadow-soft);
}

.hero__stats strong,
.feature-list strong,
.hero-panel--contact strong,
.contact-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1rem;
}

.hero__visual {
  display: grid;
  gap: 18px;
}

.hero-panel,
.service-card,
.process-card,
.brand-panel,
.contact-card,
.media-frame,
.trusted-strip div {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.hero-panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-panel--brand {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(248, 251, 254, 0.96)),
    url("assets/tomroid-office.jpg") center / cover no-repeat;
}

.hero-panel--brand img {
  width: 100%;
  padding: 26px 26px 0;
  background: rgba(255, 255, 255, 0.92);
}

.hero-panel__copy {
  padding: 24px 26px 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 249, 252, 0.98));
}

.hero-panel__copy p {
  margin: 0 0 10px;
  color: var(--blue-deep);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-panel__copy h2 {
  font-size: 1.8rem;
}

.hero-panel__copy span {
  display: block;
  margin-top: 12px;
}

.hero-panel--contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.hero-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px;
  background: var(--surface);
}

.hero-contact--intro,
.hero-contact--offices {
  grid-column: 1 / -1;
}

.hero-contact--partner {
  grid-column: 1 / -1;
  background:
    linear-gradient(135deg, rgba(108, 125, 137, 0.08), rgba(47, 159, 228, 0.04)),
    linear-gradient(180deg, #ffffff, #f8fbfd);
}

.hero-contact--intro {
  background:
    linear-gradient(135deg, rgba(47, 159, 228, 0.08), rgba(154, 43, 105, 0.07)),
    linear-gradient(180deg, #ffffff, #f8fbfd);
}

.hero-contact__eyebrow {
  margin: 0;
  color: var(--blue-deep);
  font-family: "Sora", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-contact h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.25;
}

.hero-contact a,
.hero-contact span {
  color: var(--muted);
  line-height: 1.5;
}

.hero-contact a {
  font-weight: 700;
}

.hero-contact a:hover,
.hero-contact a:focus-visible {
  color: var(--blue-deep);
}

.hero-contact__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.hero-contact__tags span {
  padding: 10px 14px;
  border: 1px solid rgba(47, 159, 228, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.4;
}

.hero-contact__offices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.hero-contact--partner .hero-contact__offices {
  grid-template-columns: 1fr;
}

.hero-contact__offices span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-soft);
}

.hero-contact__offices b {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
}

.hero-panel__label {
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.demo-note,
.demo-panel,
.contact-visual-panel {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f8fbfd);
}

.demo-note {
  margin-top: 16px;
  padding: 22px;
}

.demo-note h3,
.demo-panel h3,
.contact-visual-panel h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.5rem;
  line-height: 1.2;
}

.demo-note p,
.demo-panel p,
.contact-visual-panel p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.demo-note__points,
.contact-visual-panel__items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.demo-note__points span,
.contact-visual-panel__items span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
}

.trusted-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 10px;
}

.trusted-strip div {
  padding: 20px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #ffffff, #f8fbfd);
}

.trusted-strip span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--blue-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.trusted-strip strong {
  display: block;
  color: var(--navy);
  line-height: 1.45;
}

.section {
  padding-top: 108px;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.product-showcase__content h2,
.about-copy h2,
.contact-card__copy h2 {
  font-size: clamp(2rem, 3.2vw, 3.3rem);
}

.section-heading p {
  margin-top: 18px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 38px;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(90deg, var(--blue), var(--magenta)) top / 100% 6px no-repeat,
    linear-gradient(180deg, #ffffff, #f7fafd);
}

.service-card__icon,
.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 54px;
  padding: 0 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(47, 159, 228, 0.1), rgba(154, 43, 105, 0.1));
  color: var(--blue-deep);
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.service-card h3,
.process-card h3 {
  margin: 22px 0 12px;
  color: var(--navy);
  font-size: 1.26rem;
}

.service-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.85;
}

.product-showcase,
.about-grid,
.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.product-showcase__media {
  position: relative;
}

.media-frame {
  padding: 18px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(47, 159, 228, 0.06), rgba(47, 159, 228, 0)),
    var(--surface);
}

.demo-panel {
  padding: 28px;
  min-height: 100%;
}

.demo-panel__eyebrow,
.contact-visual-panel__eyebrow {
  margin: 0 0 12px;
  color: var(--blue-deep);
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.demo-panel__list {
  margin: 20px 0 0;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.9;
}

.demo-panel__button {
  display: inline-flex;
  gap: 12px;
  margin-top: 22px;
}

.youtube-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 20px;
  border-radius: 7px;
  background: #ff0033;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.16);
}

.youtube-badge__play {
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #ffffff;
}

.media-tag {
  position: absolute;
  left: 24px;
  bottom: -18px;
  padding: 12px 16px;
  border: 1px solid rgba(154, 43, 105, 0.14);
  border-radius: 999px;
  background: var(--white);
  color: var(--magenta);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
}

.product-showcase__content > p {
  margin-top: 18px;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.feature-list div {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius-md);
  background: var(--surface-alt);
}

.module-grid,
.platform-grid,
.terms-grid,
.client-groups,
.proof-grid,
.logo-wall {
  display: grid;
  gap: 24px;
}

.platform-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 38px;
}

.platform-card {
  display: block;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(47, 159, 228, 0.05), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #ffffff, #f8fbfd);
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.platform-card:hover,
.platform-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.platform-card__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-family: "Sora", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.platform-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.3rem;
  line-height: 1.25;
}

.platform-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.module-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 38px;
}

.module-card,
.term-card,
.client-group,
.proof-stats div {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff, #f8fbfd);
  box-shadow: var(--shadow-soft);
}

.module-card {
  padding: 28px;
}

.module-card__eyebrow {
  margin: 0 0 12px;
  color: var(--blue-deep);
  font-family: "Sora", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.module-card h3,
.client-group h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.25;
}

.module-card ul,
.client-group ul {
  margin: 20px 0 0;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.9;
}

.module-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.module-points div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-alt);
}

.module-points strong,
.term-card strong,
.proof-stats strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1rem;
}

.module-points span,
.term-card span,
.proof-stats span,
.client-group li {
  color: var(--muted);
  line-height: 1.75;
}

.section--dark {
  padding: 88px 40px;
  margin-top: 108px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, #f8fbfd, #eef4f9),
    var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  color: var(--text);
}

.section--dark .eyebrow {
  color: var(--blue-deep);
}

.section--dark .section-heading h2 {
  max-width: 18ch;
  color: var(--navy);
}

.section--dark .section-heading p {
  color: var(--muted);
}

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

.process-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 260px;
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, var(--blue), var(--magenta)) top / 100% 5px no-repeat,
    linear-gradient(180deg, #ffffff, #f8fbfd);
  box-shadow: var(--shadow-soft);
}

.process-card span {
  background: linear-gradient(135deg, rgba(47, 159, 228, 0.12), rgba(154, 43, 105, 0.1));
  color: var(--blue-deep);
}

.section--dark .process-card h3 {
  color: var(--navy);
}

.section--dark .process-card p {
  color: var(--muted);
}

.terms-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 38px;
}

.term-card {
  padding: 24px;
}

.section--report-proof {
  padding-top: 96px;
}

.proof-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(47, 159, 228, 0.05), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #ffffff, #f8fbfd);
  box-shadow: var(--shadow-soft);
}

.proof-stats {
  display: grid;
  gap: 16px;
}

.proof-stats div {
  padding: 22px;
}

.about-copy h2,
.contact-card__copy h2,
.product-showcase__content h2,
.section-heading h2 {
  max-width: 14ch;
}

.brand-panel {
  padding: 20px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #ffffff, #f6f9fc);
}

.brand-panel img {
  width: 100%;
  border-radius: 22px;
}

.brand-panel__points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.brand-panel__points span,
.contact-list a,
.contact-list span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
}

.hero-contact a,
.hero-contact span,
.contact-list a,
.contact-list span,
.service-card p,
.process-card p,
.platform-card p,
.module-card li,
.client-group li,
.demo-note p,
.demo-panel p,
.contact-visual-panel p {
  overflow-wrap: anywhere;
}

.section--contact {
  padding-bottom: 96px;
}

.contact-card {
  padding: 34px;
  align-items: stretch;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(47, 159, 228, 0.05), rgba(154, 43, 105, 0.03)),
    linear-gradient(180deg, #ffffff, #f8fbfd),
    var(--surface);
  box-shadow: var(--shadow);
}

.contact-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-highlights span {
  padding: 12px 16px;
  border: 1px solid rgba(47, 159, 228, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  font-weight: 700;
}

.contact-primary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px;
}

.contact-primary__item,
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 247, 251, 0.94));
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-primary__item:hover,
.contact-primary__item:focus-visible,
.contact-detail:hover,
.contact-detail:focus-visible {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.contact-primary__label,
.contact-detail__label {
  color: var(--blue-deep);
  font-family: "Sora", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-primary__item strong,
.contact-detail strong {
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.4;
}

.contact-card__visual img {
  width: 100%;
  border-radius: 24px;
}

.contact-visual-panel {
  padding: 32px;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 245, 250, 0.98)),
    var(--surface);
}

.contact-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 26px;
}

.contact-socials {
  margin-top: 26px;
}

.contact-socials__eyebrow {
  margin: 0 0 14px;
  color: var(--blue-deep);
  font-family: "Sora", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-socials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 247, 251, 0.94));
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.social-card:hover,
.social-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.social-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 16px;
}

.social-card__icon svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

.social-card--facebook .social-card__icon {
  background: #1877f2;
}

.social-card--youtube .social-card__icon {
  background: #ff0033;
}

.social-card__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.social-card__label {
  color: var(--blue-deep);
  font-family: "Sora", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.social-card__copy strong {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.35;
}

.social-card__meta {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.logo-wall {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 38px;
}

.logo-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff, #f8fbfd);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.logo-tile img {
  max-width: 100%;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.logo-tile span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
}

.client-groups {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 38px;
}

.client-group {
  padding: 28px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 0 0 44px;
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 1120px) {
  .hero,
  .product-showcase,
  .about-grid,
  .contact-card,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .hero__content h1 {
    max-width: 14ch;
  }

  .hero__stats,
  .cards-grid,
  .trusted-strip,
  .process-grid,
  .module-points,
  .terms-grid,
  .client-groups,
  .logo-wall,
  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .media-tag {
    position: static;
    display: inline-flex;
    margin-top: 16px;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(calc(100% - 20px), 1320px);
  }

  .topbar {
    position: static;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    padding: 16px 18px;
    border-radius: 18px;
  }

  .brand {
    flex: 1 1 auto;
    align-self: auto;
  }

  .nav-toggle-button {
    display: inline-flex;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }

  .nav a,
  .nav__item > a,
  .nav__summary {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 0;
  }

  .nav__item {
    width: 100%;
  }

  .nav-toggle:checked + .nav-toggle-button + .nav {
    display: flex;
  }

  .nav-toggle:checked + .nav-toggle-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle:checked + .nav-toggle-button span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .nav-toggle-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav__item--submenu > a,
  .nav__summary {
    justify-content: space-between;
    padding-right: 16px;
  }

  .submenu {
    position: static;
    min-width: 100%;
    margin-top: 12px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    gap: 8px;
    box-shadow: none;
  }

  .submenu::before {
    display: none;
  }

  .nav-disclosure[open] .submenu {
    display: grid;
  }

  .hero {
    gap: 28px;
    padding: 42px 0 28px;
  }

  .hero__content h1 {
    max-width: none;
    font-size: 2.5rem;
  }

  .hero__lede {
    font-size: 1rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero__stats,
  .cards-grid,
  .trusted-strip,
  .process-grid,
  .module-points,
  .terms-grid,
  .client-groups,
  .logo-wall,
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel--contact div,
  .service-card,
  .process-card,
  .contact-card,
  .brand-panel {
    padding: 22px;
  }

  .hero-panel__copy,
  .demo-note,
  .demo-panel,
  .contact-visual-panel,
  .module-card,
  .term-card,
  .client-group,
  .proof-grid {
    padding: 22px;
  }

  .section-heading,
  .section-heading h2,
  .product-showcase__content h2,
  .about-copy h2,
  .contact-card__copy h2 {
    max-width: none;
  }

  .service-card h3,
  .process-card h3,
  .platform-card h3,
  .module-card h3,
  .client-group h3,
  .demo-note h3,
  .demo-panel h3,
  .contact-visual-panel h3,
  .hero-panel__copy h2,
  .hero-contact h3 {
    font-size: 1.25rem;
  }

  .trusted-strip div,
  .module-points div,
  .proof-stats div,
  .logo-tile {
    padding: 18px;
  }

  .process-card,
  .logo-tile {
    min-height: auto;
  }

  .contact-highlights,
  .brand-panel__points,
  .hero-contact__tags {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-highlights span,
  .brand-panel__points span,
  .hero-contact__tags span {
    border-radius: 16px;
  }

  .contact-primary,
  .contact-detail-grid,
  .contact-socials__grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 82px;
  }

  .section--dark {
    margin-top: 82px;
    padding: 68px 20px;
    border-radius: 26px;
  }

  .footer {
    flex-direction: column;
    padding-bottom: 28px;
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: min(calc(100% - 16px), 1320px);
  }

  .topbar {
    margin-top: 12px;
    padding: 14px 14px;
  }

  .brand__logo-mark {
    width: 46px;
    height: 46px;
  }

  .brand__name {
    font-size: 0.92rem;
    letter-spacing: 0.14em;
  }

  .brand__sub {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }

  .hero {
    padding-top: 32px;
  }

  .hero__content h1 {
    font-size: 2rem;
    line-height: 1.08;
  }

  .section-heading h2,
  .product-showcase__content h2,
  .about-copy h2,
  .contact-card__copy h2,
  .hero-panel__copy h2 {
    font-size: 1.7rem;
    line-height: 1.12;
  }

  .hero__stats div,
  .hero-contact,
  .service-card,
  .process-card,
  .platform-card,
  .module-card,
  .term-card,
  .client-group,
  .logo-tile,
  .proof-stats div {
    padding: 18px;
  }

  .hero-panel,
  .contact-card,
  .section--dark,
  .proof-grid {
    border-radius: 22px;
  }

  .hero-contact__offices span,
  .feature-list div,
  .module-points div {
    padding: 14px;
  }

  .demo-panel__list,
  .service-card ul,
  .module-card ul,
  .client-group ul {
    padding-left: 16px;
  }

  .section {
    padding-top: 68px;
  }

  .section--dark {
    margin-top: 68px;
    padding: 56px 16px;
  }

  .section--contact {
    padding-bottom: 72px;
  }
}
