/* ============================================
   MACE Joyería & Grabado Láser — Design System
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Custom Properties --- */
:root {
  --color-black: #05050A;
  --color-charcoal: #0B0E17;
  --color-dark-gray: #161B28;
  --color-medium-gray: #64748B;
  --color-light-gray: #94A3B8;
  --color-soft-gray: #1E293B;
  --color-cream: #05050A;
  --color-white: #ffffff;
  --color-brand: #3b82f6;
  --color-brand-rgb: 59, 130, 246;
  --color-brand-light: #60a5fa;
  --color-brand-dark: #2563eb;
  --color-brand-subtle: rgba(59, 130, 246, 0.15);
  --color-success: #10B981;
  --color-error: #EF4444;

  --font-heading: 'Space Grotesk', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
  --shadow-brand: 0 8px 32px rgba(59, 130, 246, 0.25);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --max-width: 1200px;
  --section-padding: 100px 0;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-light-gray);
  background-color: var(--color-black);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

p {
  font-size: 1rem;
  color: var(--color-medium-gray);
  max-width: 680px;
}

.text-brand {
  color: var(--color-brand);
}

.text-center {
  text-align: center;
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-padding);
}

.section-dark {
  background-color: var(--color-black);
  color: var(--color-white);
}

.section-dark p {
  color: var(--color-light-gray);
}

.section-dark h2,
.section-dark h3 {
  color: var(--color-white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header p {
  margin: 16px auto 0;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-brand);
  margin-bottom: 12px;
  display: block;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-brand), var(--color-brand-dark));
  color: var(--color-black);
  box-shadow: var(--shadow-brand);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.5);
  background: linear-gradient(135deg, var(--color-brand-light), var(--color-brand));
  color: var(--color-black);
}

.btn-outline {
  background: rgba(59, 130, 246, 0.05);
  color: var(--color-brand);
  border: 1px solid var(--color-brand);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: var(--color-brand);
  color: var(--color-black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-brand);
}

.btn-dark {
  background: var(--color-black);
  color: var(--color-white);
}

.btn-dark:hover {
  background: var(--color-charcoal);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-black);
}

.btn-white:hover {
  background: var(--color-cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 12px 24px;
  font-size: 0.8rem;
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-base);
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar.scrolled {
  background: rgba(15, 15, 20, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img {
  height: 48px;
  transition: height var(--transition-base);
}

.navbar.scrolled .navbar-logo img {
  height: 38px;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
  position: relative;
}

.navbar.scrolled .navbar-links a {
  color: var(--color-white);
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-brand);
  transition: width var(--transition-base);
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-cta {
  display: flex;
  align-items: center;
}

.navbar-cta .btn {
  padding: 10px 24px;
  font-size: 0.8rem;
}

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

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.navbar.scrolled .mobile-toggle span {
  background: var(--color-white);
}

.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);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-black);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-bg-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 40%, #3a3a3a 70%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-placeholder span {
  color: var(--color-dark-gray);
  font-size: 0.85rem;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.5) 0%, rgba(26, 26, 26, 0.7) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  max-width: 850px;
}

.hero-content .section-label {
  color: var(--color-brand-light);
  margin-bottom: 20px;
}

.hero-content h1 {
  color: var(--color-white);
  margin-bottom: 24px;
  font-weight: 400;
}

.hero-content h1 .highlight {
  color: var(--color-brand);
  font-style: italic;
}

.hero-content p {
  color: var(--color-light-gray);
  font-size: 1.1rem;
  margin: 0 auto 40px;
  max-width: 620px;
}

.hero .btn-group {
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-light-gray);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll .arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-brand), transparent);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* --- Trust Bar --- */
.trust-bar {
  background: var(--color-white);
  padding: 40px 0;
  border-bottom: 1px solid var(--color-soft-gray);
}

.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
}

.trust-item .number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--color-brand);
  line-height: 1;
}

