@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  color-scheme: dark;
  --bg: #050915;
  --bg-deep: #02050c;
  --panel: rgba(13, 23, 42, 0.82);
  --panel-strong: rgba(15, 31, 54, 0.94);
  --panel-soft: rgba(255, 255, 255, 0.045);
  --line: rgba(90, 163, 255, 0.24);
  --line-soft: rgba(255, 255, 255, 0.1);
  --text: #f5f8ff;
  --muted: #a9b6ca;
  --muted-2: #7b8ca6;
  --accent: #3b82f6;
  --accent-2: #5fc9ff;
  --accent-3: #8be9ff;
  --success: #41d6a8;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
  --glow: 0 0 34px rgba(59, 130, 246, 0.5), 0 0 82px rgba(95, 201, 255, 0.22);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --max: 1220px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg-deep);
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 76% 8%, rgba(59, 130, 246, 0.26), transparent 28rem),
    radial-gradient(circle at 12% 12%, rgba(0, 184, 255, 0.13), transparent 24rem),
    linear-gradient(180deg, #02050c 0%, #06101f 45%, #030712 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(96, 165, 250, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 165, 250, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.72), rgba(0,0,0,0.08));
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% -10%, rgba(255,255,255,0.07), transparent 25rem),
    linear-gradient(90deg, rgba(0,0,0,0.38), transparent 20%, transparent 80%, rgba(0,0,0,0.38));
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0; color: var(--muted); line-height: 1.7; }
h1, h2, h3 { margin: 0; line-height: 1.05; }

h1 {
  max-width: 900px;
  font-size: clamp(2.9rem, 6vw, 6.35rem);
  letter-spacing: -0.075em;
}

/* .hero-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.65rem, 6.4vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 600;
  color: #f8fafc;
} */

.hero-title {
  /* font-family: "Space Grotesk", sans-serif; */
  font-family: Inter, ui-sans-serif, system-ui, -apple-system,
               BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.45rem, 5.2vw, 4.65rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: #f8fafc;
}

.hero-title span {
  display: block;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #60a5fa;
  text-shadow:
    0 0 8px rgba(96, 165, 250, 0.55),
    0 0 20px rgba(96, 165, 250, 0.35),
    0 0 38px rgba(96, 165, 250, 0.2);
}

h1 span,
h2 span {
  color: var(--accent-2);
  text-shadow: var(--glow);
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.055em;
  font-weight: 500;
}

h3 {
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  letter-spacing: -0.025em;
}

.skip-link, .sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

.skip-link:focus {
  top: 16px; left: 16px; width: auto; height: auto;
  clip: auto; z-index: 100; padding: 12px 16px;
  border-radius: 12px; background: var(--accent); color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(96, 165, 250, 0.18);
  background: rgba(2, 6, 15, 0.78);
  backdrop-filter: blur(20px);
}

.header-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  position: relative;
}

.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
/* .brand-logo { width: clamp(185px, 18vw, 285px); height: auto; } */
.brand-logo {
  width: clamp(230px, 22vw, 360px);
  height: auto;
}

.primary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 1.7vw, 26px);
  color: #eff6ff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.primary-nav a {
  position: relative;
  padding: 30px 0 28px;
  color: rgba(245, 248, 255, 0.86);
  white-space: nowrap;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 20px;
  height: 2px;
  transform: scaleX(0);
  background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
  transition: transform 160ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span:not(.sr-only) {
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 850;
  letter-spacing: -0.01em;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.header-cta {
  min-height: 44px;
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(95, 201, 255, 0.36);
  color: #fff;
  box-shadow: 0 0 24px rgba(59,130,246,0.12);
  white-space: nowrap;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 18px 44px rgba(59, 130, 246, 0.28);
}

.button-secondary {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.16);
  color: #fff;
}

.button:hover,
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 22px 56px rgba(59, 130, 246, 0.28); }

.section-shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(22px, 3vw, 42px) 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  gap: 54px;
  align-items: center;
  min-height: auto;
  padding-top: clamp(28px, 4vw, 54px);
  padding-bottom: clamp(22px, 3vw, 40px);
}

/* .eyebrow {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.76rem;
  font-weight: 900;
  margin-bottom: 18px;
}  */

.eyebrow {
  margin-bottom: 1rem;       
  font-size: 0.875rem;       
  font-weight: 600;          
  text-transform: uppercase; 
  letter-spacing: 0.18em;   
  color: var(--accent);      
}  

.hero-text {
  max-width: 720px;
  margin-top: 26px;
  font-size: clamp(1.06rem, 1.35vw, 1.22rem);
}

.hero-actions,
.section-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-points {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-points span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  color: #d9e8ff;
  font-size: 0.9rem;
  font-weight: 750;
}

