@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Primary Colors */
  --primary-blue: #4169FF;
  --dark-navy: #0A1F44;
  --darker-navy: #061530;
  --darkest-navy: #03051F;
  --accent-blue: #5B7CFF;
  --light-blue: #E8F0FF;
  --sky-blue: #F8FBFF;

  /* Text Colors */
  --text-dark: #1F2937;
  --text-gray: #6B7280;
  --text-light: #9CA3AF;

  /* Backgrounds */
  --bg-white: #FFFFFF;
  --bg-light: #F9FAFB;
  --bg-gray: #F3F4F6;
  --form-bg: #F8F9FA;

  /* Status Colors */
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg-white);
  line-height: 1.6;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--dark-navy);
  line-height: 1.2;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* Navbar - Clean White */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-container img {
  height: 35px;
  width: auto;
}

.nav-links {
  display: none;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 1280px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  color: var(--text-gray);
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--dark-navy);
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--dark-navy);
}

@media (min-width: 1280px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 1rem;
  color: var(--text-dark);
  font-weight: 500;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  transition: background 0.2s;
  text-decoration: none;
}

.mobile-menu a:hover {
  background: var(--bg-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary-blue);
  color: white !important;
}

.btn-primary:hover {
  background: var(--accent-blue);
  color: white !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(65, 105, 255, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
  background: var(--primary-blue);
  color: white;
}

.btn-large {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* Hero Section - Exact Match */
.hero {
  background:
    linear-gradient(135deg, rgba(10, 31, 68, 0.85) 0%, rgba(6, 21, 48, 0.9) 50%, rgba(10, 31, 68, 0.85) 100%),
    url(images/hero-bg.webp);
  background-size: cover;
  background-position: center;
  color: white;
  padding: 110px 0 0;
  position: relative;
  overflow: hidden;
  min-height: 650px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(65, 105, 255, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(65, 105, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 100px;
  background: white;
  clip-path: ellipse(70% 100% at 50% 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-bottom: 80px;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 480px;
    gap: 4rem;
  }
}

.hero-text {
  padding-top: 3rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-badge svg {
  width: 14px;
  height: 14px;
}

.hero h1 {
  font-size: 2.75rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.25rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.5rem;
  }
}

.hero-highlight {
  color: var(--primary-blue);
}

.hero-description {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background-color: rgba(6, 21, 48, 0.6);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.hero-stat svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9375rem;
  font-weight: 500;
}

.hero-feature svg {
  color: #10B981;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

/* Form Card - Exact Match */
.form-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 90px;
}

.form-card-header .form-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: #E8F0FF;
  color: var(--primary-blue);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  margin: 0 auto 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.form-badge svg {
  width: 12px;
  height: 12px;
}

.form-card-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-card-header h3 {
  font-size: 1.625rem;
  color: var(--dark-navy);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.form-card-header p {
  color: var(--text-gray);
  font-size: 0.875rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid #E5E7EB;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  color: var(--text-dark);
  transition: all 0.2s;
  background: var(--form-bg);
  font-family: inherit;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #9CA3AF;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  background: white;
  box-shadow: 0 0 0 3px rgba(65, 105, 255, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-privacy {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.form-privacy svg {
  width: 12px;
  height: 12px;
  color: #FCD34D;
}

/* Sections */
.section {
  padding: 5rem 0;
}

@media (max-width: 767px) {
  .section {
    padding: 3.5rem 0;
  }
}

.section-header {
  max-width: 800px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-label {
  display: inline-block;
  color: var(--primary-blue);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.75rem;
  }
}

.section-header p {
  font-size: 1.0625rem;
  color: var(--text-gray);
  margin-bottom: 0;
  line-height: 1.7;
}

.section-white {
  background: white;
}

.section-light {
  background: var(--sky-blue);
}

.section-gray {
  background: var(--bg-light);
}

/* Why Ethos Verge - Exact Match */
.why-section {
  background: linear-gradient(135deg, #0A1F44 0%, #061530 100%);
  color: white;
  padding: 5rem 0;
}

.why-section .section-label {
  color: var(--primary-blue);
}

.why-section .section-header h2 {
  color: white;
}

.why-section .section-header p {
  color: rgba(255, 255, 255, 0.85);
}

.why-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.why-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(65, 105, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary-blue);
}

.why-card-icon svg {
  width: 24px;
  height: 24px;
}

.why-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
}

/* FAQ Section - Exact Match */
.faq-section {
  background: #F5F7FA;
  padding: 5rem 0;
}

.faq-container {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .faq-container {
    grid-template-columns: 380px 1fr;
    gap: 4rem;
  }
}

.faq-sidebar {
  position: relative;
}

.faq-sidebar-content {
  position: sticky;
  top: 120px;
}

.faq-sidebar .section-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.faq-sidebar .section-label::before {
  content: '';
  width: 3px;
  height: 20px;
  background: var(--primary-blue);
  border-radius: 2px;
}

.faq-sidebar h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.faq-sidebar p {
  font-size: 0.9375rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.2s;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: white;
  border: none;
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.2s;
}

.faq-question:hover {
  background: #FAFBFC;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  font-size: 1.25rem;
  font-weight: 300;
  transition: transform 0.3s, color 0.3s;
}

.faq-question.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-blue);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: var(--text-gray);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.faq-answer.active {
  padding: 0 1.5rem 1.25rem;
  max-height: 500px;
}

/* CTA Section - Exact Match */
.cta-section {
  background: white;
  padding: 5rem 0;
}

.cta-container {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .cta-container {
    grid-template-columns: 1fr 480px;
    gap: 4rem;
  }
}

.cta-content .section-label {
  display: inline-block;
  color: var(--primary-blue);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.cta-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .cta-content h2 {
    font-size: 2.75rem;
  }
}

.cta-content p {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-list {
  background: #F8F9FA;
  border-left: 3px solid var(--primary-blue);
  border-radius: 0.5rem;
  padding: 1.5rem 1.75rem;
  margin-bottom: 2rem;
}

.cta-list h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.cta-list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cta-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-gray);
  font-size: 0.9375rem;
}

.cta-list li svg {
  color: var(--primary-blue);
  flex-shrink: 0;
  margin-top: 0.15rem;
  width: 18px;
  height: 18px;
}

.cta-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-gray);
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color 0.3s;
}

.cta-email:hover {
  color: var(--primary-blue);
}

.cta-email svg {
  width: 18px;
  height: 18px;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-3 {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Cards */
.card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

.card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
}

.card-icon svg {
  width: 26px;
  height: 26px;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--dark-navy);
  font-weight: 700;
}

.card p {
  color: var(--text-gray);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.card ul {
  list-style: none;
  margin-top: 1rem;
}

.card li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-gray);
  font-size: 0.9375rem;
}

.card li svg {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 0.2rem;
  width: 18px;
  height: 18px;
}

/* Role Tags */
.role-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.tag {
  padding: 0.5rem 1rem;
  background: #E8F0FF;
  color: var(--dark-navy);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s;
}

.tag:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: var(--darkest-navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

/* Animations */
.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

/* Loading Spinner */
.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Process Steps */
.process-steps {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }
}

.process-step {
  text-align: center;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 15px rgba(65, 105, 255, 0.3);
}

.process-step h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-bottom: 0;
  line-height: 1.5;
}

/* Email Button Style */
.email-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: white;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.email-button:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(65, 105, 255, 0.3);
}

