.header,
.mobile-menu {
  backdrop-filter: blur(12px)
}

.hero,
.sr-only {
  overflow: hidden
}

.feature-list,
.footer-links,
.nav-list {
  list-style: none
}

.btn,
.cta-content,
.footer-bottom,
.text-center {
  text-align: center
}

.btn,
.contact-card a,
.cta-note a,
.footer-links a,
.mobile-menu-link,
.nav-link,
.skip-link {
  text-decoration: none
}

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

:root {
  --primary: #00bfc1;
  --primary-dark: #008e90;
  --secondary: #0A2540;
  --background: #FFFFFF;
  --muted: #F8F9FA;
  --muted-foreground: #6B7280;
  --border: #E5E7EB;
  --card: #FFFFFF;
  --accent: #7B68EE;
  --foreground: #000000;
}

html {
  scroll-behavior: smooth
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background: var(--background);
  overflow-x: hidden
}

.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  z-index: 0;
  font-weight: 600;
  border-radius: 0 0 4px
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--primary-dark);
  outline-offset: 2px
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0
}

.feature-list li,
.header {
  border-bottom: 1px solid var(--border)
}

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: 2px
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .05)
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px
}

.logo,
.nav-desktop {
  align-items: center;
  display: flex
}

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

.nav-desktop {
  gap: 32px
}

.nav-list {
  display: flex;
  gap: 32px;
  align-items: center;
  margin: 0;
  padding: 0
}

.nav-link {
  color: var(--muted-foreground);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s
}

.nav-link:focus,
.nav-link:hover {
  color: var(--foreground);
  text-decoration: underline
}

.mobile-menu-btn {
  display: none;
  background: 0 0;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--foreground);
  transition: opacity .2s
}

.hamburger,
.mobile-menu.active {
  display: block
}

.hamburger,
.hamburger::after,
.hamburger::before {
  width: 24px;
  height: 2px;
  background: var(--foreground)
}

.mobile-menu-btn:hover {
  opacity: .7
}

.mobile-menu-btn:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px
}

.hamburger {
  position: relative
}

.hamburger::after,
.hamburger::before {
  content: '';
  position: absolute;
  left: 0
}

.hamburger::before {
  top: -8px
}

.hamburger::after {
  bottom: -8px
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, .98);
  z-index: 99;
  padding: 48px 24px
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.mobile-menu-link {
  font-size: 24px;
  font-weight: 600;
  color: var(--foreground);
  transition: color .2s
}

.footer-links a:focus,
.footer-links a:hover,
.mobile-menu-link:focus,
.mobile-menu-link:hover {
  color: var(--primary);
  text-decoration: underline
}

.btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: .2s;
  cursor: pointer;
  border: none;
  display: inline-block
}

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

.btn-primary:focus,
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 180, 216, .3)
}

.btn-outline:active,
.btn-primary:active {
  transform: translateY(0)
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: 0 0
}

.btn-outline:focus,
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px)
}

.btn-lg {
  padding: 14px 32px;
  font-size: 16px
}

.hero,
.section,
.stats {
  padding: 80px 0
}

.btn-full {
  width: 100%
}

.hero {
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative
}

.hero-background,
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

.hero-background {
  z-index: 0
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(255, 255, 255, .95) 0, rgba(248, 249, 250, .9) 100%);
  z-index: 1
}

.hero .container,
.hero-content {
  position: relative;
  z-index: 2
}

.hero-content {
  max-width: 700px
}

.hero-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px
}

.hero-subtitle {
  font-size: 18px;
  color: var(--muted-foreground);
  margin-bottom: 32px;
  line-height: 1.7
}

.checkmark,
.space-y-6 a,
.stat-icon,
.stat-value,
.text-primary {
  color: var(--primary)
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.section-muted,
.stats {
  background: var(--muted)
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px
}

.stat-card {
  background: #fff;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: .3s
}

.contact-card:hover,
.feature-card:hover,
.stat-card:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .1)
}

.stat-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px
}

.stat-value {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 8px;
  line-height: 1
}

.space-y-6 a,
.stat-label {
  font-weight: 500
}

.contact-card p,
.feature-card p,
.highlight-card p,
.partners-text,
.section-subtitle,
.stat-label,
.testimonial-author p {
  color: var(--muted-foreground)
}

.stat-label {
  font-size: 14px
}

.section-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.2
}

.section-subtitle {
  font-size: 18px;
  margin-bottom: 48px;
  line-height: 1.7
}

.section-center {
  max-width: 1000px;
  margin: 0 auto
}

.feature-list,
.highlight-card {
  margin-bottom: 32px
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 64px;
  align-items: center
}

.flex {
  display: flex;
  flex-flow: row wrap;
  gap: 30px;
  margin-top: 30px
}

.flex-3 {
  width: 30%
}

