/* Coucals — Inmakes official brand palette
   (inmakes.com / facebook.com/inmakesofficial) */

:root {
  --primary: #003fc0;
  --primary-dark: #032b8d;
  --primary-light: #4457c3;
  --accent-green: #229c48;
  --accent-green-dark: #1a7d3a;
  --accent-teal: #23bdb8;
  --accent-teal-light: #43e794;
  --accent-orange: #ff6a00;
  --accent-pink: #ee0979;

  --text-heading: #0e314c;
  --text-body: #6084a4;
  --text-muted: #8d95a7;

  --bg: #ffffff;
  --bg-subtle: #f7fafd;
  --bg-muted: #f3f8fd;
  --bg-alt: #f9fafb;
  --border: #e7eaf6;
  --border-strong: #d8ebfd;

  --gradient-teal: linear-gradient(135deg, #23bdb8 0%, #43e794 100%);
  --gradient-green: linear-gradient(135deg, #229c48 0%, #43e794 100%);
  --gradient-warm: linear-gradient(90deg, #ee0979 0%, #ff6a00 100%);

  --shadow-sm: 0 4px 20px rgba(14, 49, 76, 0.06);
  --shadow-md: 0 12px 40px rgba(0, 63, 192, 0.12);
  --shadow-teal: 0 12px 32px rgba(35, 189, 184, 0.2);
  --radius: 12px;
  --radius-sm: 8px;
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --header-h: 72px;
  --container: 1160px;
  --ease: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--accent-green); }
ul { list-style: none; }

.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;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

/* Typography */
.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gradient-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-heading);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.lead {
  font-size: 1.05rem;
  max-width: 52ch;
  margin-bottom: 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}

.btn--primary {
  background: var(--gradient-green);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent-green-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--accent-teal);
}

.btn--secondary:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
  background: rgba(35, 189, 184, 0.06);
}

.btn--white {
  background: #fff;
  color: var(--primary);
  flex-shrink: 0;
}

.btn--white:hover {
  background: var(--bg-subtle);
  color: var(--accent-green);
  transform: translateY(-1px);
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(231, 234, 246, 0.8);
  transition: box-shadow var(--ease), background var(--ease);
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-green);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 32px rgba(14, 49, 76, 0.08);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(34, 156, 72, 0.1), rgba(35, 189, 184, 0.14));
  border: 1px solid rgba(35, 189, 184, 0.28);
  padding: 7px;
  box-shadow: 0 4px 14px rgba(35, 189, 184, 0.12);
  transition: transform var(--ease), box-shadow var(--ease);
}

.brand:hover .brand__mark {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(35, 189, 184, 0.2);
}

.brand__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  gap: 2px;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--gradient-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand__tagline {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 5px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.nav__link {
  padding: 9px 16px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-heading);
  border-radius: 999px;
  transition: background var(--ease), color var(--ease), box-shadow var(--ease);
}

.nav__link:hover { color: var(--accent-green); }

.nav__link.active {
  background: #fff;
  color: var(--accent-green);
  box-shadow: 0 2px 10px rgba(14, 49, 76, 0.08);
}

.nav__link--cta {
  margin-left: 4px;
  padding: 9px 20px;
  background: var(--gradient-green);
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(34, 156, 72, 0.35);
}

.nav__link--cta:hover {
  background: var(--accent-green-dark);
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(34, 156, 72, 0.4);
}

.nav__link--cta.active {
  background: var(--gradient-green);
  color: #fff !important;
}

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

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-heading);
  transition: var(--ease);
}

/* Hero */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 48px) 0 64px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 85% 15%, rgba(68, 87, 195, 0.12), transparent),
    radial-gradient(ellipse 50% 45% at 10% 80%, rgba(35, 189, 184, 0.1), transparent),
    linear-gradient(180deg, var(--bg-muted) 0%, var(--bg) 100%);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__panel-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.hero__panel-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.hero__panel-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-heading);
}

.hero__panel-list li:last-child { border-bottom: none; }

.hero__panel-list span {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  background: var(--gradient-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 56px;
}

/* Strip */
.strip {
  padding: 40px 0;
  background: var(--bg);
  border-block: 1px solid var(--border);
}

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

.strip h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.strip p {
  font-size: 0.92rem;
  line-height: 1.65;
}

/* Sections */
.section { padding: 64px 0; }
.section--alt { background: var(--bg-alt); }
.section--contact {
  padding: 36px 0 32px;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.section-head { margin-bottom: 32px; }
.section-head--center { text-align: center; }

.section-head__desc {
  max-width: 52ch;
  margin: 14px auto 0;
}

.section-head:not(.section-head--center) .section-head__desc {
  margin-left: 0;
  margin-right: 0;
}

/* About */
.about__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: start;
}

.about__content p { margin-bottom: 16px; }

.checklist { margin-top: 24px; }

.checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--text-heading);
  font-size: 0.95rem;
}

