/* ==========================================================================
   HOMEPAGE - ENHANCED SECTIONS
   ========================================================================== */

/* Hero Split Layout - Homepage Override */
section.hero-split,
.hero-section.hero-split {
  position: relative;
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, #fff 0%, #f9fafb 100%);
  overflow: visible;
  width: 100%;
  max-width: none !important;
  display: block;
  margin: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12, 3rem);
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero-badge {
  display: inline-block;
  padding: var(--space-1, 0.25rem) var(--space-3, 0.75rem);
  background: var(--primary-50, #fdf2f8);
  color: var(--primary, #ec4b80);
  border-radius: var(--radius-full, 9999px);
  font-size: var(--text-sm, 0.875rem);
  font-weight: var(--font-medium, 500);
  margin-bottom: var(--space-4, 1rem);
}

.hero-split .hero-title {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: var(--font-bold, 700);
  line-height: 1.15;
  color: var(--gray-900, #111827);
  margin-bottom: var(--space-4, 1rem);
}

.hero-split .hero-description {
  font-size: var(--text-lg, 1.125rem);
  color: var(--gray-600, #4b5563);
  line-height: 1.7;
  margin-bottom: var(--space-6, 1.5rem);
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: var(--space-3, 0.75rem);
  flex-wrap: wrap;
}

.hero-split .hero-buttons {
  justify-content: flex-start;
  margin-bottom: var(--space-8, 2rem);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--space-3, 0.75rem);
}

.hero-split .hero-trust {
  justify-content: flex-start;
}

.hero-trust-avatars {
  display: flex;
  align-items: center;
}

.hero-trust-text {
  font-size: var(--text-sm, 0.875rem);
  color: var(--gray-600, #4b5563);
}

.hero-trust-avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-left: -12px;
  object-fit: cover;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.hero-trust-avatar-img:first-child {
  margin-left: 0;
}

/* Phone Mockup */
.hero-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: relative;
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.4s ease;
}

.phone-mockup:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.phone-frame {
  width: 280px;
  background: #1f2937;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 20px 60px rgba(0, 0, 0, 0.15);
}

.phone-screen {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  min-height: 480px;
}

/* InBio Preview (inside phone) */
.inbio-preview {
  padding: 1.5rem 1rem;
  text-align: center;
}

.inbio-preview-header {
  margin-bottom: 1rem;
}

.inbio-preview-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #fce7f3;
  margin-bottom: 0.75rem;
  object-fit: cover;
}

.inbio-preview-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.25rem;
}

.inbio-preview-tagline {
  font-size: 0.875rem;
  color: #4b5563;
  margin: 0 0 0.25rem;
}

.inbio-preview-location {
  font-size: 0.75rem;
  color: #6b7280;
  margin: 0;
}

.inbio-preview-location i {
  margin-right: 2px;
}

.inbio-preview-availability {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #ec4b80, #f472b6);
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.inbio-preview-cta {
  margin-bottom: 1rem;
}

.inbio-preview-cta .btn {
  width: 100%;
}

.inbio-preview-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 0.875rem;
  color: #4b5563;
}

.inbio-preview-rating i {
  color: #fbbf24;
  font-size: 12px;
}

.inbio-preview-rating span {
  margin-left: 0.5rem;
}

/* Base Section Styles */
.section {
  padding: 4rem 0;
}

/* Social Proof Section Enhanced */
.social-proof-section {
  padding: 2.5rem 0;
  background: #111827;
}

.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.social-proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-proof-number {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.social-proof-label {
  font-size: 0.875rem;
  color: #9ca3af;
}

/* How It Works Section */
.how-it-works-section {
  padding: 4rem 0;
}

.how-it-works-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.how-it-works-step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  position: relative;
}

.step-number {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: #ec4b80;
  color: #fff;
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  background: #fdf2f8;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #ec4b80;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.step-description {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.6;
}

.how-it-works-connector {
  display: flex;
  align-items: center;
  padding-top: 40px;
  color: #d1d5db;
  font-size: 1.25rem;
}

/* Demo Section */
.demo-section {
  padding: 4rem 0;
}

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

.demo-content .section-title {
  text-align: left;
  margin-bottom: 1rem;
}

.demo-content .section-description {
  text-align: left;
  margin-bottom: 1.5rem;
}

.demo-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.demo-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 1rem;
  color: #374151;
}

.demo-features li i {
  color: #10b981;
  font-size: 1.125rem;
}

/* Browser Mockup */
.browser-mockup {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.browser-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: #f3f4f6;
  border-bottom: 1px solid #e5e7eb;
}

.browser-dots {
  display: flex;
  gap: 0.5rem;
}

.browser-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
}

