/* CSS Variables for Theme Colors */
:root {
  --primary-color: #2563eb;
  --primary-dark: #1e40af;
  --secondary-color: #1e40af;
  --accent-color: #f59e0b;
  --neutral-color: #6b7280;
  --neutral-light: #f3f4f6;
  --neutral-dark: #374151;
  --text-primary: #111827;
  --text-secondary: #6b7280;
  --background: #ffffff;
  --surface: #f9fafb;
  --border: #e5e7eb;
  --success: #10b981;
  --error: #ef4444;
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 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);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 20px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background);
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover,
a:focus {
  color: var(--primary-dark);
  outline: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

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

.btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
  animation: pulse 1.5s infinite;
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border-color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background-color: var(--surface);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.requestDemoBtnHero:hover {
  cursor: pointer;
  width: 216px;
  height: 72.6px;
}

.requestDemoBtn:hover {
  color: var(--primary-color);
  cursor: pointer;
  width: 182px;
  height: 58.6px;
  border: 1.5px var(--primary-color) solid;
}

.requestDemoBtnBottom {
  margin-top: 20px;
}

.requestDemoBtnBottom:hover {
  color: var(--primary-color);
  cursor: pointer;
  width: 182px;
  height: 58px;
  border: 1.5px var(--primary-color) solid;
}

.sendBtnBottom:hover {
  color: var(--primary-color);
  cursor: pointer;
  width: 165px;
  height: 50.6px;
  border: 1.5px var(--primary-color) solid;
}

.requestDemoBtnTop:hover {
  color: var(--primary-color);
  cursor: pointer;
  width: 165px;
  height: 57.6px;
  border: 1.5px var(--primary-color) solid;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text-primary);
}

.logo {
  width: 32px;
  height: 32px;
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 2rem;
  margin: 0;
  height: 60px;
}

.nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.2s ease;
}

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 15rem 0 10rem;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
    url('assets/background.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(37, 99, 235, 0.1) 0%,
    rgba(245, 158, 11, 0.1) 100%
  );
  animation: float 6s ease-in-out infinite;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  animation: fadeInLeft 1s ease-out;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  animation: fadeInLeft 1.2s ease-out;
}

