/* 
  🎨 LUXURY REAL ESTATE DESIGN SYSTEM 
  AUREVIA AI Receptionist 
*/

:root {
  /* Color Palette */
  --bg-primary: #FAFAF7; /* warm off-white / ivory */
  --bg-secondary: #F2EDE4; /* warm champagne/linen */
  --bg-dark: #1A1208; /* near-black warm brown */
  --bg-darker: #120D06; /* darkest warm black for footer */
  
  --gold-primary: #C9A96E; /* warm brushed gold */
  --gold-deep: #A07840; /* rich bronze/gold */
  --gold-light: #E8D5A3; /* pale gold shimmer */
  
  --text-dark: #1C1C1A; /* near-black warm */
  --text-secondary: #6B6356; /* warm taupe gray */
  --text-white: #FEFEFE;
  
  --overlay-dark: rgba(26, 18, 8, 0.65);
  --overlay-darker: rgba(26, 18, 8, 0.75);

  /* Typography */
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Lato', sans-serif;
  --font-heading-sans: 'Montserrat', sans-serif;
  
  /* Utilities */
  --transition-elegant: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-soft: 0 10px 30px rgba(28, 28, 26, 0.05);
  --shadow-gold: 0 10px 30px rgba(201, 169, 110, 0.15);
  --border-gold-thin: 1px solid var(--gold-primary);
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary); 
}
::-webkit-scrollbar-thumb {
  background: var(--gold-primary); 
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-deep); 
}

h1, h2, h3, h4, .serif {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
}

.center {
  text-align: center;
}

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

.gray {
  color: var(--text-secondary);
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
}

/* Typography Utilities */
.section-label {
  font-family: var(--font-heading-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 3rem;
}

.section-subtitle.center {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
}

.body-text {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.highlight-text {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-dark);
  font-family: var(--font-serif);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-heading-sans);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  border-radius: 2px;
  transition: var(--transition-elegant);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--gold-primary);
  color: var(--bg-dark);
  border: 1px solid var(--gold-primary);
}

.btn-primary:hover {
  background-color: var(--gold-deep);
  border-color: var(--gold-deep);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background-color: transparent;
  color: var(--gold-primary);
  border: var(--border-gold-thin);
}

.btn-outline:hover {
  background-color: var(--gold-primary);
  color: var(--bg-dark);
}

.btn-ghost {
  background-color: transparent;
  color: var(--text-white);
  border: 1px solid var(--text-white);
}

.btn-ghost:hover {
  background-color: rgba(254, 254, 254, 0.1);
}

.btn-ghost.gold-border {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.btn-ghost.gold-border:hover {
  background-color: rgba(201, 169, 110, 0.05);
}

.full-width {
  width: 100%;
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 0.95rem;
}

.shimmer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(232, 213, 163, 0) 0%, rgba(232, 213, 163, 0.4) 50%, rgba(232, 213, 163, 0) 100%);
  transform: skewX(-25deg);
  transition: all 0.5s;
}

.btn:hover.shimmer::before {
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  100% {
    left: 200%;
  }
}

.text-link {
  font-family: var(--font-heading-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
}

.text-link:hover {
  color: var(--gold-deep);
  transform: translateX(5px);
}

/* Logos */
.logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-deep) 100%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  position: relative;
}

.logo-icon::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 4px;
  background-color: var(--bg-primary);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.navbar.scrolled .logo-icon::after {
  background-color: var(--bg-primary);
}

.logo-white-gold.logo-icon::after {
  background-color: var(--bg-darker);
}

.footer .logo-icon::after {
  background-color: var(--bg-darker);
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text-dark);
  line-height: 1;
}

.logo-white-gold, .footer-logo .brand {
  color: var(--text-white);
}

.sub-brand {
  font-family: var(--font-heading-sans);
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  color: var(--gold-primary);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: var(--transition-elegant);
  background-color: transparent;
}

.navbar.scrolled {
  background-color: rgba(250, 250, 247, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.navbar.scrolled .nav-link {
  color: var(--text-dark);
}

.navbar:not(.scrolled) .brand,
.navbar:not(.scrolled) .nav-link {
  color: var(--text-white);
}

.navbar:not(.scrolled) .logo-icon::after {
  background-color: transparent; /* Makes the inner triangle match the dark hero overlay initially */
}


.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-heading-sans);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold-primary);
  transition: var(--transition-elegant);
}

.nav-link:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger {
  width: 25px;
  height: 2px;
  background-color: var(--gold-primary);
  transition: var(--transition-elegant);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  transition: var(--transition-elegant);
  z-index: 999;
}

