/* Importing Google Fonts */

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

/* ==========================================================================
   Color & Style Variables
   - All theme colors are controlled from here for easy customization.
==========================================================================
*/
:root {
  /* === Brand Colors === */
  --brand-primary: #322C2B;
  --brand-primary-dark: #322C2B;
  --brand-primary-deeper-dark: #682bb0; /* For hover states */
  --brand-primary-light: #c4b5fd;
  --brand-blue: #8B322C;
  --brand-blue-dark: #322C2B;
  --brand-blue-light: #bae6fd;
  --brand-info: #322C2B;

  /* === Core Semantic Colors === */
  --primary: var(--brand-primary);
  --primary-dark: var(--brand-primary-dark);
  --primary-light: var(--brand-primary-light);
  --primary-foreground: #ffffff;
  --primary-background-subtle: #F6F0F0;
  --primary-border-subtle: #F6F0F0;

  --accent: var(--brand-blue);
  --accent-background-subtle: #F5E8DD;

  --destructive: #ef4444;
  --destructive-foreground: #ffffff;
  --success: #10b981;

  /* === UI Element Colors === */
  /* Backgrounds */
  --background: #ffffff;
  --background-secondary: #f7f6f4;
  --background-secondary-hover: #322C2B;
  --background-muted: #f8fafc;
  --background-translucent: rgba(255, 255, 255, 0.7);
  --overlay-background: rgba(15, 23, 42, 0.45);

  /* Text */
  --foreground: #0f172a;
  --foreground-secondary: #1e293b;
  --foreground-subtle: #334155;
  --foreground-muted: #64748b;
  --foreground-on-dark: #ffffff;

  /* Borders & Dividers */
  --border: #e2e8f0;
  --border-subtle: #e5e5e5;

  /* Buttons */
  --button-primary-background: var(--primary);
  --button-primary-hover-background: var(--primary-dark);
  --button-primary-text: var(--primary-foreground);
  --button-disabled-background: #997C70;
  --button-disabled-text: var(--primary-foreground);

  /* Toasts & Banners */
  --toast-background: #111827;
  --toast-foreground: #ffffff;
  --banner-gradient: linear-gradient(to right, #322C2B, var(--brand-info));
  --banner-text: #ffffff;
  --banner-button-background: #ffffff;
  --banner-button-text: #322C2B;

  /* Gradients & Effects */
  --tech-gradient: #997C70;
  --tech-glow: 0 0 10px rgba(139, 92, 246, 0.5);

  /* === Layout & Sizing === */
  --banner-height: 50px;
  --radius: 0.5rem;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --container-width: 1280px;
  --header-height: 4rem;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--foreground);
  background-color: var(--background);
  line-height: 1.5;
  padding-top: var(--banner-height); /* Prevent content from being hidden behind the banner */
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul, ol {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Ad Banner */
.ad-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--banner-height);
  background: var(--banner-gradient);
  color: var(--banner-text);
  text-align: center;
  z-index: 1100;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.ad-banner-button {
  background-color: var(--banner-button-background);
  color: var(--banner-button-text);
  margin-left: 20px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.ad-banner-button:hover {
  transform: scale(1.05);
}


.fixed-header {
  position: fixed;
  top: var(--banner-height); /* Adjust if banner height changes */
  left: 0;
  width: 100%;
  z-index: 999;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition: all 0.3s ease;
}

.fixed-header.scrolled {
  background: var(--background-translucent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


.header-content {
  display: flex;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
  margin-right: 4px;
  vertical-align: middle;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.desktop-nav {
  display: none;
}

.desktop-actions {
  display: none;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--foreground);
  border-radius: var(--radius);
}

.mobile-menu-btn svg {
  width: 20px;
  height: 20px;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
    gap: 2rem;
  }

  .nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
  }

  .nav-link:hover {
    color: var(--primary);
  }

  .desktop-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .mobile-menu-btn {
    display: none;
  }
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.2s;
  cursor: pointer;
  font-size: 0.875rem;
  height: 2.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border: none;
  outline: none;
}

.primary-btn {
  background-color: var(--button-primary-background);
  color: var(--button-primary-text);
}

.primary-btn:hover {
  background-color: var(--button-primary-hover-background);
  box-shadow: var(--tech-glow);
  transform: translateY(-1px);
}

.full-width {
  width: 100%;
}

/* Hero Section */
.hero-section {
  padding-top: 7rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-section {
    padding-top: 10rem;
    padding-bottom: 120px
  }
}

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

.hero-bg-purple {
  position: absolute;
  top: 0;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background-color: var(--primary-background-subtle);
  border-radius: 50%;
  filter: blur(48px);
}

.hero-bg-blue {
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 24rem;
  height: 24rem;
  background-color: var(--accent-background-subtle);
  border-radius: 50%;
  filter: blur(48px);
}



.badge-container {
  margin-bottom: 1rem;
}

.badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  background-color: var(--background);
  border: 1px solid var(--primary-border-subtle);
  border-radius: 9999px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.gradient-text {
  background: var(--tech-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--foreground-muted);
  margin-bottom: 2.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.5rem;
  }
}

/* Phone Form */
.phone-input-container {
  width: 100%;
  max-width: 28rem;
  margin: 0 auto 2rem;
  padding-top: 20px
}

.phone-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.input-group {
  display: flex;
  width: 100%;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  overflow: hidden;
}

.country-code-container {
  min-width: 90px;
}

.country-code-select {
  height: 3rem;
  padding: 0.5rem 0.75rem;
  width: 90px;
  border: 0;
  border-right: 1px solid var(--border);
  border-radius: 0;
  appearance: none;
  background-color: var(--background);
  color: var(--foreground);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 16px 16px;
  cursor: pointer;
}

.phone-input {
  flex: 1;
  height: 3rem;
  border: 0;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
}

.phone-input:focus {
  outline: none;
}

.language-select-container {
  width: 100%;
}

.select-wrapper {
  position: relative;
}

.globe-icon {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  transform: translateY(-50%);
  color: var(--primary);
  pointer-events: none;
  width: 16px;
  height: 16px;
}

.language-select {
  width: 100%;
  height: 3rem;
  padding: 0.5rem 2.5rem;
  background-color: var(--background-translucent);
  border: 1px solid var(--primary-border-subtle);
  border-radius: var(--radius);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 16px;
  transition: border-color 0.2s;
  cursor: pointer;
}

.language-select:hover {
  border-color: rgba(139, 92, 246, 0.5); /* This can be a variable too if desired */
}

.language-select:focus {
  outline: none;
  border-color: var(--primary);
}

.demo-btn {
  height: 3rem;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.phone-icon {
  margin-right: 0.5rem;
  width: 16px;
  height: 16px;
}

/* Features Tags */
.features-tags {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  max-width: 58rem;
  margin: 0 auto;
  padding: 1.25rem;
  border-radius: var(--radius);
}

@media (min-width: 640px) {
  .features-tags {
    flex-direction: row;
    justify-content: center;
  }
}

.tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.tag-icon {
  color: var(--primary);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Glass effect */
.glass {
  background: rgba(255, 255, 255, 0.2); /* This is a specific effect, keeping as is */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Features Section */
.features-section {
  padding: 6rem 0;
  background-color: var(--background-secondary);
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--foreground-muted);
  max-width: 42rem;
  margin: 0 auto;
}

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

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--primary-border-subtle);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), var(--tech-glow);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 4px;
  background: var(--tech-gradient);
  opacity: 0;
  transition: opacity 0.3s;
}

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