.browser-dots span:first-child { background: #ff5f56; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #27ca40; }

.browser-url {
  flex: 1;
  background: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: #4b5563;
  text-align: center;
}

.browser-content {
  min-height: 360px;
  background: #f9fafb;
  position: relative;
}

.browser-content img {
  width: 100%;
  height: auto;
  display: block;
}

/* Demo Placeholder (skeleton) */
.demo-placeholder {
  padding: 1.5rem;
}

.demo-placeholder-header {
  height: 100px;
  background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.demo-placeholder-avatar {
  width: 80px;
  height: 80px;
  background: #e5e7eb;
  border-radius: 50%;
  margin: -50px auto 0.75rem;
  position: relative;
}

.demo-placeholder-text {
  height: 16px;
  background: #e5e7eb;
  border-radius: 0.5rem;
  margin: 0 auto 0.5rem;
  width: 60%;
}

.demo-placeholder-text.short {
  width: 40%;
}

.demo-placeholder-btn {
  height: 40px;
  background: #fce7f3;
  border-radius: 0.75rem;
  margin: 1rem auto;
  width: 80%;
}

.demo-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
}

.demo-placeholder-card {
  height: 60px;
  background: #e5e7eb;
  border-radius: 0.5rem;
}

/* Features Section - Alternating Rows */
.features-section {
  padding: 4rem 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.feature-row:last-child {
  margin-bottom: 0;
}

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

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

.feature-icon-lg {
  width: 64px;
  height: 64px;
  background: #fdf2f8;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #ec4b80;
  margin-bottom: 1rem;
}

.feature-title-lg {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

.feature-text-lg {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0;
  font-size: 0.875rem;
  color: #374151;
}

.feature-list li i {
  color: #ec4b80;
}

/* Feature Visual Cards */
.feature-visual {
  display: flex;
  justify-content: center;
}

.feature-card-preview {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  min-width: 280px;
}

/* Calendar Preview */
.feature-card-preview.calendar .fc-header {
  text-align: center;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #f3f4f6;
}

.feature-card-preview.calendar .fc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.feature-card-preview.calendar .fc-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.feature-card-preview.calendar .fc-day.booked {
  background: #ec4b80;
  color: #fff;
}

.feature-card-preview.calendar .fc-day.available {
  background: #f3f4f6;
  color: #374151;
}

/* Client Preview */
.feature-card-preview.client .client-preview-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.feature-card-preview.client .client-preview-header img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.feature-card-preview.client .client-preview-header strong {
  display: block;
  font-size: 1rem;
  color: #111827;
}

.feature-card-preview.client .client-preview-header span {
  font-size: 0.875rem;
  color: #6b7280;
}

.client-preview-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.client-preview-tags .tag {
  padding: 0.25rem 0.5rem;
  background: #fdf2f8;
  color: #ec4b80;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.client-preview-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.75rem;
  background: #f9fafb;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: #4b5563;
}

.client-preview-note i {
  color: #f59e0b;
  flex-shrink: 0;
}

/* Link Preview */
.feature-card-preview.link {
  text-align: center;
}

.link-preview-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #9ca3af;
}

.link-preview-url {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: #f9fafb;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  color: #4b5563;
  margin-bottom: 1rem;
}

.link-preview-url i {
  color: #ec4b80;
}

.link-preview-url strong {
  color: #111827;
}

.link-preview-stats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.link-preview-stats div {
  font-size: 0.875rem;
  color: #6b7280;
}

.link-preview-stats strong {
  display: block;
  font-size: 1.125rem;
  color: #111827;
}

/* Products Preview */
.feature-card-preview.products .products-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

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

.product-mini-img {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  border-radius: 0.75rem;
  margin-bottom: 0.5rem;
}

.product-mini span {
  display: block;
  font-size: 0.75rem;
  color: #4b5563;
  margin-bottom: 0.25rem;
}

.product-mini strong {
  font-size: 0.875rem;
  color: #111827;
}

/* Analytics Preview */
.feature-card-preview.analytics .analytics-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem;
  height: 100px;
  padding: 0.5rem 0;
  margin-bottom: 0.75rem;
}

.feature-card-preview.analytics .bar {
  flex: 1;
  background: #e5e7eb;
  border-radius: 0.25rem 0.25rem 0 0;
  transition: all 0.2s ease;
}

.feature-card-preview.analytics .bar.active {
  background: linear-gradient(to top, #ec4b80, #f472b6);
}

.analytics-stat {
  text-align: center;
  padding-top: 0.75rem;
  border-top: 1px solid #f3f4f6;
}

.analytics-stat span {
  display: block;
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.analytics-stat strong {
  font-size: 1rem;
  color: #10b981;
}

/* Discounts Preview */
.feature-card-preview.discounts .discount-preview-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  background: #f9fafb;
  border: 2px dashed #d1d5db;
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
}

.discount-preview-code .discount-code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 700;
  color: #111827;
  letter-spacing: 1px;
}

.discount-preview-code .discount-value {
  font-size: 0.875rem;
  color: #10b981;
  font-weight: 600;
}

.discount-preview-stats {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.discount-preview-stats div {
  font-size: 0.875rem;
  color: #6b7280;
}

.discount-preview-stats strong {
  display: block;
  font-size: 1rem;
  color: #111827;
}

/* Testimonials Section */
.testimonials-section {
  padding: 4rem 0;
}

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

.testimonial-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.testimonial-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.testimonial-rating {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.testimonial-rating i {
  color: #fbbf24;
  font-size: 14px;
}

.testimonial-text {
  font-size: 1rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}

.testimonial-role {
  display: block;
  font-size: 0.875rem;
  color: #6b7280;
}

.testimonial-location {
  display: block;
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.25rem;
}

.testimonial-location i {
  margin-right: 2px;
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
}

.faq-grid {
  max-width: 720px;
  margin: 2.5rem auto 0;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item:hover {
  border-color: #d1d5db;
}

.faq-item.active {
  border-color: #fbcfe8;
  box-shadow: 0 0 0 3px #fdf2f8;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: #111827;
  text-align: left;
  cursor: pointer;
  transition: all 0.15s ease;
}

.faq-question:hover {
  background: #f9fafb;
}

.faq-question i {
  color: #9ca3af;
  font-size: 1.125rem;
  transition: transform 0.2s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: #ec4b80;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 1.25rem 1rem;
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

/* CTA Section Enhanced */
.cta-section {
  padding: 4rem 0;
}

.cta-card-enhanced {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, #ec4b80 0%, #be185d 100%);
  border-radius: 1.5rem;
  padding: 2.5rem;
  color: #fff;
}

.cta-card-enhanced .cta-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cta-card-enhanced .cta-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.cta-card-enhanced .btn-cta {
  background: #fff;
  color: #ec4b80;
  border-color: #fff;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.cta-card-enhanced .btn-cta:hover {
  background: #f3f4f6;
  color: #be185d;
  transform: translateY(-2px);
}

.cta-card-enhanced .cta-features {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta-card-enhanced .cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
}

.cta-card-enhanced .cta-feature i {
  color: #fff;
}

.cta-card-visual {
  text-align: center;
}

.cta-mini-profiles {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.cta-mini-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid #be185d;
  margin-left: -12px;
  object-fit: cover;
}

.cta-mini-avatar:first-child {
  margin-left: 0;
}

.cta-mini-count {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  margin-left: -12px;
}

.cta-mini-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Section Header Centered */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 2rem;
}

.section-header.text-center {
  text-align: center;
  align-items: center;
  max-width: 640px;
  margin: 0 auto 2rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.75rem 0;
}

.section-header.text-center .section-title {
  font-size: 2rem;
  margin: 0 0 0.75rem 0;
}

.section-description {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

.section-header.text-center .section-description {
  font-size: 1.125rem;
  color: #4b5563;
  margin: 0;
}

/* Section Badge */
.section-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: #fdf2f8;
  color: #ec4b80;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

/* Scroll Animations */
[data-animate] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-up"] {
  transform: translateY(30px);
}

[data-animate="fade-down"] {
  transform: translateY(-30px);
}

[data-animate="fade-left"] {
  transform: translateX(30px);
}

[data-animate="fade-right"] {
  transform: translateX(-30px);
}

[data-animate].animate-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Shimmer Animation for Skeletons */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-8 { margin-top: var(--space-8, 2rem); }
.mt-5 { margin-top: var(--space-5, 1.25rem); }
.ms-2 { margin-left: var(--space-2, 0.5rem); }
.me-2 { margin-right: var(--space-2, 0.5rem); }
.bg-light { background: var(--gray-50, #f9fafb); }

/* Homepage Responsive */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-content {
    text-align: center;
    order: 1;
  }

  .hero-mockup {
    order: 2;
  }

  .hero-split .hero-description {
    max-width: 100%;
  }

  .hero-split .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-split .hero-trust {
    justify-content: center;
  }

  .how-it-works-grid {
    flex-direction: column;
    gap: 1.5rem;
  }

  .how-it-works-connector {
    transform: rotate(90deg);
    padding: 0;
    margin: 0.5rem 0;
  }

  .how-it-works-step {
    max-width: 100%;
  }

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

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

  .demo-content .section-title,
  .demo-content .section-description {
    text-align: center;
  }

  .demo-features li {
    justify-content: center;
  }

  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr;
  }

  .feature-row .feature-content {
    text-align: center;
  }

  .feature-icon-lg {
    margin: 0 auto 1rem;
  }

  .feature-list li {
    justify-content: center;
  }

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

  .social-proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .cta-card-enhanced {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-card-enhanced .cta-features {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hero-split {
    padding: 2.5rem 0 2rem;
  }

  .hero-split .hero-title {
    font-size: 1.5rem;
  }

  .hero-split .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-split .hero-buttons .btn {
    width: 100%;
  }

  .phone-frame {
    width: 240px;
  }

  .social-proof-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .how-it-works-connector {
    display: none;
  }

  .browser-mockup {
    margin: 0 -15px;
    border-radius: 0;
  }

  .cta-card-enhanced {
    padding: 1.5rem;
  }

  .cta-card-enhanced .cta-title {
    font-size: 1.5rem;
  }

  .cta-card-enhanced .cta-features {
    flex-direction: column;
    gap: 0.5rem;
  }
}