.hero-actions {
  animation: fadeInLeft 1.4s ease-out;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

/* Section Styles */
section {
  padding: 1rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.section-header .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.section-quote {
  font-size: 2rem;
  color: var(--text-primary);
}

/* Solutions Section */
.solutions {
  background: var(--surface)
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><circle cx="30" cy="30" r="1" fill="%23e5e7eb" opacity="0.3"/></svg>');
  background-size: 60px 60px;
  padding: 3rem;
}

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

.solution-card {
  background: var(--background);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid transparent;
  opacity: 0;
  transform: translateY(40px);
  animation: bounceIn 0.8s ease forwards;
}

.solution-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
  border-color: var(--primary-color);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.solution-card:hover .card-icon {
  transform: rotate(5deg) scale(1.1);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.card-description {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.card-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.card-features li {
  padding: 0.25rem 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.5rem;
}

.card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

.card-link {
  color: var(--primary-color);
  font-weight: 500;
  transition: color 0.2s ease;
}

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

/* Features Section */
.features-content {
  max-width: 800px;
  margin: 0 auto;
}

.features-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.tab-content {
  position: relative;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-panel.active {
  display: block;
}

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

.feature-detail h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.feature-detail p {
  margin-bottom: 1.5rem;
}

.feature-detail ul {
  list-style: none;
}

.feature-detail li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.feature-detail li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* CEO Note */
.ceo-note {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: white;
  padding: 5rem;
}

.ceo-content {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: center;
}

.ceo-photo img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
}

.ceo-message h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.ceo-message blockquote {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-style: italic;
  opacity: 0.95;
}

.ceo-signature strong {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.ceo-signature span {
  opacity: 0.8;
}

/* Pricing Section */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.toggle-label {
  color: var(--text-secondary);
}

.toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
  background: var(--border);
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: var(--primary-color);
}

.toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-switch.active .toggle-slider {
  transform: translateX(30px);
}

.discount {
  background: var(--accent-color);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--background);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  position: relative;
  text-align: center;
  transition: transform 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.plan-name {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.plan-price {
  margin-bottom: 2rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.price-period {
  color: var(--text-secondary);
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.plan-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

/* Careers */
.careers-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.job-listings {
  display: grid;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.job-card {
  background: var(--background);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary-color);
}

.job-card h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.job-card p {
  margin-bottom: 1rem;
}

.job-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.job-location,
.job-type {
  background: var(--surface);
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  color: var(--text-secondary);
}

.job-apply {
  color: var(--primary-color);
  font-weight: 600;
}

/* Contact Form */
.contact {
  padding: 8rem;
}

.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

.contact-form {
  background: var(--background);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

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

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.2s ease;
  background: var(--background);
  color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.5;
}

.checkbox-label input[type='checkbox'] {
  width: auto;
  margin: 0;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 0.25rem;
  position: relative;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.checkbox-label input:checked + .checkmark {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.checkbox-label input:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
}

.error-message {
  color: var(--error);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
}

.error-message.show {
  display: block;
}

.contact-info {
  background: var(--surface);
  padding: 2rem;
  border-radius: 1rem;
  height: fit-content;
}

.contact-info h3 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.contact-item {
  margin-bottom: 1rem;
}

.contact-item strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.contact-item a {
  color: var(--primary-color);
}

.contact-item address {
  font-style: normal;
  color: var(--text-secondary);
}

/* Footer */
.footer {
  background: var(--text-primary);
  color: white;
  padding: 3rem 0 1rem;
}

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

.footer-section h4 {
  margin-bottom: 1rem;
  color: white;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}

.footer-section a:hover {
  color: white;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.25rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

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

.social-links svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.theme-toggle {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  color: white;
}

.moon-icon {
  display: none;
}

[data-theme='dark'] .sun-icon {
  display: none;
}

[data-theme='dark'] .moon-icon {
  display: block;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .contact-content {
    grid-template-columns: 1fr;
  }

  .header {
    padding: 0.8rem;
  }

  .how-it-work-grid h2 {
    font-size: 1.3rem;
  }

  .section-quote {
    margin-top: 5rem;
  }
}

@media (max-width: 1057px) {
  html {
    font-size: 16px;
  }
}

@media (max-width: 830px) {
  html {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  body,
  .header {
    width: 100svw;
  }

  .container {
    padding: 0;
  }

  .section-header h3 {
    font-size: 1.2rem;
  }

  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--background);
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    height: auto;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .solutions-parent {
    position: relative;
    display: flex;
    flex-direction: column;
    color: var(--text-secondary);
    font-weight: 500;
  }

  .solutions-dropdown-container {
    display: flex;
    justify-content: center;
    font-size: 15px;
    width: 30rem;
    padding: 1.5rem;
    text-align: center;
  }

  .solutions-unorder-list div {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 25px;
  }

  .solutions-dropdown {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    gap: 1.2rem;
  }

  .arrow {
    border: solid black;
    border-width: 0 5px 5px 0;
    display: inline-block;
    padding: 5px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
  }

  #arrow-svg {
    width: 20px;
    height: 20px;
  }

  .nav-menu,
  #arrow-svg {
    transition: 200ms ease;
  }

  .rotate #arrow-svg {
    rotate: 180deg;
  }

  .solutions-dropdown-hover {
    display: none;
  }

  .solutions-dropdown-hover.show {
    display: block;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .why-choose-us {
    width: 100svw;
    margin-top: 25px;
  }

  .why-choose-us-grid {
    display: grid;
    margin-top: 30px;
    width: 100svw;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, auto);
    justify-self: center;
    align-self: center;
  }

  .why-choose-us-feature:first-child {
    display: grid;
    grid-column: 1 / 4;
    grid-row: 1;
    width: 100%;
    text-align: center;
    padding: 2rem;
  }

  .why-choose-us-feature:nth-child(2) {
    display: grid;
    grid-column: 1 / 4;
    grid-row: 2;
    width: 100%;
    text-align: center;
    padding: 2rem;
  }

  .why-choose-us-feature:nth-child(3) {
    display: grid;
    grid-column: 1 / 4;
    grid-row: 3;
    width: 100%;
    text-align: center;
    padding: 2rem;
  }

  .why-choose-us-feature:nth-child(4) {
    display: grid;
    grid-column: 1 / 4;
    grid-row: 4;
    width: 100%;
    text-align: center;
    padding: 2rem;
  }

  .why-choose-us-feature:nth-child(5) {
    display: grid;
    grid-column: 1 / 4;
    grid-row: 5;
    width: 100%;
    text-align: center;
    padding: 2rem;
  }

  .why-choose-us-feature:nth-child(6) {
    display: grid;
    grid-column: 1 / 4;
    grid-row: 6;
    width: 100%;
    text-align: center;
    padding: 2rem;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    padding: 1.2rem;
  }

  .solution-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .features-tabs {
    flex-direction: column;
  }

  .ceo-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .contact {
    padding: 2rem;
    margin: 5rem 0 1rem 0;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

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

  .footer {
    padding: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .requestDemoBtn {
    display: none;
  }

  .why-choose-us {
    width: 100svw;
    margin-top: 25px;
  }

  .why-choose-us-stats {
    width: 100svw;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    justify-self: center;
    align-self: center;
  }

  .why-choose-us-stat-card:first-child {
    width: 100%;
    grid-column: 1/3;
    grid-row: 1/2;
  }

  .why-choose-us-stat-card:nth-child(2) {
    width: 100%;
    grid-column: 1/3;
    grid-row: 2/3;
  }

  .why-it-matter-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
  }

  .why-it-matter-feature:first-child {
    grid-column: 1/4;
    grid-row: 1/2;
  }

  .why-it-matter-feature:nth-child(2) {
    grid-column: 1/4;
    grid-row: 2/3;
  }

  .why-it-matter-feature:nth-child(3) {
    grid-column: 1/4;
    grid-row: 3/4;
  }

  .how-it-work-grid {
    display: grid;
    margin-top: 30px;
    width: 100svw;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    justify-self: center;
    align-items: center;
  }

  .how-it-work-feature:first-child {
    display: grid;
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 2rem;
    border: 1px solid var(--border);
  }

  .how-it-work-feature:nth-child(2) {
    display: grid;
    grid-column: 1 / 3;
    grid-row: 2 / 3;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 2rem;
    border: 1px solid var(--border);
  }

  .how-it-work-grid .grid-img-first {
    display: grid;
    grid-column: 1 / 3;
    grid-row: 2 / 3;
  }

  .how-it-work-grid .grid-content-second {
    display: grid;
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }

  .how-it-work-feature-img {
    max-width: 100%;
    height: auto;
  }

  .how-it-work-grid h2 {
    font-size: 1.2rem;
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
  }

  .benefits-feature:first-child {
    grid-column: 1/4;
    grid-row: 1/2;
  }

  .benefits-feature:nth-child(2) {
    grid-column: 1/4;
    grid-row: 2/3;
  }

  .benefits-feature:nth-child(3) {
    grid-column: 1/4;
    grid-row: 3/4;
  }

  .blog-old-update-card h4 {
    font-size: 1rem;
  }

  .blog-old-update-card h2 {
    font-size: 1.5rem;
  }

  .blog-old-update-card div {
    font-size: 0.8rem;
  }

  .blog-old-update-card svg {
    width: 20px;
    height: 20px;
  }

  .how-it-work-grid .grid-img-first {
    height: 35svh;
  }
}

@media (max-width: 900px) {
  .contact {
    padding: 2rem;
    margin: 5rem 0 1rem 0;
  }
}

@media (max-width: 480px) {
  body {
    width: 100svw;
  }

  .header {
    width: 100svw;
  }

  .footer {
    padding: 1.5rem;
  }

  .section-header h3 {
    font-size: 1rem;
  }

  .hero {
    padding: 6rem 0 2rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .container .section-header {
    padding-top: 3rem;
  }

  .btn-lg {
    width: 100%;
    max-width: 300px;
  }

  .nav {
    width: 100%;
    height: 50px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    font-size: 1.2rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: var(--background);
    flex-direction: column;
    padding: 10rem;
    max-height: 100svh;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .solutions-parent {
    position: relative;
    display: flex;
    flex-direction: column;
    color: var(--text-secondary);
    font-weight: 500;
  }

  .solutions-dropdown-container {
    display: flex;
    justify-content: center;
    font-size: 4vw;
    width: 30rem;
    padding: 1.5rem;
    text-align: center;
  }

  .solutions-unorder-list div {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 25px;
  }

  .solutions-dropdown {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    gap: 1.2rem;
  }

  .solutions-grid {
    padding: 1.2rem;
  }

  .solution-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .arrow {
    border: solid black;
    border-width: 0 5px 5px 0;
    display: inline-block;
    padding: 5px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
  }

  #arrow-svg {
    width: 40px;
    height: 40px;
  }

  .nav-menu,
  #arrow-svg {
    transition: 200ms ease;
  }

  .rotate #arrow-svg {
    rotate: 180deg;
  }

  .solutions-dropdown-hover {
    display: none;
  }

  .solutions-dropdown-hover.show {
    display: block;
  }

  .section-quote {
    margin-top: 5rem;
  }

  .ceo-note {
    padding: 3rem;
  }

  .ceo-message {
    color: white;
    text-align: justify;
    margin-bottom: 1.5rem;
  }

  .ceo-message h2 {
    text-align: center;
  }

  .requestDemoBtn {
    display: none;
  }

  .solutions {
    margin-top: 15px;
    padding: 0rem;
  }

  .why-choose-us {
    width: 100svw;
    margin-top: 25px;
  }

  .why-choose-us .why-choose-us-content {
    padding: 3rem 0 1.5rem 0;
  }

  .why-choose-us-grid {
    display: grid;
    margin-top: 30px;
    width: 100svw;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, auto);
    justify-self: center;
    align-self: center;
  }

  .why-choose-us-feature:first-child {
    display: grid;
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    text-align: center;
    padding: 2rem;
  }

  .why-choose-us-feature:nth-child(2) {
    display: grid;
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    text-align: center;
    padding: 2rem;
  }

  .why-choose-us-feature:nth-child(3) {
    display: grid;
    grid-column: 1;
    grid-row: 3;
    width: 100%;
    text-align: center;
    padding: 2rem;
  }

  .why-choose-us-feature:nth-child(4) {
    display: grid;
    grid-column: 1;
    grid-row: 4;
    width: 100%;
    text-align: center;
    padding: 2rem;
  }

  .why-choose-us-feature:nth-child(5) {
    display: grid;
    grid-column: 1;
    grid-row: 5;
    width: 100%;
    text-align: center;
    padding: 2rem;
  }

  .why-choose-us-feature:nth-child(6) {
    display: grid;
    grid-column: 1;
    grid-row: 6;
    width: 100%;
    text-align: center;
    padding: 2rem;
  }

  .why-choose-us-stats {
    width: 100svw;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    justify-self: center;
    align-self: center;
  }

  .why-choose-us-stat-card:first-child {
    width: 100%;
    grid-column: 1/3;
    grid-row: 1/2;
  }

  .why-choose-us-stat-card:nth-child(2) {
    width: 100%;
    grid-column: 1/3;
    grid-row: 2/3;
  }

  .client-logo-section {
    margin: 2rem 0 2rem 0;
    width: 100svw;
    height: auto;
  }

  .about {
    width: 100svw;
    padding: 0.5rem;
  }

  .about-content {
    width: 80svw;
  }

  .about-stats {
    width: 90svw;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    justify-self: center;
    align-self: center;
  }

  .stat-card:first-child {
    width: 100%;
    grid-column: 1/3;
    grid-row: 1/2;
  }

  .stat-card:nth-child(2) {
    width: 100%;
    grid-column: 1/3;
    grid-row: 2/3;
  }

  .contact {
    padding: 0.5rem;
    margin: 5rem 0 2rem 0;
  }

  .why-it-matter-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
  }

  .why-it-matter-feature:first-child {
    grid-column: 1/4;
    grid-row: 1/2;
  }

  .why-it-matter-feature:nth-child(2) {
    grid-column: 1/4;
    grid-row: 2/3;
  }

  .why-it-matter-feature:nth-child(3) {
    grid-column: 1/4;
    grid-row: 3/4;
  }

  .how-it-work-grid {
    display: grid;
    margin-top: 30px;
    width: 100svw;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    justify-self: center;
    align-items: center;
  }

  .how-it-work-feature:first-child {
    display: grid;
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 1rem;
    border: 1px solid var(--border);
  }

  .how-it-work-feature:nth-child(2) {
    display: grid;
    grid-column: 1 / 3;
    grid-row: 2 / 3;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 1rem;
    border: 1px solid var(--border);
  }

  .how-it-work-grid .grid-img-first {
    flex: none;
    display: grid;
    grid-column: 1 / 3;
    grid-row: 2 / 3;
  }

  .how-it-work-grid .grid-content-second {
    display: grid;
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }

  .how-it-work-grid .grid-img-first {
    height: 30svh;
  }

  .how-it-work-feature-img {
    max-width: 100%;
  }

  .how-it-work-grid h2 {
    font-size: 1rem;
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
  }

  .benefits-feature:first-child {
    grid-column: 1/4;
    grid-row: 1/2;
  }

  .benefits-feature:nth-child(2) {
    grid-column: 1/4;
    grid-row: 2/3;
  }

  .benefits-feature:nth-child(3) {
    grid-column: 1/4;
    grid-row: 3/4;
  }

  .blog-old-update-card h4 {
    font-size: 0.7rem;
  }

  .blog-old-update-card h2 {
    font-size: 0.7rem;
  }

  .blog-old-update-card div {
    font-size: 0.7rem;
  }

  .blog-old-update-card svg {
    width: 17px;
    height: 17px;
  }

  .slideshow {
    height: auto;
  }
}

/* Enhanced Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 5px rgba(37, 99, 235, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.8), 0 0 30px rgba(37, 99, 235, 0.6);
  }
}

.animate-in {
  animation: slideInUp 0.6s ease-out;
}

.animate-left {
  animation: fadeInLeft 0.8s ease-out;
}

.animate-right {
  animation: fadeInRight 0.8s ease-out;
}

.pulse-animation {
  animation: pulse 2s infinite;
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

/* Focus States for Accessibility */
*:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Team Section */
.team {
  background: var(--surface);
  padding: 5rem;
}

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

.team-card {
  background: var(--background);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInFromBottom 0.6s ease forwards;
  max-width: 300px;
  width: 100%;
}

.team-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.team-photo {
  transition: transform 0.3s ease;
}

.team-card:hover .team-photo {
  transform: scale(1.05);
}

.team-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary-color);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--neutral-light);
}

.team-photo img[alt]:after {
  content: attr(alt);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-align: center;
}

.team-info h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-bio {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 10px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 0.6s ease forwards;
}

.faq-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: var(--background);
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  position: relative;
}

