/* ── RESET & BASE ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brd: #7B1D1D;
  --brd-mid: #A52A2A;
  --brd-lt: #F5EAEA;
  --black: #0F0F0F;
  --gray: #6B6B6B;
  --light: #F7F7F5;
  --white: #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 12px;
  --radius-sm: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

/* ── NAV ─────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123,29,29,0.1);
  transition: all 0.3s ease;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; height: 72px; gap: 32px;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.logo-mark { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--brd); }
.logo-group { font-family: var(--font-body); font-size: 10px; letter-spacing: 0.25em; color: var(--black); margin-top: 1px; }
.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-link {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500; color: var(--gray);
  transition: all 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--brd); background: var(--brd-lt); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  padding: 6px 12px; border: 1px solid var(--brd); border-radius: 20px;
  background: transparent; color: var(--brd); font-size: 12px;
  font-weight: 600; cursor: pointer; transition: all 0.2s;
}
.lang-toggle:hover { background: var(--brd); color: white; }
.btn-nav {
  padding: 10px 20px; background: var(--brd); color: white;
  border-radius: 24px; font-size: 14px; font-weight: 600;
  transition: all 0.2s; white-space: nowrap;
}
.btn-nav:hover { background: var(--brd-mid); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: all 0.3s; }

/* ── HERO ────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 24px 80px;
  max-width: 1200px; margin: 0 auto;
  position: relative; gap: 60px;
}
.hero-bg {
  position: fixed; inset: 0; z-index: -1;
  background: linear-gradient(135deg, #fff 0%, #fdf5f5 50%, #fff 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(123,29,29,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.15;
}
.hero-orb-1 { width: 500px; height: 500px; background: var(--brd); top: -100px; right: -100px; animation: float 8s ease-in-out infinite; }
.hero-orb-2 { width: 300px; height: 300px; background: #ff6b6b; bottom: 100px; left: -50px; animation: float 10s ease-in-out infinite reverse; }

@keyframes float { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,-20px)} }

.hero-content { flex: 1; max-width: 600px; animation: fadeInUp 0.8s ease both; }
.hero-badge {
  display: inline-block; padding: 8px 16px; background: var(--brd-lt);
  color: var(--brd); border-radius: 20px; font-size: 14px; font-weight: 600;
  margin-bottom: 24px; animation: fadeInUp 0.8s 0.1s ease both;
}
.hero-title { margin-bottom: 24px; animation: fadeInUp 0.8s 0.2s ease both; }
.hero-title-top { display: block; font-family: var(--font-body); font-size: 20px; font-weight: 400; color: var(--gray); margin-bottom: 8px; }
.hero-title-main { display: block; font-family: var(--font-display); font-size: clamp(44px, 6vw, 72px); font-weight: 900; color: var(--black); line-height: 1.1; }
.hero-title-main em { font-style: italic; color: var(--brd); }
.hero-sub { font-size: 17px; color: var(--gray); line-height: 1.7; margin-bottom: 36px; animation: fadeInUp 0.8s 0.3s ease both; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; animation: fadeInUp 0.8s 0.4s ease both; }
.hero-slogan {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-size: 15px; font-style: italic;
  color: var(--brd); animation: fadeInUp 0.8s 0.5s ease both;
}
.hero-slogan .dot { color: var(--gray); font-style: normal; }

.hero-visual {
  flex: 1; position: relative; height: 420px;
  display: flex; align-items: center; justify-content: center;
  animation: fadeInUp 0.8s 0.3s ease both;
}
.hero-center-badge {
  width: 160px; height: 160px; border-radius: 50%;
  background: var(--brd); display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 0 0 16px rgba(123,29,29,0.08), 0 0 0 32px rgba(123,29,29,0.04);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{box-shadow:0 0 0 16px rgba(123,29,29,0.08),0 0 0 32px rgba(123,29,29,0.04)} 50%{box-shadow:0 0 0 24px rgba(123,29,29,0.06),0 0 0 48px rgba(123,29,29,0.02)} }
.hcb-name { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: white; }
.hcb-group { font-size: 10px; letter-spacing: 0.2em; color: rgba(255,255,255,0.7); }

.hero-card {
  position: absolute; background: white; border-radius: var(--radius);
  padding: 14px 18px; display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(123,29,29,0.08);
  font-weight: 600; font-size: 13px; white-space: nowrap;
  animation: float2 6s ease-in-out infinite;
}
.hc-1 { top: 30px; left: 0; animation-delay: 0s; }
.hc-2 { top: 30px; right: 0; animation-delay: 1.5s; }
.hc-3 { bottom: 60px; left: 0; animation-delay: 3s; }
.hc-4 { bottom: 60px; right: 0; animation-delay: 4.5s; }
.hc-icon { font-size: 20px; }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: var(--brd); color: white;
  border-radius: 32px; font-weight: 600; font-size: 15px;
  transition: all 0.25s; border: 2px solid var(--brd);
}
.btn-primary:hover { background: var(--brd-mid); border-color: var(--brd-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(123,29,29,0.25); }
.btn-primary.large { padding: 16px 36px; font-size: 16px; }
.btn-secondary {
  display: inline-flex; align-items: center; padding: 14px 28px;
  border: 2px solid var(--black); color: var(--black); border-radius: 32px;
  font-weight: 600; font-size: 15px; transition: all 0.25s;
}
.btn-secondary:hover { background: var(--black); color: white; transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; padding: 14px 28px;
  border: 2px solid rgba(255,255,255,0.4); color: white; border-radius: 32px;
  font-weight: 600; font-size: 15px; transition: all 0.25s;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }
.btn-outline.large { padding: 16px 36px; font-size: 16px; }

/* ── STATS ───────────────────────────────────────────────────────── */
.stats { background: var(--brd); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { text-align: center; padding: 20px; border-right: 1px solid rgba(255,255,255,0.15); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: white; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.75); font-weight: 500; }

