/* =============================================
   EYELASHES.AE — Fresh Modern Template
   Eyelash-focused design system
   ============================================= */

/* --- Variables --- */
:root {
  --bg: #060606;
  --bg2: #0c0c0c;
  --bg3: #111111;
  --surface: #161616;
  --surface2: #1c1c1c;
  --gold: #c9a24d;
  --gold-l: #e0be6a;
  --gold-d: #a6832f;
  --cream: #f5f0e8;
  --text: #b5b0a8;
  --muted: #706b63;
  --border: rgba(255, 255, 255, .06);
  --white: #fff;
  --green: #25d366;

  --ff-h: 'Playfair Display', Georgia, serif;
  --ff-b: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --fs-xs: clamp(.7rem, .65rem + .25vw, .8rem);
  --fs-sm: clamp(.8rem, .74rem + .3vw, .92rem);
  --fs-base: clamp(.9rem, .84rem + .3vw, 1.02rem);
  --fs-md: clamp(1rem, .9rem + .5vw, 1.2rem);
  --fs-lg: clamp(1.25rem, 1.05rem + 1vw, 1.7rem);
  --fs-xl: clamp(1.7rem, 1.3rem + 2vw, 2.6rem);
  --fs-2xl: clamp(2.2rem, 1.4rem + 4vw, 4.2rem);
  --fs-hero: clamp(2.5rem, 1.6rem + 4.5vw, 5rem);

  --ease: cubic-bezier(.4, 0, .2, 1);
  --t: .3s var(--ease);
  --t-slow: .6s var(--ease);
  --r: 16px;
  --r-sm: 10px;
  --r-xl: 24px;
  --r-full: 9999px;
}

/* --- Reset --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px
}

body {
  font-family: var(--ff-b);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

body.no-scroll {
  overflow: hidden
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--t)
}

a:hover {
  color: var(--gold-l)
}

ul {
  list-style: none
}

h1,
h2,
h3,
h4 {
  font-family: var(--ff-h);
  color: var(--cream);
  font-weight: 500;
  line-height: 1.15
}

h2 em,
h1 em {
  font-style: italic;
  color: var(--gold)
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px
}

/* --- Section Header --- */
.sec-head {
  text-align: center;
  margin-bottom: clamp(2rem, 1.5rem + 2.5vw, 4rem)
}

.sec-tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 10px;
}

.sec-head h2 {
  font-size: var(--fs-xl);
  margin-bottom: 10px
}

.sec-head p {
  font-size: var(--fs-md);
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-b);
  font-weight: 600;
  font-size: var(--fs-sm);
  border: none;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
  text-decoration: none;
}

.btn--sm {
  padding: 10px 22px
}

.btn--lg {
  padding: 15px 32px;
  font-size: var(--fs-base)
}

.btn--full {
  width: 100%;
  justify-content: center;
  padding: 14px 20px
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: #0a0a0a;
  box-shadow: 0 4px 20px rgba(201, 162, 77, .3);
}

.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-l), var(--gold));
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 162, 77, .45)
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(255, 255, 255, .2);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px)
}

/* --- Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--t-slow), transform var(--t-slow)
}

.reveal.visible {
  opacity: 1;
  transform: none
}

.chip {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--gold);
  background: rgba(201, 162, 77, .08);
  border: 1px solid rgba(201, 162, 77, .15);
  padding: 3px 12px;
  border-radius: var(--r-full);
}

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(6, 6, 6, .5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--t);
}

.header.scrolled {
  background: rgba(6, 6, 6, .92)
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  z-index: 101
}

.logo__img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 162, 77, .3)
}

.logo__name {
  font-family: var(--ff-h);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 1.5px
}

.logo__dot {
  font-family: var(--ff-b);
  font-size: .85rem;
  font-weight: 700;
  color: var(--gold)
}

.nav__list {
  display: flex;
  gap: 24px
}

.nav__link {
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  transition: color var(--t)
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--t)
}

.nav__link:hover,
.nav__link.active {
  color: var(--cream)
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%
}

.header__right {
  display: flex;
  align-items: center;
  gap: 10px
}

.header__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 162, 77, .3);
  color: var(--gold);
  text-decoration: none;
  transition: all var(--t);
}

.header__phone:hover {
  background: rgba(201, 162, 77, .1);
  border-color: var(--gold);
  color: var(--gold-l);
  transform: scale(1.05);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(201, 162, 77, .08);
  border: 1.5px solid rgba(201, 162, 77, .25);
  border-radius: 12px;
  cursor: pointer;
  z-index: 1000;
  padding: 0;
  transition: all .3s ease;
  -webkit-tap-highlight-color: transparent
}

.burger:active {
  transform: scale(.92)
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all .3s cubic-bezier(.68, -.55, .27, 1.55);
  transform-origin: center
}

.burger span:nth-child(2) {
  width: 14px
}

.burger.active {
  background: rgba(201, 162, 77, .15);
  border-color: var(--gold)
}

.burger.active span {
  width: 20px
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

.burger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(10px)
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px)
}

/* Mobile Nav Footer (hidden on desktop) */
.nav__footer {
  display: none
}

