:root {
  --radius: 0.25rem;
  --background: #f6f7f9;
  --foreground: #1a2a3d;
  --navy: #0c2448;
  --navy-deep: #071830;
  --cyan: #2eb8c9;
  --green: #5bc46a;
  --gold: #e0b63d;
  --muted: #6b7c90;
  --border: #d8dee8;
  --surface: #eef2f5;
  --white: #ffffff;
  --shadow-architectural: 0 18px 55px -26px rgba(7, 24, 48, 0.42);
  --brand-gradient: linear-gradient(90deg, var(--cyan), var(--green), var(--gold));
  --font-sans: "Manrope", sans-serif;
  --font-display: "Sora", sans-serif;
  --header-h: 6.25rem;
  --container: 72rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--navy);
}

p {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 9999;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 247, 249, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 8px 30px -20px rgba(7, 24, 48, 0.25);
}

.header-inner {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  height: 5.5rem;
  width: auto;
  max-width: min(16rem, 55vw);
  object-fit: contain;
  object-position: left center;
}

.primary-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 550;
  color: var(--navy);
  border-radius: 0.35rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mega-trigger[aria-expanded="true"] {
  background: rgba(12, 36, 72, 0.06);
}

.nav-item {
  position: relative;
}

.mega-panel {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(36rem, calc(100vw - 2rem));
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-architectural);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s var(--ease), visibility 0.2s;
}

.nav-item.is-open .mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.4rem;
}

.mega-copy h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.mega-copy p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}

.mega-links {
  display: grid;
  gap: 0.35rem;
}

.mega-links a {
  display: block;
  padding: 0.55rem 0.7rem;
  border-radius: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  transition: background 0.2s ease;
}

.mega-links a:hover {
  background: var(--surface);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}

.text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(3px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.header-cta {
  display: none !important;
}

.menu-toggle {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-content: center;
  gap: 5px;
  border-radius: 0.4rem;
}

.menu-toggle span {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--navy);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: grid;
  gap: 0.35rem;
  padding: 0.75rem 1.25rem 1.25rem;
  border-top: 1px solid var(--border);
  background: var(--background);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  padding: 0.85rem 0.5rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
}

.mobile-nav a.mobile-cta {
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin-top: 0.85rem;
  min-height: 3rem;
  padding: 0.85rem 1.25rem !important;
  border: 0 !important;
  border-bottom: 0 !important;
  border-radius: 0.4rem;
  background: #0c2448 !important;
  color: #ffffff !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-align: center;
  text-decoration: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.85rem;
  padding: 0.7rem 1.25rem;
  border-radius: 0.4rem;
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn-sm {
  min-height: 2.4rem;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 10px 24px -14px rgba(7, 24, 48, 0.7);
}

.btn-primary:hover {
  background: #14325c;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

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

.btn-outline:hover {
  background: var(--white);
  border-color: #c5cedb;
}

.btn-light {
  background: #fff;
  color: var(--navy);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-zoom 18s ease-out forwards;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 24, 48, 0.28) 0%, rgba(7, 24, 48, 0.55) 45%, rgba(7, 24, 48, 0.88) 100%),
    linear-gradient(90deg, rgba(7, 24, 48, 0.55) 0%, rgba(7, 24, 48, 0.15) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--container));
  margin: 0 auto;
  padding: 4rem 0 5rem;
  max-width: 42rem;
  margin-left: max(1.25rem, calc((100% - var(--container)) / 2));
  animation: page-in 0.9s var(--ease) both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.eyebrow::before {
  content: "";
  width: 2rem;
  height: 2px;
  background: var(--brand-gradient);
  border-radius: 999px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero h1 span {
  display: block;
}

.hero-lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.86);
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-page {
  min-height: clamp(18rem, 46vh, 26rem);
  align-items: flex-end;
}

.hero-page .hero-content {
  padding: 2.75rem 0 2.85rem;
  max-width: 38rem;
}

.hero-page h1 {
  font-size: clamp(2rem, 4.8vw, 3.15rem);
  margin-bottom: 0;
}

.hero-page .eyebrow {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0.85rem;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-bottom: 1.15rem;
}

.breadcrumb a:hover {
  color: #fff;
}

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

.section-head {
  max-width: 40rem;
  margin-bottom: 3rem;
}

.section-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.85rem;
}

.section-head h2,
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
}

.section-head p,
.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Discover */
.discover-grid {
  display: grid;
  gap: 1rem;
}

.discover-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.6rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

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

.discover-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.discover-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}

.discover-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* About split */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.split-media {
  border-radius: 0.85rem;
  overflow: hidden;
  box-shadow: var(--shadow-architectural);
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
}

.split-copy .section-kicker {
  margin-bottom: 0.75rem;
}

.split-copy h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  margin-bottom: 1.1rem;
}

.split-copy p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.split-copy .btn {
  margin-top: 0.75rem;
}

/* Stats */
.stats {
  background: var(--navy-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(46, 184, 201, 0.22), transparent 65%);
  pointer-events: none;
}

.stats .section-head h2,
.stats .section-title {
  color: #fff;
}

.stats-grid {
  display: grid;
  gap: 1.5rem;
}

.stat-item {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4rem);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

/* Systems cards */
.systems-grid {
  display: grid;
  gap: 1.25rem;
}