.feature-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--primary-background-subtle);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.feature-icon {
  color: var(--primary);
  width: 1.5rem;
  height: 1.5rem;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  background: var(--tech-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.feature-desc {
  color: var(--foreground-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding-left: 0;
}

.feature-check-icon {
  color: var(--primary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 0;
  background-color: var(--background);
}

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

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background-color: var(--background);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s, transform 0.3s;
  border: 1px solid var(--border);
  height: 100%;
}

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

.testimonial-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-meta h4 {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.testimonial-position {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--foreground-muted);
}

.testimonial-content {
  color: var(--foreground-subtle);
  margin-bottom: 1rem;
}

.testimonial-badge {
  display: inline-block;
  background-color: var(--primary-background-subtle);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  border: 1px solid var(--primary-border-subtle);
}

/* Pricing Section */
.pricing-section {
  padding: 6rem 0;
  background-color: var(--background-secondary);
  position: relative;
  overflow: hidden;
}

.pricing-spotlight {
  max-width: 36rem;
  margin: 0 auto;
  background: var(--background-translucent);
  backdrop-filter: blur(8px);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--primary-border-subtle);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-spotlight:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 0 15px rgba(139, 92, 246, 0.3);
}

.pricing-header {
  background: var(--tech-gradient);
  padding: 2.5rem;
  text-align: center;
  color: var(--primary-foreground);
}

.pricing-header h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pricing-header p {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 24rem;
  margin: 0 auto;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin: 1.5rem 0;
  gap: 0.5rem;
}

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 700;
}

.pricing-price {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
}

.pricing-unit {
  font-size: 1.25rem;
  opacity: 0.8;
}

.pricing-trial {
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  display: inline-block;
  margin-top: 1rem;
}

.pricing-body {
  padding: 2.5rem;
  text-align: center;
}

.pricing-features-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.pricing-features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-check {
  color: var(--primary);
  flex-shrink: 0;
}

.pricing-feature-text {
  font-size: 1rem;
  text-align: left;
}

.pricing-cta {
  margin-top: 2rem;
}

.pricing-button {
  padding: 0.75rem 2rem;
  height: auto;
  font-size: 1rem;
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background-color: var(--background);
}

.contact-card {
  position: relative;
  background: linear-gradient(to bottom right, var(--primary-background-subtle), var(--accent-background-subtle));
  border-radius: 0.75rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

@media (min-width: 768px) {
  .contact-card {
    padding: 3rem;
  }
}

.contact-decorative-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.decorative-circle {
  position: absolute;
  border-radius: 50%;
}

.purple {
  top: -6rem;
  right: -6rem;
  width: 12rem;
  height: 12rem;
  background-color: var(--primary-background-subtle);
}

.blue {
  bottom: -6rem;
  left: -6rem;
  width: 16rem;
  height: 16rem;
  background-color: var(--accent-background-subtle);
}

.contact-content {
  position: relative;
  z-index: 10;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-desc {
  color: var(--foreground-muted);
  margin-bottom: 1.5rem;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
}

.benefit-icon {
  height: 16px;
  width: 16px;
  color: var(--primary);
  margin-right: 0.5rem;
  margin-top: 0.125rem;
}

.contact-form-container {
  background-color: var(--background);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-form-container h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

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

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  height: 2.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  background-color: var(--background);
}

.form-group textarea {
  height: auto;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary-background-subtle);
}

.form-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--foreground-muted);
  margin-top: 0.5rem;
}

