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

:root {
  /* Colors - Dhisana Brand Blue #54c0e8 */
  --primary-color: #54c0e8;
  --primary-50: #f0f9ff;
  --primary-100: #e0f2fe;
  --primary-200: #bae6fd;
  --primary-300: #7dd3fc;
  --primary-400: #38bdf8;
  --primary-500: #54c0e8;
  --primary-600: #0284c7;
  --primary-700: #0369a1;
  --primary-800: #075985;
  --primary-900: #0c4a6e;

  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --white: #ffffff;
  --black: #000000;

  /* Typography */
  --font-family-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  --font-family-heading: "Space Grotesk", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 0.75rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --spacing-4xl: 6rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-primary);
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  transition: all var(--transition-normal);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md) var(--spacing-lg);
  max-width: 1280px;
  margin: 0 auto;
}

.nav-logo {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
}

.nav-link {
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: #54c0e8;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle .bar {
  width: 24px;
  height: 2px;
  background-color: var(--gray-700);
  transition: all var(--transition-normal);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-sm) var(--spacing-lg);
  border: none;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn-primary {
  background-color: #54c0e8;
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: #0284c7;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--gray-700);
  border: 1px solid var(--gray-300);
}

.btn-secondary:hover {
  background-color: var(--gray-50);
  border-color: var(--gray-400);
}

.btn-large {
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: 1.1rem;
}

.btn-icon {
  flex-shrink: 0;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 120px;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 4rem 0;
  width: 100%;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #f0f9ff 0%,
    var(--gray-50) 50%,
    #e0f2fe 100%
  );
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      to right,
      var(--gray-200) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, var(--gray-200) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
}

.hero-content {
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-xs) var(--spacing-md);
  background-color: #e0f2fe;
  color: #0284c7;
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--spacing-lg);
  border: 1px solid #bae6fd;
}

.hero-title {
  font-family: var(--font-family-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  padding: 2rem 1rem;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.hero-title-main {
  display: block;
}

.hero-rotating-text {
  display: inline-block;
  color: var(--black);
  min-height: 2.5em;
  height: auto;
  width: auto;
  min-width: 200px;
  white-space: normal;
  word-wrap: break-word;
  animation: fadeInUp 0.6s ease-out;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1em;
  line-height: 1.2;
  vertical-align: top;
  overflow: visible;
}

.hero-rotating-text.changing {
  opacity: 0;
  transform: translateY(-10px) scale(0.98);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-description {
  font-size: 1.375rem;
  color: var(--gray-600);
  margin-bottom: var(--spacing-4xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  padding: 0 var(--spacing-lg);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-4xl);
  padding: 0 var(--spacing-lg);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--spacing-2xl);
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-xl) var(--spacing-lg);
}

.stat {
  text-align: center;
  padding: var(--spacing-lg);
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.stat-number {
  font-family: var(--font-family-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #54c0e8;
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  color: var(--gray-600);
  font-size: 0.875rem;
  font-weight: 500;
}

/* Trusted By Section */
.trusted-by-section {
  padding: var(--spacing-2xl) 0;
  background-color: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.trusted-by-content {
  text-align: center;
}

.trusted-by-title {
  font-family: var(--font-family-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--gray-700);
  margin: 0;
}

/* Section Styles */
section {
  padding: var(--spacing-4xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-4xl);
}

.section-badge {
  display: inline-block;
  padding: var(--spacing-xs) var(--spacing-md);
  background-color: #e0f2fe;
  color: #0284c7;
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--spacing-md);
}

.section-title {
  font-family: var(--font-family-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

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

/* Features Overview */
.features-overview {
  background-color: var(--gray-50);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-4xl);
}

.feature-card {
  background-color: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
  border-color: #bae6fd;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-lg);
  color: #0284c7;
  flex-shrink: 0;
}

.feature-title {
  font-family: var(--font-family-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: var(--spacing-md);
}

.feature-description {
  color: var(--gray-600);
  line-height: 1.6;
  flex-grow: 1;
}

.features-visual {
  text-align: center;
  margin-top: var(--spacing-2xl);
}

.features-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

/* Roles Section */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-xl);
}

.role-card {
  background-color: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-normal);
  height: 100%;
}

.role-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
  border-color: #bae6fd;
}

.role-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-lg);
  color: #0284c7;
}

.role-title {
  font-family: var(--font-family-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: var(--spacing-md);
}

.role-features {
  list-style: none;
  color: var(--gray-600);
}

.role-features li {
  position: relative;
  padding-left: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
}

.role-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #54c0e8;
  font-weight: 600;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #54c0e8, #0284c7);
  color: var(--white);
  text-align: center;
}

.cta-title {
  font-family: var(--font-family-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.cta-description {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xl);
  opacity: 0.9;
}

.cta-section .btn-primary {
  background-color: var(--white);
  color: #54c0e8;
}

.cta-section .btn-primary:hover {
  background-color: var(--gray-100);
  transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
  background-color: var(--gray-50);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-lg);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-family-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  transition: all var(--transition-fast);
}

