/* DA Facilities — bold facilities / cleaning presentation */

:root {
  --color-bg: #eef2f7;
  --color-bg-soft: #f4f7fb;
  --color-surface: #ffffff;
  --color-text: #0f172a;
  --color-text-muted: #475569;
  --color-border: #e2e8f0;
  --color-brand: #0f766e;
  --color-brand-dark: #0d5c56;
  --color-brand-soft: rgba(15, 118, 110, 0.12);
  --color-hero-deep: #0b1220;
  --color-hero-mid: #132337;
  --color-cta-from: #f59e0b;
  --color-cta-to: #ea580c;
  --color-footer-bg: #070d16;
  --color-footer-text: rgba(248, 250, 252, 0.9);
  --color-footer-muted: rgba(148, 163, 184, 0.95);
  --font-display: "Outfit", "Plus Jakarta Sans", system-ui, sans-serif;
  --font-sans: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", Arial, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 5.5rem;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 4px 6px rgba(15, 23, 42, 0.04), 0 12px 24px rgba(15, 23, 42, 0.06);
  --shadow-hover: 0 20px 40px rgba(15, 23, 42, 0.12);
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  background-image: radial-gradient(ellipse 100% 60% at 100% 0%, rgba(245, 158, 11, 0.07), transparent 45%),
    radial-gradient(ellipse 80% 50% at 0% 100%, rgba(15, 118, 110, 0.08), transparent 50%);
  background-attachment: fixed;
  line-height: 1.65;
}

a {
  color: var(--color-brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-cta-from);
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.site-header {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, 0 8px 30px rgba(15, 23, 42, 0.06);
}

.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.85rem var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  color: var(--color-text);
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
  color: var(--color-brand);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  align-items: center;
}

.nav a:not(.btn) {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.nav a:not(.btn):hover,
.nav a:not(.btn).is-active {
  color: var(--color-brand-dark);
  text-decoration: none;
  border-bottom-color: var(--color-cta-from);
}

.nav .btn {
  margin-left: 0.25rem;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  line-height: 1.4;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease,
    color 0.15s ease;
}

.btn:hover {
  text-decoration: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-cta-from) 0%, var(--color-cta-to) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
}

.btn--primary:hover {
  box-shadow: 0 8px 22px rgba(234, 88, 12, 0.45);
  filter: brightness(1.03);
  color: #fff;
}

.btn--ghost {
  background: var(--color-surface);
  color: var(--color-brand-dark);
  border: 1px solid var(--color-border);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.btn--ghost:hover {
  border-color: var(--color-brand);
  color: var(--color-brand-dark);
  background: #fff;
}

.btn--lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn--light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.btn--light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md) var(--space-xl);
  min-height: 50vh;
}

/* ——— Full-bleed hero (break out of main max-width) ——— */
.hero-fullbleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
  position: relative;
  overflow: hidden;
  background-color: var(--color-hero-deep);
  background-image:
    linear-gradient(
      105deg,
      var(--color-hero-deep) 0%,
      rgba(11, 18, 32, 0.94) 26%,
      rgba(19, 35, 55, 0.82) 40%,
      rgba(19, 35, 55, 0.45) 56%,
      rgba(19, 35, 55, 0.12) 72%,
      transparent 88%
    ),
    var(--hero-banner-image);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: #e2e8f0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: var(--space-xl);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
  min-height: clamp(520px, 72vh, 680px);
  display: flex;
  align-items: center;
}

.hero-fullbleed::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 80% at 80% -10%, rgba(245, 158, 11, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(45, 212, 191, 0.12), transparent 50%);
  pointer-events: none;
}

.hero-fullbleed::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.9;
  pointer-events: none;
}

@media (max-width: 899px) {
  .hero-fullbleed {
    background-image:
      linear-gradient(
        180deg,
        var(--color-hero-deep) 0%,
        rgba(11, 18, 32, 0.94) 50%,
        rgba(11, 18, 32, 0.82) 100%
      ),
      var(--hero-banner-image);
    background-position: center;
    min-height: auto;
  }
}

