/* ARQSOJER marketing site — ICPQMS-inspired layout / visual language */
:root {
  --bg: #070b14;
  --bg-elevated: #0c1220;
  --panel: #111827;
  --panel-2: #151e2e;
  --line: rgba(148, 163, 184, 0.16);
  --text: #e8eefc;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --primary: #3b82f6;
  --primary-2: #2563eb;
  --primary-soft: rgba(59, 130, 246, 0.16);
  --cyan: #22d3ee;
  --gold: #fbbf24;
  --gold-2: #f59e0b;
  --gold-soft: rgba(251, 191, 36, 0.14);
  --success: #22c55e;
  --danger: #ef4444;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --font: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --max: 1120px;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  background: rgba(7, 11, 20, 0.72);
  backdrop-filter: blur(14px);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(7, 11, 20, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  border: 2px solid rgba(59, 130, 246, 0.55);
  box-shadow: 0 0 18px rgba(59, 130, 246, 0.25);
  flex-shrink: 0;
}

.brand-mark svg {
  width: 24px;
  height: 24px;
}

.brand-text {
  min-width: 0;
}

.brand-name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.brand-sub {
  margin: 0.1rem 0 0;
  font-size: 0.72rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.header-phone:hover {
  color: var(--text);
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: 0.15s ease;
}

.icon-btn:hover {
  color: var(--text);
  border-color: rgba(59, 130, 246, 0.4);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.72rem 1.25rem;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #60a5fa, var(--primary));
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: rgba(59, 130, 246, 0.45);
  background: var(--primary-soft);
}

.btn-gold {
  color: #111827;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 10px 28px rgba(245, 158, 11, 0.28);
}

/* Mobile drawer nav */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
}

.nav-drawer[hidden] {
  display: none !important;
}

.nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: #0b1220;
  border-left: 1px solid var(--line);
  padding: 1.25rem;
  transform: translateX(100%);
  transition: transform 0.22s ease;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.nav-drawer.is-open {
  pointer-events: auto;
}

.nav-drawer.is-open .nav-backdrop {
  opacity: 1;
}

.nav-drawer.is-open .nav-panel {
  transform: translateX(0);
}

.nav-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.nav-panel a,
.nav-panel .nav-label {
  display: block;
  padding: 0.85rem 0.9rem;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 600;
  white-space: normal;
  line-height: 1.25;
}

.nav-panel a:hover,
.nav-panel a.is-active {
  color: #fff;
  background: var(--primary-soft);
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

.desktop-nav a {
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.desktop-nav a.nav-long {
  max-width: 11.5rem;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

/* ----- Hero ----- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 3.5rem 0 4.5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(59, 130, 246, 0.1), transparent 34%),
    radial-gradient(circle at 20% 10%, rgba(34, 211, 238, 0.06), transparent 28%),
    linear-gradient(180deg, #070b14 0%, #0a1222 55%, #070b14 100%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 40%, #000 20%, transparent 72%);
  opacity: 0.55;
}

.hero-rings {
  position: absolute;
  left: 50%;
  top: 42%;
  width: min(720px, 92vw);
  height: min(720px, 92vw);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.08);
  box-shadow:
    0 0 0 90px rgba(148, 163, 184, 0.03),
    0 0 0 180px rgba(148, 163, 184, 0.02);
  animation: ring-pulse 8s ease-in-out infinite;
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
}

.hero-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--muted);
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(15, 23, 42, 0.65);
  animation: float-y 4.5s ease-in-out infinite;
}

.hero-kicker {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--muted-2);
  text-transform: uppercase;
}

.hero-brand {
  margin: 0.85rem 0 0.55rem;
  font-size: clamp(2.8rem, 8vw, 4.6rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.hero-brand .part-a {
  color: #93a4c3;
}

.hero-brand .part-b {
  color: var(--gold);
}

.hero-tagline {
  margin: 0;
  font-style: italic;
  color: #e2e8f0;
  font-size: 1.05rem;
}

.hero-headline {
  margin: 1.5rem 0 0;
  font-size: clamp(1.55rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
}

.hero-headline .gold {
  color: var(--gold);
}

.hero-headline .steel {
  color: #cbd5e1;
}

.hero-badge {
  display: inline-flex;
  margin-top: 1.25rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(251, 191, 36, 0.35);
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy {
  margin: 1.25rem auto 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-cta {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.hero-stats {
  margin-top: 2.75rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.stat-card {
  padding: 1rem 0.85rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(17, 24, 39, 0.72);
}

.stat-card strong {
  display: block;
  font-size: 1.55rem;
  color: var(--gold);
  font-weight: 800;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

/* ----- Sections ----- */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.35), transparent 30%),
    rgba(12, 18, 32, 0.55);
  border-block: 1px solid var(--line);
}

.section-label {
  margin: 0;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-title {
  margin: 0.55rem 0 0;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  max-width: 18ch;
}

.section-lead {
  margin: 1rem 0 0;
  color: var(--muted);
  max-width: 58ch;
  font-size: 1.02rem;
}

.section-head {
  margin-bottom: 2.25rem;
}

.section-head.center {
  text-align: center;
}

.section-head.center .section-title,
.section-head.center .section-lead {
  margin-inline: auto;
}

/* Cards / services */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.service-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent), var(--panel);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: var(--shadow);
}

.service-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: #93c5fd;
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