.flex-7 {
  width: calc(70% - 30px)
}

.flex-3 p,
.flex-7 p {
  margin: 1rem 0
}

.card h3,
.checkmark {
  font-weight: 700;
  font-size: 20px
}

.space-y-6 h3 {
  margin: 2rem 0 1rem
}

.card h3,
.feature-icon {
  margin-bottom: 16px
}

.space-y-6 ul {
  padding-left: 2rem
}

.card,
.contact-card,
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: .3s
}

.card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08)
}

.partners-text {
  margin-top: 16px;
  line-height: 1.8
}

.feature-list li {
  padding: 16px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px
}

.feature-list li:last-child {
  border-bottom: none
}

.highlight-card {
  background: rgba(123, 104, 238, .05);
  border: 1px solid rgba(123, 104, 238, .2);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px
}

.feature-icon,
.highlight-icon {
  border-radius: 50%;
  align-items: center
}

.highlight-icon {
  width: 48px;
  height: 48px;
  background: rgba(123, 104, 238, .15);
  display: flex;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0
}

.highlight-card h4 {
  font-weight: 600;
  margin-bottom: 4px
}

.highlight-card p,
.testimonial-author p {
  font-size: 14px;
  margin: 0
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 64px
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 180, 216, .1);
  display: flex;
  justify-content: center;
  font-size: 28px
}

.feature-card h3 {
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 18px
}

.feature-card p {
  margin: 0;
  line-height: 1.6
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 64px
}

.testimonial-card {
  background: #fff;
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
  transition: .3s
}

.contact-icon,
.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: var(--foreground)
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px
}

.testimonial-avatar {
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
  flex-shrink: 0
}

.testimonial-author h4 {
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 16px
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin: 64px 0
}

.contact-icon {
  background: rgba(0, 180, 216, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 28px
}

.contact-card h3 {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 18px
}

.contact-card p {
  margin: 8px 0;
  line-height: 1.6
}

.contact-card a {
  color: var(--primary);
  font-weight: 500
}

.contact-card a:hover,
.cta-note a:focus,
.cta-note a:hover {
  text-decoration: underline
}

.cta-content,
.form-container {
  max-width: 800px;
  margin: 0 auto
}

.form-group,
.form-row {
  margin-bottom: 24px
}

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .05)
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
  color: var(--foreground)
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color .2s
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: var(--primary)
}

.footer,
.footer-bottom {
  border-top: 1px solid var(--border)
}

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

.checkbox-group {
  display: flex;
  gap: 12px;
  align-items: flex-start
}

.checkbox-group input[type=checkbox] {
  width: auto;
  margin-top: 4px
}

.checkbox-group label {
  font-weight: 400;
  margin-bottom: 0
}

.footer {
  background: var(--muted);
  padding: 64px 0 32px
}

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

.footer-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px
}

.cta-note a,
.footer-heading {
  font-weight: 600
}

.footer-text {
  color: var(--muted-foreground);
  line-height: 1.7
}

.footer-heading {
  font-size: 16px;
  margin-bottom: 16px
}

.cta-note,
.footer-bottom,
.footer-links a {
  color: var(--muted-foreground);
  font-size: 14px
}

.footer-links li {
  margin-bottom: 12px
}

.footer-links a {
  transition: color .2s
}

.footer-bottom {
  padding-top: 32px
}

.content-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
  transition: .3s
}

.content-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .15)
}

.section-cta {
  background: linear-gradient(135deg, #f8f9fa 0, #fff 100%)
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin: 48px 0;
  flex-wrap: wrap
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 500;
  color: var(--foreground)
}

.cta-icon {
  width: 24px;
  height: 24px;
  color: var(--primary)
}

.cta-buttons {
  margin: 48px 0 24px
}

.btn-cta {
  font-size: 18px;
  padding: 16px 48px
}

.hero-title,
.section-title,
.stat-value {
  color: var(--foreground)
}

@media (prefers-reduced-motion:reduce) {

  *,
  ::after,
  ::before {
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important
  }
}

@media (max-width:768px) {
  .nav-desktop {
    display: none
  }

  .mobile-menu-btn {
    display: block
  }

  .hero-title {
    font-size: 36px
  }

  .hero-subtitle,
  .section-subtitle {
    font-size: 16px
  }

  .section-title {
    font-size: 32px
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

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

  .contact-form {
    padding: 24px
  }

  .grid-2 {
    gap: 32px
  }

  .flex-3,
  .flex-7 {
    width: 100%
  }

  .section,
  .stats {
    padding: 40px 0
  }

  .hero {
    padding: 50px 0;
    min-height: 1px
  }
}

@media (max-width:480px) {
  .stats-grid {
    grid-template-columns: 1fr
  }

  .hero-buttons {
    flex-direction: column
  }

  .btn-lg {
    width: 100%
  }
}