.form-disclaimer a {
  text-decoration: underline;
}

/* Get Started Section Styles */
.get-started-section {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-color: var(--background);
  position: relative;
}

.get-started-container {
  max-width: 48rem;
  margin: 0 auto;
}

.get-started-card {
  background: var(--background);
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--primary-border-subtle);
}

.get-started-header {
  padding: 2rem;
  text-align: center;
  background: linear-gradient(to right bottom, #f1f5f9, var(--background));
  border-bottom: 1px solid var(--border);
}

.pricing-highlight {
  margin-bottom: 1.5rem;
}

.price-tag {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--tech-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price-unit {
  font-size: 1.125rem;
  color: var(--foreground-muted);
  margin-left: 0.25rem;
}

.price-note {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  background-color: var(--primary-background-subtle);
  border-radius: 9999px;
  display: inline-block;
}

.get-started-form {
  padding: 2rem;
}

.get-started-form .form-row {
  margin-bottom: 1rem;
}

.get-started-form .form-group {
  margin-bottom: 1rem;
}

.multiple-select {
  height: auto;
  min-height: 6rem;
}

.features-summary {
  background-color: var(--primary-background-subtle);
  border-radius: 0.5rem;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.features-summary h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.features-summary ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.features-summary li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.tech-icon {
  color: var(--primary);
  font-weight: bold;
}

/* Footer */
.footer {
  background: linear-gradient(to right, var(--primary-background-subtle), var(--accent-background-subtle));
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .footer-company {
    grid-column: span 4;
  }

  .footer-links-col {
    grid-column: span 2;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-description {
  color: var(--foreground-muted);
  margin-bottom: 1.5rem;
}

.social-icons {
  display: flex;
  gap: 1.25rem;
}

.social-icon {
  color: var(--foreground-muted);
  transition: color 0.2s;
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.social-icon:hover {
  color: var(--primary);
}

.footer-links-col h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.footer-links a {
  color: var(--foreground-muted);
  transition: color 0.2s;
}

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

.footer-languages {
  color: var(--foreground-muted);
}

.view-all-link {
  color: var(--primary);
}

.view-all-link:hover {
  color: var(--primary-dark);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.contact-icon {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
  width: 14px;
  height: 14px;
}

.contact-item span {
  font-size: 0.875rem;
  color: var(--foreground-muted);
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding-top: 2rem;
}

.footer-copyright-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 640px) {
  .footer-copyright-links {
    flex-direction: row;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--foreground-muted);
  order: 2;
}

@media (min-width: 640px) {
  .footer-copyright {
    order: 1;
  }
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  order: 1;
}

@media (min-width: 640px) {
  .footer-legal-links {
    margin-bottom: 0;
    order: 2;
  }
}

.footer-legal-links a {
  font-size: 0.875rem;
  color: var(--foreground-muted);
  transition: color 0.2s;
}

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

/* Toast */
.toast-container {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 100;
}

.toast {
  display: flex;
  align-items: center;
  background-color: var(--background);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem 1rem;
  margin-top: 0.5rem;
  min-width: 20rem;
  max-width: 90vw;
  transition: all 0.3s ease;
  overflow: hidden;
  opacity: 0;
  transform: translateY(100%);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-success {
  border-left: 4px solid var(--success);
}

.toast-error {
  border-left: 4px solid var(--destructive);
}

.toast-icon {
  flex-shrink: 0;
  margin-right: 0.75rem;
  color: var(--success);
}

.toast-icon.error {
  color: var(--destructive);
}

.toast-content {
  flex: 1;
}

.toast-title {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.toast-message {
  font-size: 0.875rem;
  color: var(--foreground-muted);
}

.toast-close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: var(--foreground-muted);
  cursor: pointer;
  margin-left: 0.75rem;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.animate-fade-in {
  animation: fadeIn 1s ease forwards;
}

.animate-fade-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

/* Legal Pages */
.legal-page {
  padding: 8rem 0 4rem;
}

.legal-container {
  max-width: 48rem;
  margin: 0 auto;
}

.legal-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.legal-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.legal-header p {
  color: var(--foreground-muted);
}

.legal-content {
  background-color: var(--background);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 2.5rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  list-style-type: disc;
}

.legal-content ol {
  list-style-type: decimal;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
}

.legal-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.legal-footer p {
  font-size: 0.875rem;
  color: var(--foreground-muted);
}

.back-to-home {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}

.back-to-home svg {
  width: 14px;
  height: 14px;
}

/* Demo Button States */
.demo-btn {
  padding: 10px 20px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  background-color: var(--button-disabled-background);
  color: var(--button-disabled-text);
  cursor: not-allowed;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.demo-btn.enabled {
  background-color: var(--primary-dark);
  color: var(--primary-foreground);
  cursor: pointer;
}

/* Terms Checkbox */
.terms-container input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--primary-dark);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  position: relative;
  margin-right: 8px;
  vertical-align: middle;
  background-color: var(--background);
  transition: all 0.2s ease;
}

.terms-container input[type="checkbox"]:checked {
  background-color: var(--primary-dark);
}

.terms-container input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 9px;
  border: solid var(--primary-foreground);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.terms-container {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.terms-container label {
  display: inline;
}

.terms-container label a {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Mobile Nav */
.mobile-nav {
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background: var(--background);
  padding: 1.5rem 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 0 0 12px 12px;
  transition: all 0.3s ease;
}

.hidden {
  display: none;
}

.mobile-nav .nav-link {
  font-size: 1rem;
  color: var(--foreground-subtle);
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.mobile-nav .nav-link:hover {
  background: #f0f0f0;
}

.mobile-nav .btn.primary-btn {
  background-color: var(--primary-dark);
  color: var(--primary-foreground);
  padding: 0.75rem 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.mobile-nav .btn.primary-btn:hover {
  background-color: var(--primary-dark);
}

@media (min-width: 768px) {
  .mobile-nav {
    display: none !important;
  }
  .mobile-menu-btn {
    display: none;
  }
}

/* AI Agent Categories */
#agent-categories {
  padding: 4rem 0;
}
#agent-categories .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
#agent-categories .section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
#agent-categories .section-subtitle {
  color: var(--foreground-muted);
  font-size: 1rem;
}

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

.agent-card {
  background: var(--background);
  border: 2px solid var(--border-subtle);
  border-radius: 0.75rem;
  padding: 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.agent-card.popular {
  border-color: var(--primary-dark);
}

.agent-card.popular .agent-badge {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  background: var(--primary-dark);
  color: var(--primary-foreground);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.agent-icon {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.agent-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.agent-desc {
  color: var(--foreground-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.agent-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}
.agent-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--foreground-muted);
  font-size: 0.9rem;
}
.agent-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-dark);
}

.agent-input-label {
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
  color: var(--foreground-subtle);
}

.agent-input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.agent-btn {
  margin-top: auto;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: none;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}


/* Integrations Section */
#integrations {
  background-color: var(--background-secondary);
  color: var(--foreground);
  padding: 6rem 0;
  text-align: center;
}

#integrations .label {
  display: inline-block;
  background: var(--background-secondary);
  color: var(--foreground);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

#integrations h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 3rem 0 2rem;
  line-height: 1.2;
}

#integrations p {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  color: var(--foreground-muted);
  line-height: 1.5;
}

#integrations .cards-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

#integrations .cards-wrapper::-webkit-scrollbar {
  display: none;
}

#integrations .cards {
  display: flex;
  gap: 1rem;
  padding: 0 1rem;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 50px;
  padding-top: 50px;
}

#integrations .cards .card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  background: var(--background-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  min-width: 180px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

#integrations .cards .card img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

#integrations .cards .card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--background);
}

.card img {
  display: block;
}

.card span {
  font-size: 1rem;
  color: var(--foreground);
}

#integrations {
  padding: 3rem;
}

.cards-wrapper {
  overflow: hidden;
}

.cards {
  display: flex;
  animation: scroll-left 20s linear infinite;
}
@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.cards .card {
  flex: 0 0 auto;
  margin-right: 1rem;
}

#tryDemoBtn {
  background-color: var(--button-disabled-background);
  color: var(--button-disabled-text);
  cursor: not-allowed;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease, filter .2s ease;
  position: relative;
}

#tryDemoBtn.enabled {
  background-color: var(--primary-dark);
  color: var(--primary-foreground);
  cursor: pointer;
}

