/* ═══════════════════════════════════════════════════════════════
   DESIGN ACADEMY — Component Styles
   ═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────
   1. HEADER / NAVIGATION
   ───────────────────────────────────────────────────────────────── */

.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: var(--z-sticky);
  background-color: rgba(246, 244, 238, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(61, 81, 69, 0.08);
  transition: all var(--transition-base);
}

.header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: var(--container-2xl);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img,
.header-logo svg {
  height: 50px;
  width: auto;
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav-link {
  position: relative;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  color: var(--text-800);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-link:hover {
  color: var(--olive-900);
  background-color: rgba(61, 81, 69, 0.05);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  right: var(--space-4);
  left: var(--space-4);
  height: 2px;
  background-color: var(--gold-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-base);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-link.is-active {
  color: var(--olive-900);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #25D366;
  color: white;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.btn-whatsapp:hover {
  background-color: #20BA5A;
  transform: scale(1.05);
  color: white;
}

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

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--olive-900);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

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

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

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

/* Mobile Navigation */
@media (max-width: 1024px) {
  .menu-toggle {
    display: flex;
  }
  
  .main-nav {
    position: fixed;
    top: 80px;
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--space-4);
    background-color: var(--ivory-50);
    border-bottom: 1px solid var(--beige-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
  }
  
  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-link {
    padding: var(--space-4);
    border-radius: var(--radius-md);
  }
  
  .nav-link::after {
    display: none;
  }
  
  .header-actions .btn:not(.btn-whatsapp) {
    display: none;
  }
}

/* ─────────────────────────────────────────────────────────────────
   2. HERO SECTION
   ───────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--olive-900);
  overflow: hidden;
}

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

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 20%, rgba(200, 167, 119, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(200, 167, 119, 0.05) 0%, transparent 40%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8A777' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container-xl);
  margin-inline: auto;
  padding: var(--space-32) var(--space-6);
  padding-top: calc(80px + var(--space-20));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-16);
  align-items: center;
}

.hero-text {
  color: var(--ivory-50);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  padding: var(--space-2) var(--space-4);
  background-color: rgba(200, 167, 119, 0.15);
  border: 1px solid rgba(200, 167, 119, 0.3);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: var(--gold-400);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  color: var(--ivory-50);
  margin-bottom: var(--space-6);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.15;
}

.hero h1 span {
  color: var(--gold-400);
}

.hero-subtitle {
  font-size: var(--text-xl);
  color: rgba(246, 244, 238, 0.8);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(246, 244, 238, 0.1);
}

.hero-trust-text {
  font-size: var(--text-sm);
  color: rgba(246, 244, 238, 0.6);
  max-width: 280px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--olive-800) 0%, var(--olive-700) 100%);
  aspect-ratio: 4/3;
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200, 167, 119, 0.2);
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
}

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

.hero-float-card {
  position: absolute;
  background: rgba(246, 244, 238, 0.98);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}

.hero-float-card.card-1 {
  top: 10%;
  left: -30px;
  animation-delay: 0s;
}

.hero-float-card.card-2 {
  bottom: 15%;
  right: -20px;
  animation-delay: 1s;
}

.hero-float-card-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--beige-100);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-2);
  color: var(--gold-600);
}

.hero-float-card-text {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--olive-900);
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(246, 244, 238, 0.5);
  font-size: var(--text-sm);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-500), transparent);
  animation: pulse-gentle 2s ease-in-out infinite;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-subtitle {
    margin-inline: auto;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-trust {
    justify-content: center;
    text-align: center;
  }
  
  .hero-visual {
    max-width: 500px;
    margin-inline: auto;
  }
  
  .hero-float-card {
    display: none;
  }
}

/* ─────────────────────────────────────────────────────────────────
   3. FEATURE CARDS (Who Is This For)
   ───────────────────────────────────────────────────────────────── */

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-8);
  background: var(--ivory-50);
  border: 1px solid rgba(61, 81, 69, 0.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-500);
  box-shadow: var(--shadow-gold);
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--beige-100) 0%, var(--ivory-100) 100%);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-5);
  color: var(--olive-800);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.feature-card h4 {
  margin-bottom: var(--space-3);
  font-size: var(--text-lg);
}

.feature-card p {
  font-size: var(--text-base);
  color: var(--text-600);
}

/* ─────────────────────────────────────────────────────────────────
   4. BENEFITS SECTION
   ───────────────────────────────────────────────────────────────── */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

.benefits-column {
  padding: var(--space-10);
  border-radius: var(--radius-xl);
}

.benefits-column.business {
  background: linear-gradient(135deg, var(--olive-900) 0%, var(--olive-800) 100%);
  color: var(--ivory-50);
}

.benefits-column.personal {
  background: var(--beige-100);
  border: 1px solid rgba(61, 81, 69, 0.08);
}

.benefits-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.benefits-header-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
}