.hero-fullbleed__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md) var(--space-xl);
}

.hero__grid {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 52%;
  }
}

.hero__visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.22);
  align-self: center;
}

@media (min-width: 900px) {
  .hero__visual {
    align-self: stretch;
    display: flex;
  }
}

.hero__photo {
  width: 100%;
  min-height: 260px;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 900px) {
  .hero__photo {
    min-height: 100%;
    max-height: 520px;
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(251, 191, 36, 0.95);
  margin: 0 0 var(--space-sm);
}

.hero__eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-cta-from), transparent);
  border-radius: 2px;
}

.hero-fullbleed .hero h1 {
  font-family: var(--font-display);
  margin: 0 0 var(--space-md);
  font-size: clamp(2rem, 5vw, 3.15rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: #fff;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.2);
}

.hero__lead {
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 38rem;
  margin: 0 0 var(--space-md);
  color: var(--color-text-muted);
}

.hero-fullbleed .hero__lead {
  color: rgba(226, 232, 240, 0.92);
  max-width: 36rem;
  margin: 0 0 var(--space-lg);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

.hero__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

@media (min-width: 520px) {
  .hero__stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(251, 191, 36, 0.35);
  background: rgba(255, 255, 255, 0.1);
}

.stat-card__value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.stat-card__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(148, 163, 184, 0.95);
  line-height: 1.35;
}

/* ——— Feature panels (home + generic) ——— */
.section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto var(--space-lg);
}

.section-head .section-label {
  justify-content: center;
  width: 100%;
}

.section-head h2 {
  margin: 0 0 var(--space-sm);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
}

.section-head p {
  margin: 0;
  font-size: 1.02rem;
}

.panel {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: var(--space-md) 0;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-brand), var(--color-cta-from));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: #cbd5e1;
}

.panel:hover::before {
  opacity: 1;
}