#tryDemoBtn.enabled:hover {
  filter: brightness(1.05);
}

.spinner {
  border: 2px solid rgba(255,255,255,0.3);
  border-top: 2px solid var(--primary-foreground);
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
  animation: spin 0.7s linear infinite;
  margin-right: 8px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.popup-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  background: var(--toast-background);
  color: var(--toast-foreground);
  padding: 14px 24px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 9999;
  font-weight: 500;
  pointer-events: auto;
}
.popup-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.mobile-only {
  display: none !important;
}

@media (max-width: 768px) {
  .mobile-only {
    display: flex !important;
  }
}

.saasbadge-container {
  margin-top: 75px;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
}

.saasbadge {
  max-width: 200px;
  height: auto;
  display: block;
}

.offer-overlay {
  position: fixed;
  inset: 0;
  background: var(--overlay-background);
  backdrop-filter: blur(2px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
  display: grid;
  place-items: center;
}
.offer-overlay.show {
  opacity: 1;
  visibility: visible;
}

.offer-modal {
  width: min(520px, calc(100% - 32px));
  background: var(--background);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
  padding: 22px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  position: relative;
  transform: translateY(6px);
  transition: transform .18s ease;
}
.offer-overlay.show .offer-modal { transform: translateY(0); }

.offer-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-info);
  background: rgba(65,99,224,.1);
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.offer-title {
  margin: 6px 0 6px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .2px;
}
.offer-desc {
  margin: 0 0 16px;
  color: var(--foreground-muted);
  font-size: 14px;
}
.offer-list {
  margin: 0 0 16px 18px;
  color: var(--foreground-secondary);
  font-size: 14px;
}

