/* -- Reset & base ------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy-950: #0a1525;
  --navy-900: #0f1f38;
  --navy-800: #152d4a;
  --navy-700: #1c3a5c;
  --blue-500: #2b7de9;
  --blue-400: #4d9af0;
  --blue-300: #7eb8f7;
  --cyan-400: #22d3ee;
  --white: #ffffff;
  --gray-100: #f0f4f8;
  --gray-200: #dce3ec;
  --gray-400: #8b9cb3;
  --gray-600: #5a6b82;
  --swisscom: #0066b3;
  --sunrise: #e4002b;
  --salt: #00a651;
  --truesenses-blue: #2a6ab2;
  --truesenses-blue-dark: #0065cf;
  --truesenses-blue-mid: #336699;
  --truesenses-blue-light: #2793ff;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(6, 13, 24, 0.12);
  --shadow-lg: 0 20px 60px rgba(6, 13, 24, 0.25);
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-display: "Instrument Sans", system-ui, sans-serif;
  --header-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--navy-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* -- Typography helpers ------------------------------------- */
.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 0.75rem;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

.section-header {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-header p:last-child {
  color: var(--gray-600);
  font-size: 1.125rem;
}

/* -- Buttons ------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

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

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

.btn-primary:hover { background: var(--blue-400); }

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-block { width: 100%; }

/* -- Header ------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(10, 21, 37, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  display: block;
  height: 40px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
  flex-wrap: nowrap;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}

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

.nav-console-group {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.nav-cta {
  padding: 0.5rem 1.25rem !important;
  border-radius: 999px;
  font-weight: 600 !important;
  white-space: nowrap;
}

.nav-console {
  background: var(--blue-500);
  color: var(--white) !important;
}

.nav-console:hover {
  background: var(--blue-400) !important;
  color: var(--white) !important;
}

.nav-console-legacy {
  background: var(--truesenses-blue);
  color: var(--white) !important;
  border: 1px solid var(--truesenses-blue-mid);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-size: 0.8125rem !important;
}

.nav-console-legacy:hover {
  background: var(--truesenses-blue-dark) !important;
  color: var(--white) !important;
  border-color: var(--truesenses-blue-light) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* -- Hero --------------------------------------------------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 4rem) 0 5rem;
  background: var(--navy-950);
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(43, 125, 233, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(34, 211, 238, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 20%, transparent 80%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-lead {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.72);
  margin: 1.5rem 0 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--cyan-400);
}

.hero-stats span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Network card */
.network-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
}

.network-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}

.pulse {
  width: 8px;
  height: 8px;
  background: #34d399;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); }
}

.operator-list-head,
.operator-row {
  display: grid;
  grid-template-columns: 1fr 4.5rem 4.5rem;
  gap: 0.75rem;
  align-items: center;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.operator-list-head {
  padding-top: 0;
  padding-bottom: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
}

.operator-list-head span:nth-child(2),
.operator-list-head span:nth-child(3) {
  text-align: center;
}

.operator-row {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  margin-bottom: 0.625rem;
}

.operator-name {
  font-weight: 600;
  font-size: 1.0625rem;
}

.operator-mccmnc {
  font-family: ui-monospace, "Cascadia Code", "SF Mono", monospace;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
}

.operator-status {
  justify-self: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #34d399;
  background: rgba(52, 211, 153, 0.12);
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
}

.network-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.25rem;
}

.metric-value {
  font-weight: 600;
  font-size: 0.9375rem;
}

/* -- Trust bar ---------------------------------------------- */
.trust-bar {
  background: var(--navy-900);
  padding: 1.25rem 0;
}

.trust-inner p {
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9375rem;
}

/* -- Sections ----------------------------------------------- */
.section {
  padding: 5rem 0;
}

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

/* -- Service cards -------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: box-shadow 0.25s, transform 0.25s;
}

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

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(43, 125, 233, 0.1);
  color: var(--blue-500);
  border-radius: 12px;
  margin-bottom: 1.25rem;
}

.card-icon svg { width: 24px; height: 24px; }

.service-card p {
  color: var(--gray-600);
  font-size: 0.9375rem;
}

/* -- Operator cards ----------------------------------------- */
.operator-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.operator-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
}

.operator-logo {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.375rem 0.875rem;
  border-radius: 6px;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.operator-logo.swisscom { background: var(--swisscom); }
.operator-logo.sunrise { background: var(--sunrise); }
.operator-logo.salt { background: var(--salt); }

.operator-card p {
  color: var(--gray-600);
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
}

.operator-card ul {
  list-style: none;
}

.operator-card li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.operator-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--blue-500);
  border-radius: 50%;
}

/* -- Platform ----------------------------------------------- */
.platform-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}

.platform-content p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.875rem;
  color: var(--navy-800);
  font-size: 0.9375rem;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue-500);
  font-weight: 700;
}

