/* ==============================
   CSS VARIABLES
============================== */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C76A;
  --dark: #0A0A0F;
  --dark2: #111118;
  --dark3: #1A1A24;
  --text: #E8E8F0;
  --text-muted: #888899;
}


/* ==============================
   RESET & BASE
============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.5;
}

/* ==============================
   NAVIGATION
============================== */

/* ==============================
   NAVIGATION
============================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem;
  height: 100px;
  background: rgba(10,10,15,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #666;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s;
  letter-spacing: 0.3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.2px;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.25);
}
/* ==============================
   HERO
============================== */
.hero {
  min-height: auto;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 480px;
  align-items: start;
  gap: 60px;
  padding: 130px 80px 60px;
}
.hero video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.25;
}
.hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%);
  top: 50%; left: 30%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 70% at 30% 50%, black, transparent);
}

.hero-left { position: relative; z-index: 2; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(10,10,15,0.8);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  padding: 8px 18px;
  margin-bottom: 32px;
  animation: fadeUp 0.6s ease both;
}

.hero-pill .live-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(201,168,76,0.8);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100% { box-shadow: 0 0 6px rgba(201,168,76,0.6); }
  50% { box-shadow: 0 0 16px rgba(201,168,76,1); }
}

.hero-pill span { color: var(--gold); font-size: 13px; font-weight: 600; }
.hero-pill span b { color: var(--gold-light); }

.hero-left h1 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 22px;
  animation: fadeUp 0.7s 0.1s ease both;
}

.highlight-box {
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-light);
  padding: 2px 12px;
  border-radius: 6px;
  display: inline-block;
}

.highlight-box2 {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  padding: 2px 12px;
  border-radius: 6px;
  display: inline-block;
}

.hero-sub {
  color: #666;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 28px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 38px;
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #999;
}

.check-icon {
  width: 22px; height: 22px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.4s ease both;
}

.btn-primary-gold {
  background: var(--gold);
  color: #000;
  padding: 15px 32px;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
  display: flex; align-items: center; gap: 8px;
  border: none; cursor: pointer;
}

.btn-primary-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.3);
}

.btn-secondary-outline {
  background: transparent;
  color: #fff;
  padding: 15px 32px;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.2s;
  display: flex; align-items: center; gap: 8px;
}

.btn-secondary-outline:hover { border-color: var(--gold); color: var(--gold); }

/* FORM CARD */
.hero-right {
  position: relative;
  z-index: 2;
  animation: fadeUp 0.8s 0.2s ease both;
}

.contact-card {
  background: linear-gradient(135deg, #13131e, #0e0e18);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 22px;
  padding: 34px 30px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 6px;
}

.card-sub {
  color: #555;
  font-size: 12px;
  text-align: center;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: span 2; }

.form-group label {
  font-size: 10px;
  color: #555;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 11px 14px;
  color: #ccc;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #333; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(201,168,76,0.4); }

.form-group select { appearance: none; cursor: pointer; color: #555; }
.form-group textarea { resize: none; height: 75px; }

.btn-submit {
  width: 100%;
  background: var(--gold);
  color: #000;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 4px;
}

.btn-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.3);
}

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #444;
  font-size: 11px;
  margin-top: 12px;
}

@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 110px 30px 60px;
  }
}

/* ==============================
   SHARED SECTION STYLES
============================== */
.section { 
  padding: 7rem 5rem;
  display: block;
  width: 100%;
  clear: both;
  position: relative;
  z-index: 1;
}
.section-inner { max-width: 1150px; margin: auto; }
.alt-bg { background: var(--dark2); }

.tag {
  display: inline-block;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.22);
  color: var(--gold);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 560px;
}

/* ==============================
   WHO WE SERVE
============================== */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.client-item {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 1.6rem 1rem;
  text-align: center;
  transition: all 0.25s;
  cursor: default;
}
.client-item:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
.client-item img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.8rem;
  display: block;
}
.client-item .emoji { font-size: 2.1rem; margin-bottom: 0.6rem; display: block; }
.client-item span { font-size: 0.88rem; font-weight: 600; color: var(--text-muted); }