.nav__phone {
  display: none
}

.nav__close {
  display: none
}

/* Desktop: nav in header bar */
.nav {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 68px;
  display: flex;
  align-items: center;
  z-index: 100
}

@media(max-width:899px) {
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    transform: none;
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 999
  }

  .nav.open {
    opacity: 1;
    visibility: visible
  }

  .nav__close {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: none;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 10px;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent
  }

  .nav__list {
    flex-direction: column;
    gap: 0;
    text-align: center;
    width: 100%;
    max-width: 280px;
    padding: 0;
    list-style: none
  }

  .nav__link {
    display: block;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #fff;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    text-decoration: none;
    -webkit-tap-highlight-color: transparent
  }

  .nav__link.active {
    color: var(--gold)
  }

  .nav__link::after {
    display: none
  }

  .nav__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px
  }

  .nav__footer .btn {
    padding: 12px 28px;
    font-size: 14px
  }

  .nav__phone {
    display: block;
    color: rgba(255, 255, 255, .5);
    font-size: 13px;
    text-decoration: none;
    letter-spacing: 1px
  }

  .burger {
    display: flex
  }

  .header__right .btn {
    display: none
  }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden
}

.hero__bg {
  position: absolute;
  inset: 0
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 6, 6, .82) 0%, rgba(6, 6, 6, .55) 50%, rgba(6, 6, 6, .75) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 140px 0 80px;
  max-width: 650px
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-l);
  background: rgba(201, 162, 77, .08);
  border: 1px solid rgba(201, 162, 77, .12);
  padding: 8px 18px;
  border-radius: var(--r-full);
  margin-bottom: 28px;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(37, 211, 102, .5);
  animation: pulse 2s ease-in-out infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .6;
    transform: scale(1.3)
  }
}

.hero__title {
  font-size: var(--fs-hero);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.08;
  letter-spacing: -1px
}

.hero__title em {
  background: linear-gradient(135deg, var(--gold-l), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.hero__sub {
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, .65);
  max-width: 500px;
  margin-bottom: 32px;
  line-height: 1.7
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px
}

/* --- Premium Hero Buttons --- */
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-b);
  font-weight: 600;
  font-size: var(--fs-base);
  padding: 16px 34px;
  border-radius: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: .3px;
}

.hero-btn svg {
  flex-shrink: 0;
}

/* Book Appointment — Gold Gradient */
.hero-btn--primary {
  background: linear-gradient(135deg, #d4a853 0%, #b8912e 50%, #d4a853 100%);
  background-size: 200% 200%;
  color: #0a0a0a;
  border: none;
  box-shadow: 0 4px 24px rgba(212, 168, 83, .35), 0 0 0 0 rgba(212, 168, 83, 0);
}

.hero-btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  transition: left .6s ease;
}

.hero-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(212, 168, 83, .5), 0 0 20px rgba(212, 168, 83, .15);
  background-position: 100% 0;
  color: #0a0a0a;
}

.hero-btn--primary:hover::before {
  left: 100%;
}

.hero-btn--primary:active {
  transform: translateY(-1px);
}

/* WhatsApp — Glassmorphism */
.hero-btn--whatsapp {
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .12);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
}

.hero-btn--whatsapp svg {
  color: #25d366;
}

.hero-btn--whatsapp:hover {
  background: rgba(37, 211, 102, .1);
  border-color: rgba(37, 211, 102, .35);
  color: #25d366;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, .2);
}

.hero-btn--whatsapp:active {
  transform: translateY(-1px);
}

@media(max-width:480px) {
  .hero-btn {
    padding: 14px 26px;
    font-size: var(--fs-sm);
    border-radius: 12px;
  }

  .hero__cta {
    gap: 10px;
  }
}

.hero__trust {
  display: flex;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .08)
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.trust-item strong {
  font-family: var(--ff-h);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--gold)
}

.trust-item span {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, .4);
  text-transform: uppercase;
  letter-spacing: 1px
}

@media(max-width:599px) {
  .hero__content {
    padding: 110px 20px 50px;
    max-width: 100%;
    text-align: center
  }

  .hero__badge {
    margin-left: auto;
    margin-right: auto
  }

  .hero__sub {
    margin-left: auto;
    margin-right: auto
  }

  .hero__cta {
    justify-content: center;
    gap: 10px
  }

  .hero__cta .btn--lg {
    padding: 13px 24px;
    font-size: var(--fs-sm)
  }

  .hero__trust {
    justify-content: center;
    gap: 18px
  }
}