.service-card h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 800;
}

.service-card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.service-card .link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.88rem;
}

/* ----- Suite portfolio grid (ICPQMS-style colored headers) ----- */
.suite-page {
  width: min(1280px, calc(100% - 2.5rem));
}

.suite-section {
  padding-top: 2.5rem;
  background:
    radial-gradient(circle at 10% 0%, rgba(59, 130, 246, 0.08), transparent 40%),
    linear-gradient(180deg, #060a12, var(--bg) 40%);
}

.suite-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

.suite-card {
  --suite-accent: var(--primary);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #0f172a;
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.suite-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--suite-accent) 45%, transparent);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
}

.suite-card.is-featured {
  border-color: color-mix(in srgb, var(--suite-accent) 55%, transparent);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--suite-accent) 30%, transparent),
    0 18px 44px rgba(0, 0, 0, 0.4);
}

.suite-card-head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.05rem 1.1rem 1rem;
  background: var(--suite-accent);
  color: #fff;
  min-height: 96px;
}

.suite-ico {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  margin-top: 0.1rem;
}

.suite-ico svg {
  width: 26px;
  height: 26px;
}

.suite-card-head h2 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.suite-card-head p {
  margin: 0.28rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.92;
  line-height: 1.35;
}

.suite-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem 1.1rem 1.15rem;
  background: linear-gradient(180deg, #111827, #0f172a);
}

.suite-features-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.suite-features-label {
  color: var(--suite-accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.suite-toggle {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0.15rem 0;
  white-space: nowrap;
}

.suite-toggle:hover {
  color: var(--text);
}

.suite-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  flex: 1;
}

.suite-features li {
  position: relative;
  padding-left: 1.35rem;
  color: #cbd5e1;
  font-size: 0.86rem;
  line-height: 1.4;
}

.suite-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.62rem;
  font-weight: 800;
  color: #86efac;
  background: rgba(34, 197, 94, 0.14);
}

.suite-features.is-collapsed li:nth-child(n + 5) {
  display: none;
}

.suite-footer-link {
  display: inline-flex;
  margin-top: 1.1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  color: var(--suite-accent);
  font-size: 0.88rem;
  font-weight: 800;
}

.suite-footer-link:hover {
  filter: brightness(1.12);
}

.suite-preview-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Why / about split */
.split {
  display: grid;
  gap: 2rem;
}

.feature-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--muted);
}

.feature-list .tick {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.15);
  color: var(--success);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  margin-top: 0.1rem;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 1.4rem;
}

.panel h3 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}

.mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.mini-stats div {
  padding: 0.9rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.mini-stats strong {
  display: block;
  color: var(--gold);
  font-size: 1.35rem;
}

.mini-stats span {
  color: var(--muted);
  font-size: 0.8rem;
}

/* Tech chips */
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.tech-chip {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-weight: 650;
  font-size: 0.88rem;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 1.25rem;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 1.25rem;
}

.contact-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.contact-card p,
.contact-card a {
  color: var(--muted);
  margin: 0;
}

.contact-card a:hover {
  color: var(--primary);
}

.form {
  display: grid;
  gap: 0.85rem;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.86rem;
  font-weight: 650;
  color: var(--muted);
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #0a1220;
  color: var(--text);
  padding: 0.8rem 0.9rem;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: rgba(59, 130, 246, 0.55);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.form-note {
  margin: 0;
  color: var(--muted-2);
  font-size: 0.82rem;
}

.form-success {
  display: none;
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.1);
  color: #86efac;
  font-weight: 650;
}

.form-success.is-visible {
  display: block;
}

/* Page hero (inner pages) */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 0%, rgba(59, 130, 246, 0.12), transparent 35%),
    linear-gradient(180deg, #0a1220, var(--bg));
}

.page-hero h1 {
  margin: 0.4rem 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
}

.page-hero p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  max-width: 56ch;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: #060a12;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 1.75rem;
}

.footer-brand p {
  color: var(--muted);
  margin: 0.75rem 0 0;
  max-width: 36ch;
  font-size: 0.92rem;
}

.footer-col h4 {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cbd5e1;
}

.footer-col a {
  display: block;
  color: var(--muted);
  padding: 0.28rem 0;
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  color: var(--muted-2);
  font-size: 0.82rem;
}

/* Chat FAB (contact shortcut — no external AI) */
.chat-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.45);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.chat-fab:hover {
  transform: scale(1.06);
}

.chat-fab .badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--danger);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

/* Portal strip */
.portal-strip {
  margin-top: 2rem;
  border: 1px solid rgba(251, 191, 36, 0.28);
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.08), rgba(59, 130, 246, 0.08));
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  display: grid;
  gap: 1rem;
}

.portal-strip h3 {
  margin: 0;
  font-size: 1.1rem;
}

.portal-strip p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes ring-pulse {
  0%,
  100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.03);
  }
}

@media (min-width: 720px) {
  .header-phone {
    display: inline-flex;
  }

  .hero-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .suite-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .portal-strip {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 980px) {
  .desktop-nav {
    display: flex;
  }

  .menu-btn {
    display: none;
  }

  .card-grid.cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

@media (min-width: 1100px) {
  .suite-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-icon,
  .hero-rings,
  .btn:hover,
  .service-card:hover,
  .suite-card:hover,
  .chat-fab:hover {
    animation: none;
    transform: none;
  }
}