/* ==============================
   SERVICES
============================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 2.2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.45);
}
.service-card:hover::after { opacity: 1; }

.service-icon { font-size: 2.4rem; margin-bottom: 1.1rem; display: block; }
.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.service-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.65; }

/* ==============================
   PROCESS
============================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.2rem;
  margin-top: 3rem;
}

.step {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.25s;
}
.step:hover { border-color: rgba(201,168,76,0.2); transform: translateY(-3px); }

.step-num {
  width: 46px; height: 46px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 1.1rem;
}
.step h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.step p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.55; }

/* ==============================
   PRICING
============================== */
/* ==============================
   PRICING — NEW DESIGN
============================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  align-items: start;
}

.price-card {
  background: #111118;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
  animation: cardIn 0.6s ease both;
}

.price-card:nth-child(1) { animation-delay: 0.1s; }
.price-card:nth-child(2) { animation-delay: 0.2s; }
.price-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes cardIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.price-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,0.2);
}

.price-card.featured {
  background: linear-gradient(140deg, #16162a, #111120);
  border: 2px solid var(--gold);
  transform: scale(1.04);
  box-shadow: 0 35px 70px rgba(201,168,76,0.1);
  z-index: 1;
}

.price-card.featured:hover {
  transform: scale(1.04) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.price-name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.price-card.featured .price-name {
  color: var(--gold);
}

.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 3.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 6px;
}

.price-amount .currency {
  font-size: 1.3rem;
  color: var(--gold);
  vertical-align: super;
  margin-right: 2px;
  letter-spacing: 0;
}

.price-period {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-bottom: 14px;
}

.price-desc {
  font-size: 0.85rem;
  color: #444;
  line-height: 1.65;
  margin-bottom: 20px;
}

hr.divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 20px;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 2rem;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #999;
}

.price-features li.no {
  opacity: 0.3;
}

.check-icon {
  width: 20px;
  height: 20px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  font-style: normal;
}

.check-icon.no-icon {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  color: #444;
}

.price-btn {
  width: 100%;
  padding: 0.95rem;
  border-radius: 12px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  letter-spacing: 0.3px;
}

.price-card.featured .price-btn {
  background: var(--gold);
  color: var(--dark);
}

.price-card.featured .price-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.price-card:not(.featured) .price-btn {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.15);
  color: #ccc;
}

.price-card:not(.featured) .price-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ==============================
   ADD-ONS — NEW DESIGN
============================== */
.addons {
  margin-top: 2.5rem;
  background: #111118;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 2rem;
}

.addons h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  text-align: center;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.8rem;
}

.addon-item {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: #888;
  transition: border-color 0.2s;
}

.addon-item:hover {
  border-color: rgba(201,168,76,0.2);
}

.addon-price {
  color: var(--gold);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
}

/* ==============================
   PRICING MOBILE
============================== */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .price-card.featured {
    transform: scale(1);
    order: -1;
  }
  .price-card.featured:hover {
    transform: translateY(-8px);
  }
}


