:root {
  --bg: #0b1120;
  --bg-elevated: #111827;
  --bg-card: #1a2332;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --accent: #0ea5e9;
  --accent-soft: rgba(14, 165, 233, 0.12);
  --accent-secondary: #38bdf8;
  --border: rgba(148, 163, 184, 0.15);
  --radius: 12px;
  --font-sans: "IBM Plex Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 70% 45% at 50% -10%, rgba(14, 165, 233, 0.18), transparent),
    radial-gradient(ellipse 50% 30% at 100% 0%, rgba(56, 189, 248, 0.06), transparent);
  min-height: 100vh;
}

.container {
  width: min(1080px, 92vw);
  margin-inline: auto;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(11, 17, 32, 0.85);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo-mark {
  display: block;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.logo span {
  color: var(--accent);
  font-weight: 600;
}

.company-tagline {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent-secondary);
  letter-spacing: -0.01em;
}

.nav .nav-email {
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-left: auto;
}

.nav a.is-current {
  color: var(--text);
}

.nav a.is-current:not(.nav-cta) {
  box-shadow: inset 0 -2px 0 var(--accent-secondary);
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-cta {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent-secondary) !important;
  border: 1px solid rgba(14, 165, 233, 0.3);
}

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

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s;
}

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

.btn-primary {
  background: var(--accent);
  color: #0b1120;
}

.btn-primary:hover {
  background: var(--accent-secondary);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.04);
}

/* Hero */
.hero {
  padding: 4rem 0 5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.3rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-secondary);
  background: var(--accent-soft);
  border-radius: 6px;
  border: 1px solid rgba(14, 165, 233, 0.25);
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
}

.lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 0 2rem;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.hero-stats strong {
  display: block;
  font-size: 1.1rem;
  color: var(--accent-secondary);
  font-weight: 600;
  font-family: var(--font-mono);
}

