* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary-color: #000;
  --secondary-color: #fff;
  --accent-blue: #0066ff;
  --accent-green: #00d084;
  --accent-red: #ff5757;
  --accent-purple: #8b5cf6;
  --accent-orange: #ff6b35;
  --accent-cyan: #06b6d4;
  --gray-100: #f7f7f7;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-600: #6b7280;
  --gray-900: #111827;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Lexend", sans-serif;
  line-height: 1.6;
  color: var(--gray-900);
  overflow-x: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.sectionTitle {
  font-size: 48px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.2;
}
/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.8);
  padding: 7px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.navbar.scrolled {
  border-bottom: 1px solid var(--gray-200);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  height: 100%;
  width: auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
.logo img {
  height: 35px;
  width: 35px;
}
.logo a {
  font-size: 24px;
  font-weight: 500;
  color: var(--primary-color);
  text-decoration: none;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  width: 33%;
}
.nav-links a {
  text-decoration: none;
  color: var(--gray-900);
  font-weight: 300;
  transition: color 0.3s;
}
.btn-primary {
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 8px 28px;
  border: none;
  border-radius: 8px;
  font-weight: 400;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
/* Hero Section */
.hero {
  padding: 80px 120px;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, var(--gray-100) 100%);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 90vh;
}
.hero-video-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 25px;
}
.hero-video {
  width: 40vw;
  height: 70vh;
  object-fit: cover;
  border-radius: 25px;
  opacity: 0.5;
}
#hero-content {
  width: 100%;
  margin: 0px;
}
.hero h1 {
  font-size: 72px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--primary-color);
}
#h1Exceptional {
  background: linear-gradient(135deg, #ff006e 0%, #8b5cf6 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.hero-subtitle {
  font-size: 20px;
  color: var(--gray-600);
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.btn-cta {
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 18px 48px;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.hero-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.badge {
  background: var(--secondary-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
}
/* audience */
.audience-intro {
  padding: 80px 0;
  background: var(--secondary-color);
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.audience-card {
  height: 30vh;
  padding: 20px;
  border-radius: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  color: white;
}
.audience-card-final {
  height: 30vh;
  padding: 20px;
  border-radius: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--gray-200);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  overflow: hidden;
  color: var(--gray-900);
  background: var(--secondary-color);
}
.commerce {
  background: url("../images/Industries/Commerce.jpg") center/cover no-repeat;
}
.healthcare {
  background: url("../images/Industries/Healthcare.jpg") center/cover no-repeat;
}
.legal {
  background: url("../images/Industries/legal.jpg") center/cover no-repeat;
}
.realestate {
  background: url("../images/Industries/RealEstate.jpg") center/cover no-repeat;
}
.trades {
  background: url("../images/Industries/Trades.jpg") center/cover no-repeat;
}
.audience-card:hover {
}
.audience-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.audience-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  transition: transform 0.3s, box-shadow 0.3s;
}
.audience-card h3 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary-color);
  z-index: 2;
  transition: transform 0.3s;
}
.audience-card-final h4 {
  font-size: 25px;
  font-weight: 600;
  z-index: 2;
  transition: transform 0.3s;
  margin: 0px;
  margin-bottom: -5px;
}
.audience-card-final h5 {
  font-size: 20px;
  font-weight: 600;
  z-index: 2;
  transition: transform 0.3s;
  opacity: 0.5;
  margin: 0px;
  margin-bottom: 10px;
}
.audience-card-final p {
  font-size: 14px;
  color: var(--gray-600) !important;
}
.audience-card ul {
  position: absolute;
  bottom: 0; /* start from bottom */
  left: 20px;
  list-style: disc;
  margin: 0;
  padding: 0;
  transform: translateY(100%); /* hide below card initially */
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 2;
}
.audience-card:hover ul {
  transform: translateY(-20px); /* slide up from under h3 */
  opacity: 1;
}
.audience-card:hover h3 {
  transform: translateY(-85px); /* move title up with list */
}
.audience-card ul li {
  font-size: 14px;
  font-weight: 300;
  color: var(--secondary-color);
  margin: 0px;
  margin-left: 15px;
  line-height: 1.2;
}