/* =============================================
   SERVICES
   ============================================= */
.services {
  padding: clamp(4rem, 3rem + 5vw, 8rem) 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 1400px
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px
}

.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all var(--t);
}

.svc-card:hover {
  border-color: rgba(201, 162, 77, .2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .4)
}

.svc-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10
}

.svc-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow)
}

.svc-card:hover .svc-card__img img {
  transform: scale(1.05)
}

.svc-card__num {
  position: absolute;
  top: 14px;
  left: 16px;
  font-family: var(--ff-h);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: rgba(255, 255, 255, .12);
  line-height: 1;
}

.svc-card__body {
  padding: 22px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.svc-card__body .chip {
  margin-top: auto;
  align-self: flex-start;
}

.svc-card__body h3 {
  font-size: var(--fs-lg);
  margin-bottom: 8px
}

.svc-card__body p {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px
}

.svc-card--pop {
  border-color: rgba(201, 162, 77, .2);
  background: linear-gradient(180deg, rgba(201, 162, 77, .04), var(--surface))
}

.svc-card__pop-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0a0a0a;
  background: var(--gold);
  padding: 5px 14px;
  border-radius: var(--r-full);
}

@media(min-width:600px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:1024px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  padding: clamp(4rem, 3rem + 5vw, 8rem) 0;
  background: var(--bg2);
  content-visibility: auto;
  contain-intrinsic-size: auto 700px
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center
}

.about__photos {
  position: relative;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 14px;
  max-width: 480px;
  margin: 0 auto
}

.about__photo-main {
  border-radius: var(--r-xl);
  overflow: hidden
}

.about__photo-main img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/4;
  object-fit: cover
}

.about__photo-sm {
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-top: 36px
}

.about__photo-sm img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/4;
  object-fit: cover
}

.about__badge {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: var(--gold);
  color: #0a0a0a;
  padding: 14px 24px;
  border-radius: var(--r);
  text-align: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .4);
}

.about__badge strong,
.about__badge .badge-num {
  display: block;
  font-family: var(--ff-h);
  font-size: var(--fs-xl);
  font-weight: 700;
  line-height: 1
}

.about__badge span {
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px
}

.about__text .sec-tag,
.about__text h2 {
  text-align: left
}

.about__text p {
  line-height: 1.8;
  margin-bottom: .8em
}

.about__feats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 28px
}

.feat {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: all var(--t)
}

.feat:hover {
  border-color: rgba(201, 162, 77, .2)
}

.feat__icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 77, .1);
  color: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(201, 162, 77, .15);
}

.feat strong {
  display: block;
  font-size: var(--fs-sm);
  color: var(--cream);
  font-family: var(--ff-b)
}

.feat span {
  font-size: var(--fs-xs);
  color: var(--muted)
}

@media(min-width:480px) {
  .about__feats {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:1024px) {
  .about__grid {
    grid-template-columns: 1fr 1.15fr;
    gap: 56px
  }
}

/* =============================================
   GALLERY
   ============================================= */
.gallery {
  padding: clamp(4rem, 3rem + 5vw, 8rem) 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 700px
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  grid-auto-rows: 180px
}

.g-item {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow)
}

.g-item:hover img {
  transform: scale(1.06)
}

.g-item__label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: var(--ff-h);
  font-size: var(--fs-sm);
  color: var(--white);
  font-weight: 500;
  background: rgba(0, 0, 0, .5);
  backdrop-filter: blur(6px);
  padding: 4px 14px;
  border-radius: var(--r-full);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--t);
}

.g-item:hover .g-item__label {
  opacity: 1;
  transform: translateY(0)
}

.g-item--tall {
  grid-row: span 2
}

@media(min-width:600px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 14px
  }
}

@media(min-width:1024px) {
  .gallery__grid {
    grid-auto-rows: 240px
  }
}

/* =============================================
   PRICING
   ============================================= */
.pricing {
  padding: clamp(4rem, 3rem + 5vw, 8rem) 0;
  background: var(--bg2);
  content-visibility: auto;
  contain-intrinsic-size: auto 700px
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--t);
}

.price-card:hover {
  border-color: rgba(201, 162, 77, .15);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .35)
}

.price-card--featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201, 162, 77, .06), var(--surface))
}

.price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0a0a0a;
  background: var(--gold);
  padding: 5px 20px;
  border-radius: var(--r-full);
}

.price-card h3 {
  font-size: var(--fs-lg);
  margin-bottom: 2px
}

.price-card__type {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin-bottom: 14px
}

.price-card__amount {
  font-family: var(--ff-h);
  font-size: var(--fs-2xl);
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px
}

.price-card__amount small {
  font-size: var(--fs-md);
  color: var(--muted);
  font-weight: 400
}

.price-card ul {
  text-align: left;
  margin-bottom: 24px;
  flex: 1;
}

