:root {
  --bg-0: #121212;
  --bg-1: #1a1a1a;
  --bg-2: #232323;
  --bg-3: #2d2d2d;
  --blue-1: #3d4a54;
  --blue-2: #556a77;
  --blue-3: #748994;
  --blue-4: #9eb2bc;
  --blue-5: #dfe7eb;
  --text: #f3f3f1;
  --muted: #b9b9b4;
  --line: rgba(223, 231, 235, 0.12);
  --line-strong: rgba(158, 178, 188, 0.28);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.28);
  --radius: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Arial", "Helvetica", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(158, 178, 188, 0.08), transparent 24%),
    radial-gradient(circle at top right, rgba(116, 137, 148, 0.10), transparent 28%),
    radial-gradient(circle at bottom center, rgba(85, 106, 119, 0.06), transparent 30%),
    linear-gradient(180deg, #111111 0%, #171717 24%, #1c1c1c 48%, #101010 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(30, 30, 30, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgb(13, 13, 13);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  min-height: 70px;
  position: relative;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo-image {
  display: block;
  max-height: 64px;
  width: auto;
  object-fit: contain;
}

.logo {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
}

.logo::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 6px;
  background: linear-gradient(90deg, var(--blue-4), transparent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding-bottom: 0.2rem;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-3), var(--blue-5));
  transition: width 0.25s ease;
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav a:hover::after {
  width: 100%;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Desktop images are visible by default */
.hero-slide-desktop {
  display: block;
}

.hero-slide-mobile {
  display: none;
}

/* Mobile images */
@media (max-width: 720px) {
  .hero-slide-desktop {
    display: none;
  }

  .hero-slide-mobile {
    display: block;
  }

  .hero-slide-mobile {
    background-position: center center;
  }
}

.hero {
  min-height: 100vh;
  padding: 6rem 0 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(4, 17, 29, 0.7), rgba(4, 17, 29, 0.35) 45%, rgba(4, 17, 29, 0.72)),
    repeating-linear-gradient(
      135deg,
      rgba(197, 228, 255, 0.03) 0,
      rgba(197, 228, 255, 0.03) 1px,
      transparent 1px,
      transparent 18px
    );
  pointer-events: none;
  z-index: -1;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: end;
}

.eyebrow {
  display: inline-block;
  padding: 0.6rem 1.05rem;
  border: 1px solid rgba(197, 228, 255, 0.28);
  border-radius: 999px;
  background: rgba(4, 17, 29, 0.42);
  color: #f7fbff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--text);
  max-width: 11ch;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.hero-text {
  margin: 1.25rem 0 1.8rem;
  max-width: 64ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-2), var(--blue-4));
  color: var(--text);
}

.btn-secondary {
  background: rgba(197, 228, 255, 0.05);
  border-color: var(--line-strong);
  color: var(--text);
}

.hero-card,
.cta-box,
.breakdown-item,
.service-card,
.two-col > div {
  background:
    linear-gradient(180deg, rgba(24, 24, 24, 0.96), rgba(12, 12, 12, 0.98));
  border: 1px solid rgba(223, 231, 235, 0.12);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

.hero-card {
  position: relative;
  overflow: hidden;
  width: min(100%, var(--container));
  margin: 0 auto;
  border-radius: 0 0 2rem 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(158, 178, 188, 0.12), transparent 42%),
    radial-gradient(circle at top right, rgba(116, 137, 148, 0.12), transparent 35%);
  pointer-events: none;
}

.hero-card-divider {
  position: relative;
  z-index: 1;
  padding: 1.6rem 2.4rem 1.2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(223, 231, 235, 0.08), rgba(223, 231, 235, 0.02));
  border-bottom: 1px solid rgba(223, 231, 235, 0.08);
}