/* ==============================
   CTA
============================== */
.cta-wrap { padding: 2rem 5rem 5rem; }
.cta-section {
  background: linear-gradient(135deg, #14141f, #1c1c2a);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 26px;
  padding: 5.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 1150px;
  margin: auto;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}
.cta-section p { color: var(--text-muted); margin-bottom: 2.5rem; font-size: 1.05rem; line-height: 1.7; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ==============================
   FOOTER
============================== */
/* ==============================
   FOOTER
============================== */
footer {
  background: var(--dark2);
  padding: 60px 5rem 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-left .logo {
  margin-bottom: 14px;
}

.footer-left .logo img {
  height: 70px;
  width: auto;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.footer-cards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-card {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 20px 22px;
  min-width: 160px;
  transition: border-color 0.25s, transform 0.25s;
  cursor: default;
}

.footer-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.footer-card-wa {
  background: #141414;
  border-color: rgba(255,255,255,0.08);
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.footer-card-wa:hover {
  border-color: #25D366;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(37,211,102,0.15);
}

.footer-card-icon {
  font-size: 24px;
  margin-bottom: 10px;
  width: 28px;
  height: 28px;
}

.footer-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-card-label {
  color: var(--text-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.footer-card-value {
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.footer-card-wa .footer-card-value {
  color: #25D366;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  color: #444;
  font-size: 12px;
}

.footer-copy span { color: var(--gold); }

.footer-nav {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-nav a {
  color: #555;
  font-size: 12px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--gold); }

.footer-badge {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-muted);
  font-size: 11px;
  padding: 5px 14px;
  border-radius: 20px;
}

.footer-badge span { color: var(--gold); }

@media (max-width: 900px) {
  footer { padding: 40px 1.5rem 25px; }
  .footer-top { flex-direction: column; }
  .footer-cards { flex-direction: column; width: 100%; }
  .footer-card { width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-nav { justify-content: center; }
}


/* ==============================
   SERVICE ICON WRAP
============================== */
.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  flex-shrink: 0;
}

/* ==============================
   LEARN MORE BUTTON
============================== */
.learn-more-btn {
  margin-top: 1.2rem;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold);
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  display: inline-block;
}
.learn-more-btn:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

/* ==============================
   SERVICE DETAIL SECTIONS
============================== */
.service-details {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-detail {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 2.2rem 2.5rem;
  transition: border-color 0.3s;
  scroll-margin-top: 120px;
}
.service-detail:hover {
  border-color: rgba(201,168,76,0.2);
}

.detail-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}

.detail-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.7rem;
}
.detail-content > p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 1.2rem;
}

.detail-includes {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 1.4rem;
}
.detail-includes li {
  font-size: 0.83rem;
  color: var(--gold);
  font-weight: 600;
}

.detail-cta {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}
.detail-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ==============================
   HAMBURGER BUTTON
============================== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(10,10,15,0.98);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }
  .nav-links.open { display: flex; }
  .service-detail { flex-direction: column; gap: 1.2rem; padding: 1.6rem; }
  .detail-includes { flex-direction: column; gap: 6px; }
}


/* ==============================
   HOW IT WORKS — NEW DESIGN
============================== */
.process-section-new {
  position: relative;
  padding: 7rem 5rem;
  overflow: hidden;
}

.process-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.35;
}

.process-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,15,0.75) 0%,
    rgba(10,10,15,0.35) 50%,
    rgba(10,10,15,0.75) 100%
  );
  z-index: 1;
}

.process-inner {
  position: relative;
  z-index: 2;
  max-width: 1150px;
  margin: 0 auto;
}

.process-top {
  text-align: center;
  margin-bottom: 56px;
}

.process-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.process-tag-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.process-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
  color: #fff;
}

.process-title span { color: var(--gold); }

.process-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto;
}

.process-stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.process-stat { text-align: center; }

.process-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -1px;
}

.process-stat-label {
  font-size: 11px;
  color: #444;
  margin-top: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process-timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(201,168,76,0.35) 10%,
    rgba(201,168,76,0.35) 90%,
    transparent
  );
  transform: translateX(-50%);
}

.process-row {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  margin-bottom: 44px;
}

.process-row:last-child { margin-bottom: 0; }

.process-card {
  background: rgba(17,17,24,0.85);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 26px 26px;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s, transform 0.3s;
}

.process-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}

.process-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.process-card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.process-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.process-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.process-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
}

.process-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.process-num {
  width: 54px;
  height: 54px;
  background: var(--gold);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #000;
}

.process-day {
  font-size: 9px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.process-empty { opacity: 0; pointer-events: none; }

@media (max-width: 768px) {
  .process-section-new { padding: 4rem 1.2rem; }
  .process-timeline-line { display: none; }
  .process-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }
  .process-center {
    flex-direction: row;
    justify-content: flex-start;
    padding: 16px 0 8px;
  }
  .process-empty { display: none; }
  .process-card { margin-bottom: 16px; }
  .process-stats { gap: 28px; }
  .process-stat-num { font-size: 1.8rem; }
}

/* ==============================
   CTA BUTTONS
============================== */
.btn-primary {
  background: var(--gold);
  color: #000;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.3);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}