:root {
  --bg: #0b0b0f;
  --panel: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --accent: #ff2d2d; /* red accent */
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  background: radial-gradient(
      1200px 600px at 20% 10%,
      rgba(255, 45, 45, 0.22),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 80% 0%,
      rgba(80, 140, 255, 0.16),
      transparent 60%
    ),
    var(--bg);
  color: var(--text);
}

a {
  color: inherit;
}
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}
.accent {
  color: var(--accent);
}
.small {
  font-size: 13px;
  color: var(--muted);
}
.lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 62ch;
}
.note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(11, 11, 15, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(255, 45, 45, 0.92),
    rgba(255, 255, 255, 0.1)
  );
  display: grid;
  place-items: center;
  font-family: Montserrat, system-ui;
  font-weight: 800;
}
.brand__name {
  font-family: Montserrat, system-ui;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.brand--footer .brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  padding: 10px 12px;
  border-radius: 12px;
  transition: 0.18s ease;
}
.nav__link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.nav__link.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.nav__cta {
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.nav__cta:hover {
  border-color: rgba(255, 255, 255, 0.26);
}

.navToggle {
  display: none;
  width: 46px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}
.navToggle span {
  display: block;
  height: 2px;
  margin: 6px 10px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 2px;
}

.hero {
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    700px 420px at 70% 30%,
    rgba(255, 255, 255, 0.1),
    transparent 60%
  );
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  padding: 56px 18px 26px;
  position: relative;
}
.hero__copy h1 {
  font-family: Montserrat, system-ui;
  font-size: 48px;
  line-height: 1.06;
  margin: 12px 0 12px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.86);
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: 0.18s ease;
  cursor: pointer;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 45, 45, 0.25);
}
.btn--primary:hover {
  transform: translateY(-1px);
  filter: saturate(1.06);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.09);
}
.btn--small {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}
.trust__item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 12px;
}
.trust__item strong {
  display: block;
  font-family: Montserrat, system-ui;
}
.trust__item span {
  font-size: 13px;
  color: var(--muted);
}

.hero__card {
  align-self: stretch;
}
.mock {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.mock__top {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}
.mock__body {
  padding: 18px;
}
.mock__body h3 {
  margin: 0 0 10px;
  font-family: Montserrat, system-ui;
}
.checklist {
  margin: 0 0 14px;
  padding-left: 18px;
  color: var(--muted);
}
.checklist li {
  margin: 6px 0;
}

.section {
  padding: 44px 0;
}
.section__head {
  margin-bottom: 16px;
}
.section__head h2 {
  font-family: Montserrat, system-ui;
  margin: 0 0 8px;
  font-size: 30px;
}
.section__head p {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}
.section--dark {
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.card h3 {
  margin: 0 0 8px;
  font-family: Montserrat, system-ui;
}
.card p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.6;
}
.textLink {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.bullets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 16px;
}
.bullets--tight {
  grid-template-columns: repeat(2, 1fr);
}
.bullet {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 12px;
  color: rgba(255, 255, 255, 0.88);
}

.cta {
  margin-top: 18px;
  background: linear-gradient(
    135deg,
    rgba(255, 45, 45, 0.2),
    rgba(255, 255, 255, 0.06)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cta--light {
  background: rgba(255, 255, 255, 0.06);
}
.cta__copy h3 {
  margin: 0 0 6px;
  font-family: Montserrat, system-ui;
}
.cta__copy p {
  margin: 0;
  color: var(--muted);
}
.cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pageHero {
  padding: 42px 0 12px;
}
.pageHero h1 {
  font-family: Montserrat, system-ui;
  font-size: 40px;
  margin: 0 0 10px;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  align-items: start;
  margin: 18px 0;
}
.panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 16px;
}
.panel--tall {
  padding: 18px;
}
.list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.list li {
  margin: 8px 0;
}

.form {
  display: grid;
  gap: 12px;
}
/* ===== Dark dropdown style ===== */
.field select {
  color: #fff;
  background-color: #111;
}

.field select option {
  color: #fff;
  background-color: #111;
}


}
.field label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  outline: none;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.hint {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.contactCard {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 14px;
}
.contactCard a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0 18px;
}
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  color: rgba(255, 255, 255, 0.86);
}
.chip.is-active {
  border-color: rgba(255, 45, 45, 0.55);
  color: #fff;
}
.anchorTitle {
  margin: 26px 0 10px;
  font-family: Montserrat, system-ui;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.shot {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.footer {
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.6fr;
  gap: 16px;
  align-items: start;
}
.footer__links {
  display: grid;
  gap: 8px;
}
.footer__links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}
.footer__links a:hover {
  color: #fff;
}

@media (max-width: 920px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .bullets {
    grid-template-columns: 1fr 1fr;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .hero__copy h1 {
    font-size: 40px;
  }
}

@media (max-width: 720px) {
  .navToggle {
    display: inline-block;
  }
  .nav {
    position: absolute;
    right: 18px;
    top: 62px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(11, 11, 15, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 10px;
    width: min(320px, calc(100vw - 36px));
    box-shadow: var(--shadow);
  }
  .nav.is-open {
    display: flex;
  }
  .nav__link {
    width: 100%;
  }
}
/* ==== FORCE dropdown readability (fix white-on-white) ==== */
.field select {
  color: #111 !important;
  background-color: #fff !important;
}

.field select option,
.field select optgroup {
  color: #111 !important;
  background-color: #fff !important;
}