.faq-question:hover {
  background-color: var(--gray-50);
}

.faq-icon {
  transition: transform var(--transition-fast);
  color: #54c0e8;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

.faq-answer p,
.faq-answer ul {
  padding: 0 var(--spacing-lg) var(--spacing-lg);
  color: var(--gray-600);
  line-height: 1.7;
}

.faq-answer ul {
  padding-top: 0;
}

.faq-answer li {
  margin-bottom: var(--spacing-xs);
}

/* Contact Section */
.contact-form-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form {
  background-color: var(--white);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--spacing-md);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #54c0e8;
  box-shadow: 0 0 0 3px rgba(84, 192, 232, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* reCAPTCHA styling */
.g-recaptcha {
  margin: var(--spacing-lg) 0;
  display: flex;
  justify-content: center;
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  background-color: var(--gray-50);
}

/* Responsive reCAPTCHA */
@media (max-width: 320px) {
  .g-recaptcha {
    transform: scale(0.8);
    transform-origin: center;
  }
}

/* Footer */
.footer {
  background-color: var(--gray-900);
  color: var(--gray-300);
  padding: var(--spacing-4xl) 0 var(--spacing-xl);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--spacing-4xl);
  margin-bottom: var(--spacing-2xl);
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: var(--spacing-md);
  filter: brightness(0) invert(1);
}

.footer-description {
  color: var(--gray-400);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--spacing-xl);
}

.footer-column h3 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

.footer-column a {
  display: block;
  color: var(--gray-400);
  text-decoration: none;
  margin-bottom: var(--spacing-xs);
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: #54c0e8;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-xl);
  border-top: 1px solid var(--gray-700);
  font-size: 0.875rem;
  color: var(--gray-500);
}

.footer-bottom a {
  color: #54c0e8;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Video Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}

.video-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.video-modal-content {
  position: relative;
  width: 90vw;
  max-width: 1800px;
  max-height: 80vh;
  z-index: 1;
  margin: var(--spacing-lg);
}

.video-modal-close {
  position: absolute;
  top: -50px;
  right: -50px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all var(--transition-fast);
  z-index: 2;
}

.video-modal-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* Fallback for browsers that don't support aspect-ratio */
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  max-height: 70vh;
}

/* Modern browsers with aspect-ratio support */
@supports (aspect-ratio: 16 / 9) {
  .video-container {
    height: auto;
    padding-bottom: 0;
  }
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 var(--spacing-md);
  }

  .roles-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    transition: left var(--transition-normal);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

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

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

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

  .hero {
    padding-top: 100px;
    padding-bottom: var(--spacing-2xl);
  }

  .hero-content {
    padding: var(--spacing-2xl) 0;
  }

  .hero-title {
    font-size: clamp(1.75rem, 7vw, 3rem);
    line-height: 1.2;
    padding: var(--spacing-xl) var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .hero-title-main {
    display: block;
  }

  .hero-rotating-text {
    font-size: 0.9em;
    line-height: 1.2;
    display: block;
    width: 100%;
  }

  .hero-description {
    font-size: 1.125rem;
    padding: 0 var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
  }

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

  .hero-stats {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: center;
  }

  .video-modal-close {
    top: -40px;
    right: 0;
    width: 35px;
    height: 35px;
    font-size: 1.5rem;
  }

  .video-modal-content {
    width: 95vw;
    margin: var(--spacing-sm);
  }
}

@media (max-height: 500px) {
  .video-modal-content {
    max-height: 95vh;
  }

  .video-container {
    max-height: 85vh;
  }

  .video-modal-close {
    top: -30px;
    right: 0;
  }
}

@media (max-width: 768px) and (min-width: 481px) {
  .video-modal-content {
    width: 92vw;
    max-width: 700px;
  }

  .video-modal-close {
    top: -45px;
    right: -10px;
    width: 38px;
    height: 38px;
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--spacing-sm);
  }

  section {
    padding: var(--spacing-2xl) 0;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: var(--spacing-2xl);
  }

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

  .hero-title {
    font-size: clamp(1.25rem, 6vw, 2.25rem);
    line-height: 1.25;
    padding: 0;
    margin-bottom: var(--spacing-lg);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    max-width: 100%;
  }

  .hero-title-main {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-size: inherit;
    line-height: inherit;
  }

  .hero-rotating-text {
    font-size: 0.85em;
    line-height: 1.3;
    display: block;
    width: 100%;
    color: var(--black);
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    min-height: auto;
    height: auto;
    text-align: center;
  }

  .hero-description {
    font-size: 1rem;
    padding: 0 var(--spacing-sm);
    line-height: 1.5;
    margin-bottom: var(--spacing-2xl);
  }

  .hero-actions {
    gap: var(--spacing-md);
  }

  .btn-large {
    width: 100%;
    max-width: 280px;
  }

  .contact-form {
    padding: var(--spacing-lg);
  }

  .video-modal-content {
    width: 98vw;
    margin: var(--spacing-xs);
  }

  .video-modal-close {
    top: -35px;
    right: 5px;
    width: 30px;
    height: 30px;
    font-size: 1.25rem;
  }

  .video-container {
    border-radius: var(--radius-md);
  }
}