/* Architecture diagram */
.arch-diagram {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.arch-node {
  width: 100%;
  padding: 0.75rem 1rem;
  text-align: center;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.arch-node--adc {
  border-color: rgba(14, 165, 233, 0.45);
  background: var(--accent-soft);
  color: var(--accent-secondary);
  font-weight: 600;
}

.arch-arrow {
  color: var(--text-muted);
  font-size: 0.9rem;
  opacity: 0.6;
}

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

.section-header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.section-header p {
  color: var(--text-muted);
  margin: 0;
}

.section-lead--left {
  text-align: left;
  margin-inline: 0;
}

/* Page hero (inner pages) */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.page-hero h1 {
  margin: 0.5rem 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 28ch;
}

.page-hero-lead {
  margin: 0;
  max-width: 42rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.page-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2.5rem;
}

/* Explore (home) */
.explore {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border);
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.explore-card {
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}

.explore-card:hover {
  border-color: rgba(14, 165, 233, 0.45);
  transform: translateY(-2px);
}

.explore-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.explore-card p {
  margin: 0;
  flex: 1;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.explore-link {
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-secondary);
}

.contact-page h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.footer-nav {
  grid-column: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 1rem 0 0;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-nav a:hover {
  color: var(--text);
}


.section-footnote {
  max-width: 36rem;
  margin: 2rem auto 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.section-footnote a {
  color: var(--accent-secondary);
  text-decoration: none;
  white-space: nowrap;
}

.section-footnote a:hover {
  text-decoration: underline;
}
.section-lead {
  max-width: 42rem;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.rnd {
  border-bottom: 1px solid var(--border);
}

/* Cloud foundations */
.cloud {
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border);
}

.cloud-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* About */
.about {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.about-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.about-copy h2 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  font-weight: 700;
}

.about-copy p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 36rem;
}

.about-facts {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-facts div {
  padding: 0.85rem 1rem;
  border-radius: 8px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.about-facts dt {
  margin: 0 0 0.2rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.about-facts dd {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
}

.about-facts a {
  color: var(--accent-secondary);
  text-decoration: none;
}

.about-facts a:hover {
  text-decoration: underline;
}

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.feature-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.feature-card:hover {
  border-color: rgba(14, 165, 233, 0.35);
}

.feature-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Integration */
.integration {
  background: rgba(255, 255, 255, 0.02);
  border-block: 1px solid var(--border);
}

.integration-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: start;
  max-width: 52rem;
  margin-inline: auto;
}

.integration-col {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.integration-col h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--accent-secondary);
}

.integration-col ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.integration-col li {
  margin-bottom: 0.4rem;
}

.integration-divider {
  align-self: center;
  font-size: 1.5rem;
  color: var(--accent);
  opacity: 0.7;
}

.integration-note {
  text-align: center;
  max-width: 40rem;
  margin: 2rem auto 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Specs */
.spec-list {
  max-width: 40rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.spec-item {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  font-size: 0.9rem;
}

.spec-label {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--accent-secondary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.spec-value {
  color: var(--text-muted);
}

/* Services */
.services {
  background: rgba(255, 255, 255, 0.02);
  border-block: 1px solid var(--border);
}

.service-groups {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.service-group-title {
  margin: 0 0 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-secondary);
}

.service-group-desc {
  margin: -0.5rem 0 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 42rem;
}

.service-group-desc a {
  color: var(--accent-secondary);
  text-decoration: none;
}

.service-group-desc a:hover {
  text-decoration: underline;
}

.service-group--cloud {
  padding-bottom: 2rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.service-card {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.service-card:hover {
  border-color: rgba(14, 165, 233, 0.35);
}

.service-card h4 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
}

.service-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.package-section {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.package-section-title {
  text-align: center;
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  max-width: 56rem;
  margin-inline: auto;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.package-card--featured {
  border-color: rgba(14, 165, 233, 0.45);
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.08) 0%, var(--bg-elevated) 100%);
}

.package-badge {
  margin: 0 0 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-secondary);
}

.package-name {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.package-desc {
  flex: 1;
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.package-cta {
  width: 100%;
  margin-top: auto;
}

/* Audience */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.audience-card {
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.audience-card:hover {
  border-color: rgba(14, 165, 233, 0.35);
}

.audience-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.audience-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Challenges */
.challenges {
  background: rgba(255, 255, 255, 0.02);
  border-block: 1px solid var(--border);
}

.challenge-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 52rem;
  margin-inline: auto;
}

.challenge-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.challenge-label {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
}

.challenge-label--answer {
  color: var(--accent-secondary);
}

.challenge-problem p,
.challenge-answer p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.challenge-answer p {
  color: var(--text);
}

/* FAQ */
.faq-list {
  max-width: 40rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq-item summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--accent-secondary);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.15rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.faq-item a {
  color: var(--accent-secondary);
}

/* Contact */
.contact-inner {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid rgba(14, 165, 233, 0.2);
}

.contact-inner h2 {
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  margin: 0 0 0.5rem;
}

.contact-inner > p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.contact-email {
  margin: 0 0 1.5rem !important;
}

.contact-email a {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  color: var(--accent-secondary);
  text-decoration: none;
  font-weight: 500;
}

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 24rem;
  margin-inline: auto;
}

.contact-form--extended {
  max-width: 28rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}

.form-optional {
  font-weight: 400;
  color: var(--text-muted);
  opacity: 0.85;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-success {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.35);
  color: var(--accent-secondary);
  font-size: 0.95rem;
}

.form-note {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-note a {
  color: var(--accent-secondary);
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-main {
  grid-column: 1;
}

.footer-contact {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  text-align: right;
}

.footer-contact a {
  color: var(--accent-secondary);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

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

.footer-legal {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-brand {
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.footer-copy {
  margin: 0.15rem 0;
}

.visitor-stat {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.visitor-stat--header {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.28);
  font-size: 0.72rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  flex-shrink: 0;
}

.visitor-count {
  color: var(--accent-secondary);
  font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1rem;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
  }

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

  .menu-toggle {
    display: flex;
  }

  .visitor-stat--header {
    margin-left: auto;
    margin-right: 0.15rem;
    font-size: 0.68rem;
    padding: 0.3rem 0.55rem;
  }

  .nav {
    margin-left: 0;
  }

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

  .hero-visual {
    order: -1;
  }

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

  .integration-divider {
    text-align: center;
    transform: rotate(90deg);
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact {
    grid-column: 1;
    grid-row: auto;
    align-items: center;
    text-align: center;
  }

  .spec-item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .challenge-item {
    grid-template-columns: 1fr;
  }
}