.hero-card-divider span {
  display: inline-block;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.hero-card-inner {
  position: relative;
  z-index: 1;
  padding: 2.8rem 3.2rem 3.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.hero-card-inner p {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-card h2,
.section-heading h2,
.statement h2,
.cta-box h2 {
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.hero-card p,
.section-heading p,
.statement p,
.breakdown-item p,
.cta-box p,
.two-col p,
.service-card p {
  color: var(--muted);
}

.statement,
.about-section,
.services-section,
.values-section,
.services-breakdown,
.cta-section {
  padding: 4.5rem 0;
}

.statement {
  text-align: center;
}

.intro-section {
  padding: 0 0 2rem;
}

.statement h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.statement p {
  font-size: 1.18rem;
  margin-top: 0.8rem;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.two-col > div {
  padding: 2rem;
  border-radius: var(--radius);
}

.two-col h2 {
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-heading {
  margin-bottom: 1.5rem;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.section-heading p {
  margin-top: 0.4rem;
}

.service-grid,
.values-grid,
.breakdown-list {
  display: grid;
  gap: 1rem;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  min-height: 175px;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-4), transparent);
  opacity: 0.85;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 178, 255, 0.42);
}

.service-card h3,
.breakdown-item h3,
.value-card {
  color: var(--text);
}

.service-card h3 {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-card p {
  margin-top: 0.8rem;
}

.values-grid {
  grid-template-columns: repeat(4, 1fr);
}

.value-card {
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: linear-gradient(180deg, rgba(24, 24, 24, 0.96), rgba(12, 12, 12, 0.98));
  border: 1px solid rgba(223, 231, 235, 0.12);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.breakdown-list {
  grid-template-columns: repeat(2, 1fr);
}

.breakdown-item {
  border-radius: var(--radius);
  padding: 1.5rem;
}

.breakdown-item h3 {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.breakdown-item p {
  margin-top: 0.6rem;
}

.cta-section {
  padding-top: 2rem;
}

.cta-box {
  border-radius: var(--radius);
  text-align: center;
  padding: 3rem 1.5rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(197, 228, 255, 0.16);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.cta-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  z-index: 0;
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(99, 178, 255, 0.1), transparent 50%),
    linear-gradient(225deg, rgba(35, 128, 216, 0.08), transparent 45%);
  pointer-events: none;
  z-index: 1;
}

.cta-box > h2,
.cta-box > p,
.cta-box > a {
  position: relative;
  z-index: 2;
}

.cta-box p {
  margin: 1rem auto 1.5rem;
  max-width: 60ch;
}

.site-footer {
  padding: 1.5rem 0 2.25rem;
  border-top: 1px solid rgba(197, 228, 255, 0.12);
  background: rgba(2, 8, 15, 0.95);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .service-grid,
  .values-grid,
  .breakdown-list {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero {
    padding-top: 3.6rem;
  }

  .hero-grid,
  .two-col,
  .service-grid,
  .values-grid,
  .breakdown-list {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 11vw, 4rem);
  }
}

.page-hero {
  padding: 6rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(99, 178, 255, 0.08), transparent 45%),
    repeating-linear-gradient(
      135deg,
      rgba(197, 228, 255, 0.03) 0,
      rgba(197, 228, 255, 0.03) 1px,
      transparent 1px,
      transparent 18px
    );
  pointer-events: none;
  z-index: 0;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.page-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: var(--text);
  max-width: 12ch;
  margin-bottom: 1rem;
}

.page-hero-text {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 60ch;
}

.service-grid-page {
  grid-template-columns: repeat(2, 1fr);
}

.service-card-page {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.service-card-page {
  min-height: 100%;
}

.service-grid-page {
  align-items: stretch;
}


.service-card-page:hover,
.service-card-page:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(99, 178, 255, 0.42);
  outline: none;
}


.service-list {
  list-style: none;
  margin-top: 0.25rem;
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
}

.service-list li {
  position: relative;
  padding-left: 1rem;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-3), var(--blue-5));
  box-shadow: 0 0 10px rgba(99, 178, 255, 0.35);
}

.service-link {
  margin-top: auto;
  display: inline-block;
  padding-top: 0.3rem;
  color: var(--blue-5);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.service-card-page {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-link1 {
  margin-top: auto;
  display: inline-block;
  color: var(--blue-5);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  padding-top: 1rem;
}

.service-link:hover {
  color: var(--text);
}

@media (max-width: 720px) {
  .service-grid-page {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-top: 4.5rem;
  }
}

.about-hero {
  padding-bottom: 2rem;
}

.about-intro,
.about-story,
.mission-vision,
.about-services {
  padding: 3.5rem 0;
}

.about-grid {
  align-items: stretch;
}

.about-card,
.story-panel,
.about-feature-card {
  background:
    linear-gradient(180deg, rgba(24, 24, 24, 0.96), rgba(12, 12, 12, 0.98));
  border: 1px solid rgba(223, 231, 235, 0.12);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
  border-radius: var(--radius);
}

.about-card {
  padding: 2rem;
}

.about-card-large {
  padding: 2.2rem;
}

.about-card h2,
.story-panel p,
.about-feature-card h3 {
  color: var(--text);
}

.about-card p {
  color: var(--muted);
  margin-top: 0.9rem;
}

.about-card p + p {
  margin-top: 1rem;
}

.story-panel {
  padding: 2rem;
}

.story-panel p + p {
  margin-top: 1rem;
}

.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.about-feature-card {
  padding: 1.5rem;
  min-height: 170px;
}

.about-feature-card h3 {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.7rem;
}

.about-feature-card p {
  color: var(--muted);
}

.about-values {
  padding-top: 2.5rem;
}

@media (max-width: 980px) {
  .about-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .about-feature-grid {
    grid-template-columns: 1fr;
  }

  .about-card,
  .story-panel,
  .about-feature-card {
    padding: 1.5rem;
  }
}

.contact-hero {
  padding-bottom: 2rem;
}

.contact-section {
  padding: 3.5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.25rem;
  align-items: start;
}

.contact-info-card,
.contact-form-card {
  background:
    linear-gradient(180deg, rgba(24, 24, 24, 0.96), rgba(12, 12, 12, 0.98));
  border: 1px solid rgba(223, 231, 235, 0.12);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
  border-radius: var(--radius);
  padding: 2rem;
}

.contact-info-card h2,
.contact-form-card h2,
.contact-note h3 {
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-info-card p,
.contact-note p {
  color: var(--muted);
}

.contact-info-card > p {
  margin: 0.9rem 0 1.5rem;
  max-width: 50ch;
}

.contact-details {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(197, 228, 255, 0.04);
  border: 1px solid rgba(223, 231, 235, 0.08);
}

.contact-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--blue-5);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.contact-item a,
.contact-item p {
  color: var(--text);
}

.contact-item a:hover {
  color: var(--blue-4);
}

.contact-note {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(35, 128, 216, 0.08), rgba(197, 228, 255, 0.03));
  border: 1px solid rgba(99, 178, 255, 0.16);
}

.contact-note h3 {
  margin-bottom: 0.6rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 0.45rem;
}

.form-row label {
  color: var(--blue-5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 800;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(223, 231, 235, 0.14);
  background: rgba(4, 17, 29, 0.78);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(185, 185, 180, 0.75);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(99, 178, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(99, 178, 255, 0.12);
}

.contact-form .btn {
  justify-self: start;
  margin-top: 0.25rem;
}

@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .contact-info-card,
  .contact-form-card {
    padding: 1.5rem;
  }

  .contact-form .btn {
    width: 100%;
    text-align: center;
  }
}

/* Ensure contact grid uses two-column layout on wider screens
   (defensive rule in case other stylesheets override it) */
@media (min-width: 981px) {
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr !important;
  }
}

/* Ensure status area doesn't create a third grid column on desktop */
@media (min-width: 981px) {
  .contact-grid #contact-status {
    grid-column: 1 / -1;
    width: 100%;
  }
}

.service-hero {
  padding-bottom: 2rem;
}

.service-overview,
.service-details,
.process-section,
.service-cta {
  padding: 3.5rem 0;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-detail-card,
.process-step {
  background:
    linear-gradient(180deg, rgba(24, 24, 24, 0.96), rgba(12, 12, 12, 0.98));
  border: 1px solid rgba(223, 231, 235, 0.12);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.service-detail-card h3,
.process-step h3 {
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.7rem;
}

.service-detail-card p,
.process-step p {
  color: var(--muted);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.process-step span {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--blue-5);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .service-detail-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .service-detail-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-overview,
  .service-details,
  .process-section,
  .service-cta {
    padding: 3rem 0;
  }
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(223, 231, 235, 0.12);
  background: rgba(197, 228, 255, 0.05);
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

@media (max-width: 720px) {
  .nav-wrap {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-top: 0.75rem;
    padding: 0.75rem;
    border-radius: 18px;
    background: rgba(6, 20, 35, 0.98);
    border: 1px solid rgba(223, 231, 235, 0.12);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    display: block;
    width: 100%;
    padding: 0.8rem;
  }
}

/* Mobile nav */
@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 18px;
    background: rgba(6, 20, 35, 0.96);
    border: 1px solid rgba(223, 231, 235, 0.12);
  }

  .site-nav.open {
    display: flex;
  }


  .site-nav a {
    width: 100%;
  }
}

.contact-hero {
  padding-bottom: 2rem;
}

.contact-section {
  padding: 3.5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.25rem;
  align-items: start;
}

.contact-info-card,
.contact-form-card {
  background: linear-gradient(180deg, rgba(24, 24, 24, 0.96), rgba(12, 12, 12, 0.98));
  border: 1px solid rgba(223, 231, 235, 0.12);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
  border-radius: var(--radius);
  padding: 2rem;
}

.contact-info-card h2,
.contact-form-card h2,
.contact-note h3 {
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-info-card p,
.contact-note p {
  color: var(--muted);
}

.contact-info-card > p {
  margin: 0.9rem 0 1.5rem;
  max-width: 50ch;
}

.contact-details {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(197, 228, 255, 0.04);
  border: 1px solid rgba(223, 231, 235, 0.08);
}

.contact-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--blue-5);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.contact-item a,
.contact-item p {
  color: var(--text);
}

.contact-item a:hover {
  color: var(--blue-4);
}

.contact-note {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(35, 128, 216, 0.08), rgba(197, 228, 255, 0.03));
  border: 1px solid rgba(99, 178, 255, 0.16);
}

.contact-note h3 {
  margin-bottom: 0.6rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 0.45rem;
}

.form-row label {
  color: var(--blue-5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 800;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(223, 231, 235, 0.14);
  background: rgba(4, 17, 29, 0.78);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(185, 185, 180, 0.75);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(99, 178, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(99, 178, 255, 0.12);
}

.contact-form .btn {
  justify-self: start;
  margin-top: 0.25rem;
}

@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .contact-info-card,
  .contact-form-card {
    padding: 1.5rem;
  }

  .contact-form .btn {
    width: 100%;
    text-align: center;
  }
}

.form-success,
.form-error {
  margin: 1rem 0;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  font-weight: 700;
}

.form-success {
  background: rgba(35, 128, 216, 0.12);
  border: 1px solid rgba(99, 178, 255, 0.25);
  color: var(--blue-5);
}

.form-error {
  background: rgba(99, 178, 255, 0.08);
  border: 1px solid rgba(99, 178, 255, 0.18);
  color: var(--text);
}

.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.success-page main {
  flex: 1;
}
