:root {
  --silver: #c8d4e0;
  --silver-light: #e4ecf4;
  --silver-dark: #8a9aaa;
  --purple: #6b3fa0;
  --purple-light: #8b5fc0;
  --purple-dim: rgba(107, 63, 160, 0.15);
  --navy: #070b14;
  --navy-mid: #0c1220;
  --navy-card: #101828;
  --navy-card2: #131f30;
  --border: rgba(200, 212, 224, 0.12);
  --border-p: rgba(107, 63, 160, 0.3);
  --text: #d8e4f0;
  --text-muted: #6a7d90;
  --white: #ffffff;
  --red: #b03040;
  --red-bright: #d04050;
  --radius: 2px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--navy);
  color: var(--text);
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul,
ol {
  list-style: none;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 14px;
}
.section-tag::before,
.section-tag::after {
  content: "◆";
  font-size: 6px;
  color: var(--purple-light);
  opacity: 0.6;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4.5vw, 54px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.section-title em {
  font-style: italic;
  color: var(--silver);
}
.section-sub {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 500px;
  margin-bottom: 48px;
  line-height: 1.75;
}
.silver-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 16px 0 44px;
}
.silver-rule::before,
.silver-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.silver-rule-diamond {
  width: 8px;
  height: 8px;
  background: var(--silver-dark);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}
.btn-silver {
  background: linear-gradient(135deg, var(--silver-light), var(--silver-dark));
  color: var(--navy);
}
.btn-silver:hover {
  background: linear-gradient(135deg, #fff, var(--silver-light));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 212, 224, 0.2);
}
.btn-outline {
  background: transparent;
  border: 1px solid rgba(200, 212, 224, 0.35);
  color: var(--silver);
}
.btn-outline:hover {
  border-color: var(--silver);
  background: rgba(200, 212, 224, 0.06);
  transform: translateY(-2px);
}
.btn-purple {
  background: var(--purple);
  color: var(--white);
}
.btn-purple:hover {
  background: var(--purple-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107, 63, 160, 0.4);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
}
.btn-sm {
  padding: 8px 18px;
  font-size: 11px;
}
.btn-full {
  width: 100%;
  justify-content: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}
section {
  padding: 96px 40px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7, 11, 20, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
#navbar::before,
#navbar::after {
  display: none;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-emblem {
  width: 42px;
  height: 42px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-emblem::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200, 212, 224, 0.3);
  transform: rotate(45deg);
}
.logo-emblem::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(200, 212, 224, 0.15);
  transform: rotate(45deg);
}
.logo-emblem i {
  font-size: 16px;
  color: var(--silver);
  position: relative;
  z-index: 1;
}
.logo-text-wrap .brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 2px;
  display: block;
  line-height: 1;
  font-weight: 600;
}
.logo-text-wrap .tagline {
  font-size: 8px;
  color: var(--text-muted);
  letter-spacing: 3.5px;
  text-transform: uppercase;
}
.nav-links {
  display: none !important;
}
.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nav-cta::before,
.nav-cta::after {
  display: none;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--text);
  display: block;
  transition: 0.3s;
}
#mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--navy-card);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  padding: 20px 24px;
  gap: 4px;
  z-index: 999;
}
#mobile-menu.open {
  display: flex;
}
#mobile-menu a {
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-btns {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}

.hero-bg-full {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(
      170deg,
      rgba(7, 11, 20, 0.72) 0%,
      rgba(7, 11, 20, 0.55) 50%,
      rgba(10, 14, 28, 0.8) 100%
    ),
    url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  filter: saturate(1.2);
}
.hero-bg-svg {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero-bg-svg svg {
  width: min(680px, 90vw);
  height: min(680px, 90vw);
}
.hero-content-centered {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 24px;
  justify-content: center;
}
.hero-eyebrow span {
  width: 28px;
  height: 1px;
  background: var(--purple-light);
}
.hero-content-centered h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(52px, 7.5vw, 96px);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 600;
  letter-spacing: 1px;
}
.hero-content-centered h1 em {
  font-style: italic;
  color: var(--silver);
  display: block;
}
.hero-content-centered p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
}
.hero-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 240px;
  margin: 0 auto 44px;
}
.hero-divider::before,
.hero-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.hero-divider-gem {
  width: 6px;
  height: 6px;
  background: var(--silver-dark);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  color: var(--silver);
  font-weight: 600;
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}
.hero-badge-float {
  position: absolute;
  bottom: 32px;
  right: 40px;
  z-index: 3;
  background: rgba(7, 11, 20, 0.92);
  border: 1px solid var(--border);
  border-left: 2px solid var(--silver-dark);
  padding: 14px 20px;
  font-size: 12px;
  color: var(--text-muted);
  max-width: 250px;
  text-align: left;
}
.hero-badge-float strong {
  display: block;
  color: var(--white);
  margin-bottom: 4px;
  font-size: 13px;
}