.email-button svg {
  width: 18px;
  height: 18px;
}

/* Use Case Cards with Images */
.usecase-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.usecase-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.usecase-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #0A1F44 0%, #061530 100%);
}

.usecase-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.usecase-card-content {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.usecase-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--dark-navy);
  font-weight: 700;
}

.usecase-card p {
  color: var(--text-gray);
  font-size: 0.9375rem;
  line-height: 1.7;
  flex: 1;
}

/* Testimonials Section */
.testimonials-section {
  background: var(--bg-light);
  padding: 4rem 0;
  overflow: hidden;
}

.testimonials-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 2.5rem;
}

.testimonials-track {
  display: flex;
  gap: 2rem;
  animation: scroll 30s linear infinite;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-100% - 2rem));
  }
}

.testimonial-card {
  min-width: calc((100vw - 8rem) / 2.8);
  max-width: 450px;
  background: white;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .testimonial-card {
    min-width: 420px;
  }
}

@media (max-width: 767px) {
  .testimonial-card {
    min-width: 300px;
    padding: 1.5rem 1.25rem;
  }
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
}

.testimonial-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 0.25rem;
}

.testimonial-info p {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin: 0;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-rating svg {
  width: 16px;
  height: 16px;
  fill: #FCD34D;
  color: #FCD34D;
}

.testimonial-content {
  font-size: 0.9375 rem;
  color: var(--text-gray);
  line-height: 1.7;
  font-style: italic;
}

@media (max-width: 767px) {
  .testimonial-card {
    min-width: 300px;
    padding: 1.5rem 1.25rem;
  }

  .testimonial-header {
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .testimonial-avatar {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .testimonial-info h4 {
    font-size: 0.9375rem;
  }

  .testimonial-info p {
    font-size: 0.8125rem;
  }

  .testimonial-content {
    font-size: 0.875rem;
  }
}

/* Thank You Page */
.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--darkest-navy) 0%, var(--dark-navy) 100%);
  color: white;
  padding: 2rem;
}

.thankyou-content {
  max-width: 600px;
  text-align: center;
}

.thankyou-icon {
  width: 100px;
  height: 100px;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.thankyou-icon svg {
  width: 60px;
  height: 60px;
  color: #10B981;
}

.thankyou-content h1 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
}

.thankyou-content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.thankyou-details {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

.thankyou-details h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.thankyou-details ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.thankyou-details li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
}

