:root {
  color-scheme: dark light;
  font-family: "Miranda Sans", sans-serif;



  --color-bg: #05090f;
  --color-surface: #0f1720;
  --color-text: #f8fafc;
  --color-muted: #94a3b8;
  --color-accent: #e31b23;
  --color-bg-gradient: radial-gradient(circle at top, rgba(227, 27, 35, 0.16), transparent 30%),
    linear-gradient(180deg, #05090f 0%, #08121d 58%, #0f1720 100%);
  --navbar-bg: rgba(5, 9, 15, 0.96);
  --footer-bg: #060a11;
  --link-color: rgba(255,255,255,.82);
  --accent-soft: rgba(227, 27, 35, 0.16);
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.28);
}

body.light-mode {
  --color-bg: #f8fafc;
  --color-surface: #ffffff;
  --color-text: #0f1720;
  --color-muted: #6b7280;
  --color-accent: #b91c1c;
  --color-bg-gradient: radial-gradient(circle at top, rgba(227, 27, 35, 0.08), transparent 30%),
    linear-gradient(180deg, #f8fafc 0%, #eef2ff 58%, #ffffff 100%);
  --navbar-bg: rgba(255, 255, 255, 0.95);
  --footer-bg: #f1f5f9;
  --link-color: rgba(15, 23, 34, .85);
  --accent-soft: rgba(227, 27, 35, 0.08);
  --shadow-soft: 0 20px 48px rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--color-bg-gradient);
  color: var(--color-text);
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }
.navbar {
  background: #ffffff;
  height: 84px;
}
.navbar .nav-link, .navbar .dropdown-toggle, .navbar-brand {
  color: #0f1720 !important;
  font-weight: 600;
  text-transform: uppercase;

  letter-spacing: 0.04em;
}