.benefits-column.business .benefits-header-icon {
  background: rgba(200, 167, 119, 0.2);
  color: var(--gold-400);
}

.benefits-column.personal .benefits-header-icon {
  background: var(--ivory-50);
  color: var(--olive-800);
}

.benefits-column h3 {
  margin: 0;
  font-size: var(--text-2xl);
}

.benefits-column.business h3 {
  color: var(--ivory-50);
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.benefit-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  margin-top: 2px;
}

.benefits-column.business .benefit-check {
  background: rgba(200, 167, 119, 0.2);
  color: var(--gold-400);
}

.benefits-column.personal .benefit-check {
  background: var(--olive-900);
  color: var(--ivory-50);
}

.benefit-check svg {
  width: 14px;
  height: 14px;
}

.benefit-text {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
}

.benefits-column.business .benefit-text {
  color: rgba(246, 244, 238, 0.9);
}

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

/* ─────────────────────────────────────────────────────────────────
   5. PROGRAM CARDS
   ───────────────────────────────────────────────────────────────── */

.program-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--space-8);
  background: var(--ivory-50);
  border: 1px solid rgba(61, 81, 69, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-base);
}

.program-card:hover::before {
  transform: scaleX(1);
}

.program-card:hover {
  border-color: rgba(61, 81, 69, 0.2);
  box-shadow: var(--shadow-lg);
}

.program-number {
  position: absolute;
  top: var(--space-6);
  left: var(--space-6);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--beige-100);
  border-radius: var(--radius-full);
  font-family: var(--font-serif);
  font-size: var(--text-sm);
  color: var(--olive-800);
}

.program-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--olive-900) 0%, var(--olive-800) 100%);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-6);
  color: var(--gold-400);
}

.program-icon svg {
  width: 28px;
  height: 28px;
}

.program-card h3 {
  margin-bottom: var(--space-3);
  font-size: var(--text-xl);
}

.program-card p {
  flex: 1;
  margin-bottom: var(--space-6);
  color: var(--text-600);
}

.program-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid var(--beige-200);
}

.program-features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-700);
}

.program-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold-500);
  border-radius: var(--radius-full);
}

/* ─────────────────────────────────────────────────────────────────
   6. PROCESS STEPS
   ───────────────────────────────────────────────────────────────── */

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 48px;
  right: 15%;
  left: 15%;
  height: 2px;
  background: linear-gradient(to left, transparent, var(--gold-500), transparent);
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-6);
}

.process-step-number {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--olive-900);
  border: 3px solid var(--gold-500);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  color: var(--gold-400);
  position: relative;
  z-index: 1;
}

.process-step h4 {
  margin-bottom: var(--space-3);
  font-size: var(--text-xl);
}

.process-step p {
  font-size: var(--text-base);
  color: var(--text-600);
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .process-steps::before {
    display: none;
  }
}

/* ─────────────────────────────────────────────────────────────────
   7. TESTIMONIALS
   ───────────────────────────────────────────────────────────────── */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  padding: var(--space-8);
  background: var(--ivory-50);
  border: 1px solid rgba(61, 81, 69, 0.08);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  border-color: rgba(61, 81, 69, 0.15);
  box-shadow: var(--shadow-md);
}

.testimonial-quote {
  position: relative;
  flex: 1;
  margin-bottom: var(--space-6);
  padding-right: var(--space-8);
}

.testimonial-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 0;
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold-500);
  opacity: 0.3;
}

.testimonial-quote p {
  font-size: var(--text-base);
  font-style: italic;
  color: var(--text-700);
  line-height: var(--leading-relaxed);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-6);
  border-top: 1px solid var(--beige-200);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--beige-100) 0%, var(--beige-200) 100%);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  color: var(--olive-800);
}

.testimonial-info h5 {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  margin-bottom: 2px;
}

.testimonial-info span {
  font-size: var(--text-sm);
  color: var(--text-500);
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ─────────────────────────────────────────────────────────────────
   8. LEAD MAGNET / CTA SECTION
   ───────────────────────────────────────────────────────────────── */

.cta-section {
  background: linear-gradient(135deg, var(--olive-900) 0%, var(--olive-800) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-16);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200, 167, 119, 0.1) 0%, transparent 70%);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-inline: auto;
}

.cta-section h2 {
  color: var(--ivory-50);
  margin-bottom: var(--space-4);
}

.cta-section p {
  color: rgba(246, 244, 238, 0.8);
  margin-bottom: var(--space-8);
}

.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.cta-form .form-input {
  background: rgba(246, 244, 238, 0.1);
  border-color: rgba(246, 244, 238, 0.2);
  color: var(--ivory-50);
}

.cta-form .form-input::placeholder {
  color: rgba(246, 244, 238, 0.5);
}

.cta-form .form-input:focus {
  background: rgba(246, 244, 238, 0.15);
  border-color: var(--gold-500);
}

.cta-form .btn {
  grid-column: span 2;
}