.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gradient-teal);
}

.about__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.info-card--accent {
  background: linear-gradient(135deg, rgba(0, 63, 192, 0.07), rgba(35, 189, 184, 0.12));
  border-color: rgba(35, 189, 184, 0.35);
}

.info-card h4 {
  font-size: 0.95rem;
  margin-bottom: 10px;
  background: var(--gradient-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.info-card p { font-size: 0.92rem; }

.info-card__address {
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-body);
}

/* FAQ */
.faq {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq__item summary {
  padding: 18px 20px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-heading);
  cursor: pointer;
  list-style: none;
  transition: background var(--ease), color var(--ease);
}

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

.faq__item summary::after {
  content: '+';
  float: right;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--accent-green);
}

.faq__item[open] summary::after { content: '−'; }

.faq__item summary:hover { background: var(--bg-subtle); }

.faq__answer {
  padding: 0 20px 18px;
}

.faq__answer p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-body);
}

.faq__answer a {
  color: var(--accent-green);
  font-weight: 600;
}

/* Cards */
.cards {
  display: grid;
  gap: 24px;
}

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

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  position: relative;
  overflow: hidden;
}

.card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-teal);
  border-color: rgba(35, 189, 184, 0.35);
}

.card:hover::after { transform: scaleX(1); }

.card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-muted);
  border-radius: var(--radius-sm);
  color: var(--primary-light);
  margin-bottom: 20px;
  transition: background var(--ease), color var(--ease), transform var(--ease);
}

.card:hover .card__icon {
  background: var(--gradient-teal);
  color: #fff;
  transform: scale(1.05);
}

.card__icon svg { width: 24px; height: 24px; }

.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.92rem; line-height: 1.65; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}

.step__num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--gradient-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.step h3 { margin-bottom: 8px; }
.step p { font-size: 0.9rem; }

.step__body {
  min-width: 0;
}

/* Metrics */
.metrics {
  padding: 48px 0;
  background: var(--gradient-green);
}

.metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.metric__value {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  color: #fff;
}

.metric__suffix {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-teal-light);
}

.metric__label {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* CTA */
.cta {
  padding: 48px 0;
  background: var(--text-heading);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-teal);
  opacity: 0.12;
  pointer-events: none;
}

.cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta h2 {
  color: #fff;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-bottom: 8px;
}

.cta p { color: rgba(255, 255, 255, 0.88); font-size: 0.98rem; }

/* Contact */
.contact__top {
  margin-bottom: 20px;
}

.contact__intro h2 {
  margin-bottom: 6px;
}

.contact__intro-desc {
  font-size: 0.86rem;
  max-width: 48ch;
  line-height: 1.5;
}

.contact {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

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

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(35, 189, 184, 0.4);
  box-shadow: var(--shadow-teal);
  color: inherit;
}

.contact-card--wide {
  grid-column: 1 / -1;
}

.contact-card__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(34, 156, 72, 0.1), rgba(35, 189, 184, 0.14));
  color: var(--accent-green);
}

.contact-card__icon svg {
  width: 18px;
  height: 18px;
}

.contact-card__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.contact-card__body h4 {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.contact-card__body span {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-heading);
  line-height: 1.4;
  word-break: break-word;
}

.form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__field { margin-bottom: 14px; }

.form__field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.form__field input,
.form__field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  color: var(--text-heading);
  background: var(--bg-subtle);
  transition: border-color var(--ease), box-shadow var(--ease);
  resize: vertical;
}

.form__field input:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(68, 87, 195, 0.12);
  background: #fff;
}

.form__success {
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent-green);
  text-align: center;
}

.form__error {
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #c0392b;
  text-align: center;
}

.form .btn--primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* Footer */
.footer {
  position: relative;
  background: linear-gradient(180deg, #0e314c 0%, #091f30 100%);
  color: rgba(255, 255, 255, 0.72);
  padding-top: 0;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-green);
}

.footer::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 189, 184, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.footer__inner {
  position: relative;
  z-index: 1;
  padding: 32px 0 24px;
}

.footer__columns {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.footer__brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: inherit;
}

.footer__brand-link:hover { color: inherit; }

.footer__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(35, 189, 184, 0.25);
  padding: 7px;
}

.footer__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  gap: 2px;
}

.footer__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.footer__subtitle {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.footer__desc {
  font-size: 0.84rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  max-width: 32ch;
}

.footer__heading {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
}

.footer__links li { margin-bottom: 8px; }

.footer__links a {
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  transition: color var(--ease), padding-left var(--ease);
}

.footer__links a:hover {
  color: var(--accent-teal-light);
  padding-left: 4px;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.78);
  transition: color var(--ease);
}

.footer__contact-link svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--accent-teal);
}

.footer__contact-link:hover {
  color: var(--accent-teal-light);
}