.mobile-menu.active {
  right: 0;
}

.mobile-link {
  font-family: var(--font-heading-sans);
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark);
}

/* SECTION 2: HERO */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(26,18,8,0.5), rgba(26,18,8,0.75));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-top: 4rem; /* offset for navbar */
}

.hero-title {
  color: var(--text-white);
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  color: #D6D3CD; /* Light warm gray */
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.scroll-indicator {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
  width: 100%;
  z-index: 2;
}

.scroll-indicator .mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--gold-primary);
  border-radius: 20px;
  position: relative;
  opacity: 0.8;
}

.scroll-indicator .wheel {
  width: 4px;
  height: 8px;
  background-color: var(--gold-primary);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* SECTION 3: TRUST BAR */
.trust-bar {
  background-color: var(--bg-dark);
  padding: 2rem 0;
  border-bottom: var(--border-gold-thin);
}

.trust-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-item {
  color: var(--gold-primary);
  font-family: var(--font-serif);
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}

.trust-divider {
  width: 1px;
  height: 20px;
  background-color: var(--gold-primary);
  opacity: 0.4;
}

/* SECTION 4: PAIN POINTS */
.pain-points {
  background-color: var(--bg-secondary);
}

.cards-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

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

.card {
  background-color: var(--bg-primary);
  border: var(--border-gold-thin);
  padding: 3rem 2rem;
  border-radius: 2px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-elegant);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--gold-primary);
}

/* SECTION 5: SOLUTION INTRODUCTION */
.solution {
  background-color: var(--bg-primary);
}

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

/* Chat Mockup */
.chat-mockup {
  border: var(--border-gold-thin);
  background-color: var(--bg-primary);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  max-width: 450px;
  margin: 0 auto;
}

.chat-header {
  padding: 1.25rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--bg-secondary);
}

.chat-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chat-avatar::after {
  content: 'A';
  color: var(--bg-primary);
  font-family: var(--font-serif);
  font-weight: bold;
  font-size: 1.25rem;
}

.chat-info {
  display: flex;
  flex-direction: column;
}

.chat-name {
  font-family: var(--font-heading-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.chat-status {
  font-size: 0.75rem;
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  gap: 4px;
}

.chat-status::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: #22c55e;
  border-radius: 50%;
  display: inline-block;
}

.chat-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjZmFmYWY3Ij48L3JlY3Q+CjxyZWN0IHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InJnYmEoMjAxLCAxNjksIDExMCwgMC4wNSkiPjwvcmVjdD4KPC9zdmc+');
  height: 350px;
}

.message {
  max-width: 85%;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.5;
  animation: messageSlideIn 0.5s ease backwards;
}

.message.incoming {
  background-color: #E8E5DF; /* slightly darker than secondary */
  color: var(--text-dark);
  align-self: flex-start;
  border-bottom-left-radius: 0;
}

.message.outgoing {
  background-color: var(--gold-primary);
  color: var(--bg-dark);
  align-self: flex-end;
  border-bottom-right-radius: 0;
  box-shadow: 0 4px 10px rgba(201, 169, 110, 0.2);
}

.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 1rem 1.25rem !important;
  align-items: center;
  justify-content: center;
  width: fit-content;
}

.dot {
  width: 6px;
  height: 6px;
  background-color: var(--bg-dark);
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out both;
}

.dot:nth-child(1) { animation-delay: -0.32s; }
.dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

@keyframes messageSlideIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.hidden {
  display: none !important;
}

/* SECTION 6: HOW IT WORKS */
.dark-section {
  background-color: var(--bg-dark);
  color: var(--text-white);
}

.dark-section .section-title {
  color: var(--text-white);
}

.timeline {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
  position: relative;
  gap: 2rem;
}

.timeline-line {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  z-index: 1;
}

.timeline-step {
  flex: 1;
  background-color: var(--bg-dark);
  position: relative;
  z-index: 2;
  padding-top: 1rem;
  text-align: center;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold-primary);
  margin-bottom: 1rem;
  background-color: var(--bg-dark);
  display: inline-block;
  padding: 0 1rem;
}

.step-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.step-desc {
  color: #D6D3CD;
  font-size: 0.95rem;
}

/* SECTION 7: FEATURES */
.features {
  background-color: var(--bg-secondary);
}

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

.feature-card {
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--gold-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.feature-desc {
  color: var(--text-secondary);
}

/* SECTION 8: TESTIMONIALS */
.testimonials {
  background-color: var(--bg-primary);
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.testimonial-img-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  position: relative;
  box-shadow: var(--shadow-gold);
}

.testimonial-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
}