@media (max-width: 640px) {
  .cta-form {
    grid-template-columns: 1fr;
  }
  
  .cta-form .btn {
    grid-column: span 1;
  }
}

/* ─────────────────────────────────────────────────────────────────
   9. FAQ ACCORDION
   ───────────────────────────────────────────────────────────────── */

.faq-list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.faq-item {
  background: var(--ivory-50);
  border: 1px solid rgba(61, 81, 69, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: rgba(61, 81, 69, 0.15);
}

.faq-item.is-open {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-6);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: right;
  font-family: var(--font-sans);
  font-size: var(--text-lg);
  font-weight: var(--weight-medium);
  color: var(--text-900);
  transition: all var(--transition-fast);
}

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

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-600);
  transition: transform var(--transition-base);
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

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

.faq-item.is-open .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 var(--space-6) var(--space-6);
}

.faq-answer p {
  font-size: var(--text-base);
  color: var(--text-600);
  line-height: var(--leading-relaxed);
}

/* ─────────────────────────────────────────────────────────────────
   10. FOOTER
   ───────────────────────────────────────────────────────────────── */

.footer {
  background: var(--olive-900);
  color: var(--ivory-50);
  padding-top: var(--space-20);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--space-12);
  padding-bottom: var(--space-16);
}

.footer-brand p {
  color: rgba(246, 244, 238, 0.7);
  font-size: var(--text-base);
  margin-top: var(--space-4);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(246, 244, 238, 0.1);
  border-radius: var(--radius-md);
  color: var(--ivory-50);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--gold-500);
  color: var(--olive-900);
}

.footer-column h5 {
  color: var(--ivory-50);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  margin-bottom: var(--space-5);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  color: rgba(246, 244, 238, 0.7);
  font-size: var(--text-base);
  transition: color var(--transition-fast);
}

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

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  color: rgba(246, 244, 238, 0.7);
  font-size: var(--text-base);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold-500);
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6) 0;
  border-top: 1px solid rgba(246, 244, 238, 0.1);
}

.footer-bottom p {
  font-size: var(--text-sm);
  color: rgba(246, 244, 238, 0.5);
}

.footer-legal {
  display: flex;
  gap: var(--space-6);
}

.footer-legal a {
  font-size: var(--text-sm);
  color: rgba(246, 244, 238, 0.5);
}

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

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand p {
    max-width: none;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }
}

/* ─────────────────────────────────────────────────────────────────
   11. FLOATING WHATSAPP BUTTON
   ───────────────────────────────────────────────────────────────── */

.floating-whatsapp {
  position: fixed;
  bottom: var(--space-6);
  left: var(--space-6);
  z-index: var(--z-fixed);
}

.floating-whatsapp a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: var(--radius-full);
  color: white;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-fast);
}

.floating-whatsapp a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
}

/* Pulse animation */
.floating-whatsapp::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  background: #25D366;
  opacity: 0.3;
  animation: pulse-ring 2s ease-out infinite;
  z-index: -1;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* ─────────────────────────────────────────────────────────────────
   12. ABOUT SECTION
   ───────────────────────────────────────────────────────────────── */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-16);
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--beige-100) 0%, var(--beige-200) 100%);
}

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

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--gold-500);
  border-radius: var(--radius-xl);
  z-index: -1;
}

.about-content h2 {
  margin-bottom: var(--space-6);
}

.about-content .lead {
  margin-bottom: var(--space-6);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.about-value {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--beige-100);
  border-radius: var(--radius-md);
}

.about-value-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--olive-900);
  border-radius: var(--radius-sm);
  color: var(--gold-400);
}

.about-value-icon svg {
  width: 16px;
  height: 16px;
}

.about-value span {
  font-weight: var(--weight-medium);
  color: var(--text-800);
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    max-width: 400px;
    margin-inline: auto;
  }
}

/* ─────────────────────────────────────────────────────────────────
   13. CLIENTS / LOGOS SECTION
   ───────────────────────────────────────────────────────────────── */

.clients-section {
  padding: var(--space-12) 0;
  background: var(--beige-100);
}

.clients-label {
  text-align: center;
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--text-500);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  margin-bottom: var(--space-8);
}

.clients-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-12);
}

.client-logo {
  height: 36px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all var(--transition-base);
}

.client-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ─────────────────────────────────────────────────────────────────
   14. SECTION HEADERS
   ───────────────────────────────────────────────────────────────── */

.section-header {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: var(--space-12);
}

.section-header .gold-line {
  margin-bottom: var(--space-4);
}

.section-header h2 {
  margin-bottom: var(--space-4);
}

.section-header p {
  font-size: var(--text-lg);
  color: var(--text-600);
}

.section-header.light h2 {
  color: var(--ivory-50);
}

.section-header.light p {
  color: rgba(246, 244, 238, 0.7);
}

.section-header.light .gold-line {
  background: var(--gold-400);
}