.spec-panel {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.spec-panel h3 {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.spec-list div {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9375rem;
}

.spec-list dt { color: rgba(255, 255, 255, 0.55); }
.spec-list dd { font-weight: 600; }

.spec-panel .btn { margin-top: 1.5rem; }

/* -- About -------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-grid > div > p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.value-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.value-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  margin-bottom: 0.375rem;
  color: var(--navy-900);
}

.value-item span {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* -- Contact / CTA ------------------------------------------ */
.cta-section {
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white);
}

.cta-centered {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.cta-centered p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.contact-email {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--cyan-400);
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

.contact-email:hover {
  color: var(--blue-300);
  text-decoration: underline;
}

.cta-contact-row {
  display: block;
  margin-top: 0.25rem;
  max-width: 100%;
}

.cta-contact-row .btn-primary {
  display: inline-flex;
  margin-bottom: 0;
}

.contact-location {
  display: block;
  width: 100%;
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9375rem;
  line-height: 1.5;
}

/* -- Footer ------------------------------------------------- */
.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9375rem;
  max-width: 280px;
}

.footer-links h4 {
  color: var(--white);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
}

.footer-bottom p {
  font-size: 0.8125rem;
  text-align: center;
}

/* -- Legal pages -------------------------------------------- */
.legal-page {
  padding: calc(var(--header-h) + 4rem) 0 5rem;
  min-height: 60vh;
}

.legal-content {
  max-width: 640px;
  margin-inline: auto;
}

.legal-content h1 {
  margin-bottom: 2rem;
}

.imprint-details {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
}

.imprint-company {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 1rem;
}

.imprint-details address {
  font-style: normal;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.imprint-contact {
  margin-bottom: 0;
}

.imprint-contact a {
  color: var(--blue-500);
  font-weight: 600;
}

.imprint-contact a:hover {
  text-decoration: underline;
}

.imprint-license {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}

.imprint-license-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 0.5rem;
}

.imprint-license-desc {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy-800);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.imprint-license-reg {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.875rem;
  border-top: 1px solid var(--gray-200);
  font-size: 0.9375rem;
}

.imprint-license-reg-label {
  font-weight: 600;
  color: var(--navy-800);
}

.imprint-license-reg-value {
  font-family: ui-monospace, monospace;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: 0.02em;
}

.imprint-ids {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-200);
}

.imprint-ids div {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.imprint-ids dt {
  font-weight: 600;
  color: var(--navy-800);
  min-width: 3rem;
}

.imprint-ids dd {
  color: var(--gray-600);
}

.legal-back {
  margin-top: 2rem;
  font-size: 0.9375rem;
}

.legal-back a {
  color: var(--gray-600);
  transition: color 0.2s;
}

.legal-back a:hover {
  color: var(--blue-500);
}

.legal-prose {
  max-width: 720px;
  margin-inline: auto;
}

.legal-subtitle {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-top: -1rem;
  margin-bottom: 2rem;
}

.legal-prose h2 {
  font-size: 1.25rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--navy-900);
}

.legal-prose h3 {
  font-size: 1.0625rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--navy-800);
}

.legal-prose h4 {
  font-size: 1rem;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--navy-800);
}

.legal-prose p {
  color: var(--gray-600);
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.legal-prose ul,
.legal-prose ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gray-600);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.legal-prose ul {
  list-style: disc;
}

.legal-prose ol {
  list-style: decimal;
}

.legal-prose ol ol {
  list-style: lower-alpha;
  margin-top: 0.5rem;
}

.legal-prose li {
  margin-bottom: 0.375rem;
}

.legal-prose table.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0 1.5rem;
  font-size: 0.875rem;
}

.legal-prose table.legal-table th {
  text-align: left;
  padding: 0.625rem 0.875rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-400);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
}

.legal-prose table.legal-table td {
  padding: 0.625rem 0.875rem;
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
  vertical-align: top;
  line-height: 1.5;
}

.legal-prose code {
  font-family: ui-monospace, monospace;
  font-size: 0.875em;
  color: var(--navy-800);
  background: var(--gray-100);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}

.legal-prose dl.legal-definitions {
  margin-bottom: 1.5rem;
}

.legal-prose dl.legal-definitions dt {
  font-weight: 600;
  color: var(--navy-800);
  margin-top: 0.75rem;
  font-size: 0.9375rem;
}

.legal-prose dl.legal-definitions dd {
  color: var(--gray-600);
  margin-left: 0;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.legal-prose a {
  color: var(--blue-500);
  font-weight: 500;
}

.legal-prose a:hover {
  text-decoration: underline;
}

.legal-address {
  font-style: normal;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-prose .btn-primary {
  margin-top: 1rem;
  color: var(--white);
}

/* -- Responsive --------------------------------------------- */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { max-width: 480px; }
  .platform-grid,
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--navy-900);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 0;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.875rem 1.25rem;
    width: 100%;
  }

  .nav-console-group {
    flex-direction: column;
    width: 100%;
    padding: 0.5rem 1.25rem 0;
    gap: 0.5rem;
  }

  .nav-console-group .nav-cta {
    width: 100%;
    text-align: center;
  }

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

  .hero { padding-bottom: 3.5rem; }
  .hero-stats { flex-direction: column; gap: 1.25rem; }
  .operator-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
}