/* ============================================
   MCR Spotlight — Stylesheet
   ============================================ */

:root {
  --orange: #E85D26;
  --orange-light: #FF7A45;
  --orange-glow: rgba(232, 93, 38, 0.15);
  --dark: #1A1A1A;
  --dark-soft: #2A2A2A;
  --grey-900: #333;
  --grey-700: #555;
  --grey-500: #888;
  --grey-300: #C4C4C4;
  --grey-100: #F0EDEA;
  --cream: #FAF8F5;
  --white: #FFFFFF;
  --whatsapp: #25D366;
  --whatsapp-hover: #1EBE5A;
  --card-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.06);
  --card-shadow-hover: 0 4px 12px rgba(0,0,0,0.08), 0 16px 40px rgba(0,0,0,0.1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--grey-900);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0 2rem;
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.logo {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
}

.logo span { color: var(--orange); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--grey-700);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--whatsapp);
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: background 0.2s, transform 0.2s;
}

.nav-wa:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 200;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
  transition: all 0.3s;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--orange-glow);
}

.btn-wa {
  background: var(--whatsapp);
  color: #fff;
}

.btn-wa:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--grey-700);
  border: 1.5px solid var(--grey-300);
}

.btn-ghost:hover {
  border-color: var(--dark);
  color: var(--dark);
}

.btn-ghost-dark {
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}

.btn-ghost-dark:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

/* ===== HERO ===== */
.hero {
  padding: 9rem 2rem 5rem;
  max-width: 1140px;
  margin: 0 auto;
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange-glow);
  color: var(--orange);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}

.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.2rem;
  animation: fadeUp 0.6s ease 0.1s both;
}

.hero h1 em {
  color: var(--orange);
  font-style: italic;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--grey-700);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
  font-weight: 400;
  animation: fadeUp 0.6s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.6s ease 0.3s both;
}

/* Hero Phone Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  animation: fadeUp 0.8s ease 0.3s both;
}

.phone-mockup {
  width: 280px;
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--card-shadow-hover), 0 0 0 1px rgba(0,0,0,0.04);
  overflow: hidden;
}

.phone-notch {
  width: 120px;
  height: 28px;
  background: var(--cream);
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
}

.phone-screen {
  padding: 1.2rem 1.5rem 1.5rem;
}

.demo-card-header {
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--grey-100);
  margin-bottom: 1rem;
}

.demo-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  margin: 0 auto 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.demo-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
}

.demo-role {
  font-size: 0.8rem;
  color: var(--grey-500);
  margin-top: 0.15rem;
}

.demo-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.demo-btn {
  padding: 0.55rem;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-align: center;
  border: 1.5px solid var(--grey-100);
  color: var(--grey-700);
}

.demo-btn.wa-btn {
  background: var(--whatsapp);
  border-color: var(--whatsapp);
  color: #fff;
}

.demo-btn.call-btn {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.demo-services-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-500);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.demo-service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--grey-100);
  font-size: 0.78rem;
}

.demo-service-item:last-child { border: none; }

.demo-service-item span:last-child {
  color: var(--orange);
  font-weight: 600;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  max-width: 1140px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--grey-500);
  font-size: 0.85rem;
  font-weight: 500;
}

.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

/* ===== SECTION SHARED ===== */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.8rem;
}

.section-desc {
  color: var(--grey-700);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== SERVICES / PRICING ===== */
.services {
  padding: 5rem 2rem;
  background: var(--white);
}

.services-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.pricing-card {
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: all 0.35s;
}

.pricing-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.pricing-card.featured {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: var(--card-shadow-hover), 0 0 0 1px var(--orange);
}

.popular-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--orange-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}

.pricing-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.pricing-card .desc {
  font-size: 0.88rem;
  color: var(--grey-500);
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.2rem;
}

.price-tag .currency {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--grey-500);
}

.price-tag .amount {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.price-tag .period {
  font-size: 0.85rem;
  color: var(--grey-500);
}

.features-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.4rem 0;
  font-size: 0.88rem;
  color: var(--grey-700);
}