.panel--feature h2 {
  margin-top: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.panel__figure {
  margin: calc(var(--space-lg) * -1) calc(var(--space-lg) * -1) var(--space-md);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #e2e8f0;
}

.panel__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.panel__figure--portrait {
  aspect-ratio: auto;
  max-height: 280px;
  background: #a3a3a3;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.panel__figure--portrait img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  object-position: center bottom;
}

.panel--split {
  display: grid;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

@media (min-width: 720px) {
  .panel--split {
    grid-template-columns: 1fr 1.15fr;
    align-items: stretch;
  }
}

.panel--split .panel__figure--side {
  margin: 0;
  aspect-ratio: auto;
  min-height: 200px;
  border-radius: 0;
}

.panel--split .panel__figure--side img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.panel--split .panel__body {
  padding: var(--space-lg);
}

.panel--split .panel__body h2 {
  font-family: var(--font-display);
}

.page-figure {
  margin: 0 0 var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  background: #e2e8f0;
}

.page-figure img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  display: block;
}

.page-figure--wide img {
  aspect-ratio: 16 / 9;
}

.page-figure__caption {
  margin: 0;
  padding: var(--space-sm) var(--space-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.page-figure--compact {
  margin: 0;
}

.page-figure--compact img {
  aspect-ratio: 4 / 3;
}

.content-split {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
  margin-top: var(--space-xl);
}

@media (min-width: 800px) {
  .content-split {
    grid-template-columns: 1fr 1.1fr;
    gap: var(--space-xl);
  }
}

.contact-layout {
  display: grid;
  gap: var(--space-xl);
  align-items: start;
}

.contact-layout__aside {
  order: -1;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr minmax(220px, 320px);
    gap: var(--space-2xl);
  }

  .contact-layout__aside {
    order: 0;
    position: sticky;
    top: 5.5rem;
  }
}

.contact-layout__main {
  min-width: 0;
}

.contact-form-panel {
  max-width: 40rem;
}

.contact-layout__photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  background: #e2e8f0;
}

.contact-layout__photo-frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.contact-layout__figure {
  margin: 0;
}

.contact-layout__aside-caption {
  margin: var(--space-sm) 0 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.contact-map {
  margin-top: var(--space-xl);
}

.contact-map__grid {
  display: grid;
  gap: var(--space-lg);
  align-items: start;
}

@media (min-width: 720px) {
  .contact-map__grid {
    grid-template-columns: minmax(12rem, 1fr) 1.6fr;
    gap: var(--space-xl);
  }
}

.contact-map__title {
  margin: 0 0 var(--space-sm);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.contact-map__text {
  margin: 0;
  font-style: normal;
  line-height: 1.7;
  color: var(--color-text);
}

.contact-map__link {
  margin: var(--space-md) 0 0;
  font-size: 0.9375rem;
}

.contact-map__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  background: #e2e8f0;
  min-height: 280px;
}

.contact-map__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

.panel--muted {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-color: #e2e8f0;
}

.panel--muted::before {
  display: none;
}

.cta-band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-lg);
  background: linear-gradient(120deg, var(--color-brand-dark) 0%, #0f172a 100%);
  color: #e2e8f0;
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-band__text h2 {
  margin: 0 0 var(--space-xs);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  color: #fff;
}

.cta-band__text p {
  margin: 0;
  color: rgba(226, 232, 240, 0.88);
  max-width: 28rem;
}

.site-footer {
  margin-top: var(--space-xl);
  padding: var(--space-xl) var(--space-md);
  background: var(--color-footer-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  color: var(--color-footer-muted);
}

.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 720px) {
  .site-footer__inner {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
}

.site-footer__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  margin: 0 0 var(--space-sm);
}

.site-footer__tagline {
  margin: 0;
  color: var(--color-footer-muted);
  line-height: 1.6;
  max-width: 28rem;
}

.site-footer__meta {
  margin: var(--space-md) 0 0;
  font-size: 0.8125rem;
  color: rgba(148, 163, 184, 0.85);
}

.site-footer__contact-title {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(251, 191, 36, 0.9);
  margin: 0 0 var(--space-sm);
}

.site-footer__contact a {
  color: var(--color-footer-text);
  font-weight: 600;
  font-size: 1.05rem;
}

.site-footer__contact a:hover {
  color: #fde68a;
  text-decoration: none;
}

h2 {
  font-size: 1.375rem;
  margin: var(--space-lg) 0 var(--space-sm);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
  font-family: var(--font-display);
}

h3 {
  font-size: 1.0625rem;
  margin: var(--space-md) 0 var(--space-xs);
  font-weight: 600;
  color: var(--color-text);
}

p {
  margin: 0 0 var(--space-sm);
  color: var(--color-text-muted);
}

ul {
  margin: 0 0 var(--space-sm);
  padding-left: 1.25rem;
  color: var(--color-text-muted);
}

li {
  margin-bottom: 0.35rem;
}

.grid-2 {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 720px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.pill-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.pill-list li {
  margin: 0;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.9375rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.pill-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-brand), var(--color-cta-from));
  flex-shrink: 0;
}

.pill-list li:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-brand-dark);
  margin-bottom: var(--space-xs);
}

.services-major h2 {
  margin-top: 0;
}

.services-minor {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.services-minor h2 {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.client-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  margin-top: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.client-strip__label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.client-strip__logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-brand) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  max-width: 32rem;
  padding: 0.7rem 0.9rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
  border-color: #cbd5e1;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px var(--color-brand-soft);
  outline: none;
}

.form-group textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-hint {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
}

.alert {
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius);
  margin-bottom: var(--space-md);
  font-size: 0.9375rem;
}

.alert--success {
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
}

.alert--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.page-intro {
  max-width: 44rem;
  padding: var(--space-md) 0 var(--space-lg);
  margin-bottom: var(--space-md);
  border-bottom: none;
  position: relative;
}

.page-intro::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  border-radius: 4px;
  margin-top: var(--space-md);
  background: linear-gradient(90deg, var(--color-brand), var(--color-cta-from));
}

.page-intro h1 {
  font-family: var(--font-display);
  margin: 0 0 var(--space-sm);
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--color-text);
}