.quote {
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.author-name {
  font-family: var(--font-heading-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.author-title {
  font-size: 0.8rem;
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* SECTION 9: PRICING */
.pricing {
  background-color: var(--bg-dark);
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.pricing-card {
  background-color: var(--bg-darker);
  border: 1px solid rgba(201, 169, 110, 0.3);
  box-shadow: none;
  text-align: center;
  padding: 3rem 2rem;
  color: var(--text-white);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card.popular {
  border: 1px solid var(--gold-primary);
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(201, 169, 110, 0.1);
  position: relative;
  background-color: #161008;
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-5px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--gold-primary);
  color: var(--bg-dark);
  font-family: var(--font-heading-sans);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  letter-spacing: 0.1em;
}

.plan-name {
  font-family: var(--font-heading-sans);
  color: var(--gold-primary);
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.plan-target {
  font-size: 0.85rem;
  color: #D6D3CD;
  margin-bottom: 2rem;
  min-height: 40px;
}

.plan-price {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  margin-bottom: 2rem;
  color: var(--text-white);
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.plan-price span {
  font-size: 1.5rem;
  margin-top: 0.5rem;
}

.plan-features {
  text-align: left;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.plan-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
  color: #D6D3CD;
  display: flex;
  align-items: center;
}

.plan-features li::before {
  content: '✦';
  color: var(--gold-primary);
  margin-right: 0.75rem;
  font-size: 0.8rem;
}

/* SECTION 10: FAQ */
.faq {
  background-color: var(--bg-secondary);
}

.accordion {
  max-width: 800px;
  margin: 3rem auto 0;
}

.accordion-item {
  border-bottom: var(--border-gold-thin);
  margin-bottom: 1rem;
}

.accordion-header {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.5rem 0;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-elegant);
}

.accordion-header:hover {
  color: var(--gold-deep);
}

.accordion-header .icon {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  color: var(--gold-primary);
  transition: transform 0.3s ease;
}

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

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
  max-height: 200px; /* arbitrary max height for transition */
}

.accordion-content p {
  padding-bottom: 1.5rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.accordion-item.active {
  border-left: 2px solid var(--gold-primary);
  padding-left: 1rem;
}

/* SECTION 11: FINAL CTA */
.final-cta {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 8rem 0;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay-darker);
  z-index: 1;
}

.footer-cta-content {
  position: relative;
  z-index: 2;
}

.final-cta .section-title {
  color: var(--text-white);
}

.cta-subtitle {
  font-size: 1.15rem;
  color: var(--text-white);
  max-width: 700px;
  margin: 0 auto 3rem;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-features {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  color: #D6D3CD;
  font-size: 0.9rem;
  font-family: var(--font-heading-sans);
  letter-spacing: 0.05em;
  flex-wrap: wrap;
}

.cta-features .dot {
  color: var(--gold-primary);
}

/* SECTION 12: FOOTER */
.footer {
  background-color: var(--bg-darker);
  color: var(--text-white);
  padding: 4rem 0 2rem;
}

.footer-top {
  margin-bottom: 4rem;
}

.footer-triangle-icon {
  width: 64px;
  height: auto;
  margin: 0 auto 1.5rem auto;
  display: block;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-primary);
  font-size: 1.25rem;
  margin-top: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-family: var(--font-heading-sans);
  color: var(--gold-primary);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-col ul li {
  margin-bottom: 1rem;
  color: #D6D3CD;
}

.footer-col ul li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-elegant);
}

.footer-col ul li i {
  font-size: 1.25rem;
  color: var(--gold-primary);
}

.footer-col ul li a:hover {
  color: var(--gold-light);
}

.powered-by {
  font-size: 0.8rem;
  color: #8c8881;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(201, 169, 110, 0.2);
  margin-bottom: 2rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #8c8881;
}

/* Animations */
.fade-in {
  opacity: 0;
  transition: opacity 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .solution-grid, .timeline, .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline-line {
    display: none;
  }
  
  .timeline-step {
    margin-bottom: 2rem;
  }
  
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-card.popular {
    transform: none;
  }
  
  .pricing-card.popular:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .trust-container {
    flex-direction: column;
    align-items: center;
  }
  
  .trust-divider {
    width: 50px;
    height: 1px;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-ctas {
    flex-direction: column;
  }
  
  .chat-mockup {
    margin-top: 2rem;
  }
}
