:root {
  --bg: #06030c;
  --bg-alt: #120921;
  --accent: #ff6b3d;
  --accent-soft: rgba(255, 107, 61, 0.22);
  --accent-strong: #ff9163;
  --text: rgba(248, 245, 255, 0.96);
  --muted: rgba(206, 204, 230, 0.72);
  --surface: rgba(25, 14, 33, 0.88);
  --border: rgba(255, 115, 76, 0.2);
  --gradient: radial-gradient(circle at top left, rgba(255, 107, 61, 0.16), transparent 58%),
    radial-gradient(circle at bottom right, rgba(110, 78, 255, 0.18), transparent 52%),
    linear-gradient(140deg, rgba(9, 5, 20, 0.95), rgba(4, 2, 12, 0.98));
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Inter", "Helvetica Neue", sans-serif;
  --font-ui: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--text);
}

h5,
h6 {
  font-weight: 700;
}

p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

.wrapper {
  position: relative;
  overflow-x: hidden;
}

.background {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--gradient);
}

nav {
  width: min(1120px, 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.02rem;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(255, 107, 61, 0.28);
  background: linear-gradient(135deg, rgba(255, 107, 61, 0.72), rgba(110, 78, 255, 0.6));
  padding: 6px;
  object-fit: cover;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
  color: var(--text);
  letter-spacing: 0.1em;
}

.brand-text small {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.75rem;
}

nav a {
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

nav a:hover,
nav a.active {
  color: var(--text);
  transform: translateY(-1px);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}


.login-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.login-trigger {
  background: transparent;
  border: none;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.4rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.login-trigger:hover,
.login-trigger:focus {
  color: var(--text);
  outline: none;
}

.login-trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.header-login {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  display: grid;
  gap: 0.75rem;
  background: rgba(9, 22, 38, 0.95);
  border: 1px solid rgba(255, 115, 76, 0.35);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 20px 44px rgba(4, 10, 24, 0.55);
  width: clamp(220px, 26vw, 280px);
  z-index: 100;
}

.header-login[hidden] {
  display: none !important;
}

.header-login input {
  background: rgba(7, 17, 34, 0.88);
  border: 1px solid rgba(255, 115, 76, 0.25);
  border-radius: 12px;
  padding: 0.45rem 0.75rem;
  color: var(--text);
  font: inherit;
  width: 100%;
}

.header-login input::placeholder {
  color: var(--muted);
}

.header-login button {
  background: var(--accent);
  color: #021214;
  border: none;
  border-radius: 12px;
  padding: 0.45rem 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-login button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(255, 107, 61, 0.3);
}

@media (max-width: 720px) {
  .nav-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .login-wrapper {
    width: 100%;
    justify-content: flex-end;
  }
  .header-login {
    position: static;
    width: 100%;
  }
}

.main {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.hero {
  padding: 5rem 0 3.5rem;
  display: grid;
  gap: 3.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero--video {
  position: relative;
  display: flex;
  align-items: center;
  padding: clamp(5rem, 12vw, 8rem) 0;
  min-height: clamp(540px, 78vh, 780px);
  overflow: hidden;
}

.hero--video .hero-content {
  position: relative;
  width: min(1120px, 92vw);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  z-index: 2;
}

.hero--video h1 {
  font-size: clamp(3rem, 8vw, 4.4rem);
  line-height: 1.05;
}

.hero--video p {
  max-width: 520px;
  color: rgba(248, 245, 255, 0.9);
}

.hero--video .hero-badges {
  margin-top: 0.5rem;
}

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

.hero--video .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.hero--video .hero-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(4, 8, 20, 0.82) 0%, rgba(4, 8, 20, 0.65) 52%, rgba(4, 8, 20, 0.15) 85%);
  mix-blend-mode: multiply;
}

.hero--video .hero-actions .button.secondary {
  background: rgba(4, 12, 24, 0.6);
}

.hero--video .hero-actions .button.primary {
  box-shadow: 0 24px 48px rgba(255, 107, 61, 0.34);
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: 0.015em;
  margin-bottom: 1.5rem;
}

.hero p {
  color: rgba(206, 204, 230, 0.88);
  font-size: 1.05rem;
  line-height: 1.75;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(7, 18, 36, 0.8);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1.5rem;
}

.badge span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(255, 107, 61, 0.55);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-badges a,
.hero-badges span {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 115, 76, 0.28);
  background: rgba(255, 107, 61, 0.12);
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.hero-badges a:hover,
.hero-badges a:focus {
  color: var(--text);
  border-color: var(--accent);
  background: rgba(255, 107, 61, 0.2);
}

.button {
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: var(--accent);
  color: #021214;
  box-shadow: 0 24px 44px rgba(255, 107, 61, 0.32);
}

.button.secondary {
  border-color: var(--border);
  color: var(--text);
  background: rgba(7, 17, 34, 0.92);
}

.button:hover {
  transform: translateY(-2px);
}

.hero-visual img {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 40px 80px rgba(120, 96, 255, 0.32));
}

@media (max-width: 960px) {
  .hero--video {
    align-items: flex-end;
    padding: clamp(4rem, 10vw, 6rem) 0 4rem;
  }
  .hero--video .hero-content {
    gap: 1.75rem;
  }
  .hero--video p {
    max-width: 600px;
  }
}

@media (max-width: 720px) {
  .hero--video {
    min-height: 520px;
    align-items: flex-end;
    padding-bottom: 3.5rem;
  }
  .hero--video .hero-content {
    gap: 1.5rem;
  }
  .hero--video .hero-badges {
    display: grid;
    gap: 0.65rem;
  }
  .hero--video .hero-media-overlay {
    background: linear-gradient(180deg, rgba(4, 8, 20, 0.9) 0%, rgba(4, 8, 20, 0.65) 45%, rgba(4, 8, 20, 0.25) 85%);
  }
}

.mega-metric {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.metric-card {
  padding: 1.75rem;
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.metric-card h3 {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.metric-card .value {
  font-size: 1.9rem;
  font-weight: 700;
}

.metric-card .label {
  color: var(--muted);
  line-height: 1.6;
}

.section {
  padding: 4.5rem 0;
  border-top: 1px solid rgba(255, 115, 76, 0.14);
}

.section-header {
  margin-bottom: 2.5rem;
  max-width: 700px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--muted);
  line-height: 1.7;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.85rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
}

.card h3 {
  font-size: 1.2rem;
}

.card p {
  color: var(--muted);
  line-height: 1.6;
}

.list {
  display: grid;
  gap: 0.65rem;
  color: var(--muted);
}

.list li {
  list-style: none;
  padding-left: 1.4rem;
  position: relative;
}

.list li::before {
  content: "";
  position: absolute;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  left: 0;
  top: 0.45rem;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(255, 145, 99, 0.4);
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.image-card {
  background: rgba(10, 25, 42, 0.7);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  display: block;
}

.image-card div {
  padding: 1.4rem;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: rgba(8, 18, 32, 0.86);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
  display: grid;
  gap: 1rem;
}

.testimonial p {
  color: var(--muted);
  line-height: 1.7;
}

.testimonial strong {
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.timeline {
  display: grid;
  gap: 1.25rem;
}

.timeline-step {
  border-left: 2px solid var(--accent-soft);
  padding-left: 1.4rem;
}

.timeline-step h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.timeline-step span {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.cta {
  text-align: center;
  padding: 4rem 2rem;
  margin-bottom: 5rem;
  background: linear-gradient(140deg, rgba(255, 107, 61, 0.16), rgba(108, 82, 255, 0.14));
  border-radius: 28px;
  border: 1px solid rgba(255, 115, 76, 0.26);
}

.cta h2 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  margin-bottom: 1.5rem;
}

.footer {
  border-top: 1px solid rgba(255, 115, 76, 0.14);
  padding: 2.5rem 0 3rem;
  color: rgba(162, 186, 215, 0.6);
}

.footer .foot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  width: min(1120px, 92vw);
  margin: 0 auto;
}

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

.footer a:hover {
  color: var(--accent);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2rem;
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
}

form {
  display: grid;
  gap: 1.2rem;
}

label {
  display: grid;
  gap: 0.6rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 115, 76, 0.24);
  background: rgba(8, 18, 35, 0.88);
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 140px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}

.resource-card {
  background: rgba(9, 22, 38, 0.82);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.75rem;
  display: grid;
  gap: 1.2rem;
}

.resource-card a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.resource-card a:hover {
  text-decoration: underline;
}

.badge-inline {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(10, 24, 44, 0.8);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  nav {
    flex-direction: column;
    gap: 1.5rem;
  }
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero {
    padding-top: 3.5rem;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-badges {
    justify-content: center;
    text-align: center;
  }
  .hero-visual img {
    max-width: 100%;
  }
}
.resource-grid.location-directory {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.location-region {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.location-region .region-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.location-region .region-summary {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.region-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.region-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
  text-decoration: none;
  background: rgba(9, 22, 38, 0.65);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.region-nav a:hover,
.region-nav a:focus {
  color: var(--text);
  border-color: var(--accent);
  background: rgba(255, 107, 61, 0.14);
}

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

.location-list li {
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(255, 115, 76, 0.15);
}

.location-list li:last-child {
  border-bottom: none;
}

.location-list strong {
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.location-list span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}