.audience-card p {
  color: var(--gray-600);
  line-height: 1.6;
}
/* Features Intro */
.features-intro {
  padding: 80px 0;
  background: var(--secondary-color);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.feature-card {
  padding: 40px;
  border-radius: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--gray-200);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.icon-box {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 24px;
}
.icon-box.blue {
  background: linear-gradient(135deg, #0066ff 0%, #00b8ff 100%);
}
.icon-box.green {
  background: linear-gradient(135deg, #00d084 0%, #00f5a0 100%);
}
.icon-box.red {
  background: linear-gradient(135deg, #ff5757 0%, #ff8585 100%);
}
.feature-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}
.feature-card p {
  color: var(--gray-600);
  line-height: 1.6;
}
/* Solution Section */
.solution-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, #ffffff 0%, var(--gray-100) 100%);
}

.solution-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.solution-card {
  background: var(--secondary-color);
  padding: 40px;
  border-radius: 16px;
  position: relative;
  border: 1px solid var(--gray-200);
}
.card-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--gray-200);
  position: absolute;
  top: 20px;
  right: 20px;
}
.solution-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}
.solution-card p {
  color: var(--gray-600);
  line-height: 1.6;
}
/* Build Section */
.build-section {
  padding: 80px 0;
  background: var(--secondary-color);
}
.build-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.build-card {
  text-align: center;
}
.build-visual {
  height: 250px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.blue-gradient {
  background: linear-gradient(135deg, #0066ff 0%, #00b8ff 100%);
}
.purple-gradient {
  background: linear-gradient(135deg, #8b5cf6 0%, #c084fc 100%);
}
.pink-gradient {
  background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
}
.chat-bubble {
  background: var(--secondary-color);
  padding: 16px 24px;
  border-radius: 24px;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  animation: bounce 5s ease-in-out infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-4px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-8px);
  }
}
.analytics-chart {
  font-size: 64px;
}
.code-snippet {
  background: var(--secondary-color);
  padding: 20px 32px;
  border-radius: 12px;
  font-family: "Courier New", monospace;
  font-size: 24px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.build-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}
.build-card p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Integrations Section */
.integrations-section {
  padding: 40px 0px 100px 0px;
  background: var(--white);
}
.integrations-wrapper {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  margin-bottom: 40px;
}

.integrations-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
}

.integration-card {
  flex: 0 0 auto;
  background: var(--secondary-color);
  padding: 2.5px 20px 2.5px 5px;
  border-radius: 25px;
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background-color: var(--gray-100);
  cursor: default;
}

/* Scroll Animations */
.scroll-left {
  animation: scroll-left 20s linear infinite;
}

.scroll-right {
  animation: scroll-right 20s linear infinite;
}

/* Keyframes */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.integration-logo {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  border-radius: 25px;
  overflow: hidden;
  background-color: var(--secondary-color);
}
.integration-logo img {
  object-fit: contain;
  height: 50%;
  width: 50%;
}
.integration-card span {
  font-size: 16px;
  font-weight: 300;
  color: var(--gray-900);
  text-align: center;
  position: relative;
  z-index: 1;
}
.integrations-footer {
  text-align: center;
  padding-top: 20px;
  border-top: 2px solid var(--gray-200);
}
.integrations-footer p {
  font-size: 18px;
  font-weight: 300;
  color: var(--gray-600);
  margin-bottom: 24px;
}
/* Responsive Design for integration */
@media (max-width: 768px) {
  .integrations-section h2 {
    font-size: 36px;
  }

  .integrations-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
  }

  .integration-card {
    padding: 6px 16px;
  }

  .integration-logo {
    width: 48px;
    height: 48px;
  }

  .integration-card span {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .integrations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Customer Service */
.customer-service {
  padding: 80px 0;
  background: var(--secondary-color);
}
.service-features {
  max-width: 800px;
  margin: 0 auto;
}
.service-item {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  align-items: flex-start;
}
.check-icon {
  width: 40px;
  height: 40px;
  background: var(--gray-900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
}
.service-item h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}
.service-item p {
  color: var(--gray-600);
  line-height: 1.6;
}
/* Agents */
.agents-section {
  padding: 80px 0;
  background: var(--gray-100);
}
.agents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.agent-card {
  padding: 60px 40px;
  border-radius: 24px;
  color: var(--secondary-color);
  text-align: center;
}
.agent-card.purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}
.agent-card.orange {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}
.agent-card.cyan {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}
.agent-card h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
}
.agent-card p {
  margin-bottom: 32px;
  opacity: 0.9;
}
.btn-agent {
  background: var(--secondary-color);
  color: var(--gray-900);
  padding: 12px 32px;
  border: none;
  border-radius: 8px;
  font-weight: 400;
  cursor: pointer;
  transition: transform 0.2s;
}
.btn-agent:hover {
  transform: translateY(-2px);
}
/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  background: var(--gray-100);
}
.pricing-section h2 {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}
.pricing-subtitle {
  text-align: center;
  font-size: 20px;
  color: var(--gray-600);
  margin-bottom: 60px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}
