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

:root {
  --color-purple: #8B5CF6;
  --color-purple-light: #A78BFA;
  --color-purple-dark: #7C3AED;
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-gray-50: #F9FAFB;
  --color-gray-100: #F3F4F6;
  --color-gray-200: #E5E7EB;
  --color-gray-300: #D1D5DB;
  --color-gray-600: #4B5563;
  --color-gray-700: #374151;
  --color-gray-800: #1F2937;
  --color-gray-900: #111827;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
  line-height: 1.5;
  color: var(--color-gray-900);
  background: var(--color-white);
}

.page-container {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  background: var(--color-white);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--color-gray-200);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.header-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  height: 5rem;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
  max-width: 220px;
  margin-left: -8px;
}

.nav-desktop {
  display: none;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
    align-items: center;
  }

  .logo {
    height: 3rem;
  }
}

.nav-links {
  display: flex;
  gap: 2rem;
}

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

.nav-link:hover {
  color: var(--color-purple);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .header-actions {
    display: flex;
  }
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.2s;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn:hover {
  background: var(--color-gray-100);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  border-top: 1px solid var(--color-gray-200);
  background: var(--color-white);
}

.mobile-menu.active {
  display: flex;
}

.mobile-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-gray-700);
  text-decoration: none;
  padding: 0.5rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  padding: 0.5rem 1rem;
}

.btn-large {
  padding: 0.75rem 2rem;
  font-size: 0.875rem;
}

.btn-full {
  width: 100%;
}

.btn-mobile {
  width: 100%;
  margin-top: 0.5rem;
}

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

.btn-primary:hover {
  background: var(--color-purple-light);
}

.btn-outline {
  background: var(--color-white);
  color: var(--color-gray-700);
  border-color: var(--color-gray-300);
}

.btn-outline:hover {
  color: var(--color-purple);
  border-color: var(--color-purple);
}

.btn-outline-light {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-gray-300);
}

.btn-outline-light:hover {
  color: var(--color-purple);
}

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

.btn-light:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-purple);
}

.icon-arrow {
  margin-left: 0.5rem;
  width: 1rem;
  height: 1rem;
}

.hero-section {
  width: 100%;
  padding: 5rem 0;
  background: var(--color-white);
}

@media (min-width: 768px) {
  .hero-section {
    padding: 7rem 0;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 9rem 0;
  }
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 500px;
  }
}

@media (min-width: 1280px) {
  .hero-grid {
    grid-template-columns: 1fr 600px;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.text-purple {
  color: var(--color-purple);
}

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

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.floating-image {
  width: 100%;
  max-width: 500px;
  animation: float 6s ease-in-out infinite;
}

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

.about-section, .solutions-section, .story-section {
  width: 100%;
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .about-section, .solutions-section, .story-section {
    padding: 7rem 0;
  }
}

.about-section {
  background: var(--color-gray-50);
}

.solutions-section {
  background: var(--color-white);
}

.story-section {
  background: var(--color-gray-50);
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  border-radius: 0.5rem;
  background: var(--color-purple);
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  color: var(--color-white);
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-description {
  max-width: 900px;
  color: var(--color-gray-600);
  font-size: 1.25rem;
}

.about-grid {
  display: grid;
  max-width: 1152px;
  margin: 0 auto;
  align-items: center;
  gap: 3rem;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-image {
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  padding: 2rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-purple);
  flex-shrink: 0;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.feature-description {
  color: var(--color-gray-600);
  font-size: 1.125rem;
  padding-left: 2.25rem;
}

.solutions-grid {
  display: grid;
  max-width: 1152px;
  margin: 0 auto;
  gap: 2rem;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.solution-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid var(--color-gray-200);
  background: var(--color-white);
  padding: 2rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.solution-icon {
  border-radius: 9999px;
  background: rgba(139, 92, 246, 0.1);
  padding: 1rem;
  color: var(--color-purple);
}

.solution-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.solution-description {
  text-align: center;
  color: var(--color-gray-600);
  font-size: 1.125rem;
}

.solution-features {
  margin-top: 1rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--color-gray-600);
}

.solution-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.solution-features svg {
  color: var(--color-purple);
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.integrations-section {
  width: 100%;
  padding: 5rem 0;
  background: var(--color-gray-50);
}

.carousel-container {
  width: 100%;
  overflow: hidden;
  background: var(--color-white);
  padding: 4rem 0;
}

.carousel-track {
  display: flex;
  animation: scroll 30s linear infinite;
}

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

.carousel-item {
  flex-shrink: 0;
  margin: 0 3rem;
  width: 150px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: 0.5rem;
}

.carousel-item img {
  width: 130px;
  height: 60px;
  object-fit: contain;
}

.pricing-section {
  width: 100%;
  padding: 5rem 0;
  background: var(--color-black);
  color: var(--color-white);
}

@media (min-width: 768px) {
  .pricing-section {
    padding: 7rem 0;
  }
}

.pricing-section .section-description {
  color: var(--color-gray-300);
}

.pricing-grid {
  display: grid;
  max-width: 1152px;
  margin: 0 auto;
  gap: 2rem;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--color-gray-200);
  background: var(--color-white);
  color: var(--color-black);
}

.pricing-card-featured {
  border: 2px solid var(--color-purple);
}

.pricing-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-purple);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-bottom-left-radius: 0.5rem;
}

.pricing-content {
  padding: 1.5rem;
}

.pricing-method {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-subtitle {
  color: var(--color-gray-600);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.pricing-price {
  margin-bottom: 1.5rem;
}

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

.price-timing {
  color: var(--color-gray-600);
  font-size: 0.875rem;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.pricing-features svg {
  color: var(--color-purple);
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.awards-section {
  width: 100%;
  padding: 5rem 0;
  background: var(--color-black);
  color: var(--color-white);
}

@media (min-width: 768px) {
  .awards-section {
    padding: 7rem 0;
  }
}

.awards-section .section-description {
  color: var(--color-gray-300);
}

.awards-carousel {
  max-width: 1152px;
  margin: 0 auto;
  padding: 4rem 0;
}

.awards-carousel-container {
  position: relative;
  width: 100%;
  max-width: 896px;
  margin: 0 auto;
}

.awards-image-wrapper {
  overflow: hidden;
  border-radius: 0.75rem;
  background: var(--color-black);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--color-gray-800);
}

.awards-image-wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: contain;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.carousel-btn-prev {
  left: 1rem;
}

.carousel-btn-next {
  right: 1rem;
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
}

.carousel-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  background: var(--color-gray-300);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot.active {
  background: var(--color-purple);
  width: 1.5rem;
}

.story-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .story-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.story-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.story-intro {
  color: var(--color-gray-600);
  font-size: 1.25rem;
}

.story-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--color-gray-600);
  font-size: 1.125rem;
}

.story-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-image img {
  width: 100%;
  max-width: 400px;
  padding: 2rem;
}

.cta-section {
  width: 100%;
  padding: 5rem 0;
  background: var(--color-purple);
}

@media (min-width: 768px) {
  .cta-section {
    padding: 7rem 0;
  }
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.25rem;
  }
}

.cta-description {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cta-actions {
    flex-direction: row;
  }
}

.cta-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer {
  width: 100%;
  border-top: 1px solid var(--color-gray-800);
  background: var(--color-black);
  color: var(--color-white);
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  height: 3rem;
  width: auto;
}

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

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 500;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: var(--color-gray-300);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-gray-800);
  text-align: center;
  color: var(--color-gray-300);
}