/* ── SECTION HEADERS ─────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; padding: 6px 16px; background: var(--brd-lt);
  color: var(--brd); border-radius: 20px; font-size: 13px; font-weight: 600;
  margin-bottom: 16px; letter-spacing: 0.05em;
}
.section-tag.light { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.section-title { font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); font-weight: 700; color: var(--black); margin-bottom: 16px; }
.section-header.light .section-title { color: white; }
.section-sub { font-size: 17px; color: var(--gray); max-width: 560px; margin: 0 auto; }
.section-cta { text-align: center; margin-top: 48px; }

/* ── SERVICES ────────────────────────────────────────────────────── */
.services-preview { background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.service-card {
  background: white; border-radius: var(--radius); padding: 36px 28px;
  border: 1px solid rgba(0,0,0,0.06); position: relative; overflow: hidden;
  transition: all 0.3s; cursor: default;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--brd); transform: scaleX(0); transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured { border-color: var(--brd); border-width: 2px; }
.service-card.featured::before { transform: scaleX(1); }
.sc-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--brd); color: white; padding: 4px 12px;
  border-radius: 20px; font-size: 11px; font-weight: 700;
}
.sc-number { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: rgba(128,0,32,1); line-height: 1; margin-bottom: 12px; }
.sc-icon { font-size: 32px; margin-bottom: 16px; }
.sc-title { font-size: 20px; font-weight: 700; color: var(--black); margin-bottom: 12px; }
.sc-desc { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 20px; }
.sc-price { font-size: 14px; font-weight: 700; color: var(--brd); margin-bottom: 16px; }
.sc-link { font-size: 14px; font-weight: 600; color: var(--brd); transition: gap 0.2s; }
.sc-link:hover { text-decoration: underline; }

/* ── WHY US ──────────────────────────────────────────────────────── */
.dark-section { background: var(--black); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.why-card {
  padding: 48px 40px; border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s;
}
.why-card:hover { background: rgba(255,255,255,0.03); }
.why-num { font-family: var(--font-display); font-size: 64px; font-weight: 700; color: rgba(128,0,32,1); line-height: 1; margin-bottom: 16px; }
.why-card h3 { font-size: 22px; font-weight: 700; color: white; margin-bottom: 12px; }
.why-card p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ── TESTIMONIALS ────────────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testi-card {
  background: var(--light); border-radius: var(--radius); padding: 32px;
  border: 1px solid rgba(0,0,0,0.06); transition: all 0.3s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testi-stars { color: #F59E0B; font-size: 18px; margin-bottom: 16px; }
.testi-text { font-size: 15px; color: var(--black); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brd); color: white; display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 14px; }
.testi-role { font-size: 12px; color: var(--gray); }
.testi-disclaimer { text-align: center; margin-top: 24px; font-size: 12px; color: var(--gray); font-style: italic; }

/* ── FAQ ─────────────────────────────────────────────────────────── */
.faq { background: var(--light); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; background: none; border: none; cursor: pointer;
  font-size: 16px; font-weight: 600; color: var(--black); text-align: left; gap: 16px;
}
.faq-q:hover { color: var(--brd); }
.faq-arrow { font-size: 22px; color: var(--brd); flex-shrink: 0; transition: transform 0.3s; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-a.open { max-height: 300px; padding-bottom: 20px; }
.faq-a p { font-size: 15px; color: var(--gray); line-height: 1.7; }

/* ── CTA SECTION ─────────────────────────────────────────────────── */
.cta-section { background: var(--brd); padding: 100px 0; }
.cta-inner { text-align: center; }
.cta-inner h2 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); font-weight: 700; color: white; margin-bottom: 16px; }
.cta-inner p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 40px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-btns .btn-primary { background: white; color: var(--brd); border-color: white; }
.cta-btns .btn-primary:hover { background: var(--brd-lt); border-color: var(--brd-lt); }

/* ── FOOTER ──────────────────────────────────────────────────────── */
.footer { background: var(--black); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 60px; }
.footer-brand .footer-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; transition: all 0.2s;
}
.social-link:hover { border-color: var(--brd); color: white; background: var(--brd); }
.footer-col h4 { font-size: 14px; font-weight: 700; color: white; margin-bottom: 20px; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-col a, .footer-col span { display: block; font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-slogan { font-family: var(--font-display); font-style: italic; color: rgba(255,255,255,0.4) !important; }

/* ── WHATSAPP BUTTON ─────────────────────────────────────────────── */
.whatsapp-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: all 0.3s;
  animation: waBounce 2s ease-in-out infinite;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
@keyframes waBounce { 0%,100%{transform:scale(1)} 50%{transform:scale(1.05)} }

/* ── ANIMATIONS ──────────────────────────────────────────────────── */
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; padding: 120px 24px 60px; }
  .hero-content { max-width: 100%; }
  .hero-cta { justify-content: center; }
  .hero-slogan { justify-content: center; }
  .hero-visual { width: 100%; height: 300px; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0; background: white; flex-direction: column; padding: 20px; box-shadow: var(--shadow); border-top: 1px solid rgba(0,0,0,0.06); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .btn-nav { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .hero-card { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .why-card { padding: 32px 24px; }
}
@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-title-main { font-size: 38px; }
}