.trust-item .label {
  font-size: 0.8rem;
  color: var(--color-medium-gray);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* --- Benefit Sections --- */
.benefit-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.benefit-row.reverse {
  direction: rtl;
}

.benefit-row.reverse>* {
  direction: ltr;
}

.benefit-text .section-label {
  text-align: left;
}

.benefit-text h2 {
  margin-bottom: 20px;
}

.benefit-text p {
  margin-bottom: 28px;
}

.benefit-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--color-soft-gray);
}

.benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--color-soft-gray) 0%, #d4cfc8 100%);
  color: var(--color-medium-gray);
  font-size: 0.8rem;
  text-align: center;
  padding: 20px;
}

.image-placeholder .placeholder-icon {
  font-size: 2rem;
  opacity: 0.5;
}

.image-placeholder .placeholder-label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
}

/* --- How It Works --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 20px;
}

.step-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-brand), var(--color-brand-dark));
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 auto 20px;
}

.step-card h3 {
  margin-bottom: 12px;
  color: var(--color-black);
}

.step-card p {
  font-size: 0.9rem;
  margin: 0 auto;
}

.step-connector {
  display: none;
}

.steps-urgency {
  text-align: center;
  margin-top: 40px;
  padding: 20px 28px;
  background: var(--color-brand-subtle);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-brand);
}

.steps-urgency p {
  margin: 0 auto;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-dark-gray);
}

.steps-urgency strong {
  color: var(--color-brand-dark);
}

/* --- Product Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--color-soft-gray);
  cursor: pointer;
  transition: transform var(--transition-base);
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.6) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 500;
}

/* --- B2B Section --- */
.b2b-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.b2b-text .section-label {
  text-align: left;
}

.b2b-text h2 {
  margin-bottom: 20px;
}

.b2b-text p {
  margin-bottom: 28px;
}

.b2b-testimonial {
  background: var(--color-charcoal);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-top: 32px;
  border-left: 4px solid var(--color-brand);
}

.b2b-testimonial p {
  font-style: italic;
  color: var(--color-light-gray);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.b2b-testimonial .author {
  font-size: 0.8rem;
  color: var(--color-brand);
  font-style: normal;
  font-weight: 600;
}

.b2b-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.b2b-gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--color-dark-gray);
}

.b2b-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Pricing Section --- */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 48px;
  background: var(--color-soft-gray);
  border-radius: var(--radius-xl);
  padding: 4px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-tab {
  flex: 1;
  padding: 12px 24px;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  border: none;
  background: transparent;
  color: var(--color-medium-gray);
  font-family: var(--font-body);
}

.pricing-tab.active {
  background: var(--color-white);
  color: var(--color-black);
  box-shadow: var(--shadow-sm);
}

.pricing-panel {
  display: none;
}

.pricing-panel.active {
  display: block;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
  display: flex;
  flex-direction: column;
}

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

.pricing-card.featured {
  border: 2px solid var(--color-brand);
  box-shadow: var(--shadow-brand);
}

.pricing-card.featured::before {
  content: 'Recomendado';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-brand), var(--color-brand-dark));
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 16px;
  border-radius: var(--radius-xl);
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-soft-gray);
}

.pricing-card-header h3 {
  margin-bottom: 8px;
  color: var(--color-black);
}

.pricing-card .price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--color-brand);
  line-height: 1;
}

.pricing-card .price-note {
  font-size: 0.8rem;
  color: var(--color-medium-gray);
  margin-top: 4px;
}

.pricing-card .stars {
  color: var(--color-brand);
  font-size: 0.9rem;
  margin-top: 8px;
}

.pricing-features {
  flex: 1;
  margin-bottom: 24px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--color-medium-gray);
  padding: 8px 0;
}

.pricing-features li::before {
  content: '✓';
  color: var(--color-brand);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
}

.pricing-guarantee {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--color-brand-subtle);
}

.pricing-guarantee p {
  margin: 0 auto;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-dark-gray);
}

