/* ── Variables ── */
:root {
  --bg-deep: #0a0612;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --border: rgba(212, 175, 95, 0.18);
  --border-strong: rgba(212, 175, 95, 0.35);
  --gold: #d4af5f;
  --gold-light: #f0d78c;
  --gold-dark: #a8842e;
  --purple: #6b3fa0;
  --purple-dark: #4a2d72;
  --purple-soft: rgba(107, 63, 160, 0.25);
  --text: #f5f0e8;
  --text-muted: rgba(245, 240, 232, 0.65);
  --whatsapp: #25d366;
  --cta-green: #1db954;
  --marquee-bg: #1a6b8a;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-offset: 120px;
  --payment-gold: #ffd54f;
  --payment-gold-dark: #e6a800;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* ── Background glow ── */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.bg-glow--1 {
  width: 600px;
  height: 600px;
  background: var(--purple-soft);
  top: -200px;
  right: -150px;
}

.bg-glow--2 {
  width: 500px;
  height: 500px;
  background: rgba(212, 175, 95, 0.08);
  bottom: 20%;
  left: -200px;
}

/* ── Top bar ── */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  background: linear-gradient(90deg, var(--payment-gold-dark), var(--payment-gold), var(--payment-gold-dark));
  text-align: center;
  padding: 0.65rem 1rem;
  box-shadow: 0 4px 20px rgba(255, 213, 79, 0.35);
  animation: topBarPulse 2.5s ease-in-out infinite;
}

.top-bar-main {
  font-size: clamp(0.78rem, 2.5vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a0a00;
}

@keyframes topBarPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(255, 213, 79, 0.35); }
  50% { box-shadow: 0 4px 32px rgba(255, 213, 79, 0.65); }
}

/* ── Header ── */
.header {
  position: fixed;
  top: 42px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.85rem 0;
  background: rgba(10, 6, 18, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.logo-icon {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-cta {
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--gold) !important;
  font-weight: 500 !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ── Typography ── */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-muted);
  font-weight: 300;
  max-width: 560px;
  margin: 0.75rem auto 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-cta-hero {
  background: var(--cta-green);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  box-shadow: 0 8px 32px rgba(29, 185, 84, 0.4);
  width: 100%;
  max-width: 420px;
}

.btn-cta-hero:hover {
  box-shadow: 0 12px 40px rgba(29, 185, 84, 0.55);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--bg-deep);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  width: 100%;
  margin-top: 1.25rem;
}

/* ── Hero ── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-offset) + 2rem) 0 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url("https://images.unsplash.com/photo-1518199260791-537271a70402?w=1600&q=80") center/cover no-repeat;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 6, 18, 0.55) 0%, rgba(10, 6, 18, 0.75) 60%, var(--bg-deep) 100%),
    linear-gradient(90deg, rgba(74, 45, 114, 0.5) 0%, transparent 60%);
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 640px;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--gold-light);
  margin: 0.5rem 0 1.25rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.payment-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 520px;
  margin-bottom: 1.5rem;
  padding: 1.1rem 1.35rem;
  background: linear-gradient(135deg, rgba(255, 213, 79, 0.95), rgba(230, 168, 0, 0.9));
  border: 2px solid #fff;
  border-radius: 14px;
  box-shadow:
    0 0 0 3px rgba(255, 213, 79, 0.4),
    0 12px 40px rgba(0, 0, 0, 0.45);
  animation: paymentGlow 2s ease-in-out infinite;
}

.payment-highlight-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a0a00;
  color: var(--payment-gold);
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 800;
}

.payment-highlight-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.payment-highlight-text strong {
  font-size: clamp(0.95rem, 2.8vw, 1.15rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #1a0a00;
  line-height: 1.25;
}

.payment-highlight-text span {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(26, 10, 0, 0.75);
}

@keyframes paymentGlow {
  0%, 100% {
    box-shadow:
      0 0 0 3px rgba(255, 213, 79, 0.4),
      0 12px 40px rgba(0, 0, 0, 0.45);
  }
  50% {
    box-shadow:
      0 0 0 6px rgba(255, 213, 79, 0.55),
      0 12px 48px rgba(255, 213, 79, 0.25);
  }
}

/* ── Payment strip ── */
.payment-strip {
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, #1a0a00, #3d2200, #1a0a00);
  border-block: 3px solid var(--payment-gold);
  padding: 2rem 0;
  text-align: center;
}

.payment-strip-inner {
  max-width: 800px;
}

.payment-strip-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--payment-gold);
  margin-bottom: 0.5rem;
}

.payment-strip-title {
  font-family: var(--font-body);
  font-size: clamp(1.4rem, 4.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--payment-gold);
  text-shadow: 0 0 30px rgba(255, 213, 79, 0.4);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.payment-strip-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
}

.hero-lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  font-weight: 300;
  max-width: 520px;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--bg-deep);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 3;
}