/* Animation Utilities */
.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

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

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

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Focus styles for better accessibility */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid #54c0e8;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .navbar,
  .hero-actions,
  .video-modal,
  .footer {
    display: none;
  }

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

  .hero-title {
    font-size: 24pt;
  }

  .section-title {
    font-size: 18pt;
  }
}

/* Pricing Styles */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-3xl);
}

.pricing-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-2xl);
  border: 2px solid var(--light-gray);
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pricing-card-popular {
  border-color: var(--primary);
  transform: scale(1.05);
}

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

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--border-radius);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-heading);
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.pricing-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: var(--spacing-sm);
}

.pricing-price {
  margin-bottom: var(--spacing-md);
}

.price-currency {
  font-size: 1.25rem;
  color: var(--gray);
  vertical-align: top;
}

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

.price-period {
  font-size: 1rem;
  color: var(--gray);
}

.pricing-description {
  color: var(--gray);
  font-size: 0.875rem;
  line-height: 1.6;
}

.pricing-features {
  margin-bottom: var(--spacing-xl);
  flex-grow: 1;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: var(--spacing-sm) 0;
  color: var(--dark-gray);
  position: relative;
  padding-left: var(--spacing-lg);
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 600;
}

.pricing-footer {
  margin-top: auto;
}

/* Mobile pricing adjustments */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .pricing-card-popular {
    transform: none;
  }

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

/* Product Page Styles */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-3xl);
}

.process-step {
  text-align: center;
  padding: var(--spacing-xl);
}

.process-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto var(--spacing-lg);
  font-family: var(--font-heading);
}

.process-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: var(--spacing-sm);
}

.process-description {
  color: var(--gray);
  line-height: 1.6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-3xl);
}

.benefit-item {
  text-align: center;
  padding: var(--spacing-xl);
}

.benefit-metric {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
  margin-bottom: var(--spacing-sm);
}

.benefit-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: var(--spacing-sm);
}

.benefit-description {
  color: var(--gray);
  line-height: 1.6;
}

.integration-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-3xl);
}

.integration-item {
  text-align: center;
  padding: var(--spacing-lg);
  background: white;
  border-radius: var(--border-radius);
  border: 1px solid var(--light-gray);
}

.integration-logo {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius);
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--primary);
  margin: 0 auto var(--spacing-sm);
  font-family: var(--font-heading);
}

.integration-item p {
  color: var(--gray);
  font-size: 0.875rem;
  margin: 0;
}

/* Legal Content Styles */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-top: var(--spacing-3xl);
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-sm);
  border-bottom: 2px solid var(--light-gray);
}

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

.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-top: var(--spacing-2xl);
  margin-bottom: var(--spacing-md);
}

.legal-content p {
  color: var(--dark-gray);
  margin-bottom: var(--spacing-lg);
}

.legal-content ul,
.legal-content ol {
  margin-bottom: var(--spacing-lg);
  padding-left: var(--spacing-xl);
}

.legal-content li {
  color: var(--dark-gray);
  margin-bottom: var(--spacing-sm);
}

.legal-content strong {
  color: var(--dark-gray);
  font-weight: 600;
}

/* About Us Page Styles */
.hero-alt {
  min-height: 60vh;
  background: linear-gradient(135deg, #f0f9ff 0%, var(--gray-50) 50%, #e0f2fe 100%);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.about-content {
  padding: var(--spacing-4xl) 0;
  background-color: var(--white);
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.about-content h2 {
  font-family: var(--font-family-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--spacing-lg);
  margin-top: var(--spacing-3xl);
}

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

.about-content h3 {
  font-family: var(--font-family-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.about-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: var(--spacing-lg);
}

.lead-text {
  font-size: 1.25rem !important;
  font-weight: 500;
  color: var(--gray-800) !important;
}

.founder-profiles {
  display: grid;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.founder-profile {
  padding: var(--spacing-xl);
  background-color: var(--gray-50);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary-color);
}

.founder-profile h3 {
  margin-top: 0;
  color: var(--gray-900);
}

.founder-profile p {
  margin-bottom: 0;
}

.about-content a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

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

.cta-section {
  text-align: center;
  padding: var(--spacing-3xl);
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: var(--radius-xl);
  margin-top: var(--spacing-3xl);
}

.cta-section h2 {
  margin-top: 0;
  color: var(--gray-900);
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--spacing-xl);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-content {
    padding: var(--spacing-2xl) 0;
  }
  
  .about-content h2 {
    font-size: 1.75rem;
  }
  
  .about-content p {
    font-size: 1rem;
  }
  
  .lead-text {
    font-size: 1.125rem !important;
  }
  
  .founder-profile {
    padding: var(--spacing-lg);
  }
  
  .cta-section {
    padding: var(--spacing-xl);
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
