/* CSS Variables for Consistency */
:root {
  /* Typography Scale */
  --text-xs: 0.875rem;
  --text-sm: 1rem;
  --text-base: 1.125rem;
  --text-lg: 1.5rem;
  --text-xl: 2rem;
  --text-2xl: 2.5rem;
  --text-3xl: 3rem;
  
  /* Line Heights */
  --leading-tight: 1.2;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;
  
  /* Colors */
  --color-primary: #F8A05B;
  --color-primary-dark: #F4824A;
  --color-text-dark: #1C1C1C;
  --color-text-body: #4A4A4A;
  --color-text-light: #666666;
  --color-bg-light: #FFFCF8;
  --color-bg-white: #FFFFFF;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 5rem;
}

/* Global Styles with Smooth Scrolling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Navigation Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 252, 248, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.25rem;
  color: #1C1C1C;
  transition: transform 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-logo img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 5px rgba(248,160,91,0.2));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #5A5A5A;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #F8A05B 0%, #F4824A 100%);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #F8A05B;
}

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

.nav-cta {
  background: linear-gradient(135deg, #F8A05B 0%, #F4824A 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(248,160,91,0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(248,160,91,0.4);
}

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

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #1C1C1C;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 252, 248, 0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

body { 
  margin: 0; 
  font-family: 'Inter', sans-serif; 
  background-color: #FFFCF8; 
  color: #2F2F2F; 
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { 
  font-family: 'Inter', sans-serif; 
  font-weight: 600;
  color: #1C1C1C;
  letter-spacing: -0.02em;
}

/* Why Clara Section */
.why-clara-section {
  background: var(--color-bg-white);
  padding: var(--space-3xl) var(--space-lg);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  max-width: 1200px;
  margin: var(--space-xl) auto 0;
}

.why-card {
  text-align: left;
  padding: var(--space-lg);
}

.why-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  display: inline-block;
}

.why-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-text-dark);
}

.why-card p {
  font-size: var(--text-base);
  color: var(--color-text-body);
  line-height: var(--leading-relaxed);
}


.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto var(--space-2xl);
  text-align: center;
}

.proof-stat {
  padding: var(--space-md);
}

.proof-number {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.proof-label {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.testimonial-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--color-bg-light);
  padding: var(--space-xl);
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: left;
}

.testimonial-quote {
  font-size: var(--text-base);
  color: var(--color-text-body);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
  font-style: italic;
}

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

.testimonial-author strong {
  font-size: var(--text-sm);
  color: var(--color-text-dark);
}

