
/* Importing Google Fonts */

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

/* Variables */
:root {
  --background: #ffffff;
  --foreground: #0f172a;
  --card-bg: #ffffff;
  --muted-foreground: #64748b;
  --border-color: #e2e8f0;
  
  --primary: #8B5CF6;
  --primary-dark: #7c3aed;
  --primary-light: #c4b5fd;
  --primary-foreground: #ffffff;
  
  --secondary: #f1f5f9;
  --secondary-foreground: #1e293b;
  
  --muted: #f8fafc;
  
  --accent: #f5f3ff;
  --accent-foreground: #8B5CF6;
  
  --destructive: #ef4444;
  --destructive-foreground: #ffffff;

  --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);
  
  --brand-purple: #8B5CF6;
  --brand-purple-dark: #7c3aed;
  --brand-purple-light: #c4b5fd;
  --brand-blue: #0EA5E9;
  --brand-blue-dark: #0284c7;
  --brand-blue-light: #bae6fd;
  
  --container-width: 1280px;
  --header-height: 4rem;

  /* Tech theme colors */
  --tech-glow: 0 0 10px rgba(139, 92, 246, 0.5);
  --tech-dark: #0f172a;
  --tech-light: #f8fafc;
  --tech-accent: #0EA5E9;
  --tech-gradient: linear-gradient(135deg, var(--brand-purple), var(--brand-blue));
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--foreground);
  background-color: var(--background);
  line-height: 1.5;

}

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;
  }
}

.fixed-header {
  position: fixed;
  top: 0;
  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: rgba(255, 255, 255, 0.7);
  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;*/
/*  border-radius: 50%;*/
/*  background: linear-gradient(to right, var(--brand-purple), var(--brand-blue));*/
/*}*/

.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(--brand-purple);
  }
  
  .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(--brand-purple);
  color: white;
}

.primary-btn:hover {
  background-color: var(--brand-purple-dark);
  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: 9rem;
        padding-bottom: 25px
}
}

.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: rgba(139, 92, 246, 0.1);
  border-radius: 50%;
  filter: blur(48px);
}

.hero-bg-blue {
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 24rem;
  height: 24rem;
  background-color: rgba(14, 165, 233, 0.1);
  border-radius: 50%;
  filter: blur(48px);
}

.hero-content {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

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

.badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  background-color: white;
  border: 1px solid rgba(139, 92, 246, 0.2);
  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: linear-gradient(to right, var(--brand-purple), var(--brand-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  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: 0 1rem;
}

.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;
}

/* Fix for iOS dropdown appearance */
.country-code-select {
  height: 3rem;
  padding: 0.5rem 0.75rem;
  width: 90px;
  border: 0;
  border-right: 1px solid var(--border-color);
  border-radius: 0;
  appearance: none;
  background-color: #fff; /* Explicit white background for iOS */
  color: var(--foreground); /* Ensure text is visible */
  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(--brand-purple);
  pointer-events: none;
  width: 16px;
  height: 16px;
}

.language-select {
  width: 100%;
  height: 3rem;
  padding: 0.5rem 2.5rem;
  background-color: rgba(255, 255, 255, 0.7);
  /*backdrop-filter: blur(4px);*/
  border: 1px solid rgba(139, 92, 246, 0.2);
  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);
}

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

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

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

/* Features Tags (Redesigned) */
.features-tags {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  max-width: 58rem;
  margin: 0 auto;
  padding: 1.25rem;
  border-radius: var(--radius);
  /*background: rgba(255, 255, 255, 0.2);*/
  /*backdrop-filter: blur(10px);*/
  /*border: 1px solid rgba(255, 255, 255, 0.3);*/
  /*box-shadow: var(--shadow-md);*/
}

@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(--brand-purple);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Glass effect */
.glass {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
}

