:root {
  --black: #0a0a0a;
  --near-black: #111113;
  --dark: #1a1a1d;
  --mid: #2c2c30;
  --muted: #6b6b72;
  --light-muted: #9a9aa4;
  --border: rgba(255, 255, 255, 0.08);
  --white: #ffffff;
  --off-white: #f0ede8;
  --cream: #e8e2d9;
  /* --gold: #c9a84c; */
  --gold: #c50909;
  /* --gold-light: #e6c97a; */
  --gold-light: #c80d0a;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --radius: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --ff-display: "Bebas Neue", sans-serif;
  --ff-body: "DM Sans", sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-body);
  background: var(--black);
  color: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}

/* ===== UTILITY ===== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.gold {
  color: var(--gold);
}
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes lineGrow {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.95);
  }
}
@keyframes heroReveal {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes badgePop {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.anim-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.anim-delay-1 {
  transition-delay: 0.1s;
}
.anim-delay-2 {
  transition-delay: 0.2s;
}
.anim-delay-3 {
  transition-delay: 0.3s;
}
.anim-delay-4 {
  transition-delay: 0.4s;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0rem 20px;

  transition:
    background var(--transition),
    padding var(--transition),
    box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
  padding: 0 20px;
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: var(--ff-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--white);
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo span {
  font-size: 10px;
  font-family: var(--ff-body);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}
.nav-links a:hover {
  color: var(--white);
}
.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition:
    background var(--transition),
    transform var(--transition) !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 80px 40px 40px;
}
.mobile-menu.open {
  display: flex;
  animation: fadeIn 0.25s ease;
}
.mobile-menu a {
  font-family: var(--ff-display);
  font-size: 42px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition);
}
.mobile-menu a:hover {
  color: var(--gold);
}
.mobile-menu .m-book {
  margin-top: 24px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 48px;
  border-radius: var(--radius);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  padding-top: 5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(10, 10, 10, 0.3) 0%,
      rgba(10, 10, 10, 0.5) 40%,
      rgba(10, 10, 10, 0.92) 100%
    ),
    url("/img/vfg.jpg") center/cover no-repeat;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(5, 5, 3, 0.512) 0%,
    transparent 70%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  /* color: var(--gold); */
  color: white;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  animation: heroReveal 0.7s ease 0.2s both;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(64px, 12vw, 140px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 24px;
  animation: heroReveal 0.7s ease 0.35s both;
}
.hero-headline .line2 {
  color: var(--gold);
}
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  line-height: 1.65;
  margin-bottom: 36px;
  animation: heroReveal 0.7s ease 0.5s both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  animation: heroReveal 0.7s ease 0.65s both;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: white;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.608);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}
.hero-badges {
  display: flex;
  gap: 24px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  animation: heroReveal 0.7s ease 0.8s both;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-badge-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.hero-badge-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.3;
}
.hero-badge-text strong {
  display: block;
  font-weight: 600;
  color: var(--white);
  font-size: 14px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--near-black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}
.trust-item svg {
  color: var(--gold);
  flex-shrink: 0;
}
.trust-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 6vw, 68px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  color: var(--white);
}
.section-sub {
  font-size: 16px;
  color: var(--light-muted);
  line-height: 1.7;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(171, 171, 171, 0.205);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--near-black);
  padding: 40px 32px;
  position: relative;
  cursor: pointer;
  transition: background var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  background: var(--dark);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-number {
  font-family: var(--ff-display);
  font-size: 64px;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  position: absolute;
  top: 24px;
  right: 24px;
  pointer-events: none;
}
.service-icon {
  width: 48px;
  height: 48px;
  background: black;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition:
    background var(--transition),
    transform var(--transition);
}
.service-card:hover .service-icon {
  background: rgba(225, 11, 11, 0.25);
  transform: scale(1.05);
}
.service-name {
  font-family: var(--ff-display);
  font-size: 26px;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 14px;
  color: var(--light-muted);
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 20px;
}
.service-price {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.service-price::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}
.service-best {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

/* ===== ADDONS ===== */
.addons {
  padding: 0 0 100px;
}
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.addon-item {
  background: var(--near-black);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background var(--transition);
}
.addon-item:hover {
  background: var(--dark);
}
.addon-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--off-white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.addon-name span {
  font-size: 18px;
}
.addon-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

/* ===== HOW IT WORKS ===== */
.how {
  padding: 100px 0;
  background: var(--near-black);
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.3;
}
.step {
  text-align: center;
  position: relative;
}
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--dark);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 28px;
  color: var(--gold);
  margin: 0 auto 20px;
  position: relative;
  transition:
    border-color var(--transition),
    background var(--transition);
}
.step:hover .step-num {
  background: #5b57576a;
  border-color: var(--gold);
}
.step-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 13px;
  color: var(--light-muted);
  line-height: 1.6;
}

/* ===== AREAS ===== */
.areas {
  padding: 100px 0;
}
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.area-pill {
  background: var(--near-black);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition);
  cursor: default;
}
.area-pill:hover,
.area-pill.featured {
  background: #9f303035;
  border-color: var(--gold);
  color: white;
}

/* ===== REVIEWS ===== */
.reviews {
  padding: 100px 0;
  background: var(--near-black);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition:
    border-color var(--transition),
    transform var(--transition);
}
.review-card:hover {
  border-color: rgba(213, 47, 47, 0.3);
  transform: translateY(-4px);
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 14px;
}
.review-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(137, 9, 9, 0.242);
  border: 1px solid rgba(201, 76, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.review-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.review-loc {
  font-size: 12px;
  color: var(--muted);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(201, 168, 76, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.cta-headline {
  font-family: var(--ff-display);
  font-size: clamp(48px, 8vw, 100px);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 24px;
}
.cta-headline .accent {
  color: var(--gold);
}
.cta-sub {
  font-size: 17px;
  color: var(--light-muted);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-large {
  padding: 20px 44px;
  font-size: 15px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--near-black);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-name {
  font-family: var(--ff-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-brand-tag {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 24px;
}
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--light-muted);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-contact a:hover {
  color: var(--gold);
}
.footer-contact a svg {
  color: var(--gold);
  flex-shrink: 0;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: gap;
  gap: 12px;
}
.footer-copy {
  font-size: 13px;
  color: var(--muted);
}
.footer-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}
.footer-badge svg {
  color: var(--gold);
}

/* ===== STICKY BOOK BAR (mobile) ===== */
.sticky-book {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.sticky-book-text {
  font-size: 13px;
  color: var(--light-muted);
}
.sticky-book-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}
.sticky-book .btn-primary {
  padding: 13px 28px;
  font-size: 13px;
  white-space: nowrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .hero {
    min-height: 100svh;
    padding-bottom: 60px;
  }
  .hero-headline {
    font-size: 68px;
  }
  .hero-badges {
    gap: 16px;
  }
  .steps::before {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sticky-book {
    display: flex;
  }
  body {
    padding-bottom: 72px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .cta-actions .btn {
    width: 100%;
    justify-content: center;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 54px;
  }
  .section-title {
    font-size: 38px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SCROLL PROGRESS ===== */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--gold);
  z-index: 1001;
  width: 0;
  transition: width 0.1s linear;
}