.faq-question:hover {
  background: var(--surface);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  font-size: 1.5rem;
  transition: transform 0.2s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 1.5rem;
  background: var(--surface);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  padding: 1.5rem;
  margin: 0;
}

/* Hover Effects */
.solution-card {
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(37, 99, 235, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.solution-card:hover::before {
  left: 100%;
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: var(--background);
  margin: 5% auto;
  padding: 2rem;
  border-radius: 1rem;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.close:hover {
  color: var(--text-primary);
}

.modal-content h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.modal-content h3 {
  color: var(--text-primary);
  margin: 1.5rem 0 1rem 0;
}

.feature-grid {
  display: grid;
  gap: 1rem;
  margin: 1rem 0;
}

.feature-item {
  padding: 1rem;
  background: var(--surface);
  border-radius: 0.5rem;
  border-left: 4px solid var(--primary-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.benefitsModal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.benefitModal-item {
  padding: 1rem;
  background: var(--primary-color);
  color: white;
  border-radius: 0.5rem;
  text-align: center;
  font-weight: 600;
}

.get-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.5rem;
  margin: 1rem 0;
}

.get-list div {
  padding: 0.5rem;
  background: var(--surface);
  border-radius: 0.25rem;
  font-weight: 500;
}

/* About Section */
.about {
  background: var(--surface);
  padding: 3rem;
}

.about-content {
  display: grid;
  gap: 2rem;
  grid-template-columns: 2fr 1fr;
  align-items: start;
  width: 100%;
  margin: 0 auto;
}

.about-text {
  width: 100%;
  height: 100%;
}

.about-text h3 {
  color: var(--primary-color);
  margin: 2.5rem 0 1rem 0;
  font-size: 1.5rem;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.about-text h3:first-child {
  margin-top: 0;
}

.about-text p {
  text-align: justify;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-solutions {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.about-solution {
  background: var(--background);
  padding: 1.5rem;
  border-radius: 0.75rem;
  border-left: 4px solid var(--primary-color);
  box-shadow: var(--shadow);
}

.about-solution h4 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.about-stats {
  display: grid;
  gap: 1.5rem;
  width: 100%;
  height: fit-content;
}

.stat-card {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px) scale(1.05);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Print Styles */
@media print {
  .header,
  .nav-toggle,
  .hero-actions,
  .contact-form,
  .footer {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .container {
    max-width: none;
    padding: 0;
  }
}

/* Privacy Policy */
.privacy-policy {
  display: flex;
  justify-self: center;
  width: 100%;
  height: 100%;
  margin: 8rem 0 7rem;
}

.privacy-policy-content {
  padding: 1rem;
}

.privacy-policy-bullet {
  margin-block-start: 1em;
  margin-block-end: 1em;
  padding-inline-start: 40px;
  unicode-bidi: isolate;
}

/* Security */
.security {
  display: flex;
  justify-self: center;
  width: 100%;
  height: 100%;
  margin: 8rem 0 7rem;
}

.security-content {
  padding: 1rem;
}

.security-bullet {
  margin-block-start: 1em;
  margin-block-end: 1em;
  padding-inline-start: 40px;
  unicode-bidi: isolate;
  list-style: none;
}

.security-bullet-unorder {
  list-style: disc;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

/* terms-of-service */
.terms-of-service {
  display: flex;
  justify-self: center;
  width: 100%;
  height: 100%;
  margin: 8rem 0 7rem;
}

.terms-of-service-content {
  padding: 1rem;
}

.terms-of-service-bullet {
  margin-block-start: 1em;
  margin-block-end: 1em;
  padding-inline-start: 40px;
  unicode-bidi: isolate;
  color: var(--text-secondary);
}

/* Why choose us */
.why-choose-us {
  background: var(--surface);
}

.why-choose-us {
  padding: 10px;
}

.why-choose-us-content {
  text-align: center;
}

.why-choose-us-grid {
  display: grid;
  margin-top: 30px;
  width: 95svw;
  grid-template-columns: repeat(3, auto);
  grid-row: repeat(2, auto);
  justify-self: center;
  align-items: center;
}

.why-choose-us-feature {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 100%;
  height: 20svh;
  padding: 2rem;
  background: var(--background);
  border: 1px solid var(--border);
}

.why-choose-us-stats {
  display: grid;
  gap: 5rem;
  padding: 40px;
  grid-template-columns: repeat(2, 1fr);
  height: fit-content;
  justify-self: center;
  align-self: center;
}

.why-choose-us-stat-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  width: 40dvw;
  height: 25dvh;
  color: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.why-choose-us-stat-card:hover {
  transform: translateY(-5px) scale(1.05);
}

.why-choose-us-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.why-choose-us-stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* quote */
.quote {
  margin-top: 8%;
}

/* solution dropdown hover */

@media (min-width: 769px) {
  #arrow-svg {
    display: none;
  }

  .solutions-parent {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    position: static;
    color: var(--text-secondary);
    font-weight: 500;
  }

  .solutions-dropdown {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: pointer;
  }

  .solutions-dropdown-hover {
    display: none;
    position: absolute;
    top: 59px;
    left: 0;
    right: 0;
    background-color: rgb(242, 241, 241);
    z-index: 1000;
    width: 100%;
    max-height: 90svh;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .solutions-parent:hover .solutions-dropdown-hover {
    display: block;
  }

  .solutions-dropdown-container {
    padding: 5rem;
    width: 100%;
    height: 100%;
  }

  .solutions-unorder-list {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    width: 100%;
  }

  .solutions-unorder-list div {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 90%;
    height: 100%;
  }
}

.solutions-dropdown:hover,
.solutions-dropdown:focus {
  color: var(--primary-color);
}

.solutions-list:hover,
.solutions-list:focus {
  color: var(--primary-color);
}

.solutions-a {
  color: var(--text-secondary);
}

/* PreHire */
.parnter {
  padding: 2rem;
  margin-top: 8rem;
}

.btn-panter {
  margin-top: 30px;
}

/* Why it matters */
.why-it-matter {
  background: var(--surface);
}

.why-it-matter {
  padding: 10px;
}

.why-it-matter-content {
  text-align: center;
}

.why-it-matter-grid {
  display: grid;
  margin-top: 30px;
  width: 95%;
  grid-template-columns: repeat(3, 1fr);
  justify-self: center;
  align-items: center;
}

.why-it-matter-feature {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 100%;
  height: 80%;
  padding: 2rem;
  background: var(--background);
  border: 1px solid var(--border);
}

.why-it-matter-feature span {
  font-weight: bold;
}

/* How it works */
.how-it-work {
  background: var(--surface);
}

.how-it-work {
  padding: 10px;
  margin-top: 30px;
}

.how-it-work-content {
  text-align: center;
}

.how-it-work-grid {
  display: grid;
  margin-top: 30px;
  width: 95%;
  grid-template-columns: repeat(2, 1fr);
  justify-self: center;
  align-items: center;
}

.how-it-work-feature {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 2rem;
  border: 1px solid var(--border);
}

.how-it-work-feature-img {
  max-width: 100%;
  height: auto;
}

.benefits {
  background: var(--surface);
}

.benefits {
  padding: 10px;
  margin-top: 30px;
}

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

.benefits-grid {
  display: grid;
  margin-top: 30px;
  width: 95%;
  grid-template-columns: repeat(3, 1fr);
  justify-self: center;
  align-items: center;
}

.benefits-feature {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 2rem;
  border: 1px solid var(--border);
  background-color: var(--background);
}

.benefits-feature span {
  font-weight: bold;
}

/* Transform your hiring with AI */
.hiring-with-ai-btn {
  margin-top: 20px;
}

/* Image Marquee */
.wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  height: 30dvh;
  position: relative;
  overflow: hidden;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(calc(0));
  }
  100% {
    transform: translateX(calc(-218px * 12));
  }
}

.boxes {
  display: flex;
  flex-direction: row;
  gap: 3.11rem;
  width: calc(218px * 26);
  height: 90%;
  position: absolute;
  animation: scrollLeft 40s linear infinite;
}

.box {
  width: 10.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}

.box h3 {
  font-size: 1rem;
}

.box .image-wrapper {
  object-fit: cover;
  width: 100%;
  height: 10.5rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  border: 4px solid var(--primary-color);
  overflow: hidden;
}

.box img[alt]::after {
  content: attr(alt);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-align: center;
}

.box h2 {
  font-size: 1.6rem;
}

/* Blog */
.blog {
  padding: 1rem;
  margin-top: 4rem;
}

.blog-text {
  text-align: center;
}

.blog-new-update {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: auto;
}

.blog-new-update-card {
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
  margin-bottom: 15px;
  border-radius: 1rem;
  border: 2px black solid;
}

.blog-new-update-date {
  display: flex;
  align-self: self-start;
  color: var(--text-secondary);
}

.blog-new-update a {
  color: black;
}

.blog-new-update-img {
  margin-top: 15px;
  width: 70%;
  border-radius: 2rem;
}

.blog-new-update-url-header {
  display: flex;
  align-self: self-start;
}

.blog-new-update-url-header a {
  display: flex;
  justify-content: center;
}

.blog-old-update {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: auto;
  gap: 2rem;
}

.blog-old-update-card {
  display: flex;
  flex-direction: row;
  width: 80%;
  border-radius: 1rem;
}

.blog-old-update-img {
  width: 30%;
  border-radius: 0.5rem;
}

.blog-old-update-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-around;
}

.blog-old-update-date {
  display: flex;
  align-self: self-start;
  color: var(--text-secondary);
}

.blog-old-update-content a {
  color: black;
}

.blog-old-update-url-header {
  display: flex;
  align-self: self-start;
}

.blog-old-update-url-header a {
  display: flex;
  justify-content: center;
}

/* blog note */
.blog-note {
  padding: 1rem;
  margin-top: 7rem;
  margin-bottom: 2rem;
}

.blog-note-container p {
  color: var(--text-primary);
}

.blog-note-text img {
  display: flex;
  justify-self: center;
  margin: 20px 0 20px 0;
}

.blog-note-content {
  margin-top: 3rem;
}

.blog-note-content p {
  color: var(--text-primary);
}

.blog-note-bullet {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-block-start: 1em;
  margin-block-end: 1em;
  padding-inline-start: 40px;
  unicode-bidi: isolate;
}

.blog-note-content-image-url {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.blog-note-content-image-url img {
  width: 80%;
}

.blog-note-grid {
  display: grid;
  margin-top: 2rem;
  grid-template-columns: repeat(3, 1fr);
  word-break: break-word;
  overflow-wrap: anywhere;
  white-space: normal;
}

.blog-note-grid-header,
.blog-note-grid-content {
  padding: 1rem;
  border: 1.5px black solid;
}

.blog-note-grid-header p,
.blog-note-grid-content p {
  color: var(--text-primary);
}

.blog-note-content-final-thoughts {
  padding: 2rem;
  border: 2px black solid;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.blog-note-content-final-thoughts p {
  color: var(--text-primary);
}

/* client logo */
.client-logo-section {
  margin: 2rem 0 2rem 0;
  width: 100%;
  height: auto;
}

.client-logo-flex {
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.client-logo-card {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 90px;
}

.client-logo-img {
  max-width: 100%;
  max-height: 100%;
}

.client-logo-img-ew {
  max-width: 100%;
  height: 2.8rem;
}

/* slideshow image for preschedule */
.slideshow {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.slideshow img {
  position: absolute;
  opacity: 0;
  animation: fade 12s infinite;
}

.slideshow img:nth-child(1) {
  animation-delay: 0s;
}
.slideshow img:nth-child(2) {
  animation-delay: 3s;
}
.slideshow img:nth-child(3) {
  animation-delay: 6s;
}
.slideshow img:nth-child(4) {
  animation-delay: 9s;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  8.33% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  33.33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