/* --- CRM Form --- */
.form-section {
  background: linear-gradient(135deg, var(--color-black) 0%, var(--color-charcoal) 100%);
}

.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 50px;
}

.form-info h2 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.form-info p {
  color: var(--color-light-gray);
  margin-bottom: 28px;
}

.form-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-light-gray);
  font-size: 0.9rem;
}

.form-benefit-item .icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-brand-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand);
  font-size: 1rem;
  flex-shrink: 0;
}

.crm-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.crm-form h3 {
  font-size: 1.4rem !important;
  margin-bottom: 28px !important;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-light-gray);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-medium-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px var(--color-brand-subtle);
}

.form-group select option {
  background: var(--color-charcoal);
  color: var(--color-white);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-message {
  display: none;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 16px;
}

.form-message.success {
  display: block;
  background: rgba(76, 175, 80, 0.1);
  color: var(--color-success);
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.form-message.error {
  display: block;
  background: rgba(231, 76, 60, 0.1);
  color: var(--color-error);
  border: 1px solid rgba(231, 76, 60, 0.3);
}

/* --- FAQ --- */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-soft-gray);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-black);
  text-align: left;
  line-height: 1.5;
}

.faq-question:hover {
  color: var(--color-brand);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-brand-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform var(--transition-fast);
  color: var(--color-brand);
  font-size: 1.2rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-answer p {
  padding-bottom: 24px;
  font-size: 0.92rem;
  color: var(--color-medium-gray);
  line-height: 1.8;
}

/* --- CTA Final --- */
.cta-final {
  background: linear-gradient(135deg, var(--color-black) 0%, #2a2420 50%, var(--color-black) 100%);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(201, 169, 110, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-final h2 {
  color: var(--color-white);
  margin-bottom: 20px;
  position: relative;
}

.cta-final p {
  color: var(--color-light-gray);
  margin: 0 auto 40px;
  position: relative;
}

.cta-final .btn-group {
  justify-content: center;
  position: relative;
}

/* --- Footer --- */
.footer {
  background: var(--color-black);
  border-top: 1px solid var(--color-charcoal);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--color-medium-gray);
  max-width: 280px;
}

.footer h4 {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 0.85rem;
  color: var(--color-medium-gray);
  padding: 6px 0;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid var(--color-charcoal);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--color-medium-gray);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-light-gray);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--color-brand);
  color: var(--color-white);
}

/* --- Hero Trust Badges --- */
.hero-trust-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--color-medium-gray);
  font-style: italic;
  line-height: 1.7;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--color-soft-gray);
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-black);
}

.testimonial-detail {
  font-size: 0.75rem;
  color: var(--color-brand);
  font-weight: 500;
}

/* --- Urgency Badge --- */
.urgency-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 16px;
  border-radius: var(--radius-xl);
  white-space: nowrap;
  animation: urgencyPulse 2s ease-in-out infinite;
  z-index: 2;
}

@keyframes urgencyPulse {

  0%,
  100% {
    box-shadow: 0 2px 12px rgba(231, 76, 60, 0.3);
  }

  50% {
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.6);
  }
}

/* --- Instagram Section --- */
.instagram-section {
  background: var(--color-white);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.instagram-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  display: block;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.instagram-item:hover img {
  transform: scale(1.08);
}

.instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201, 169, 110, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.instagram-item:hover .instagram-overlay {
  opacity: 1;
}

.instagram-overlay span {
  font-size: 1.8rem;
  filter: brightness(10);
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 998;
  transition: all var(--transition-base);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.1);
  }
}

/* --- Popup Modal --- */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-modal {
  background: linear-gradient(145deg, #1f1f1f 0%, #2a2520 50%, #1a1a1a 100%);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(201, 169, 110, 0.08);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s ease;
}

.popup-overlay.active .popup-modal {
  transform: translateY(0) scale(1);
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-light-gray);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  line-height: 1;
}

.popup-close:hover {
  background: rgba(231, 76, 60, 0.2);
  border-color: rgba(231, 76, 60, 0.4);
  color: #e74c3c;
}