/* Features Section (Redesigned) */
.features-section {
  padding: 6rem 0;
  background-color: var(--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(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

/* Redesigned Features Grid */
.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 rgba(139, 92, 246, 0.1);
  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: rgba(139, 92, 246, 0.1);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.feature-icon {
  color: var(--brand-purple);
  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(--muted-foreground);
  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(--brand-purple);
  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: white;
  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-color);
  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(--muted-foreground);
}

.testimonial-content {
  color: #334155;
  margin-bottom: 1rem;
}

.testimonial-badge {
  display: inline-block;
  background-color: rgba(139, 92, 246, 0.05);
  color: var(--brand-purple);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  border: 1px solid rgba(139, 92, 246, 0.1);
}

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

/* Single Plan Pricing */
.pricing-spotlight {
  max-width: 36rem;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(139, 92, 246, 0.15);
  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: white;
}

.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(--brand-purple);
  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, rgba(139, 92, 246, 0.1), rgba(14, 165, 233, 0.1));
  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: rgba(139, 92, 246, 0.1);
}

.blue {
  bottom: -6rem;
  left: -6rem;
  width: 16rem;
  height: 16rem;
  background-color: rgba(14, 165, 233, 0.1);
}

.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(--muted-foreground);
  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(--brand-purple);
  margin-right: 0.5rem;
  margin-top: 0.125rem;
}

.contact-form-container {
  background-color: white;
  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-color);
  border-radius: var(--radius);
  font-size: 0.875rem;
  background-color: white; /* Explicit for iOS */
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-purple);
  box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.1);
}

.form-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  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: white;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.1);
}

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

.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(--muted-foreground);
  margin-left: 0.25rem;
}

.price-note {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-purple);
  padding: 0.25rem 0.75rem;
  background-color: rgba(139, 92, 246, 0.1);
  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: rgba(139, 92, 246, 0.05);
  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(--brand-purple);
  font-weight: bold;
}

/* Footer */
.footer {
  background: linear-gradient(to right, rgba(139, 92, 246, 0.05), rgba(14, 165, 233, 0.05));
  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%;
  /*background: linear-gradient(to right, var(--brand-purple), var(--brand-blue));*/
}

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

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

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

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

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

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

.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(--muted-foreground);
  transition: color 0.2s;
}

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

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

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

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

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

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

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

.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(--muted-foreground);
  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(--muted-foreground);
  transition: color 0.2s;
}

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

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

.toast {
  display: flex;
  align-items: center;
  background-color: white;
  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 #10b981;
}

.toast-error {
  border-left: 4px solid #ef4444;
}

.toast-icon {
  flex-shrink: 0;
  margin-right: 0.75rem;
  color: #10b981;
}

.toast-icon.error {
  color: #ef4444;
}

.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(--muted-foreground);
}

.toast-close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: var(--muted-foreground);
  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(--muted-foreground);
}

.legal-content {
  background-color: white;
  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(--brand-purple);
  text-decoration: underline;
}

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

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

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

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