#services {
  background: var(--navy-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--navy-card2);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover {
  background: #0f1828;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  font-weight: 600;
  color: rgba(200, 212, 224, 0.06);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
  transition: color 0.3s;
}
.service-card:hover .service-num {
  color: rgba(107, 63, 160, 0.12);
}
.service-icon {
  width: 46px;
  height: 46px;
  border: 1px solid var(--border-p);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--purple-light);
  margin-bottom: 20px;
  transition: all 0.3s;
}
.service-card:hover .service-icon {
  border-color: var(--purple-light);
  background: var(--purple-dim);
}
.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 600;
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

#about {
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about-card {
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--navy-card);
  transition: border-color 0.3s;
}
.about-card:hover {
  border-color: rgba(200, 212, 224, 0.22);
}
.about-img-wrap {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-img-ph {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(160deg, var(--navy-card2), #0a0e1c);
}
.about-img-ph i {
  font-size: 32px;
  color: var(--silver-dark);
  opacity: 0.4;
}
.about-img-ph span {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  padding: 0 12px;
}
.about-img-ph code {
  font-size: 11px;
  color: var(--purple-light);
  background: rgba(107, 63, 160, 0.1);
  padding: 3px 8px;
}
.about-body {
  padding: 26px;
  border-top: 1px solid var(--border);
}
.about-body h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 600;
}
.about-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

#testimonials {
  background: var(--navy-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.slider-wrap {
  position: relative;
  overflow: hidden;
}
.slides {
  display: flex;
  transition: transform 0.5s ease;
}
.slide {
  flex: 0 0 100%;
}
.slide-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.review-card {
  border: 1px solid var(--border);
  padding: 30px;
  background: var(--navy-card2);
  position: relative;
}
.review-card::before {
  content: "\201C";
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 80px;
  color: rgba(107, 63, 160, 0.1);
  line-height: 1;
}
.review-stars {
  color: var(--silver);
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.review-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 38px;
  height: 38px;
  border: 1px solid var(--silver-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--silver);
  font-family: "Cormorant Garamond", serif;
  flex-shrink: 0;
}
.reviewer-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
}
.reviewer-loc {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
}
.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.slider-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover {
  border-color: var(--silver);
  color: var(--silver);
}
.slider-dots {
  display: flex;
  gap: 8px;
}
.dot {
  width: 6px;
  height: 6px;
  background: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s;
}
.dot.active {
  background: var(--silver);
}

#slots {
}
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.slot-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--navy-card2);
  transition: border-color 0.3s;
}
.slot-card:hover {
  border-color: rgba(200, 212, 224, 0.3);
}
.slot-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.5s,
    filter 0.4s;
}
.slot-thumb-ph {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(160deg, #101828, #070b14);
  color: var(--text-muted);
  transition: filter 0.4s;
}
.slot-thumb-ph i {
  font-size: 36px;
  color: var(--silver-dark);
  opacity: 0.3;
}
.slot-thumb-ph span {
  font-size: 11px;
  letter-spacing: 1px;
}
.slot-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 11, 20, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s;
}
.slot-card:hover .slot-overlay {
  opacity: 1;
}
.slot-card:hover .slot-thumb {
  transform: scale(1.07);
  filter: brightness(0.6);
}
.slot-card:hover .slot-thumb-ph {
  filter: brightness(0.55);
}
.slot-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(7, 11, 20, 0.95), transparent);
  padding: 28px 12px 12px;
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
}
.slot-provider {
  font-size: 10px;
  color: var(--silver-dark);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

#faq {
  background: var(--navy-card);
  border-top: 1px solid var(--border);
}
.faq-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: start;
}
.faq-sidebar p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 12px;
}
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  gap: 12px;
  transition: color 0.2s;
}
.faq-q:hover {
  color: var(--silver-light);
}
.faq-q i {
  color: var(--purple-light);
  font-size: 12px;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-q i {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-a {
  max-height: 500px;
}
.faq-a-inner {
  padding: 0 0 20px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}
.faq-a-inner a {
  color: var(--purple-light);
}

#footer {
  background: #030610;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, 1fr);
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 14px 0 20px;
  line-height: 1.7;
  max-width: 260px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  transition: all 0.2s;
}
.social-btn:hover {
  border-color: var(--silver);
  color: var(--silver);
}
.footer-col h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  color: var(--text-muted);
  font-size: 13px;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--silver);
}