.offer-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.offer-close {
  position: absolute;
  top: 8px; right: 8px;
  width: 36px; height: 36px;
  border: none; border-radius: 999px;
  background: var(--background-secondary);
  color: var(--foreground);
  font-size: 18px;
  cursor: pointer;
}
.offer-close:hover { background: var(--background-secondary-hover); }

.offer-primary.btn.primary-btn {
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
}
.offer-ghost {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--background);
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 420px) {
  .offer-title { font-size: 18px; }
  .offer-desc { font-size: 13px; }
}

.line-height-adjust {
    line-height: 10;
}

 .phone-input-container {
        margin: 0 0 2rem 0;
    }
    .terms-container {
        justify-content: flex-start;
    }

    /* This simulates the Row widget */
    .row-container {
        display: flex; /* Lays out children horizontally */
        align-items: flex-end; /* crossAxisAlignment: CrossAxisAlignment.end */
    }

    /* This simulates the Text widget */
    .brand-text {
        font-weight: 800;              /* fontWeight: FontWeight.w800 */
        font-size: 24px;               /* fontSize: 24 */
        letter-spacing: -1.2px;        /* letterSpacing: -1.2 */
        color: #2C2C2C;                /* color: Color(0xFF2C2C2C) */

        /* For TextOverflow.ellipsis */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* This wrapper handles the space from SizedBox and Padding */
    .dot-wrapper {
        margin-left: 6px;              /* SizedBox(width: 8) */
        padding-bottom: 10px;           /* EdgeInsets.only(bottom: 8) */
    }

    /* This simulates the final Container with its decoration */
    .dot {
        width: 6px;                    /* width: 6 */
        height: 6px;                   /* height: 6 */
        background-color: #2C2C2C;     /* decoration: color */
    }

/* New Pricing Grid Styles */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch; /* Ensures cards in a row are the same height */
}

.pricing-card {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.pricing-card.popular {
    border-color: var(--brand-primary);
    position: relative;
    border-width: 2px;
}

.popular-badge {
    position: absolute;
    top: -1px;
    right: 1.5rem;
    background-color: var(--brand-primary);
    color: var(--primary-foreground);
    padding: 0.25rem 0.75rem;
    border-radius: 0 0 0.5rem 0.5rem;
    font-size: 0.75rem;
    font-weight: bold;
}

.card-header {
    min-height: 80px; /* Aligns the start of the price section */
}

.plan-name {
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--foreground-secondary);
}