/* ── Marquee ── */
.marquee {
  position: relative;
  z-index: 2;
  background: var(--marquee-bg);
  overflow: hidden;
  padding: 0.7rem 0;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.marquee-track span {
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
}

.marquee-highlight {
  font-weight: 800 !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.1em !important;
  color: var(--payment-gold) !important;
  text-shadow: 0 0 12px rgba(255, 213, 79, 0.5);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Intro ── */
.intro {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
  text-align: center;
}

.intro-inner {
  max-width: 720px;
}

.intro-inner p {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ── Testimonials ── */
.testimonials {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  background: rgba(0, 0, 0, 0.25);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color var(--transition), transform var(--transition);
}

.testimonial-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.testimonial-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.testimonial-card footer {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
}

.testimonials-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ── Services ── */
.services {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}

.service-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: border-color var(--transition), transform var(--transition);
}

.category-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
}

.category-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 95, 0.12);
  border-radius: 14px;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.category-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--gold-light);
}

.category-card li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.55rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
}

.category-card li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.55rem;
  top: 0.45rem;
}

/* ── Differentials ── */
.differentials {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.diff-content p {
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.diff-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
}

.diff-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 0.35rem;
}

.diff-visual blockquote {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.diff-visual blockquote p {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.5;
}

.diff-visual footer {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
}

/* ── Notice ── */
.notice {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
  background: rgba(107, 63, 160, 0.08);
  border-block: 1px solid var(--border);
}

.notice-inner {
  max-width: 760px;
  text-align: center;
}

.notice-inner p {
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1rem;
}

.notice-small {
  font-size: 0.82rem !important;
  opacity: 0.7;
  margin-top: 1.5rem !important;
}

/* ── CTA ── */
.cta {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}

.cta-inner {
  text-align: center;
  background: linear-gradient(135deg, rgba(107, 63, 160, 0.2), rgba(212, 175, 95, 0.1));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
}

.cta-inner h2 {
  max-width: 640px;
  margin-inline: auto;
}

.cta-inner p {
  color: var(--text-muted);
  margin: 1rem 0 1.25rem;
  font-weight: 300;
}

.cta-payment-badge {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--payment-gold-dark), var(--payment-gold));
  color: #1a0a00;
  font-size: clamp(0.85rem, 2.5vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  border-radius: 999px;
  border: 2px solid #fff;
  box-shadow: 0 8px 28px rgba(255, 213, 79, 0.35);
}

.cta-inner .btn-cta-hero {
  margin-inline: auto;
}

/* ── Contact ── */
.contact {
  position: relative;
  z-index: 1;
  padding: 5rem 0 7rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.contact-location {
  color: var(--text-muted);
  margin: 1rem 0;
  font-weight: 300;
}

.contact-phone {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}

.contact-phone:hover {
  color: var(--gold);
}

.contact-detail {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.contact-card p {
  color: var(--text-muted);
  font-weight: 300;
  font-size: 0.95rem;
}

/* ── Footer ── */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 1.75rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer a:hover {
  color: var(--gold);
}

/* ── Social proof popup ── */
.social-proof {
  position: fixed;
  bottom: 6.5rem;
  left: 1.25rem;
  z-index: 190;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 320px;
  padding: 1rem 1.25rem;
  background: rgba(20, 14, 28, 0.95);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  pointer-events: none;
}

.social-proof.visible {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.social-proof.hidden {
  display: none;
}

.social-proof-close {
  position: absolute;
  top: 0.4rem;
  right: 0.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.2rem;
}

.social-proof-close:hover {
  color: var(--text);
}

.social-proof-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.social-proof-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-right: 1rem;
}

.social-proof-text strong {
  font-size: 0.85rem;
  color: var(--text);
}

.social-proof-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 300;
}

.social-proof-text small {
  font-size: 0.7rem;
  color: var(--gold);
  margin-top: 0.2rem;
}

/* ── WhatsApp float ── */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem 0.75rem 1.25rem;
  background: var(--whatsapp);
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse 3s ease-in-out infinite;
}

.whatsapp-label {
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

.whatsapp-float:hover {
  transform: scale(1.04);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 48px rgba(37, 211, 102, 0.65); }
}

/* ── Scroll animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .service-categories,
  .diff-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 75vh;
  }
}

@media (max-width: 640px) {
  :root {
    --header-offset: 96px;
  }

  .top-bar-main {
    font-size: 0.68rem;
    line-height: 1.35;
    letter-spacing: 0.08em;
  }

  .payment-highlight {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .payment-highlight-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 42px;
    right: -100%;
    width: min(280px, 80vw);
    height: calc(100vh - 36px);
    flex-direction: column;
    align-items: flex-start;
    padding: 4rem 2rem 2rem;
    background: rgba(10, 6, 18, 0.97);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border);
    gap: 1.25rem;
    transition: right var(--transition);
  }

  .nav-links.open {
    right: 0;
  }

  .btn-cta-hero {
    max-width: 100%;
    font-size: 0.9rem;
  }

  .social-proof {
    left: 0.75rem;
    right: 0.75rem;
    max-width: none;
    bottom: 5.5rem;
  }

  .whatsapp-float {
    padding: 0.85rem;
    border-radius: 50%;
    width: 58px;
    height: 58px;
    justify-content: center;
  }

  .whatsapp-label {
    display: none;
  }

  .contact-phone {
    font-size: 1.6rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track,
  .top-bar,
  .payment-highlight {
    animation: none;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }
}