.pricing-card {
  background: var(--secondary-color);
  padding: 40px;
  border-radius: 16px;
  border: 2px solid var(--gray-200);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}
.pricing-card.featured {
  border: 2px solid var(--accent-blue);
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.15);
}
.popular-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-blue);
  color: var(--secondary-color);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}
.plan-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-200);
}
.plan-header h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--gray-900);
}
.price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 12px;
}
.currency {
  font-size: 24px;
  font-weight: 600;
  margin-right: 4px;
  margin-top: 8px;
}
.amount {
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  color: var(--gray-900);
}
.amount.custom {
  font-size: 40px;
  margin-bottom: 20px;
}
.period {
  font-size: 18px;
  color: var(--gray-600);
  margin-left: 4px;
  margin-top: 28px;
}
.plan-description {
  color: var(--gray-600);
  font-size: 16px;
}
.features-list {
  list-style: none;
  margin-bottom: 32px;
}
.features-list li {
  padding: 12px 0;
  color: var(--gray-900);
  display: flex;
  align-items: center;
  gap: 12px;
}
.features-list .check {
  width: 24px;
  height: 24px;
  color: var(--gray-900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.btn-plan {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--gray-200);
  background: var(--secondary-color);
  color: var(--gray-900);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 32px;
  text-decoration: none;
}
.btn-plan:hover {
  background: var(--gray-900);
  color: var(--secondary-color);
  transform: translateY(-2px);
}
.btn-plan.featured-btn {
  background: var(--accent-blue);
  color: var(--secondary-color);
  border: 2px solid var(--accent-blue);
}
.btn-plan.featured-btn:hover {
  background: #0052cc;
  border-color: #0052cc;
}
.pricing-note {
  text-align: center;
  padding: 24px;
  background: var(--secondary-color);
  border-radius: 12px;
  max-width: 600px;
  margin: 0 auto;
}
.pricing-note p {
  color: var(--gray-600);
  font-size: 16px;
}
/* Responsive Design for PRICE & FAQ */
@media (max-width: 768px) {
  .pricing-section h2,
  .faq-section h2 {
    font-size: 36px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .faq-question {
    padding: 20px;
  }
  .faq-answer p {
    padding: 0 20px 20px;
  }
  .amount {
    font-size: 48px;
  }
}
/* Testimonials */
.testimonials {
  padding: 80px 0;
  background: var(--secondary-color);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.testimonial-card {
  background: var(--gray-100);
  padding: 40px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
}
.stars {
  color: #ffd700;
  font-size: 24px;
  margin-bottom: 16px;
}
.testimonial-card p {
  color: var(--gray-900);
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.6;
}
.author {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}
.author strong {
  display: block;
  margin-bottom: 0px;
}
.author span {
  color: var(--gray-600);
  font-size: 14px;
}
.stat-card {
  background: linear-gradient(135deg, #ff006e 0%, #ffa07a 100%);
  padding: 60px 40px;
  border-radius: 16px;
  text-align: center;
  color: var(--secondary-color);
}
.big-number {
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 16px;
}
.stat-card p {
  font-size: 20px;
  opacity: 0.9;
}
/* Security Section */
.impact-section {
  padding: 80px 0;
  background: var(--gray-100);
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.impact-card {
  background: var(--secondary-color);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--gray-200);
}
.impact-box {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  font-size: 32px;
  margin-bottom: 2px;
}
.impact-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}
.impact-card p {
  color: var(--gray-600);
  line-height: 1.6;
}
/* FAQ Section */
.faq-section {
  padding: 80px 0;
  /* background: var(--secondary-color); */
  background: linear-gradient(360deg, #fff 0%, var(--gray-100) 100%);
}
.faq-section h2 {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}
.faq-subtitle {
  text-align: center;
  font-size: 20px;
  color: var(--gray-600);
  margin-bottom: 60px;
}
.faq-container {
  max-width: 800px;
  margin: 0 auto 60px;
}
.faq-item {
  background: var(--gray-100);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.faq-question {
  padding: 24px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-900);
  margin: 0;
}
.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--gray-600);
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.3s;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}
.faq-answer p {
  padding: 0 28px 24px;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}
/* Active FAQ state - you can toggle this with JavaScript */
.faq-item.active .faq-answer {
  max-height: 500px;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-footer {
  text-align: center;
  padding: 60px 40px;
  background: var(--gray-100);
  border-radius: 16px;
  max-width: 600px;
  margin: 0 auto;
}
.faq-footer h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}
.faq-footer p {
  color: var(--gray-600);
  margin-bottom: 24px;
  font-size: 16px;
}
.btn-contact {
  background: var(--gray-900);
  color: var(--secondary-color);
  padding: 16px 40px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
/* Contact Form Section */
.contact-section {
  padding: 80px 0;
  background: var(--secondary-color);
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--gray-900);
  line-height: 1.2;
}
.contact-description {
  font-size: 18px;
  color: var(--gray-600);
  margin-bottom: 48px;
  line-height: 1.6;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}
.contact-detail-item {
  display: flex;
  align-items: start;
  gap: 20px;
}
.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  background-color: var(--gray-900);
}
.contact-icon.blue {
  background: linear-gradient(135deg, #0066ff 0%, #00b8ff 100%);
}
.contact-icon.green {
  background: linear-gradient(135deg, #00d084 0%, #00f5a0 100%);
}
.contact-icon.purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #c084fc 100%);
}
.contact-detail-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--gray-900);
}
.contact-detail-item p {
  font-size: 16px;
  color: var(--gray-600);
}
.social-links {
  display: flex;
  gap: 16px;
}
.social-link {
  padding: 12px 24px;
  background: var(--gray-100);
  border-radius: 8px;
  text-decoration: none;
  color: var(--gray-900);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
}
.social-link:hover {
  background: var(--gray-900);
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.contact-form-container {
  background: var(--gray-100);
  padding: 48px;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-field {
  display: flex;
  flex-direction: column;
}
.form-field label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gray-900);
}
.form-field input,
.form-field textarea {
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background: var(--secondary-color);
  color: var(--gray-900);
  transition: all 0.3s ease;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--gray-600);
  opacity: 0.6;
}
.form-field textarea {
  resize: vertical;
  min-height: 120px;
}
.checkbox-field {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.checkbox-field input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--accent-blue);
}
.checkbox-label {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-600);
  margin-bottom: 0;
  cursor: pointer;
}
.btn-submit {
  padding: 16px 32px;
  background: var(--primary-color);
  color: var(--secondary-color);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}