.testimonial-author span {
  font-size: var(--text-xs);
  color: var(--color-text-light);
}

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero {
  padding: 8rem 2rem 5rem;
  background: linear-gradient(135deg, #FFF9F3 0%, #FFE5D3 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(248,160,91,0.1) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}
.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-logo {
  width: 120px;
  height: auto;
  display: block;
  margin: 0 auto 2rem auto;
  /* animation removed for consistency */
  filter: drop-shadow(0 5px 15px rgba(248,160,91,0.3));
}
.hero-text h1 { 
  font-size: 3rem; 
  margin: 0 0 1.5rem; 
  line-height: 1.1;
  /* animation removed for consistency */
  background: linear-gradient(135deg, #1C1C1C 0%, #4A4A4A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text p { 
  font-size: 1.2rem; 
  margin: 0 auto 2rem; 
  color: #5A5A5A;
  max-width: 600px;
  line-height: 1.6;
  /* animation removed for consistency */
}

@media (max-width: 768px) {
  .hero {
    padding: 6rem 1.5rem 3rem;
  }
  .hero-logo {
    width: 100px;
    margin-bottom: 1.5rem;
  }
  .hero-text h1 { 
    font-size: 2.2rem; 
  }
  .hero-text p { 
    font-size: 1.125rem; 
  }
}

.btn {
  padding: 1rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  /* animation removed for consistency */
  border: none;
  cursor: pointer;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #F8A05B 0%, #F4824A 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(248,160,91,0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #F4824A 0%, #F8A05B 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(248,160,91,0.5);
}

.btn-secondary {
  background-color: transparent;
  color: #F8A05B;
  border: 2px solid #F8A05B;
}

.btn-secondary:hover {
  background-color: #F8A05B;
  color: white;
}

.cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.section {
  padding: 5rem 2rem;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #F8A05B 0%, #F4824A 100%);
  border-radius: 2px;
}

.section-subhead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #5A5A5A;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.how-card {
  background: linear-gradient(145deg, #FFF4E9 0%, #FFE5D3 100%);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(248,160,91,0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(248,160,91,0.1);
  position: relative;
  overflow: hidden;
}

.how-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(248,160,91,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.how-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(248,160,91,0.2);
  border-color: rgba(248,160,91,0.3);
}

.how-card:hover::before {
  opacity: 1;
}
.icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.how-card:hover .icon {
  transform: scale(1.2) rotate(10deg);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
  text-align: left;
}
.col {
  background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0,0,0,0.05);
}

.col:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.col ul li {
  transition: transform 0.2s ease;
}

.col:hover ul li {
  transform: translateX(5px);
}

.col:hover ul li:nth-child(1) { transition-delay: 0s; }
.col:hover ul li:nth-child(2) { transition-delay: 0.05s; }
.col:hover ul li:nth-child(3) { transition-delay: 0.1s; }
.col:hover ul li:nth-child(4) { transition-delay: 0.15s; }
.col:hover ul li:nth-child(5) { transition-delay: 0.2s; }

.quote-section .quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.quote-card {
  background: linear-gradient(145deg, #FFF4E9 0%, #FFE5D3 100%);
  border-radius: 1.5rem;
  padding: 1.5rem;
  font-style: italic;
  box-shadow: 0 8px 25px rgba(248,160,91,0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(248,160,91,0.1);
  position: relative;
  overflow: hidden;
}

.quote-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 10px;
  font-size: 4rem;
  color: rgba(248,160,91,0.2);
  font-family: 'Inter', sans-serif;
  font-style: italic;
}

.quote-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 35px rgba(248,160,91,0.25);
}
.quote-wrap {
  font-size: 1rem;
  color: #555;
  margin-top: 1rem;
}

.stats-section {
  background: linear-gradient(180deg, #FFE5D3 0%, #FFF9F3 100%);
  padding: 3rem 2rem;
  position: relative;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.stat-item {
  background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
  padding: 2rem 1rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(248,160,91,0.1);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(248,160,91,0.2);
  border-color: rgba(248,160,91,0.3);
}

.stat-number {
  font-size: 3rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #F8A05B;
  margin-bottom: 0.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.stat-item:hover .stat-number {
  transform: scale(1.1);
}

.stat-label {
  font-size: 1rem;
  color: #5A5A5A;
  font-weight: 500;
}

.guarantee {
  font-size: 0.9rem;
  color: #777;
  margin-top: 1rem;
}

.demo-section {
  background: linear-gradient(180deg, #FAFAFA 0%, #F5F5F5 100%);
  position: relative;
  overflow: hidden;
}

.demo-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(248,160,91,0.3) 50%, transparent 100%);
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.demo-panel {
  background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.demo-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  padding: 1px;
  background: linear-gradient(135deg, rgba(248,160,91,0.3) 0%, transparent 70%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.demo-panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.demo-panel:hover::before {
  opacity: 1;
}

.demo-panel h3 {
  margin: 0 0 1rem 0;
  font-size: 1.3rem;
  color: #F8A05B;
  font-weight: 700;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.chat-mockup {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1.75rem;
  border: 1px solid #e5e7eb;
}

.chat-message {
  margin-bottom: 1.5rem;
}

.chat-message:last-child {
  margin-bottom: 0;
}

.user-message {
  text-align: right;
}

.user-message .message-content {
  background: linear-gradient(135deg, #F8A05B 0%, #F4824A 100%);
  color: white;
  padding: 0.875rem 1.25rem;
  border-radius: 1.25rem 1.25rem 0.25rem 1.25rem;
  display: inline-block;
  max-width: 80%;
  font-size: 0.9375rem;
  box-shadow: 0 2px 8px rgba(248,160,91,0.25);
  animation: slideInRight 0.3s ease-out;
}

.clara-message .message-content {
  background: white;
  color: #333;
  padding: 1rem 1.25rem;
  border-radius: 1.25rem 1.25rem 1.25rem 0.25rem;
  display: inline-block;
  max-width: 85%;
  font-size: 0.9375rem;
  line-height: 1.5;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  animation: slideInLeft 0.3s ease-out;
}

.source-reference {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: #6b7280;
  font-style: normal;
  padding-top: 0.75rem;
  border-top: 1px solid #e5e7eb;
}

.timeline-mockup {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1.75rem;
  position: relative;
  border: 1px solid #e5e7eb;
}

.timeline-item {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.75rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 0.125rem;
  width: 10px;
  height: 10px;
  background: #F8A05B;
  border-radius: 50%;
  z-index: 2;
}

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 1.25rem;
  top: 0.75rem;
  width: 1px;
  bottom: -1.75rem;
  background: #e5e7eb;
  z-index: 1;
}

.timeline-date {
  font-size: 0.8125rem;
  color: #F8A05B;
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.timeline-content {
  background: white;
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.timeline-content strong {
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.375rem;
  line-height: 1.3;
}

.timeline-content p {
  color: #4b5563;
  font-size: 0.875rem;
  margin: 0 0 0.5rem 0;
  line-height: 1.4;
}

.timeline-source {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.timeline-source::before {
  content: '📎';
  opacity: 0.5;
  font-size: 0.75rem;
}

.footer {
  padding: 5rem 2rem 2rem;
  background: linear-gradient(180deg, #1C1C1C 0%, #0A0A0A 100%);
  color: white;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(248,160,91,0.5) 50%, transparent 100%);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  width: 60px;
  height: 60px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand h3 {
  font-size: 1.5rem;
  color: white;
  margin: 0;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.6;
}

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

.footer-links h4 {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #F8A05B;
}

.footer-cta {
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-line {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  font-weight: 500;
  color: white;
}

@media (max-width: 768px) {
  .hero-text h1 { 
    font-size: 2rem; 
    line-height: 1.2; 
  }
  
  .hero-text p { 
    font-size: 1.125rem; 
  }
  
  .cta-group {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .btn {
    width: auto;
    max-width: 300px;
    text-align: center;
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  
  .col {
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .col ul {
    padding-left: 1.25rem;
    text-align: left;
    display: inline-block;
  }
  
  .quote-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .demo-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .demo-panel {
    padding: 1.25rem;
  }
  
  .user-message .message-content,
  .clara-message .message-content {
    max-width: 90%;
    font-size: 0.9rem;
  }
  
  .guarantee {
    font-size: 0.85rem;
    line-height: 1.4;
  }
}

/* Loading Animation */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* Smooth Focus States */
*:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(248,160,91,0.3);
  transition: box-shadow 0.2s ease;
}

/* Enhanced Typography */
p {
  letter-spacing: 0.01em;
}

h3 {
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

/* Gradient Text Effect for Section Headers */
.section h2 {
  background: linear-gradient(135deg, #1C1C1C 0%, #4A4A4A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Enhanced List Styles */
ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F8A05B;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Hover State for Links */
a {
  transition: color 0.2s ease;
}

a:hover {
  color: #F8A05B;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
}

.copyright {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #F8A05B;
  color: white;
  transform: translateY(-3px);
}

.social-links svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-brand {
    align-items: center;
  }
  
  .footer-links {
    align-items: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* Enhanced Section Spacing */
.section + .section {
  padding-top: 6rem;
}

/* About Section */
.about-section {
  background: linear-gradient(180deg, #FFFCF8 0%, #FFF9F3 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: center;
}

.about-text {
  text-align: left;
}

.about-text p {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-body);
  margin-bottom: var(--space-md);
}

.about-text p strong {
  color: #333;
  font-weight: 600;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.about-stat {
  background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
  padding: 2rem;
  border-radius: 1.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(248,160,91,0.1);
}

.about-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(248,160,91,0.15);
  border-color: rgba(248,160,91,0.3);
}

.about-stat-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 5px 10px rgba(248,160,91,0.2));
}

.about-stat-label {
  font-size: 1rem;
  color: #5A5A5A;
  font-weight: 500;
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-text {
    text-align: center;
  }
  
  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .about-stat {
    padding: 1.5rem;
  }
  
  .about-stat-number {
    font-size: 2rem;
  }
}

/* Features Section */
.features-section {
  background: linear-gradient(180deg, #FAFAFA 0%, #F5F5F5 100%);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(248,160,91,0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  border-color: rgba(248,160,91,0.2);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
}

.feature-card:hover .feature-icon {
  transform: scale(1.2) rotate(5deg);
}

.feature-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-text-dark);
}

.feature-card p {
  font-size: var(--text-base);
  color: var(--color-text-body);
  line-height: var(--leading-relaxed);
  text-align: center;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-card {
    padding: 2rem 1.5rem;
  }
}

/* Positioning Section */
.positioning-section {
  background: #F8F9FC;
  padding: 5rem 2rem;
}

/* Remove section-level alignment overrides - let headers stay centered naturally */

.persona-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.persona-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: left;
  transition: all 0.3s ease;
}

.persona-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.persona-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-text-dark);
}

.persona-card p {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-body);
}

.persona-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

@media (max-width: 768px) {
  .persona-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .persona-card {
    padding: 2rem;
  }
  
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
  
  .testimonial-container {
    grid-template-columns: 1fr;
  }
  
  .pricing-tiers {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .pricing-tier.featured {
    transform: none;
  }
}

/* Pricing Section */
.pricing-section {
  background: linear-gradient(180deg, #FFFCF8 0%, #FFF9F3 100%);
  position: relative;
}

.pricing-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: center;
}

.pricing-intro {
  text-align: left;
}

.pricing-intro h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #1C1C1C;
}

.pricing-intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #5A5A5A;
  margin-bottom: 1.5rem;
}

.pricing-factors {
  list-style: none;
  padding: 0;
}

.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.pricing-tier {
  background: var(--color-bg-white);
  padding: var(--space-lg);
  border-radius: 1rem;
  border: 2px solid #E0E0E0;
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-tier.featured {
  border-color: var(--color-primary);
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(248,160,91,0.2);
}

.pricing-tier h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-text-dark);
}

.tier-units {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.tier-price {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.tier-per-unit {
  font-size: var(--text-xs);
  color: var(--color-text-light);
}

.pricing-comparison {
  margin-top: var(--space-lg);
  font-size: var(--text-base);
  color: var(--color-text-body);
}

.pricing-factors li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1.05rem;
  color: #333;
}

.pricing-factors li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F8A05B;
  font-weight: bold;
  font-size: 1.2rem;
}

.pricing-cta-card {
  background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
  border-radius: 2rem;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border: 1px solid rgba(248,160,91,0.1);
  transition: all 0.3s ease;
}

.pricing-cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(248,160,91,0.2);
}

.pricing-cta-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #1C1C1C;
}

.pricing-cta-card p {
  font-size: 1.1rem;
  color: #5A5A5A;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.pricing-cta-card .btn {
  margin-bottom: 2rem;
}

.pricing-email {
  margin-top: 1.5rem;
}

.guarantee-badge {
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background: rgba(76, 175, 80, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-icon {
  font-size: var(--text-xl);
}

.guarantee-badge p {
  font-size: var(--text-sm);
  color: var(--color-text-body);
  margin: 0;
  line-height: var(--leading-normal);
}

.pricing-email p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.email-link-inline {
  color: #F8A05B;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.email-link-inline:hover {
  color: #F4824A;
  transform: translateY(-2px);
  text-decoration: underline;
}

.pricing-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.pricing-note {
  font-size: 0.9rem;
  color: #777;
  font-style: italic;
}

@media (max-width: 768px) {
  .pricing-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .pricing-intro {
    text-align: center;
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  align-items: start;
}

.pricing-card {
  background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
  border-radius: 2rem;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0,0,0,0.05);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.pricing-card.featured {
  background: linear-gradient(145deg, #F8A05B 0%, #F4824A 100%);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(248,160,91,0.3);
}

.pricing-card.featured:hover {
  transform: scale(1.08) translateY(-5px);
  box-shadow: 0 25px 60px rgba(248,160,91,0.4);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #F8A05B 0%, #F4824A 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(248,160,91,0.3);
}

.pricing-card.featured .pricing-badge {
  background: white;
  color: #F8A05B;
}

.pricing-card h3 {
  font-size: 1.8rem;
  margin: 1rem 0;
  color: #1C1C1C;
}

.pricing-card.featured h3 {
  color: white;
}

.pricing-price {
  margin: 2rem 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 500;
  color: #5A5A5A;
}

.pricing-card.featured .currency {
  color: rgba(255,255,255,0.9);
}

.amount {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: #1C1C1C;
  line-height: 1;
}

.pricing-card.featured .amount {
  color: white;
}

.period {
  font-size: 1rem;
  color: #5A5A5A;
  font-weight: 400;
}

.pricing-card.featured .period {
  color: rgba(255,255,255,0.9);
}

.pricing-desc {
  font-size: 1rem;
  color: #5A5A5A;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.pricing-card.featured .pricing-desc {
  color: rgba(255,255,255,0.95);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
  display: inline-block;
}

.pricing-features li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: #5A5A5A;
}

.pricing-card.featured .pricing-features li {
  color: rgba(255,255,255,0.95);
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: bold;
  font-size: 1.2rem;
}

.pricing-card.featured .pricing-features li::before {
  color: white;
}

.pricing-card .btn {
  margin-top: 1.5rem;
  width: 100%;
  max-width: 250px;
}

.pricing-card.featured .btn-primary {
  background: white;
  color: #F8A05B;
}

.pricing-card.featured .btn-primary:hover {
  background: #f5f5f5;
  color: #F4824A;
}

.pricing-note {
  text-align: center;
  font-size: 1rem;
  color: #777;
  margin-top: 2rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }
}

/* Benefits Section */
.benefits-section {
  background: linear-gradient(180deg, #F5F5F5 0%, #FAFAFA 100%);
  position: relative;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: 3rem 0;
}

.benefit-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0,0,0,0.05);
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  border-color: rgba(248,160,91,0.2);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.benefit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #1C1C1C;
}

.benefit-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  display: inline-block;
}

.benefit-card li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #5A5A5A;
  font-size: 1rem;
}

.benefit-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: bold;
}

.impact-section {
  margin-top: 4rem;
  text-align: center;
}

.impact-section h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1C1C1C;
}

.impact-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.impact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background: linear-gradient(145deg, #FFF4E9 0%, #FFE5D3 100%);
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.impact-item:hover {
  transform: translateY(-3px);
}

.impact-icon {
  font-size: 2.5rem;
}

.impact-item p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .benefit-card {
    padding: 2rem;
  }
  
  .impact-points {
    grid-template-columns: 1fr;
  }
}

/* Quote Section Special Styling */
.quote-section {
  background: linear-gradient(180deg, #FFF9F3 0%, #FFFCF8 100%);
  padding: 6rem 2rem;
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(180deg, #FFFCF8 0%, #FFF9F3 100%);
}

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

.faq-item {
  background: white;
  border-radius: 1rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-color: rgba(248,160,91,0.2);
}

.faq-question {
  padding: 1.5rem 2rem;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  color: #1C1C1C;
  transition: color 0.3s ease;
  text-align: left;
}

.faq-question:hover {
  color: #F8A05B;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: #F8A05B;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  padding: 0 2rem 1.5rem;
  color: #5A5A5A;
  line-height: 1.7;
  display: none;
  text-align: left;
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeInUp 0.3s ease;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(180deg, #F5F5F5 0%, #FAFAFA 100%);
  position: relative;
}

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

.contact-card {
  background: white;
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  text-align: center;
}

.contact-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #1C1C1C;
}

.contact-card p {
  font-size: 1.1rem;
  color: #5A5A5A;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-options {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0 3rem;
  flex-wrap: wrap;
}

.contact-divider {
  margin: 3rem 0;
  position: relative;
  text-align: center;
}

.contact-divider span {
  background: white;
  padding: 0 1rem;
  color: #999;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}

.contact-divider::before {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  top: 50%;
  height: 1px;
  background: #E0E0E0;
}

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

.email-contact p {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 0.5rem;
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(145deg, #FFF4E9 0%, #FFE5D3 100%);
  border-radius: 999px;
  text-decoration: none;
  color: #333;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.email-link:hover {
  background: linear-gradient(145deg, #FFE5D3 0%, #FFF4E9 100%);
  border-color: #F8A05B;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(248,160,91,0.2);
  color: #F8A05B;
}

.email-icon {
  font-size: 1.5rem;
}

.email-link-large {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: white;
  border-radius: 999px;
  text-decoration: none;
  color: #F8A05B;
  font-size: 1.1rem;
  font-weight: 600;
  border: 2px solid #F8A05B;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.email-link-large:hover {
  background: #F8A05B;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(248,160,91,0.3);
}

.btn-large {
  font-size: 1.05rem;
  padding: 1rem 2.5rem;
}

.contact-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(248,160,91,0.05);
  border-radius: 0.5rem;
  font-size: 1rem;
  color: #333;
}

.check-icon {
  color: #4CAF50;
  font-weight: bold;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .faq-question {
    font-size: 1.1rem;
    padding: 1.25rem 1.5rem;
  }
  
  .faq-answer {
    padding: 0 1.5rem 1.25rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .contact-info {
    text-align: center;
  }
  
  .contact-form {
    padding: 2rem;
  }
}

/* Responsive Improvements */
@media (max-width: 768px) {
  .section h2 {
    font-size: 2rem;
  }
  
  .section + .section {
    padding-top: 4rem;
  }
  
  .hero-text h1 {
    font-size: 2.2rem;
  }
}