.system-card {
  position: relative;
  min-height: 24rem;
  border-radius: 0.9rem;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-architectural);
}

.system-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.system-card:hover img {
  transform: scale(1.05);
}

.system-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(7, 24, 48, 0.88) 100%);
}

.system-card-body {
  position: relative;
  z-index: 1;
  padding: 1.75rem;
  color: #fff;
}

.system-meta {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 0.55rem;
}

.system-card h3 {
  color: #fff;
  font-size: 1.55rem;
  margin-bottom: 0.55rem;
}

.system-card p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1rem;
  max-width: 28rem;
}

.system-card .text-link {
  color: #fff;
}

/* CTA band */
.cta-band {
  background:
    linear-gradient(135deg, rgba(12, 36, 72, 0.94), rgba(7, 24, 48, 0.88)),
    url("../images/penthouse-terrace.jpg") center/cover;
  color: #fff;
  border-radius: 0;
}

.cta-band .container {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  max-width: 16ch;
  margin-bottom: 0.85rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 34rem;
}

/* Feature / service lists */
.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: start;
  padding: 1.4rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-architectural);
}

.feature-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.feature-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

.feature-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  padding-top: 0.2rem;
}

.feature-item .text-link {
  white-space: nowrap;
  align-self: center;
}

/* Process */
.process-grid {
  display: grid;
  gap: 0.85rem;
}

.process-step {
  padding: 1.25rem 1.1rem;
  border-left: 3px solid transparent;
  border-image: var(--brand-gradient) 1;
  background: var(--white);
  border-radius: 0 0.6rem 0.6rem 0;
}

.process-step span {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.process-step strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
}

.check-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.check-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--foreground);
  font-weight: 500;
}

.check-list li::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.4rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--brand-gradient);
}

/* Contact */
.contact-layout {
  display: grid;
  gap: 2rem;
}

.contact-card,
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  padding: 1.75rem;
}

.contact-card h2,
.contact-form-wrap h2 {
  font-size: 1.55rem;
  margin-bottom: 0.75rem;
}

.contact-card > p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.contact-details {
  display: grid;
  gap: 1.1rem;
}

.contact-details dt {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.contact-details dd {
  margin: 0;
  font-weight: 600;
  color: var(--navy);
}

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

.form-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0.45rem;
  padding: 0.8rem 0.9rem;
  font: inherit;
  color: var(--foreground);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 8rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: #7aa0c8;
  box-shadow: 0 0 0 3px rgba(46, 184, 201, 0.18);
}

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

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 0.5rem;
  background: rgba(91, 196, 106, 0.12);
  color: #1f6b35;
  font-weight: 600;
}

.form-success.is-visible {
  display: block;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.78);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer-brand p {
  margin-top: 1rem;
  max-width: 22rem;
  font-size: 0.95rem;
}

.brand-light {
  display: inline-flex;
  background: #fff;
  border-radius: 0.5rem;
  padding: 0.55rem 0.7rem;
}

.brand-light img {
  height: 5.25rem;
  max-width: 15rem;
}

.footer-emails a {
  display: grid;
  gap: 0.1rem;
  font-size: 0.88rem;
  word-break: break-word;
}

.footer-emails .email-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.email-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.email-list li {
  display: grid;
  gap: 0.15rem;
}

.email-list .email-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.email-list a {
  font-weight: 600;
  color: var(--navy);
  word-break: break-word;
}

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

.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-col ul {
  display: grid;
  gap: 0.55rem;
}

.footer-col a:hover {
  color: #fff;
}

.social-links {
  display: flex !important;
  gap: 0.75rem;
}

.social-links a {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.16);
}

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

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.85rem;
}

.footer-bottom span {
  opacity: 0.7;
  margin-left: 0.65rem;
}

.footer-legal a:hover {
  color: #fff;
}

.floating-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  background: var(--navy);
  color: #fff;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 12px 30px -12px rgba(7, 24, 48, 0.8);
  transition: transform 0.2s ease, background 0.2s ease;
}

.floating-cta:hover {
  transform: translateY(-2px);
  background: #14325c;
}

@keyframes hero-zoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

@keyframes page-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 640px) {
  .discover-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

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

@media (min-width: 900px) {
  .primary-nav {
    display: flex;
    margin-left: auto;
  }

  .menu-toggle {
    display: none;
  }

  .header-cta {
    display: inline-flex !important;
  }

  .header-actions {
    margin-left: 0.5rem;
  }

  .discover-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }

  .split.reverse {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .split.reverse .split-media {
    order: 2;
  }

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

  .cta-band .container {
    grid-template-columns: 1.4fr auto;
  }

  .feature-list.two-col {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .contact-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .contact-layout-single {
    grid-template-columns: 1fr;
    max-width: 42rem;
  }

  .footer-grid {
    grid-template-columns: 1.35fr 0.9fr 1.35fr 0.85fr;
  }
}

@media (min-width: 1100px) {
  .feature-list.two-col {
    grid-template-columns: 1fr;
  }

  .feature-item {
    grid-template-columns: 3.5rem 1fr auto;
    padding: 1.6rem 1.5rem;
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding-bottom: 4rem;
  }

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

  .feature-item .text-link {
    grid-column: 2;
  }

  .floating-cta {
    left: 1rem;
    right: 1rem;
    text-align: center;
  }
}