.btn-submit:hover {
  background: var(--gray-900);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.form-note {
  text-align: center;
  font-size: 14px;
  color: var(--gray-600);
  margin-top: -8px;
}
/* Responsive Design for contact */
@media (max-width: 968px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-info h2 {
    font-size: 36px;
  }
  .contact-form-container {
    padding: 32px 24px;
  }
}
@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .social-links {
    flex-wrap: wrap;
  }
  .contact-details {
    gap: 24px;
  }
}
/* Contact Form Section */
.contact-section {
  padding: 80px 0;
  background: var(--secondary-color);
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--gray-900);
  line-height: 1.2;
}
.contact-description {
  font-size: 18px;
  color: var(--gray-600);
  margin-bottom: 48px;
  line-height: 1.6;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}
.contact-detail-item {
  display: flex;
  align-items: start;
  gap: 20px;
}
.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.contact-icon.blue {
  background: linear-gradient(135deg, #0066ff 0%, #00b8ff 100%);
}
.contact-icon.green {
  background: linear-gradient(135deg, #00d084 0%, #00f5a0 100%);
}
.contact-icon.purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #c084fc 100%);
}
.contact-detail-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--gray-900);
}
.contact-detail-item p {
  font-size: 16px;
  color: var(--gray-600);
}
.social-links {
  display: flex;
  gap: 16px;
}
.social-link {
  padding: 12px 24px;
  background: var(--gray-100);
  border-radius: 8px;
  text-decoration: none;
  color: var(--gray-900);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
}
.social-link:hover {
  background: var(--gray-900);
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.contact-form-container {
  background: var(--gray-100);
  padding: 48px;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-field {
  display: flex;
  flex-direction: column;
}
.form-field label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gray-900);
}
.form-field input,
.form-field textarea {
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background: var(--secondary-color);
  color: var(--gray-900);
  transition: all 0.3s ease;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--gray-600);
  opacity: 0.6;
}
.form-field textarea {
  resize: vertical;
  min-height: 120px;
}
.checkbox-field {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.checkbox-field input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--accent-blue);
}
.checkbox-label {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-600);
  margin-bottom: 0;
  cursor: pointer;
}
.btn-submit {
  padding: 16px 32px;
  background: var(--primary-color);
  color: var(--secondary-color);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}