.plan-description {
    font-size: 0.9rem;
    color: var(--foreground-muted);
    margin-top: 0.5rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 1rem;
    color: var(--foreground);
    line-height: 1;
}

.plan-unit {
    font-size: 1rem;
    font-weight: 400;
    color: var(--foreground-muted);
    margin-left: 0.25rem;
}

.plan-subtext {
    font-size: 0.875rem;
    color: var(--foreground-muted);
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    width: 100%;
    margin-bottom: 1.5rem;
}

.cta-button.outline {
    background-color: transparent;
    border: 1px solid var(--border);
    color: var(--foreground-secondary);
}
.cta-button.outline:hover {
    background-color: var(--background-secondary);
    border-color: var(--foreground-secondary);
}

.features-list {
    margin: 0;
    padding: 0;
    list-style: none;
    flex-grow: 1; /* Pushes the list down if card content is short */
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--foreground-subtle);
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: var(--brand-primary);
    flex-shrink: 0;
}


/* Responsive adjustments for the pricing grid */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .card-header {
      min-height: auto; /* Remove fixed height on mobile */
    }
}

/* Guided Journey Section */
.guided-journey-section {
    padding: 6rem 0;
    background-color: var(--background);
}
.journey-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.journey-video-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.steps-pre-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.steps-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--foreground);
    line-height: 1.2;
}
.steps-list {
    list-style: none;
    counter-reset: steps-counter;
    position: relative;
    padding-left: 0;
    margin: 0;
}

.step-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 4rem;
    counter-increment: steps-counter;
    min-height: 50px;
    display: flex;
    align-items: center;
}

/* Remove the last item's bottom margin */
.step-item:last-child {
    margin-bottom: 0;
}

/* The vertical line connecting the steps */
.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 24px; /* Center of the circle (48px / 2) */
    top: 50px; /* Start from bottom of circle */
    height: calc(100% + 2rem); /* Extend to next item */
    width: 2px;
    background-color: var(--border);
}

/* The circular number */
.step-item::before {
    content: counter(steps-counter);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--background);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--brand-primary);
    z-index: 1;
}

/* Style for the last "Ready!" item */
.step-item.ready::before {
    content: '✓';
    font-size: 1.5rem;
    color: var(--primary-foreground);
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
}

/* Remove the connecting line for the Ready item */
.step-item.ready::after {
    display: none;
}

.step-content {
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--foreground);
    line-height: 1.5;
}

.steps-docs-link {
    margin-top: 2.5rem;
    padding-left: 4rem;
    font-size: 0.95rem;
    color: var(--foreground-muted);
}

.steps-docs-link a {
    color: var(--brand-primary);
    text-decoration: underline;
    font-weight: 600;
}

.steps-docs-link a:hover {
    color: var(--brand-primary-dark);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .journey-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .journey-video-wrapper {
        max-height: 400px;
        order: 2;
    }
    .journey-steps-wrapper {
        order: 1;
    }
}

@media (max-width: 640px) {
    .steps-title {
        font-size: 1.75rem;
    }
    .step-item {
        padding-left: 3.5rem;
        min-height: 44px;
    }
    .step-item::before {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    .step-item:not(:last-child)::after {
        left: 20px;
        top: 44px;
    }
    .step-content {
        font-size: 1rem;
    }
    .steps-docs-link {
        padding-left: 3.5rem;
        font-size: 0.875rem;
    }
}


.unmute-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 10;
}
.unmute-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.journey-video-wrapper {
    position: relative;
    height: 750px; /* Adjust this value as needed */
}