.thankyou-details li svg {
  color: #10B981;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */

@media (max-width: 767px) {

  /* Global Text Sizes */
  body {
    font-size: 15px;
  }

  /* Hero Section Mobile */
  .hero {
    padding: 90px 0 0;
    min-height: auto;
    background-attachment: scroll;
  }

  .hero h1 {
    font-size: 2rem !important;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
  }

  .hero-stats {
    gap: 1rem;
    margin-bottom: 1.75rem;
  }

  .hero-stat {
    font-size: 0.8125rem;
    padding: 0.4rem 0.85rem;
  }

  .hero-stat svg {
    width: 14px;
    height: 14px;
  }

  .hero-features {
    gap: 0.75rem;
  }

  .hero-feature {
    font-size: 0.875rem;
  }

  .hero-feature svg {
    width: 18px;
    height: 18px;
  }

  .hero-text {
    padding-top: 2rem;
  }

  /* Section Headers Mobile */
  .section {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-label {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }

  .section-header h2 {
    font-size: 1.75rem !important;
    margin-bottom: 0.75rem;
  }

  .section-header p {
    font-size: 0.9375rem;
  }

  /* Form Mobile */
  .form-card {
    padding: 1.5rem 1.25rem;
    top: 80px;
  }

  .form-card-header h3 {
    font-size: 1.375rem;
  }

  .form-card-header p {
    font-size: 0.8125rem;
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: 0.75rem 0.875rem;
    font-size: 0.875rem;
  }

  .form-badge {
    font-size: 0.6875rem;
    padding: 0.3rem 0.65rem;
  }

  .btn {
    font-size: 0.875rem;
    padding: 0.7rem 1.5rem;
  }

  .btn-large {
    padding: 0.85rem 1.75rem;
    font-size: 0.9375rem;
  }

  /* Cards Mobile */
  .card {
    padding: 1.5rem;
  }

  .card h3 {
    font-size: 1.0625rem;
  }

  .card p,
  .card li {
    font-size: 0.875rem;
  }

  .card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
  }

  .card-icon svg {
    width: 22px;
    height: 22px;
  }

  /* Use Case Cards Mobile */
  .usecase-card-image {
    height: 160px;
  }

  .usecase-card-content {
    padding: 1.5rem;
  }

  .usecase-card h3 {
    font-size: 1.0625rem;
  }

  .usecase-card p {
    font-size: 0.875rem;
  }

  /* Why Section Mobile */
  .why-card {
    padding: 1.5rem 1.25rem;
  }

  .why-card h3 {
    font-size: 1.0625rem;
  }

  .why-card p {
    font-size: 0.875rem;
  }

  .why-card-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 1rem;
  }

  .why-card-icon svg {
    width: 20px;
    height: 20px;
  }

  /* FAQ Mobile */
  .faq-sidebar h2 {
    font-size: 1.75rem;
  }

  .faq-sidebar p {
    font-size: 0.875rem;
  }

  .faq-question {
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
  }

  .faq-answer {
    font-size: 0.875rem;
    padding: 0 1.25rem;
  }

  .faq-answer.active {
    padding: 0 1.25rem 1rem;
  }

  /* CTA Section Mobile */
  .cta-content h2 {
    font-size: 1.75rem !important;
  }

  .cta-content p {
    font-size: 0.9375rem;
  }

  .cta-list {
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
  }

  .cta-list h4 {
    font-size: 0.8125rem;
  }

  .cta-list li {
    font-size: 0.875rem;
  }

  .email-button {
    font-size: 0.875rem;
    padding: 0.7rem 1.25rem;
  }

  /* Process Steps Mobile */
  .process-steps {
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .step-number {
    width: 42px;
    height: 42px;
    font-size: 1.0625rem;
  }

  .process-step h4 {
    font-size: 0.9375rem;
  }

  .process-step p {
    font-size: 0.8125rem;
  }

  /* Role Tags Mobile */
  .tag {
    font-size: 0.8125rem;
    padding: 0.45rem 0.85rem;
  }

  /* Footer Mobile */
  .footer {
    padding: 2.5rem 0 1.5rem;
  }

  .footer h4 {
    font-size: 1rem;
  }

  .footer-links a {
    font-size: 0.875rem;
  }

  .footer-bottom {
    font-size: 0.8125rem;
    padding-top: 1.5rem;
  }

  /* Thank You Page Mobile */
  .thankyou-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
  }

  .thankyou-icon svg {
    width: 48px;
    height: 48px;
  }

  .thankyou-content h1 {
    font-size: 2rem;
  }

  .thankyou-content p {
    font-size: 1rem;
  }

  .thankyou-details {
    padding: 1.5rem;
  }

  .thankyou-details h3 {
    font-size: 1.125rem;
  }

  .thankyou-details li {
    font-size: 0.875rem;
  }

  /* Grid Adjustments Mobile */
  .grid-2,
  .grid-3 {
    gap: 1.5rem;
  }

  .hero-grid {
    gap: 2rem;
  }

  .cta-container {
    gap: 2rem;
  }

  .faq-container {
    gap: 2rem;
  }

  /* Testimonials Mobile */
  .testimonials-section {
    padding: 3rem 0;
  }

  .testimonials-wrapper {
    margin-top: 2rem;
  }

  .testimonials-track {
    gap: 1.25rem;
  }
}

/* Tablet Adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero h1 {
    font-size: 2.75rem;
  }

  .section-header h2 {
    font-size: 2.25rem;
  }

  .testimonial-card {
    min-width: 360px;
  }

  .card {
    padding: 1.75rem;
  }
}