.btn-submit:hover {
  background: var(--gray-900);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.form-note {
  text-align: center;
  font-size: 14px;
  color: var(--gray-600);
  margin-top: -8px;
}
/* Responsive Design for contact */
@media (max-width: 968px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-info h2 {
    font-size: 36px;
  }
  .contact-form-container {
    padding: 32px 24px;
  }
}
@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .social-links {
    flex-wrap: wrap;
  }
  .contact-details {
    gap: 24px;
  }
}
/* Final CTA */
.final-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, #ff006e 0%, #8b5cf6 50%, #06b6d4 100%);
  text-align: center;
  color: var(--secondary-color);
}
.final-cta p {
  font-size: 20px;
  margin-bottom: 20px;
  opacity: 0.95;
}
.btn-cta-large {
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 20px 56px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-cta-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
/* Footer */
.footer {
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}
.footer-col img {
  height: 35px;
  width: 35px;
}
.footerCompany {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
#footerCompanyName {
  font-size: 24px;
  font-weight: 500;
  color: var(--secondary-color) !important;
  text-decoration: none;
  opacity: 1;
}
.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col a {
  color: var(--secondary-color);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
  font-weight: 300;
}
.footer-col a:hover {
  opacity: 1;
}
.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.6;
}

.legalSection {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: left;
  padding: 50px 10vw;
  margin-bottom: 10vh;
  font-family: "Lexend";
}
.legalSection h2 {
  margin-top: 3vh;
}
.legalSection ul {
  margin-left: 2vw;
}
.legalSection a {
  color: var(--gray-600);
  text-decoration: none;
  cursor: pointer;
}
/* Responsive Design in general */
@media (max-width: 768px) {
  .logo a {
    font-size: 20px;
  }
  .nav-links {
    display: none;
  }
  .hero {
    flex-direction: column;
    justify-content: flex-start;
    padding: 60px 20px 60px 20px;
    gap: 5vh;
    height: auto;
  }
  .hero-badges {
    flex-direction: row;
  }
  .hero-subtitle {
    font-size: 18px;
  }
  .hero h1 {
    font-size: 40px;
  }
  .features-intro h2,
  .solution-section h2,
  .build-section h2,
  .platform-showcase h2,
  .customer-service h2,
  .agents-section h2,
  .testimonials h2,
  .security-section h2 {
    font-size: 34px;
  }
  .final-cta h2 {
    font-size: 40px;
  }
  .hero-badges {
    flex-direction: row;
    align-items: center;
  }
  .hero-video {
    width: 100%;
    height: 30vh;
  }
  .features-grid,
  .solution-cards,
  .build-grid,
  .agents-grid,
  .testimonials-grid,
  .security-grid {
    grid-template-columns: 1fr;
  }
  .footer-col img {
    height: 100px;
    width: 100px;
  }
  .footer .container {
    padding: 0 10vw;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #footerCompanyName {
    display: none;
  }
}