.hero-image-card,
.visual-card,
.feature-card,
.process-card,
.audience-card,
.ecosystem-card,
.final-cta-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(15, 31, 54, 0.86), rgba(8, 16, 30, 0.76));
  box-shadow: var(--shadow);
}

.hero-image-card {
  min-height: 500px;
  display: grid;
  place-items: center;
  padding: 28px;
}

.hero-image-card img {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  filter: drop-shadow(0 0 40px rgba(59,130,246,0.22));
}

.image-glow {
  position: absolute;
  inset: 14%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(95,201,255,0.24), transparent 65%);
  filter: blur(30px);
}

.status-card {
  position: absolute;
  z-index: 2;
  max-width: 250px;
  padding: 16px 18px;
  border: 1px solid rgba(139, 233, 255, 0.22);
  border-radius: 18px;
  background: rgba(2, 8, 20, 0.76);
  backdrop-filter: blur(18px);
}

.status-card strong { display: block; margin-bottom: 4px; }
.status-card span { color: var(--muted); font-size: 0.9rem; line-height: 1.45; }
.status-card.top { top: 26px; left: 26px; }
.status-card.bottom { right: 26px; bottom: 26px; }

.section-heading {
  max-width: 780px;
  margin-bottom: 26px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading p {
  margin-top: 12px;
  font-size: 1.05rem;
}

.card-grid {
  display: grid;
  gap: 22px;
}

.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }

.feature-card,
.process-card {
  padding: 28px;
}

.feature-card::before,
.process-card::before,
.audience-card::before,
.visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(95, 201, 255, 0.13), transparent 38%);
  pointer-events: none;
}

.feature-card h3,
.process-card h3 { margin-bottom: 12px; position: relative; }
.feature-card p,
.process-card p { position: relative; }

.icon-badge,
.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  height: 40px;
  min-width: 40px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(95,201,255,0.34);
  color: var(--accent-2);
  background: rgba(59,130,246,0.12);
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

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

.split-copy p {
  margin-top: 18px;
  font-size: 1.05rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 13px;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: #d8e5f7;
  line-height: 1.55;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--success);
  font-weight: 900;
}

.visual-card {
  padding: 18px;
  overflow: visible;
}

.visual-card img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  min-height: 0;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

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

.audience-card {
  display: flex;
  flex-direction: column;
}

.audience-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.audience-card div {
  padding: 24px;
}

.audience-card h3 {
  margin-bottom: 10px;
}

.ecosystem-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 34px;
}

.logo-row {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.logo-row img {
  max-height: 70px;
  max-width: 150px;
  object-fit: contain;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255,255,255,0.92);
}

.final-cta {
  padding-top: 24px;
}

.final-cta-card {
  text-align: center;
  padding: clamp(38px, 7vw, 78px);
}

.final-cta-card p {
  max-width: 780px;
  margin: 20px auto 0;
  font-size: 1.08rem;
}

.centered-actions {
  justify-content: center;
}

.site-footer {
  border-top: 1px solid rgba(96, 165, 250, 0.18);
  background: rgba(2, 6, 15, 0.72);
}

.footer-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 36px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-inner img { width: 210px; }
.footer-inner span { color: var(--muted-2); font-size: 0.9rem; white-space: nowrap; }

.reveal {
  animation: rise 700ms ease both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
  .header-cta { display: none; }
  .primary-nav { gap: 16px; font-size: 0.78rem; }
  .hero,
  .split-section,
  .split-section.reversed {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding-top: 58px;
  }
  .hero-image-card {
    min-height: 460px;
  }
  .card-grid.four,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ecosystem-card {
    grid-template-columns: 1fr;
  }
  .logo-row {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .header-inner,
  .section-shell,
  .footer-inner {
    width: min(100% - 32px, var(--max));
  }

/*   .header-inner {
    min-height: 74px;
  } */

  .header-inner {
  min-height: 96px;
}

  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(5, 12, 24, 0.97);
    box-shadow: var(--shadow);
  }

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

  .primary-nav a {
    padding: 14px 14px;
    border-radius: 12px;
  }

  .primary-nav a::after {
    display: none;
  }

  .primary-nav a:hover,
  .primary-nav a:focus-visible {
    background: rgba(255,255,255,0.06);
  }
  .section-shell {
    padding: 28px 0;
  }

  .hero {
    padding-top: 46px;
    gap: 38px;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4.4rem);
  }

  .hero-actions,
  .section-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .card-grid.three,
  .card-grid.four,
  .process-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-card {
    min-height: 390px;
    padding: 18px;
  }

  .status-card {
    position: relative;
    inset: auto !important;
    max-width: none;
    width: 100%;
    margin-top: 12px;
  }

  .hero-image-card {
    display: flex;
    flex-direction: column;
  }
  .visual-card img {
    min-height: 0;
    height: auto;
  }

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