.features-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.card-btn {
  display: block;
  width: 100%;
  padding: 0.8rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.25s;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  border: none;
}

.card-btn-primary {
  background: var(--orange);
  color: #fff;
}

.card-btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
}

.card-btn-outline {
  background: transparent;
  color: var(--orange);
  border: 1.5px solid var(--orange);
}

.card-btn-outline:hover {
  background: var(--orange);
  color: #fff;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 5rem 2rem;
  max-width: 1140px;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--grey-300), var(--orange));
  opacity: 0.3;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
  margin: 0 auto 1.2rem;
  position: relative;
  z-index: 2;
}

.step h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--grey-500);
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 260px;
  margin: 0 auto;
}

/* ===== EXAMPLES ===== */
.examples {
  padding: 5rem 2rem;
  background: var(--dark);
  color: var(--white);
}

.examples-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.examples .section-tag { color: var(--orange-light); }
.examples .section-title { color: var(--white); }
.examples .section-desc { color: rgba(255,255,255,0.6); }

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

.example-card {
  background: var(--dark-soft);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.35s;
}

.example-card:hover {
  border-color: rgba(232, 93, 38, 0.3);
  transform: translateY(-4px);
}

.example-preview {
  padding: 1.5rem 1.5rem 0;
}

.mini-card {
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 1.2rem;
}

.mini-card-top {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.mini-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.mini-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.mini-type {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.mini-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}

.mini-btn {
  padding: 0.4rem;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 600;
  text-align: center;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
}

.mini-btn.accent {
  background: var(--orange);
  color: #fff;
}

.example-info {
  padding: 1.2rem 1.5rem 1.5rem;
}

.example-biz {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.example-type {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ===== FAQ ===== */
.faq {
  padding: 5rem 2rem;
  background: var(--white);
}

.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--grey-100);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.3rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
}

.faq-q::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--orange);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-q.open::after {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
  color: var(--grey-700);
  font-size: 0.92rem;
  line-height: 1.6;
}

.faq-a.open {
  max-height: 300px;
  padding-bottom: 1.3rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 5rem 2rem;
  text-align: center;
}

.cta-box {
  max-width: 680px;
  margin: 0 auto;
  background: var(--dark);
  border-radius: 24px;
  padding: 3.5rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.08;
  pointer-events: none;
}

.cta-box .section-title {
  color: var(--white);
  margin-bottom: 0.8rem;
}

.cta-box p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
footer {
  padding: 2.5rem 2rem;
  text-align: center;
  color: var(--grey-500);
  font-size: 0.82rem;
  border-top: 1px solid var(--grey-100);
}

footer a {
  color: var(--grey-700);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 0.8rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .examples-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 768px) {
  nav { padding: 0 1.2rem; }

  .mobile-toggle { display: block; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 150;
  }

  .nav-links.show { display: flex; }

  .nav-links a {
    font-size: 1.2rem;
  }

  .nav-wa {
    font-size: 1rem !important;
    padding: 0.8rem 2rem;
  }

  .hero {
    padding: 7rem 1.5rem 3rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons { justify-content: center; }

  .phone-mockup { width: 250px; }

  .trust-bar {
    gap: 1.5rem;
    padding: 1.5rem 1.5rem 3rem;
  }

  .trust-item {
    flex: 0 0 calc(50% - 0.75rem);
    font-size: 0.8rem;
  }

  .services { padding: 4rem 1.5rem; }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

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

  .steps-grid::before { display: none; }

  .how-it-works { padding: 4rem 1.5rem; }

  .examples { padding: 4rem 1.5rem; }

  .examples-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .faq { padding: 4rem 1.5rem; }

  .cta-section { padding: 3rem 1.5rem; }
  .cta-box { padding: 2.5rem 1.5rem; }
}

/* ===== RESPONSIVE — SMALL MOBILE ===== */
@media (max-width: 480px) {
  .hero { padding: 6.5rem 1rem 2.5rem; }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.6rem;
  }
}