.footer-rg-strip {
  border-left: 2px solid var(--red-bright);
  padding: 28px 0 28px 24px;
  margin-left: -24px;
  border-bottom: 1px solid var(--border);
}
.rg-headline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.rg-headline i {
  color: var(--red-bright);
  font-size: 18px;
}
.rg-headline strong {
  font-size: 16px;
  color: var(--white);
}
.rg-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}
.rg-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color 0.2s;
  color: inherit;
  text-decoration: none;
}
.rg-card:hover {
  border-color: rgba(200, 212, 224, 0.2);
}
.rg-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.rg-card strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
}
.rg-card span {
  font-size: 12px;
  color: var(--text-muted);
}
.rg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.rg-tag {
  padding: 7px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.rg-tag:hover {
  border-color: var(--silver);
  color: var(--silver);
}
.rg-note {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 900px;
}
.rg-note strong {
  color: var(--text);
}
.rg-note a {
  color: var(--purple-light);
}

.footer-badges-row {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
}
.footer-badges-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-badges-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.badges-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.badge {
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
}
.badge.green {
  border-color: #2ecc71;
  color: #2ecc71;
}
.badge.blue {
  border-color: #3498db;
  color: #3498db;
}
.badge.silver {
  border-color: var(--silver-dark);
  color: var(--silver);
}
.badge-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.badge-logo-link:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.badge-logo-img {
  height: 52px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  display: block;
}
@media (max-width: 640px) {
  .badges-group--logos {
    justify-content: center;
  }
  .badge-logo-img {
    height: 46px;
  }
}
.payment-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pay-badge {
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-legal {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.footer-legal p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 8px;
}
.footer-legal a {
  color: var(--purple-light);
}
.footer-reg-no {
  font-family: "Courier New", monospace;
  font-size: 12px;
  background: rgba(107, 63, 160, 0.1);
  border: 1px solid rgba(107, 63, 160, 0.25);
  padding: 1px 6px;
  color: var(--purple-light);
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: var(--silver);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  padding: 20px;
}
.modal-overlay.open {
  display: flex;
}
.modal-box {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--silver-dark);
  padding: 48px 44px;
  max-width: 460px;
  width: 100%;
  position: relative;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover {
  border-color: var(--silver);
  color: var(--silver);
}
.modal-box h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  color: var(--white);
  margin-bottom: 4px;
  font-weight: 600;
}
.modal-box > p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-group input {
  width: 100%;
  padding: 11px 14px;
  background: var(--navy);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus {
  border-color: var(--silver-dark);
}
.form-group input::placeholder {
  color: var(--text-muted);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.form-check input[type="checkbox"] {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  accent-color: var(--purple);
  flex-shrink: 0;
}
.form-check label {
  font-size: 12px;
  color: var(--text-muted);
}
.form-check a {
  color: var(--purple-light);
}
.modal-switch {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
}
.modal-switch a {
  color: var(--purple-light);
  cursor: pointer;
  font-weight: 700;
}
.modal-success {
  text-align: center;
  padding: 20px 0;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.modal-success.show {
  display: flex;
}
.modal-success .success-icon {
  width: 60px;
  height: 60px;
  border: 1px solid #2ecc71;
  background: rgba(46, 204, 113, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #2ecc71;
}
.modal-success h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  color: var(--white);
  font-weight: 600;
}
.modal-success p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 290px;
  line-height: 1.65;
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #050912;
  border-top: 1px solid var(--border);
  padding: 16px 28px;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  transform: translateY(0);
  transition: transform 0.4s ease;
}
#cookie-banner.hidden {
  transform: translateY(110%);
}
#cookie-banner > p {
  flex: 1 1 300px;
  font-size: 13px;
  color: var(--text-muted);
}
#cookie-banner > p a {
  color: var(--purple-light);
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
#cookie-settings-panel {
  display: none;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 4px;
}
#cookie-settings-panel.open {
  display: flex;
}
.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cookie-toggle-row label {
  font-size: 13px;
  color: var(--text);
}
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 21px;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #1a2030;
  border-radius: 21px;
  transition: 0.3s;
}
.toggle-slider::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--purple);
}
.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(17px);
}
.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.35;
  cursor: default;
}

#age-gate {
  position: fixed;
  inset: 0;
  background: rgba(3, 6, 16, 0.97);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(14px);
}
#age-gate.hidden {
  display: none;
}
.age-box {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--silver-dark);
  padding: 56px 48px;
  max-width: 440px;
  width: 90%;
  text-align: center;
}
.age-suit {
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  color: var(--silver);
  margin-bottom: 16px;
  display: block;
}
.age-box h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 600;
}
.age-box p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.65;
}
.age-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

#scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 42px;
  height: 42px;
  background: var(--navy-card);
  border: 1px solid var(--silver-dark);
  color: var(--silver);
  font-size: 14px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 900;
}
#scroll-top.visible {
  display: flex;
}
#scroll-top:hover {
  background: var(--silver-dark);
  color: var(--navy);
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .nav-cta .btn-outline {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  #navbar {
    padding: 0 20px;
  }
}
@media (max-width: 680px) {
  section {
    padding: 64px 20px;
  }
  #hero {
    padding: 110px 20px 60px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    padding: 0 20px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    padding: 32px 0;
  }
  .footer-rg-strip {
    padding-left: 16px;
    margin-left: -16px;
  }
  .modal-box {
    padding: 28px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .age-box {
    padding: 36px 20px;
  }
  .hero-badge-float {
    display: none;
  }
}