.price-card .btn {
  margin-top: auto;
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  font-size: var(--fs-sm);
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, .03)
}

.price-card li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  font-size: .8rem
}

@media(min-width:600px) {
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:1024px) {
  .pricing__grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta {
  position: relative;
  padding: clamp(3.5rem, 3rem + 4vw, 6rem) 0;
  overflow: hidden
}

.cta__bg {
  position: absolute;
  inset: 0
}

.cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.25) blur(2px)
}

.cta__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 6, 6, .8), rgba(201, 162, 77, .12))
}

.cta__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 580px;
  margin: 0 auto
}

.cta__inner h2 {
  font-size: var(--fs-xl);
  color: var(--white);
  margin-bottom: 12px
}

.cta__inner p {
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, .65);
  margin-bottom: 28px
}

.cta__btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px
}

/* =============================================
   FAQ
   ============================================= */
.faq {
  padding: clamp(4rem, 3rem + 5vw, 8rem) 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 800px
}

.faq__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px
}

.faq__left .sec-tag,
.faq__left h2 {
  text-align: left
}

.faq__left p {
  color: var(--muted);
  margin-bottom: 20px
}

.faq__img {
  border-radius: var(--r-xl);
  margin-top: 20px;
  width: 100%;
  max-width: 350px;
  aspect-ratio: 4/3;
  object-fit: cover
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: all var(--t)
}

.faq__item:hover {
  border-color: rgba(201, 162, 77, .12)
}

.faq__item[open] {
  border-color: rgba(201, 162, 77, .2)
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 16px 20px;
  font-family: var(--ff-h);
  font-size: var(--fs-md);
  font-weight: 500;
  color: var(--cream);
  list-style: none;
  transition: color var(--t);
}

.faq__item summary::-webkit-details-marker {
  display: none
}

.faq__item summary::after {
  content: '+';
  font-family: var(--ff-b);
  font-size: 1.3rem;
  color: var(--gold);
  transition: transform var(--t)
}

.faq__item[open] summary::after {
  content: '−'
}

.faq__item summary:hover {
  color: var(--gold-l)
}

.faq__item>p {
  padding: 0 20px 18px;
  font-size: var(--fs-sm);
  color: var(--text);
  line-height: 1.8
}

@media(min-width:768px) {
  .faq__layout {
    grid-template-columns: .85fr 1.15fr;
    gap: 50px;
    align-items: start
  }

  .faq__left {
    position: sticky;
    top: 100px
  }
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
  padding: clamp(4rem, 3rem + 5vw, 8rem) 0;
  background: var(--bg2);
  content-visibility: auto;
  contain-intrinsic-size: auto 500px
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px
}

.contact__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px
}

.c-card {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: all var(--t)
}

.c-card:hover {
  border-color: rgba(201, 162, 77, .15)
}

.c-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(201, 162, 77, .08);
  border: 1px solid rgba(201, 162, 77, .15);
  border-radius: 50%;
  color: var(--gold);
}

.c-card h3 {
  font-family: var(--ff-b);
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: 4px
}

.c-card p {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin-bottom: 2px
}

.c-card a {
  color: var(--text);
  transition: color var(--t)
}

.c-card a:hover {
  color: var(--gold)
}

.contact__map {
  min-height: 300px;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border)
}

@media(min-width:480px) {
  .contact__cards {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:768px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px
  }
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  padding: 40px 0 20px;
  background: var(--bg3);
  border-top: 1px solid var(--border)
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px
}

.footer__brand p {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin-top: 10px;
  max-width: 280px;
  line-height: 1.7
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 16px
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  color: var(--muted);
  transition: all var(--t)
}

.footer__social a:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px)
}

.footer__social svg {
  width: 18px;
  height: 18px
}

.footer__col h4 {
  font-family: var(--ff-b);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cream);
  margin-bottom: 12px
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.footer__col a {
  font-size: var(--fs-sm);
  color: var(--muted);
  transition: color var(--t)
}

.footer__col a:hover {
  color: var(--gold)
}

.footer__col p {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin-bottom: 4px
}

.footer__bottom {
  text-align: center
}

.footer__bottom p {
  font-size: var(--fs-xs);
  color: var(--muted)
}

.footer__bottom a {
  color: var(--gold)
}

@media(min-width:600px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr
  }
}

@media(min-width:1024px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1.2fr
  }
}

/* =============================================
   WHATSAPP
   ============================================= */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  border-radius: 50%;
  z-index: 98;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  transition: all var(--t);
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, .5)
}

/* --- Reduced Motion --- */
@media(prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important
  }
}

/* --- Print --- */
@media print {

  .header,
  .burger,
  .wa-float,
  .cta,
  .hero__bg {
    display: none
  }

  body {
    background: #fff;
    color: #222
  }

  .hero {
    min-height: auto
  }
}