:root {
  --bg: #070b15;
  --card: rgba(15, 26, 43, 0.84);
  --line: rgba(162, 184, 212, 0.28);
  --text: #f3f8ff;
  --muted: #b4c6dd;
  --primary: #ff7a9f;
  --primary-strong: #ff4f81;
  --support: #2ddf7f;
  --support-strong: #17ba61;
  --radius-lg: 26px;
  --radius-md: 16px;
  --shadow: 0 22px 50px rgba(5, 12, 22, 0.5);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Sora", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1100px 520px at 90% -12%, rgba(255, 79, 129, 0.24), transparent 62%),
    radial-gradient(950px 480px at 0% 100%, rgba(45, 223, 127, 0.15), transparent 58%),
    linear-gradient(135deg, #040812 0%, #091426 45%, #081322 100%);
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image: radial-gradient(rgba(255, 255, 255, 0.44) 1px, transparent 0);
  background-size: 3px 3px;
  z-index: -3;
}

.orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(22px);
  z-index: -2;
  opacity: 0.42;
}

.orb-a {
  width: 300px;
  height: 300px;
  top: 14%;
  right: -120px;
  background: radial-gradient(circle, rgba(255, 122, 159, 0.8), rgba(255, 122, 159, 0.05));
}

.orb-b {
  width: 320px;
  height: 320px;
  bottom: -80px;
  left: -80px;
  background: radial-gradient(circle, rgba(45, 223, 127, 0.55), rgba(45, 223, 127, 0.03));
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 5vw;
  backdrop-filter: blur(12px);
  background: rgba(7, 15, 28, 0.78);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.brand img {
  width: 74px;
  height: 96px;
  object-fit: contain;
}

.brand strong {
  display: block;
  letter-spacing: 0.08em;
  font-size: 0.84rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.8rem;
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.topnav a {
  color: var(--muted);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.48rem 0.82rem;
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.topnav a:hover,
.topnav a:focus-visible,
.topnav a.is-active {
  color: var(--text);
  border-color: rgba(255, 122, 159, 0.58);
  transform: translateY(-1px);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-outline {
  padding: 0.62rem 0.95rem;
  color: var(--text);
  border-color: rgba(255, 122, 159, 0.5);
  background: rgba(255, 122, 159, 0.12);
}

main {
  display: grid;
  gap: 18px;
  padding: 28px 5vw 74px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.12;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 9px;
}

.panel {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}

.hero {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 14px;
}

.hero-copy {
  padding: clamp(22px, 4vw, 44px);
  display: grid;
  gap: 12px;
}

.hero-copy h1 {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.btn-solid {
  padding: 0.72rem 1.08rem;
  color: #1f0710;
  background: linear-gradient(120deg, var(--primary-strong), #ff9cb9);
}

.btn-solid.alt {
  color: #042114;
  background: linear-gradient(120deg, var(--support-strong), #59eca1);
}

.hero-media {
  padding: 10px;
  display: grid;
  gap: 8px;
  align-content: start;
}

.hero-media img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 10px);
}

.hero-quote {
  border: 1px solid rgba(255, 122, 159, 0.45);
  border-radius: 12px;
  padding: 11px;
  background: rgba(14, 24, 38, 0.88);
}

.hero-quote p {
  color: #ffd7e3;
  font-size: 0.9rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  margin-bottom: 6px;
}

.mission {
  padding: 24px;
  display: grid;
  gap: 10px;
}

.services {
  display: grid;
  gap: 12px;
}

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

.service-card {
  padding: 16px;
  display: grid;
  gap: 6px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-card h3 {
  font-size: 1.55rem;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 159, 0.46);
}

.importance {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 10px;
}

.importance-copy {
  padding: 22px;
  display: grid;
  gap: 10px;
}

.importance-copy ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.importance-media {
  padding: 10px;
}

.importance-media img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 10px);
}

.partnership {
  padding: 24px;
  display: grid;
  gap: 10px;
}

.laws {
  padding: 24px;
  display: grid;
  gap: 12px;
}

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

.laws-grid article {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(10, 22, 36, 0.84);
  padding: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.laws-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 159, 0.52);
}

.laws-grid h3 {
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.law-media {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(8, 20, 34, 0.9);
}

.law-media img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.law-note {
  border: 1px solid rgba(45, 223, 127, 0.42);
  border-radius: 10px;
  background: rgba(9, 34, 24, 0.52);
  padding: 10px;
  color: #ddffec;
  font-size: 0.9rem;
}

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

.quote-card {
  padding: 16px;
  border-radius: var(--radius-md);
}

.quote-card p {
  color: #ffdae6;
  font-size: 0.94rem;
}

.specialists {
  padding: 24px;
  display: grid;
  gap: 14px;
  border-color: rgba(255, 122, 159, 0.42);
  background:
    radial-gradient(500px 220px at 100% 0%, rgba(255, 122, 159, 0.14), transparent 65%),
    rgba(10, 23, 36, 0.92);
}

.specialists-intro {
  max-width: 78ch;
}

.specialist-directory {
  justify-self: start;
}

.specialists-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.specialist-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(7, 18, 32, 0.96);
  grid-template-columns: minmax(260px, 340px) 1fr;
  overflow: hidden;
  display: grid;
  align-items: stretch;
}

.specialist-media {
  margin: 0;
  width: 100%;
  height: auto;
  min-height: 300px;
  max-height: 440px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: rgba(6, 15, 27, 0.95);
}

.specialist-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 14%;
  display: block;
}

.specialist-copy {
  padding: 16px;
  display: grid;
  gap: 9px;
  align-content: center;
}

.specialist-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 122, 159, 0.4);
  color: #ffd7e3;
  background: rgba(255, 122, 159, 0.1);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.specialist-copy h3 {
  font-size: clamp(1.5rem, 2.1vw, 2.05rem);
  line-height: 1.15;
}