.popup-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  animation: popupPulse 2s ease-in-out infinite;
}

@keyframes popupPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.popup-modal h3 {
  font-family: var(--font-heading);
  color: var(--color-white);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.popup-modal>p {
  color: var(--color-light-gray);
  font-size: 0.9rem;
  margin: 0 auto 28px;
  max-width: 360px;
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.popup-form-group input {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  outline: none;
}

.popup-form-group input::placeholder {
  color: var(--color-medium-gray);
}

.popup-form-group input:focus {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px var(--color-brand-subtle);
}

.popup-btn {
  width: 100%;
  margin-top: 4px;
  padding: 16px 24px !important;
  font-size: 0.9rem !important;
}

.popup-form-message {
  display: none;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 500;
  margin-top: 4px;
}

.popup-form-message.success {
  display: block;
  background: rgba(76, 175, 80, 0.1);
  color: var(--color-success);
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.popup-form-message.error {
  display: block;
  background: rgba(231, 76, 60, 0.1);
  color: var(--color-error);
  border: 1px solid rgba(231, 76, 60, 0.3);
}

.popup-privacy {
  font-size: 0.75rem !important;
  color: var(--color-medium-gray) !important;
  margin-top: 20px !important;
}

.popup-privacy a {
  color: var(--color-brand);
  text-decoration: underline;
}

/* --- CTA Inline Form --- */
.cta-form {
  max-width: 860px;
  margin: 0 auto;
}

.cta-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.cta-form-row input,
.cta-form-row select {
  width: 100%;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  transition: all var(--transition-fast);
  outline: none;
}

.cta-form-row input::placeholder {
  color: var(--color-medium-gray);
}

.cta-form-row input:focus,
.cta-form-row select:focus {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.cta-form-row select option {
  background: var(--color-charcoal);
  color: var(--color-white);
}

.cta-submit-btn {
  padding: 16px 48px !important;
  font-size: 0.9rem !important;
}

.cta-form-message {
  display: none;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 16px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-form-message.success {
  display: block;
  background: rgba(76, 175, 80, 0.15);
  color: var(--color-success);
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.cta-form-message.error {
  display: block;
  background: rgba(231, 76, 60, 0.15);
  color: var(--color-error);
  border: 1px solid rgba(231, 76, 60, 0.3);
}

.cta-privacy {
  font-size: 0.78rem !important;
  color: var(--color-medium-gray) !important;
  margin-top: 24px !important;
}

.cta-privacy a {
  color: var(--color-brand);
  text-decoration: underline;
}

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

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

.animate-on-scroll.delay-1 {
  transition-delay: 0.1s;
}

.animate-on-scroll.delay-2 {
  transition-delay: 0.2s;
}

.animate-on-scroll.delay-3 {
  transition-delay: 0.3s;
}

.animate-on-scroll.delay-4 {
  transition-delay: 0.4s;
}

/* --- Responsive --- */
@media (max-width: 1024px) {

  .benefit-row,
  .b2b-content,
  .form-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .benefit-row.reverse {
    direction: ltr;
  }

  .benefit-image {
    order: -1;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
  }

  .navbar-links,
  .navbar-cta {
    display: none;
  }

  .navbar-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 15, 20, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 30px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    gap: 20px;
    align-items: center;
  }

  .navbar-links.active a {
    color: var(--color-white) !important;
    font-size: 1.1rem;
    padding: 10px 0;
    width: 100%;
    text-align: center;
    font-weight: 500;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .trust-bar .container {
    gap: 30px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .b2b-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .crm-form {
    padding: 28px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .pricing-tabs {
    max-width: 100%;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.82rem;
  }

  .popup-modal {
    padding: 36px 24px;
  }

  .cta-form-row {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-trust-badges {
    gap: 12px;
  }

  .hero-trust-badges span {
    font-size: 0.7rem;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar .container {
    flex-direction: column;
    gap: 20px;
  }
}