/* ===== VARIABLES ===== */
:root {
  --gold: #c9a84c;
  --gold-light: #e8c96b;
  --dark: #0f0f0f;
  --dark2: #1a1a1a;
  --dark3: #242424;
  --white: #ffffff;
  --gray: #888;
  --light: #f5f3ef;
  --wa: #25d366;
  --ig: #e1306c;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(0,0,0,0.18);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--light);
  color: var(--dark);
  overflow-x: hidden;
  padding-bottom: 80px;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ===== CONTAINER ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ===== TICKER BAR ===== */
.ticker-wrap {
  background: var(--dark);
  overflow: hidden;
  padding: 10px 0;
  border-bottom: 2px solid var(--gold);
}
.ticker {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
  width: max-content;
}
.ticker span {
  font-size: 0.8rem;
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: 0.04em;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== FLOATING BAR ===== */
.float-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  background: var(--dark);
  border-top: 2px solid var(--gold);
}
.fb-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 10px 4px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
  transition: background 0.2s;
}
.fb-item i { font-size: 1.2rem; }
.fb-call { color: #fff; }
.fb-call:hover { background: rgba(255,255,255,0.1); }
.fb-wa { color: var(--wa); }
.fb-wa:hover { background: rgba(37,211,102,0.12); }
.fb-ig { color: var(--ig); }
.fb-ig:hover { background: rgba(225,48,108,0.12); }
.fb-map { color: #4da6ff; }
.fb-map:hover { background: rgba(77,166,255,0.12); }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0; z-index: 900;
  background: rgba(15,15,15,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 14px 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  background: var(--gold);
  color: var(--dark);
  width: 38px; height: 38px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.logo-text strong { display: block; color: var(--white); font-size: 1rem; line-height: 1.1; }
.logo-text small { color: var(--gold); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; }
.nav { display: flex; gap: 6px; margin-left: auto; }
.nav .nav-link {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.2s;
}
.nav .nav-link:hover, .nav .nav-link.active {
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}
.btn-header {
  background: var(--wa);
  color: white;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.btn-header:hover { opacity: 0.88; }
.hamburger {
  display: none;
  background: none; border: none;
  color: white; font-size: 1.3rem;
  cursor: pointer; margin-left: auto;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--dark2);
  padding: 12px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav a {
  color: rgba(255,255,255,0.8);
  padding: 10px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav.open { display: flex; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(201,168,76,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(201,168,76,0.06) 0%, transparent 60%),
    linear-gradient(135deg, #0f0f0f 0%, #1a1510 100%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(201,168,76,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 80px 24px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 20px;
  animation: fadeUp 0.7s ease 0.1s both;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
  display: block;
}
.hero-sub {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeUp 0.7s ease 0.2s both;
}
.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp 0.7s ease 0.3s both;
}
.btn-primary {
  background: var(--wa);
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.4); }
.btn-secondary {
  background: transparent;
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.hero-stats {
  display: flex; align-items: center; gap: 20px;
  animation: fadeUp 0.7s ease 0.4s both;
}
.stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--gold);
}
.stat span { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.stat-div { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.3);
  font-size: 1.1rem;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(8px)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)} }

/* ===== SERVICES STRIP ===== */
.services-strip {
  background: var(--white);
  padding: 36px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: rgba(0,0,0,0.08);
  border-radius: var(--radius);
  overflow: hidden;
}
.strip-card {
  background: white;
  padding: 24px 20px;
  display: flex; align-items: center; gap: 16px;
  transition: background 0.2s;
  cursor: default;
}
.strip-card:hover { background: #fffdf7; }
.strip-card i {
  font-size: 1.8rem;
  color: var(--gold);
  min-width: 32px;
}
.strip-card strong { display: block; font-size: 0.95rem; font-weight: 700; }
.strip-card span { font-size: 0.78rem; color: var(--gray); }

/* ===== WHY ===== */
.why { padding: 100px 0; background: var(--light); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.section-tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-tag.center { text-align: center; }
.why-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--dark);
}
.why-desc { color: #555; line-height: 1.75; margin-bottom: 24px; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.why-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.95rem; color: var(--dark);
}
.why-list li i { color: var(--gold); }
.why-visual { position: relative; }
.why-card-big {
  background: var(--dark);
  border-radius: 20px;
  padding: 40px 32px;
  color: white;
  position: relative;
  overflow: hidden;
}
.why-card-big::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
}
.wc-icon {
  background: var(--gold);
  color: var(--dark);
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.wc-line { width: 40px; height: 3px; background: var(--gold); border-radius: 2px; margin-bottom: 16px; }
.why-card-big strong { display: block; font-size: 1.3rem; margin-bottom: 8px; font-family: 'Playfair Display', serif; }
.why-card-big span { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.why-card-sm {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow);
  right: -30px; bottom: 30px;
  min-width: 190px;
}
.why-card-sm i { font-size: 1.4rem; color: var(--gold); }
.why-card-sm strong { font-size: 0.9rem; }
.why-card-sm small { color: var(--gray); font-size: 0.75rem; }
.why-card-sm2 { bottom: 110px; right: -20px; }

/* ===== STEPS ===== */
.steps { padding: 80px 0; background: var(--dark); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 48px;
}
.section-title.center { text-align: center; color: white; }
.steps-grid {
  display: flex; align-items: center; gap: 0;
  flex-wrap: wrap; justify-content: center; gap: 8px;
}
.step-item {
  flex: 1; min-width: 180px; max-width: 220px;
  background: var(--dark3);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: border-color 0.2s;
}
.step-item:hover { border-color: var(--gold); }
.step-num {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-weight: 900; font-size: 0.75rem;
  padding: 3px 10px; border-radius: 999px;
  letter-spacing: 0.05em;
}
.step-item i { font-size: 1.8rem; color: var(--gold); margin: 12px 0 14px; display: block; }
.step-item strong { display: block; color: white; font-size: 1rem; margin-bottom: 8px; }
.step-item span { color: rgba(255,255,255,0.5); font-size: 0.82rem; line-height: 1.6; }
.step-arrow { color: rgba(201,168,76,0.4); font-size: 1.2rem; margin: 0 -4px; }

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, #1a1510, #0f0f0f);
  padding: 70px 0;
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 32px;
}
.cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900; color: white; line-height: 1.2;
}
.cta-inner h2 span { color: var(--gold); }
.cta-inner p { color: rgba(255,255,255,0.5); margin-top: 8px; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-wa {
  background: var(--wa); color: white;
  padding: 16px 28px; border-radius: var(--radius);
  font-weight: 700; font-size: 1rem;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  transition: transform 0.2s;
}
.btn-wa:hover { transform: translateY(-2px); }
.btn-call {
  background: transparent; color: white;
  padding: 16px 28px; border-radius: var(--radius);
  font-weight: 600; font-size: 1rem;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s;
}
.btn-call:hover { border-color: var(--gold); color: var(--gold); }

/* ===== FOOTER ===== */
.footer { background: var(--dark); padding: 64px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.88rem; line-height: 1.7; margin-top: 12px; }
.social-links { display: flex; gap: 10px; margin-top: 16px; }
.social-links a {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
}
.social-links a:hover { border-color: var(--gold); color: var(--gold); }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-links strong, .footer-contact strong { color: white; font-size: 0.88rem; letter-spacing: 0.05em; margin-bottom: 6px; }
.footer-links a, .footer-contact a {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  transition: color 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  text-align: center;
  padding: 18px 24px;
  color: rgba(255,255,255,0.2);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .strip-grid { grid-template-columns: repeat(2,1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-visual { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .btn-header { display: none; }
  .hamburger { display: block; }
}
@media (max-width: 600px) {
  .strip-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { flex-direction: column; align-items: stretch; }
  .step-arrow { display: none; }
  .step-item { max-width: 100%; }
  .cta-inner { text-align: center; justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 10px; }
  .stat-div { display: none; }
}