.specialist-copy p {
  color: #d4e5ff;
  font-size: 0.95rem;
}

.specialist-copy ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 4px;
  color: var(--muted);
}

.specialist-copy .btn {
  justify-self: start;
  margin-top: 2px;
}

.nuamp-free-course {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  display: grid;
  gap: 14px;
  border-color: rgba(53, 214, 255, 0.42);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 42%),
    radial-gradient(520px 220px at 100% 0%, rgba(53, 214, 255, 0.14), transparent 62%),
    rgba(8, 21, 36, 0.92);
}

.nuamp-free-course::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
}

.nuamp-form-intro {
  max-width: 86ch;
  margin: 0;
  color: #d4e5ff;
  line-height: 1.75;
}

.nuamp-form-alert {
  border: 1px solid rgba(255, 122, 159, 0.45);
  border-radius: 16px;
  background: rgba(47, 11, 25, 0.34);
  color: #ffd6e3;
  padding: 12px 14px;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.nuamp-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 6px;
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid rgba(162, 184, 212, 0.18);
  border-radius: 22px;
  background: rgba(4, 12, 22, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.nuamp-form .full {
  grid-column: 1 / -1;
}

.nuamp-field {
  display: grid;
  align-content: start;
  gap: 7px;
  min-width: 0;
}

.nuamp-form label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.82rem;
  color: #e6f0ff;
  font-weight: 700;
  line-height: 1.25;
}

.nuamp-form input {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(7, 19, 33, 0.96);
  color: var(--text);
  border-radius: 14px;
  padding: 0.86rem 0.95rem;
  font: inherit;
  font-size: 0.94rem;
  min-height: 48px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nuamp-form input::placeholder {
  color: rgba(180, 198, 221, 0.62);
}

.nuamp-form input:focus {
  outline: none;
  border-color: rgba(53, 214, 255, 0.72);
  background: rgba(7, 19, 33, 1);
  box-shadow:
    0 0 0 4px rgba(53, 214, 255, 0.12),
    0 14px 30px rgba(0, 0, 0, 0.22);
}

.nuamp-form input:user-invalid {
  border-color: rgba(255, 122, 159, 0.72);
}

.nuamp-form-actions {
  display: grid;
  grid-template-columns: minmax(220px, max-content) 1fr;
  align-items: center;
  gap: 10px 16px;
  padding-top: 2px;
}

.nuamp-form-actions .btn {
  width: 100%;
  min-height: 48px;
  justify-content: center;
  white-space: normal;
}

.nuamp-form-actions small {
  color: var(--muted);
  line-height: 1.5;
}

.nuamp-form-feedback {
  grid-column: 1 / -1;
  margin: 0;
  min-height: 1.35rem;
  font-size: 0.9rem;
  line-height: 1.45;
}

.nuamp-form-feedback.is-ok {
  color: #9df8c8;
}

.nuamp-form-feedback.is-error {
  color: #ffb6b6;
}

.contacts {
  padding: 24px;
  display: grid;
  gap: 11px;
  border-color: rgba(45, 223, 127, 0.44);
  background:
    radial-gradient(420px 220px at 100% 0%, rgba(45, 223, 127, 0.16), transparent 58%),
    rgba(10, 23, 36, 0.9);
}

.contact-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.contact-btn {
  text-decoration: none;
  color: #063622;
  border-radius: 14px;
  padding: 14px;
  background: linear-gradient(125deg, #18b85a, #31e27e);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 14px 28px rgba(9, 95, 52, 0.4);
  display: grid;
  gap: 3px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-btn.alt {
  color: #3b0717;
  background: linear-gradient(125deg, #ff5b8d, #ff95b4);
  box-shadow: 0 14px 28px rgba(126, 20, 62, 0.36);
}

.contact-btn:hover,
.contact-btn:focus-visible {
  transform: translateY(-2px);
}

.contact-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 800;
}

.contact-btn strong {
  font-size: 1.06rem;
}

.footer {
  margin: 0 5vw 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(7, 16, 29, 0.82);
  padding: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}

.footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.support-float {
  position: static;
  display: grid;
  gap: 8px;
  justify-items: end;
  width: max-content;
  max-width: calc(100% - 32px);
  margin: 18px 16px 20px auto;
}

.support-float a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: 0.62rem 0.88rem;
  border-radius: 999px;
  text-decoration: none;
  color: #05281a;
  font-size: 0.82rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: linear-gradient(120deg, #20ca66, #46e88d);
  box-shadow: 0 12px 24px rgba(9, 95, 52, 0.36);
}

.support-float a:last-child {
  color: #3f0a1a;
  background: linear-gradient(120deg, #ff6294, #ff9fbd);
  box-shadow: 0 12px 24px rgba(126, 20, 62, 0.33);
}

@media (max-width: 1180px) {
  .hero,
  .importance {
    grid-template-columns: 1fr;
  }

  .hero-media img,
  .importance-media img {
    min-height: 260px;
  }
}

@media (max-width: 920px) {
  .topbar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .topnav {
    width: 100%;
    justify-content: center;
  }

  .service-grid,
  .laws-grid,
  .quotes,
  .contact-buttons {
    grid-template-columns: 1fr;
  }

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

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

  .specialist-card {
    grid-template-columns: 1fr;
  }

  .specialist-media {
    min-height: 280px;
    max-height: 520px;
    aspect-ratio: 3 / 4;
  }
}

@media (max-width: 640px) {
  .nuamp-free-course {
    padding: 18px;
  }

  .nuamp-free-course::before {
    inset: 9px;
    border-radius: 18px;
  }

  .nuamp-form {
    gap: 13px;
    padding: 14px;
    border-radius: 18px;
  }

  .nuamp-form label {
    font-size: 0.79rem;
  }

  .nuamp-form input {
    min-height: 46px;
    border-radius: 12px;
    padding: 0.78rem 0.82rem;
    font-size: 0.9rem;
  }

  .nuamp-form-actions .btn {
    min-height: 46px;
  }

  .support-float {
    width: calc(100% - 32px);
    max-width: 360px;
    margin: 16px auto 20px;
    grid-template-columns: 1fr;
  }

  .support-float a {
    width: 100%;
    min-width: 0;
  }

  .footer {
    margin-bottom: 0;
  }
}

/* Visual polish: NUAPM presentation */
::selection {
  color: #280814;
  background: rgba(255, 125, 170, 0.9);
}

body {
  overflow-x: hidden;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid rgba(255, 125, 170, 0.58);
  outline-offset: 4px;
}

.topbar,
.hero-copy,
.hero-media,
.nuamp-free-course,
.nuamp-form,
.service-card,
.law-card,
.quote-card,
.specialist-card,
.support-float,
.footer {
  backdrop-filter: blur(14px);
}

.topbar {
  box-shadow: 0 18px 42px rgba(2, 8, 18, 0.28);
}

.hero-copy,
.nuamp-free-course,
.service-card,
.law-card,
.quote-card,
.specialist-card {
  position: relative;
  overflow: hidden;
}

.hero-copy::before,
.nuamp-free-course::after,
.service-card::before,
.law-card::before,
.quote-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%),
    radial-gradient(340px 160px at 100% 0%, rgba(255, 125, 170, 0.1), transparent 62%);
}

.hero-media img,
.importance-media img,
.specialist-media img {
  filter: saturate(1.04) contrast(1.02);
}

.btn,
.support-float a {
  will-change: transform;
}

.btn:active,
.support-float a:active {
  transform: translateY(0) scale(0.99);
}

@media (max-width: 640px) {
  .topbar {
    position: relative;
  }
}