.journey-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

    #hero .hero-content {
    display: grid;
    grid-template-columns: 3fr 1fr;
    text-align: left;
    align-items: center;
}

    #hero .hero-title {
        font-size: 2.8rem; /* Adjusted font size to match image */
        line-height: 1.2;
    }

    #hero .hero-description {
        text-align: left;
        margin-left: 0;
        max-width: 450px; /* Constrain description width */
        font-size: 1.1rem;
    }

    /* Sub-heading style */
    .customer-platform-text {
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--foreground-muted);
        letter-spacing: 1px;
        margin-bottom: 0.5rem;
    }

    /* Button spacing */
    .hero-text-content .btn {
        margin-top: 1rem;
        width: fit-content; /* Button should not be full width */
        padding: 0.75rem 1.5rem;
    }

    .trusted-by-container {
        margin-top: 3rem;
    }

    .trusted-by-container p {
        font-size: 0.9rem;
        color: var(--foreground-muted);
        margin-bottom: 1rem;
    }

    /* Diagram Styles (Right Column) */
    .diagram-container {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 500px;
        width:500px
    }



    .orbit-path {
        position: absolute;
        width: 100%;
        height: 100%;
        /* MODIFIED: Changed border to dashed for a new look */
        border: 2px dashed var(--border);
        border-radius: 50%;
    }


    .central-image {
        width: 200px;
        height: 200px;
        object-fit: cover;
        z-index: 5;
    }



    .orbit-icon {
        position: absolute;
        width: 40px;
        height: 40px;
        border: 1px solid var(--border);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 10;
        box-shadow: var(--shadow-sm);
    }

    /* MODIFIED: Added distinct background colors for each rotating tag */
    .orbit-icon-1 { top: 15%; left: 10%; background-color: #f3e8ff; }
    .orbit-icon-2 { top: 0%; left: 50%; transform: translateX(-50%); background-color: #e0f2fe; }
    .orbit-icon-3 { top: 15%; right: 10%; background-color: #dcfce7; }
    .orbit-icon-4 { bottom: 15%; right: 10%; background-color: #fef9c3; }
    .orbit-icon-5 { bottom: 0%; left: 50%; transform: translateX(-50%); background-color: #fee2e2; }
    .orbit-icon-6 { bottom: 15%; left: 10%; background-color: #ffedd5; }

    .orbit-icon svg {
        width: 20px;
        height: 20px;
        color: var(--brand-primary);
    }

    .info-box {
        position: absolute;
        background-color: var(--background);
        border: 1px solid var(--border);
        padding: 0.75rem 1rem;
        border-radius: var(--radius);
        box-shadow: var(--shadow-md);
        z-index: 10;
        text-align: left;
    }

    .info-box h4 { font-size: 0.9rem; margin-bottom: 0.25rem; }
    .info-box p { font-size: 0.8rem; color: var(--foreground-muted); margin: 0; }

    .info-box-1 { top: -20px; right: 0; }
    .info-box-2 { top: 50%; left: -60px; transform: translateY(-50%); }
    .info-box-3 { bottom: -20px; right: 20%; }

    /* Responsive adjustments for mobile */
    @media (max-width: 992px) {
        #hero .hero-content {
            grid-template-columns: 1fr; /* Stack columns on mobile */
            text-align: center;
        }

        #hero .hero-text-content {
            order: 1; /* Ensure text is always on top now */
            align-items: center;
        }

        /* MODIFIED: Hide the diagram container on mobile devices */
        #hero .diagram-container {
            display: none;
        }

        #hero .hero-title { font-size: 2.2rem; }
        #hero .hero-description { text-align: center; margin: 0 auto 1.5rem auto; }
        .hero-text-content .btn { margin: 1rem auto 0 auto; }
        .info-box { display: none; } /* Hide complex info boxes on small screens */
    }

    /* Trusted by section styles */
    .business-partners-logos {
        display: flex;
        align-items: center;
        gap: 2rem;
        flex-wrap: wrap;
    }

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

    .business-partners-logo img {
        height: 40px;
        width: auto;
        object-fit: contain;
    }

    @media (max-width: 768px) {
        .business-partners-logos {
            gap: 1.5rem;
        }

        .business-partners-logo img {
            height: 32px;
        }
    }


    <style>
    /* New Styles for WhatsApp Pricing Section */
    .wa-pricing-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap; /* Added for smaller screens */
        gap: 2rem;
        margin-bottom: 60px;
        background-color: #f8f9fa; /* Light gray bg from image */
        padding: 40px;
        border-radius: 12px;
    }

    .wa-pricing-header-text h2 {
        color: #212529; /* Sets the default color (dark) */
        font-size: 2.5rem;
        font-weight: 700;
        margin-top: 0;
        margin-bottom: 8px;
    }

    /* This new rule targets only the span */
    .wa-pricing-header-text h2 .green-text {
        color: #28a745; /* Green color for "Zero" */
    }

    .wa-pricing-header-text p {
        font-size: 1rem;
        color: #555;
        margin-bottom: 24px;
    }

    .wa-pricing-header-text .btn-dark {
        background-color: #212529; /* Dark button from image */
        color: #ffffff;
        border: none;
        padding: 14px 28px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 8px;
        text-decoration: none;
        display: inline-block;
        transition: background-color 0.3s ease;
    }
    .wa-pricing-header-text .btn-dark:hover {
        background-color: #424649;
    }

    .wa-pricing-logo svg {
        width: 100px;
        height: 100px;
        fill: #333; /* Dark logo from image */
        min-width: 80px;
    }

    .wa-api-pricing {
        margin-top: 60px;
    }

    .wa-api-pricing h3 {
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 16px;
    }

    .wa-api-pricing p {
        font-size: 1rem;
        color: #333;
        line-height: 1.6;
        max-width: 700px;
        margin-bottom: 10px;
    }

    .wa-pricing-table {
        width: 100%;
        margin-top: 30px;
        border-collapse: collapse;
        text-align: left;
        font-size: 1rem;
    }

    .wa-pricing-table thead th {
        padding: 16px 12px;
        border-bottom: 2px solid #dee2e6;
        color: #495057;
        font-weight: 600;
        background-color: #f8f9fa;
    }

    .wa-pricing-table tbody td {
        padding: 16px 12px;
        border-bottom: 1px solid #e9ecef;
        color: #212529;
    }

    .wa-pricing-table tbody tr:last-child td {
        border-bottom: none;
    }

    /* Make section header left-aligned */
    .pricing-section .section-header {
        text-align: left;
        margin-bottom: 40px;
    }

</style>

<style>
    /* Main container for intro text */
    .wa-pricing-container {
        max-width: 900px;
        margin: 60px auto 0 auto;
    }

    /* This is the new grid container for the cards */

    /* Base Pricing Card Style */
    .pricing-card-new {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        display: flex;
        flex-direction: column; /* Key change: Stack all items vertically */
        background-color: #ffffff;
        border-radius: 16px; /* Rounded corners */
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08); /* Soft shadow */
        border: 1px solid #e5e7eb; /* Light border */
        padding: 32px;
        width: 100%;
        max-width: 360px; /* Set a max-width for each card */
        flex-grow: 1; /* Allows cards to grow */
    }

    /* Card Header (for title and badge) */
    .plan-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
    }

    .plan-title {
        font-size: 1.25rem; /* 20px */
        font-weight: 600;
        color: #111827;
        margin: 0;
    }

    .plan-popular-badge {
        background-color: #fef3c7; /* Light yellow */
        color: #92400e; /* Darker text */
        padding: 4px 12px;
        border-radius: 99px;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
    }

    /* Price Styling */
    .plan-price {
        font-size: 3rem; /* 48px */
        font-weight: 700;
        color: #111827;
        margin-top: 16px;
        display: flex;
        align-items: baseline;
    }

    .price-unit {
        font-size: 1rem;
        color: #6b7280;
        font-weight: 500;
        margin-left: 8px;
    }

    /* Description Text */
    .plan-description {
        font-size: 0.95rem;
        color: #6b7280;
        margin-top: 16px;
        margin-bottom: 24px;
        line-height: 1.5;
    }

    /* Feature List */
    .plan-features {
        margin-top: 16px;
        padding-top: 24px;
        border-top: 1px solid #e5e7eb;
        /* This is the magic part! */
        flex-grow: 1; /* Pushes the button to the bottom */
    }

    .plan-features ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .plan-features li {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        font-size: 0.95rem;
        color: #374151;
    }

    .plan-features li:last-child {
        margin-bottom: 0;
    }

    .plan-check {
        width: 20px;
        height: 20px;
        color: #322c2b; /* Your original button color */
        margin-right: 12px;
        flex-shrink: 0;
    }

    /* Button Styling */
    .plan-button {
        display: block; /* Makes it full-width */
        background-color: #ffffff;
        color: #111827;
        padding: 14px;
        border-radius: 8px;
        border: 1px solid #d1d5db; /* Button border */
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        text-align: center;
        transition: background-color 0.3s ease;
        margin-top: 32px; /* Space above the button */
    }

    .plan-button:hover {
        background-color: #f9fafb; /* Slight gray on hover */
    }

    /* --- STYLES FOR THE DARK "PREMIUM" CARD --- */
    .pricing-card-new.premium-plan {
        background-color: #1f2937; /* Dark background */
        border-color: #374151;
    }

    .premium-plan .plan-title,
    .premium-plan .plan-price,
    .premium-plan .price-unit,
    .premium-plan .plan-description,
    .premium-plan .plan-features li {
        color: #ffffff; /* White text */
    }

    .premium-plan .plan-features {
        border-top-color: #374151; /* Darker border */
    }

    .premium-plan .plan-check {
        color: #818cf8; /* A nice light purple */
    }

    .premium-plan .plan-button {
        background-color: #ffffff;
        color: #1f2937;
        border-color: #ffffff;
    }

    .premium-plan .plan-button:hover {
        background-color: #e5e7eb; /* Light gray hover for dark card's button */
    }

    /* Responsive stacking for mobile */
    @media (max-width: 768px) {
        .pricing-grid {
            flex-direction: column; /* Stack cards vertically */
        }
    }

    /* Two Column Layout for Pricing Section */
.pricing-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.pricing-left-column {
    /* Left column for text content */
}

.pricing-right-column {
    /* Right column for cards */
}

/* Responsive - stack on mobile */
@media (max-width: 992px) {
    .pricing-two-column {
        grid-template-columns: 1fr;
    }
}
</style>