/*New Changes*/
.demo-btn {
  padding: 10px 20px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  background-color: #D8B4FE; /* Disabled color */
  color: white;
  cursor: not-allowed;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.demo-btn.enabled {
  background-color: #7C3AED; /* Active violet */
  color: white;
  cursor: pointer;
}


   /* Hide default checkbox */
 .terms-container input[type="checkbox"] {
   appearance: none;
   -webkit-appearance: none;
   width: 18px;
   height: 18px;
   border: 2px solid #7C3AED;
   border-radius: 4px;
   outline: none;
   cursor: pointer;
   position: relative;
   margin-right: 8px;
   vertical-align: middle;
   background-color: white;
   transition: all 0.2s ease;
 }

/* Checked state */
.terms-container input[type="checkbox"]:checked {
  background-color: #7C3AED;
}

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

/* Terms label styling */
.terms-container {
  /*margin-top: 10px;*/
  font-size: 14px;
  display: flex;
  align-items: center;

  justify-content: center;
  gap: 0.5rem; /* space between checkbox and label */
  text-align: center;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.terms-container label {
  display: inline;
}

.terms-container label a {
  color: #7C3AED;
  text-decoration: underline;
}

/* Hide menu by default */

/* Base styles for mobile menu */
.mobile-nav {
  position: absolute;
  top: 70px; /* adjust to match your header height */
  left: 0;
  width: 100%;
  background: #fff;
  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;
}

/* Hide by default */
.hidden {
  display: none;
}

/* Style nav links */
.mobile-nav .nav-link {
  font-size: 1rem;
  color: #333;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: background 0.2s ease;
}

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

/* WhatsApp button */
.mobile-nav .btn.primary-btn {
  background-color: #7C3AED;
  color: white;
  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: #7C3AED;
}

/* Only show on small screens */
@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: #5f5f7b;
  font-size: 1rem;
}

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

/* card */
.agent-card {
  background: #fff;
  border: 2px solid #e5e5e5;
  border-radius: 0.75rem;
  padding: 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.agent-card.popular {
  border-color: #7c3aed; /* purple */
}
.agent-card.popular .agent-badge {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  background: #7c3aed;
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* icon + text */
.agent-icon {
  color: #7c3aed;
  margin-bottom: 1rem;
}
.agent-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.agent-desc {
  color: #5f5f7b;
  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: #5f5f7b;
  font-size: 0.9rem;
}
.agent-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #7c3aed;
}

/* input + button */
.agent-input-label {
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
  color: #333;
}
.agent-input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.agent-btn {
  margin-top: auto;
  background-color: #8B5CF6;
  color: #fff;
  border: none;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.agent-btn:hover {
  background-color: #682bb0;
}

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

#integrations .label {
  display: inline-block;
  background: var(--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: 0.5rem 0 1rem;
  line-height: 1.2;
}

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

/* make cards horizontally scrollable */
#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;
}

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

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

/* optional: on hover, lift card */
#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 #e2e8f0;
  border-radius: 8px;
  background: #fff;
}
.card img {
  display: block;
}
.card span {
  font-size: 1rem;
  color: #0f172a;
}

#integrations {
  padding: 2rem;
}

.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;
  /* your existing .card styling */
}
@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

  /* Demo button base / disabled */
    #tryDemoBtn {
      background-color: rgb(216, 180, 254);;
      color: #white;
      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: rgb(124, 58, 237);;
      color: #fff;
      cursor: pointer;
    }
    #tryDemoBtn.enabled:hover {
      filter: brightness(1.05);
    }

    .spinner {
      border: 2px solid rgba(255,255,255,0.3);
      border-top: 2px solid #fff;
      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: #111;
      color: #fff;
      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;
  }
}

#ad-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffcc00;
  color: #000;
  text-align: center;
  padding: 20px 0;
  z-index: 1100;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}
/* Move header lower to avoid overlap */
.fixed-header {
  top: 70px; /* Adjust if banner height changes */
}
body {
  padding-top: 50px; /* Prevent content from being hidden behind the banner */
}

.saasbadge-container {
  margin-top: 75px;          /* space above the badge */
  margin-bottom: 25px;          /* space above the badge */
  display: flex;
  justify-content: center;   /* center the badge under the tags */
}

.saasbadge {
  max-width: 200px;          /* adjust to taste */
  height: auto;
  display: block;
}


  /* Popup */
  /* Overlay */
  .offer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(2px);
    z-index: 2000; /* above banner/header/FAB */
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
    display: grid;
    place-items: center;
  }
  .offer-overlay.show {
    opacity: 1;
    visibility: visible;
  }

  /* Modal */
  .offer-modal {
    width: min(520px, calc(100% - 32px));
    background: #fff;
    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: #4163e0;
    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: #444;
    font-size: 14px;
  }
  .offer-list {
    margin: 0 0 16px 18px;
    color: #2b2b2b;
    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: #f3f4f6;
    color: #111;
    font-size: 18px;
    cursor: pointer;
  }
  .offer-close:hover { background: #e9eaf0; }

  /* Use your existing button styles where possible */
  .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 #e5e7eb;
    background: #fff;
    font-weight: 700;
    cursor: pointer;
  }

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