.footer__actions {
  display: none;
}

.footer__bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__top-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--ease);
}

.footer__top-link:hover { color: var(--accent-teal-light); }

/* Go top */
.go-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--accent-green);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--ease);
  box-shadow: var(--shadow-md);
  z-index: 90;
}

.go-top.visible { opacity: 1; visibility: visible; }
.go-top:hover { background: var(--accent-green-dark); }

/* Responsive */
@media (max-width: 1024px) {
  .hero__grid,
  .about__grid,
  .contact { grid-template-columns: 1fr; }

  .contact__intro-desc { max-width: none; }

  .footer__columns {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .cards--3,
  .steps,
  .strip__grid,
  .metrics__grid { grid-template-columns: repeat(2, 1fr); }

  .cta__inner { flex-direction: column; text-align: center; }

  .hero__actions { justify-content: center; }
  .cta .btn { align-self: center; }
}

@media (max-width: 1100px) {
  .nav__link:not(.nav__link--cta) {
    padding: 8px 10px;
    font-size: 0.78rem;
  }

  .nav__link--cta {
    padding: 8px 14px;
    font-size: 0.78rem;
  }
}

@media (max-width: 900px) {
  .nav__link:not(.nav__link--cta) {
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .nav__link--cta {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .brand__name { font-size: 1rem; }
  .brand__tagline { font-size: 0.6rem; }
}

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

/* Desktop & tablet — reset mobile utilities, professional layout */
@media (min-width: 721px) {
  /* Mobile slider classes → normal grids/lists on web */
  .mobile-hscroll {
    display: grid;
    flex-direction: unset;
    flex-wrap: unset;
    align-items: stretch;
    overflow: visible;
    overscroll-behavior-x: auto;
    scroll-snap-type: none;
    padding-bottom: 0;
  }

  .mobile-hscroll--bleed {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .hero__panel-list.mobile-hscroll {
    display: block;
  }

  .hero__panel-list.mobile-hscroll > li {
    flex: unset;
    max-width: none;
    width: auto;
    border-right: none;
    flex-direction: row;
    align-items: baseline;
  }

  .about__aside.mobile-hscroll {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .about__aside.mobile-hscroll .info-card {
    flex: unset;
    max-width: none;
  }

  .strip__grid.mobile-hscroll {
    gap: 32px;
  }

  .cards.mobile-hscroll {
    gap: 24px;
  }

  #services .cards--app.mobile-hscroll {
    display: grid;
    flex-direction: unset;
  }

  .steps.mobile-hscroll,
  .steps--timeline.mobile-hscroll {
    gap: 24px;
  }

  .steps--timeline.mobile-hscroll::before {
    display: none;
  }

  .steps--timeline .step {
    display: block;
    flex: unset;
    max-width: none;
    width: auto;
  }

  .steps--timeline .step__num {
    display: inline-block;
    width: auto;
    height: auto;
    min-width: 0;
    margin-bottom: 16px;
    font-size: 0.8rem;
    color: transparent;
    background: var(--gradient-green);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-radius: 0;
    box-shadow: none;
  }

  .metrics__grid.mobile-hscroll {
    gap: 24px;
  }

  .metrics__grid.mobile-hscroll .metric {
    flex: unset;
    max-width: none;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }

  .contact__cards.mobile-hscroll,
  .app-inset-group.mobile-hscroll {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .app-inset-group.mobile-hscroll .contact-card {
    flex: unset;
    max-width: none;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
  }

  .app-inset-group.mobile-hscroll .contact-card::after {
    display: none;
  }

  .app-inset-card.form {
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 0 8px 30px rgba(14, 49, 76, 0.06);
    background: #fff;
  }

  .hscroll-hint::after,
  .contact__top .contact__intro::after {
    content: none;
    display: none;
  }

  body.is-desktop {
    overflow-x: clip;
  }

  .hero__panel-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 50px rgba(14, 49, 76, 0.1);
  }

  .strip__grid article {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform var(--ease), box-shadow var(--ease);
  }

  .strip__grid article:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-teal);
  }

  .section-head--center::after {
    content: '';
    display: block;
    width: 52px;
    height: 3px;
    margin: 18px auto 0;
    background: var(--gradient-green);
    border-radius: 99px;
  }

  .section-head:not(.section-head--center) .eyebrow::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    margin-top: 10px;
    background: var(--gradient-teal);
    border-radius: 99px;
  }

  .card {
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(14, 49, 76, 0.04);
  }

  .step {
    transition: transform var(--ease), box-shadow var(--ease);
  }

  .step:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
  }

  .metrics {
    border-radius: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  .cta__inner {
    padding: 8px 0;
  }

  .contact-card {
    border-radius: 14px;
  }

  .form {
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(14, 49, 76, 0.06);
  }

  .btn {
    border-radius: 10px;
  }

  .scroll-progress { display: block; }
}