@media (max-width: 500px) {
  /* .brand-logo { width: 175px; } */
  .brand-logo { width: 210px; }
  .hero-points span { width: 100%; text-align: center; }
  .logo-row img { max-width: 128px; }
  .ecosystem-card,
  .feature-card,
  .process-card {
    padding: 22px;
  }
}

/* SURELINC final layout corrections
   Keep section spacing tight, preserve detailed screenshots/diagrams,
   and prevent image cropping in the Platform and AWS Enclave sections. */
#platform.split-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

#platform .split-copy {
  max-width: 920px;
}

#platform .section-actions {
  margin-top: 26px;
}

#platform .visual-card {
  width: 100%;
  margin-top: 4px;
  padding: clamp(12px, 1.8vw, 22px);
  overflow: visible !important;
  border-radius: 32px;
}

#platform .visual-card img {
  display: block;
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center center;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

#aws-enclave.split-section.reversed {
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

#aws-enclave .visual-card {
  padding: clamp(10px, 1.6vw, 18px);
  overflow: visible !important;
  border-radius: 32px;
}

#aws-enclave .visual-card img {
  display: block;
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center center;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

#aws-enclave .split-copy {
  max-width: 500px;
}

@media (max-width: 1100px) {
  #aws-enclave.split-section.reversed {
    grid-template-columns: 1fr;
  }

  #aws-enclave .split-copy {
    max-width: 820px;
  }
}

@media (max-width: 820px) {
  .section-shell {
    padding: 28px 0;
  }

  #platform .visual-card,
  #aws-enclave .visual-card {
    padding: 12px;
    border-radius: 24px;
  }

  #platform .visual-card img,
  #aws-enclave .visual-card img {
    min-height: 0 !important;
    height: auto !important;
    border-radius: 16px;
  }
}


/* AWS Enclave full-width text + full-width diagram layout.
   Uses aws-enclave_v3.png below the copy and prevents cropping while preserving tight section spacing. */
#aws-enclave.enclave-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 3vw, 34px);
  align-items: start;
}

#aws-enclave.enclave-section .split-copy {
  max-width: none;
  width: 100%;
}

#aws-enclave.enclave-section .split-copy > p:not(.eyebrow) {
  max-width: 980px;
}

#aws-enclave .enclave-check-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(22px, 4vw, 64px);
  row-gap: 14px;
  max-width: 1100px;
}

#aws-enclave .enclave-visual-card {
  width: 100%;
  margin-top: 4px;
  padding: clamp(12px, 1.8vw, 22px);
  overflow: visible !important;
  border-radius: 32px;
}

#aws-enclave .enclave-visual-card img {
  display: block;
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center center;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

@media (max-width: 820px) {
  #aws-enclave .enclave-check-list {
    grid-template-columns: 1fr;
  }

  #aws-enclave .enclave-visual-card {
    padding: 12px;
    border-radius: 24px;
  }

  #aws-enclave .enclave-visual-card img {
    border-radius: 16px;
  }
}

/* Contact form page */
.contact-page {
  padding-top: clamp(34px, 5vw, 70px);
}

.contact-hero {
  max-width: 920px;
  margin-bottom: clamp(24px, 4vw, 42px);
}

.contact-title {
  max-width: 980px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.25rem, 4.7vw, 4.65rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
  font-weight: 650;
  color: #f8fafc;
}

.contact-hero p:not(.eyebrow) {
  margin-top: 20px;
  max-width: 820px;
  font-size: clamp(1.03rem, 1.3vw, 1.2rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: start;
}

.contact-form,
.contact-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(15, 31, 54, 0.86), rgba(8, 16, 30, 0.76));
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4vw, 38px);
}

.contact-card {
  padding: clamp(24px, 4vw, 34px);
}

.contact-card h2 {
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
}

.contact-card p {
  margin-top: 24px;
}

.form-grid {
  display: grid;
  gap: 18px;
}

.form-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #d8e5f7;
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(95, 201, 255, 0.28);
  border-radius: 16px;
  background: rgba(2, 8, 20, 0.72);
  color: #f8fafc;
  font: inherit;
  padding: 13px 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(95, 201, 255, 0.72);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.16);
  background: rgba(2, 8, 20, 0.9);
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.human-check {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(95, 201, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.human-check-note {
  font-size: 0.9rem;
  color: var(--muted-2);
}

.form-status {
  min-height: 24px;
  font-weight: 750;
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: #ffb4b4;
}

.contact-form button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

@media (max-width: 980px) {
  .contact-layout,
  .form-grid.two {
    grid-template-columns: 1fr;
  }
}
