:root {
  --bg: #0f1117;
  --bg2: #161b27;
  --bg3: #1e2535;
  --card: #1a2032;
  --border: #2a3347;
  --accent: #4f8ef7;
  --accent2: #7c5cbf;
  --teal: #2dd4bf;
  --text: #e2e8f0;
  --muted: #8892a4;
  --gold: #f59e0b;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  margin: 0;
}
h1,
h2,
h3 {
  font-family: "DM Serif Display", serif;
}

/* ── NAV ── */
.navbar {
  background: rgba(15, 17, 23, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.navbar-brand {
  font-family: "DM Serif Display", serif;
  font-size: 1.2rem;
  color: var(--text) !important;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-icon {
  color: var(--accent);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.nav-link {
  color: var(--muted) !important;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.nav-link:hover {
  color: var(--text) !important;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 60% 40%,
    #1a2840 0%,
    #0f1117 70%
  );
}
.hero-img-wrap {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  overflow: hidden;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: grayscale(30%);
}
.hero-img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, var(--bg) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(79, 142, 247, 0.12);
  border: 1px solid rgba(79, 142, 247, 0.3);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
}
.hero h1 span {
  color: var(--accent);
}
.hero p.sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.btn-hero {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px 34px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-hero:hover {
  background: #3a7de8;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(79, 142, 247, 0.4);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--text);
}
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ── RIBBON ── */
.ribbon {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.ribbon-item {
  color: var(--muted);
  font-size: 0.83rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ribbon-item i {
  color: var(--teal);
  font-size: 1rem;
}

/* ── SECTION HEADERS ── */
.s-label {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}
.s-title {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: #fff;
  margin-bottom: 16px;
}
.s-sub {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 540px;
}

/* ── FEATURE CARDS ── */
.features-section {
  padding: 100px 0;
  background: var(--bg);
}
.fcard {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 26px;
  height: 100%;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.fcard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity: 0;
  transition: opacity 0.25s;
}
.fcard:hover {
  border-color: rgba(79, 142, 247, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}
.fcard:hover::before {
  opacity: 1;
}
.fcard-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(79, 142, 247, 0.1);
  border: 1px solid rgba(79, 142, 247, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 18px;
}
.fcard h5 {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 10px;
}
.fcard p {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.65;
  margin: 0;
}

/* ── STATS ── */
.stats-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 70px 0;
}
.stat-box {
  text-align: center;
}
.stat-n {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  font-family: "DM Serif Display", serif;
}
.stat-n span {
  color: var(--accent);
}
.stat-l {
  color: var(--muted);
  font-size: 0.83rem;
  margin-top: 6px;
}

/* ── ABOUT ── */
.about-section {
  padding: 100px 0;
  background: var(--bg);
}
.about-img {
  border-radius: 16px;
  width: 100%;
  object-fit: cover;
  max-height: 440px;
  filter: brightness(0.85) saturate(0.8);
  border: 1px solid var(--border);
}
.check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.check-item:last-child {
  border-bottom: none;
}
.check-item i {
  color: var(--teal);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.check-item span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ── REVIEWS ── */
.reviews-section {
  background: var(--bg2);
  padding: 100px 0;
}
.rcard {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  height: 100%;
}
.stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 3px;
}
.rname {
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
}
.rcity {
  color: var(--muted);
  font-size: 0.78rem;
}
.rtext {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.65;
  margin: 16px 0 20px;
}
.ravatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}
.ravatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ── DISCLAIMER ── */
.disclaimer {
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 10px;
  padding: 18px 22px;
}
.disclaimer p {
  font-size: 0.82rem;
  color: #a89060;
  margin: 0;
  line-height: 1.6;
}

/* ── CONTACT ── */
.contact-section {
  padding: 80px 0;
  background: var(--bg);
}
.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}
.contact-card .icon {
  color: var(--teal);
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.contact-card .label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-card .val {
  color: var(--text);
  font-size: 0.9rem;
  text-decoration: none;
}

/* ── ABOUT TEXT ── */
.about-text {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
  font-size: 0.93rem;
}

/* ── FOOTER ── */
footer {
  background: #080a10;
  border-top: 1px solid var(--border);
  padding: 30px 0;
  color: var(--muted);
}
.ft-meta {
  font-size: 0.8rem;
  line-height: 1.6;
  margin-top: 6px;
}
.ft-copy {
  font-size: 0.78rem;
  margin: 0;
  color: #555f70;
}
footer a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}
footer a:hover {
  color: var(--text);
}
.ft-brand {
  font-family: "DM Serif Display", serif;
  font-size: 1.1rem;
  color: #fff;
}
.ft-divider {
  display: none;
}

/* ── INNER PAGES ── */
.page-wrap {
  max-width: 720px;
  padding: 60px 24px;
  margin: 0 auto;
}
.page-wrap h1 {
  color: #fff;
  font-size: 1.7rem;
  margin-bottom: 8px;
}
.page-wrap h2 {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: "DM Sans", sans-serif;
}
.page-wrap p,
.page-wrap li {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--muted);
}
.page-wrap a {
  color: var(--accent);
}
.page-nav {
  background: #080a10;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.page-nav a {
  color: var(--text) !important;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 60px 0 50px;
  }
  .hero-img-wrap {
    display: none;
  }
  .features-section,
  .about-section,
  .reviews-section {
    padding: 60px 0;
  }
}