.navbar .nav-link:hover, .navbar .nav-link.active { color: #0f1720; }
body.light-mode .navbar { background: #0b1220; }
body.light-mode .navbar .nav-link, body.light-mode .navbar .dropdown-toggle, body.light-mode .navbar-brand { color: #fff !important; }
body.light-mode .navbar .nav-link:hover, body.light-mode .navbar .nav-link.active { color: #fff; }
body.light-mode .dropdown-menu { background: #ffffff; color: #0f1720; border-color: rgba(15,23,34,.12); }
body.light-mode .dropdown-item { color: rgba(15,23,34,.85); }
body.light-mode .dropdown-item:hover, body.light-mode .dropdown-item:focus { color: #0f1720; background: rgba(15,23,34,.05); }
.navbar-brand .logo { height: 40px; width: auto; }
.navbar-toggler-icon { filter: invert(1); }
body.light-mode .navbar-toggler-icon { filter: invert(1); }
.hero-banner { background-color: #0b1220; }
.hero-banner h1, .hero-banner .lead, .hero-banner .btn, .hero-banner .badge { color: #fff !important; }
.hero-banner .btn-outline { color: #fff; border-color: rgba(255,255,255,.4); }
.hero-banner .btn-outline:hover { background: rgba(255,255,255,.12); }
body.light-mode .hero-banner { background-color: #0b1220; }
body.light-mode .hero-banner h1, body.light-mode .hero-banner .lead, body.light-mode .hero-banner .btn, body.light-mode .hero-banner .badge { color: #fff !important; }
.hero-banner {
  position: relative;
  min-height: 36vh;
  display: grid;
  place-items: center;
  padding: 4rem 0;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-banner .container {
  position: relative;
  z-index: 1;
}

.swiper {
  width: 100%;
  padding-bottom: 1.5rem;
}
.swiper-wrapper {
  display: flex;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
}
.swiper-button-prev,
.swiper-button-next {
  color: #fff;
}
body.light-mode .swiper-button-prev,
body.light-mode .swiper-button-next {
  color: #0f1720;
}
.swiper-pagination-bullet {
  background: rgba(255,255,255,.6);
}
body.light-mode .swiper-pagination-bullet {
  background: rgba(15,23,34,.6);
}
.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 9, 15, 0.36), rgba(5, 9, 15, 0.86));
}
.hero-banner .container { position: relative; z-index: 1; }
.hero-copy h1 { font-size: clamp(2.8rem, 5vw, 4.4rem); line-height: 1.05; margin-bottom: 1rem; }
.hero-copy .lead { color: var(--color-muted); max-width: 720px; margin-bottom: 1.75rem; }
.btn-primary { background-color: var(--color-accent); border-color: var(--color-accent); }
.btn-outline { color: var(--color-text); border-color: rgba(255,255,255,.3); }
body.light-mode .btn-outline { border-color: rgba(15,23,34,.15); }
.btn-outline:hover { background: rgba(255,255,255,.08); }
.theme-toggle { min-width: 45px; display: inline-flex; align-items: center; justify-content: center; color: var(--color-text); border: 1px solid rgba(255,255,255,.25); border-radius: .55rem; padding: .35rem .55rem; }
.theme-toggle .theme-icon { font-size: 1.1rem; color: #fff; }
body.light-mode .theme-toggle { color: var(--color-text); border-color: rgba(15,23,34,.18); }
body.light-mode .theme-toggle .theme-icon { color: #fff; }
body.light-mode .card-surface,
body.light-mode .feature-card,
body.light-mode .preview-panel,
body.light-mode .faq-list details,
body.light-mode .card,
body.light-mode .step-card {
  background: rgba(255,255,255,.92);
  border-color: rgba(15,23,34,.12);
  color: var(--color-text);
}

body:not(.light-mode) .card-surface,
body:not(.light-mode) .feature-card,
body:not(.light-mode) .preview-panel,
body:not(.light-mode) .faq-list details,
body:not(.light-mode) .card,
body:not(.light-mode) .step-card {
  color: #fff;
}

body:not(.light-mode) .card-surface p,
body:not(.light-mode) .feature-card p,
body:not(.light-mode) .preview-panel p,
body:not(.light-mode) .step-card p,
body:not(.light-mode) .faq-list p,
body:not(.light-mode) .footer-grid p {
  color: #fff !important;
}

.section { padding: 4rem 0; }
.section-header { text-align: center; margin-bottom: 2.5rem; }
.eyebrow { display: inline-block; margin-bottom: 0.75rem; color: var(--color-accent); letter-spacing: 0.2em; text-transform: uppercase; font-size: .85rem; }
.section-header h2 { font-size: clamp(2rem, 3vw, 3rem); margin: 0; }
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card-surface { background: rgba(15, 23, 34, 0.94); border: 1px solid rgba(255,255,255,.08); border-radius: 1.2rem; box-shadow: var(--shadow-soft); padding: 1.75rem; }
.card-surface h3, .card-surface h4 { margin-bottom: 0.9rem; }
.card-surface p, .feature-card p, .preview-panel p, .step-card p, .footer-grid p, .faq-list p { color: var(--color-muted); }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.2rem; }
.feature-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,.08); border-radius: 1rem; padding: 1.5rem; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 1rem; }
.counter-card { padding: 2rem; border-radius: 1rem; background: linear-gradient(180deg, rgba(227,27,35,.18), rgba(255,255,255,.04)); border: 1px solid rgba(255,255,255,.08); text-align: center; }
.counter-card h2 { margin-bottom: .5rem; font-size: 2.5rem; }
.preview-panel { border-radius: 1.25rem; overflow: hidden; position: relative; min-height: 220px; background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); padding: 2rem; }
.preview-panel::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at top, rgba(227,27,35,.16), transparent 25%); }
.preview-panel > * { position: relative; z-index: 1; }
@media (min-width: 992px) {
  .navbar .dropdown:hover>.dropdown-menu,
  .navbar .dropdown:focus-within>.dropdown-menu,
  .navbar .dropdown .dropdown-menu:hover {
    display: block;
  }
  .navbar .dropdown-toggle::after { transition: transform .2s ease; }
  .navbar .dropdown.show>.dropdown-toggle::after { transform: rotate(180deg); }
}
.dropdown-menu { margin-top: 0.25rem; }
.footer-logo { height: 42px; width: auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 2rem; }
footer { background: #060a11; color: #94a3b8; }
footer a { color: #94a3b8; }
.image-card { border-radius: 1rem; overflow: hidden; background: rgba(15,23,34,.94); border: 1px solid rgba(255,255,255,.08); }
body.light-mode .image-card { background: rgba(255,255,255,.92); border-color: rgba(15,23,34,.12); }
.image-card img { display: block; width: 100%; height: auto; }
.img-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 1.25rem; }
form label { display: grid; gap: .5rem; color: var(--color-text); font-weight: 500; }
form input, form textarea { width: 100%; padding: 0.95rem 1rem; border-radius: 0.85rem; border: 1px solid rgba(255,255,255,.14); background: rgba(15,23,34,.96); color: var(--color-text); }
body.light-mode form input, body.light-mode form textarea { background: rgba(255,255,255,.9); border-color: rgba(15,23,34,.15); color: var(--color-text); }
form textarea { resize: vertical; }
@media(max-width: 991px) {
  .hero-banner { padding: 3rem 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  padding: 1.75rem;
  border-radius: 1.25rem;
  background: rgba(15, 23, 34, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.card h3,
.card h4,
.feature-card h4 {
  margin: 0 0 0.75rem;
}

.card p,
.feature-card p,
.preview-panel p,
.step-card p,
.footer-grid p,
.faq-list p {
  color: var(--color-muted);
  line-height: 1.8;
  margin: 0;
}

.card-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--color-text);
  font-weight: 600;
}

.card-link-block {
  display: block;
  min-height: 100%;
  color: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card-link-block:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
}

.gallery-group {
  margin-top: 2rem;
}

.gallery-group h3 {
  margin-bottom: 0.75rem;
}

.gallery-subtext {
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  padding: 1.75rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.process-grid {
  gap: 1rem;
}

.step-card {
  display: grid;
  gap: 1rem;
}

.step-badge {
  width: fit-content;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.counter-card {
  padding: 2rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(227, 27, 35, 0.18), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.counter-card h2 {
  margin: 0 0 0.5rem;
  font-size: 2.75rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list details {
  background: rgba(15, 23, 34, 0.92);
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem;
}

.faq-list summary {
  font-weight: 700;
  cursor: pointer;
}

.text-muted {
  color: var(--color-muted);
}





label {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  color: var(--color-text);
  font-weight: 500;
}

input,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 23, 34, 0.96);
  color: #fff;
}

textarea {
  resize: vertical;
}

form button {
  margin-top: 0.5rem;
}

footer {
  background: #060a11;
  color: var(--color-muted);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

footer h4,
footer h5 {
  margin: 0 0 1rem;
  color: #fff;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

footer ul li a {
  color: var(--color-muted);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2rem;
  padding-top: 1.25rem;
  text-align: center;
}

@media (max-width: 980px) {
  .hero-content,
  .footer-grid,
  .feature-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .nav-links {
    justify-content: center;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 6vw, 3rem);
  }

  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 2.5rem 0;
  }
}
