/* CSS Variables */
:root {
  --font-size: 16px;
  --background: #ffffff;
  --foreground: #030213;
  --accent-yellow: #fbbf24;
  --accent-green: #13690b;
  --accent-blue: #2563eb;
  --card: #ffffff;
  --card-foreground: #030213;
  --primary: #030213;
  --primary-foreground: #ffffff;
  --secondary: #f1f1f3;
  --secondary-foreground: #030213;
  --muted: #ececf0;
  --muted-foreground: #717182;
  --accent: #e9ebef;
  --accent-foreground: #030213;
  --border: rgba(0, 0, 0, 0.1);
  --radius: 0.625rem;
}

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

html {
  font-size: 14px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 2.7;
  color: #333;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

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

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

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

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

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

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes scroll {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  animation: slideDown 0.8s ease-out;
}

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

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.logo-img {
  height: 48px;
  width: auto;
  border-radius: 8px;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

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

.nav-link {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: all 0.2s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.nav-link:nth-child(1) {
  animation-delay: 0.3s;
}
.nav-link:nth-child(2) {
  animation-delay: 0.4s;
}
.nav-link:nth-child(3) {
  animation-delay: 0.5s;
}

.nav-link:hover {
  color: #e2b051;
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

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

.hamburger {
  width: 24px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: #555;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.hamburger-line:nth-child(2) {
  margin: 3px 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  max-height: 200px;
}

.mobile-menu-content {
  padding: 0.5rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  color: #e2b051;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  position: relative;
  padding: 96px 0 64px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-backgrounds {
  position: absolute;
  inset: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.1);
  transition: all 1.5s ease-in-out;
}

.hero-bg.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay-dark {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.3),
    transparent
  );
}
/*
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}

.hero-text {
  max-width: 64rem;
  color: white;
  animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.hero-subtitle {
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.highlight {
  color: #e2b051;
  font-weight: 600;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease-out 0.6s both;
}

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

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

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 48rem;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInUp 0.6s ease-out 0.8s both;
}

@media (min-width: 1024px) {
  .hero-description {
    font-size: 1.5rem;
  }
}

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

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
  animation: fadeInUp 0.6s ease-out 1s both;
}

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

.btn {
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn:hover {
  transform: scale(1.05);
}

.btn:active {
  transform: scale(0.95);
}

.btn-primary {
  background: #e2b051;
  color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background: #d4a344;
  box-shadow: 0 10px 25px rgba(226, 176, 81, 0.4);
}

.btn-secondary {
  border: 2px solid white;
  color: white;
  background: transparent;
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: white;
  color: #111;
}

.btn-icon {
  width: 20px;
  height: 20px;
}
*/

.hero-text {
    color: white;
    text-align: left;
    animation: heroFadeInUp 0.8s ease-out;
}

@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.experience-badge {
    background-color: #eaeaed;
    border-radius: 20px;
    padding: 0.1rem 0.50rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #636363;
    width: fit-content;
    font-size: 14px;
    letter-spacing: 0.5px;
}

@media (min-width: 640px) {
    .experience-badge {
        border-radius: 30px;
        padding: 1rem 1.5rem;
        margin-bottom: 1.5rem;
        gap: 1rem;
        font-size: 18px;
        letter-spacing: 0.81px;
    }
}

.avatars {
    display: flex;
    margin-left: -0.25rem;
}
@media (min-width: 640px) {
    .avatars {
        margin-left: -0.5rem;
    }
}
.avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -0.25rem;
}
@media (min-width: 640px) {
    .avatar {
        width: 35px;
        height: 35px;
        margin-left: -0.5rem;
    }
}
.avatar-1 { background-color: #d1d5db; }
.avatar-2 { background-color: #9ca3af; }
.avatar-3 { background-color: #6b7280; }
.avatar-4 { background-color: #4b5563; }

.hero-title {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.1;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
@media (min-width: 640px) {
    .hero-title {
        font-size: 36px;
        line-height: 1.2;
        letter-spacing: 1.5px;
        margin-bottom: 1.5rem;
    }
}
@media (min-width: 768px) {
    .hero-title {
        font-size: 48px;
        letter-spacing: 2px;
    }
}
@media (min-width: 1024px) {
    .hero-title {
        font-size: 60px;
        letter-spacing: 2.6px;
    }
}
.hero-subtitle {
    font-size: 16px;
    color: #d1d5db;
    line-height: 1.5;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    max-width: 90%;
}
@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 20px;
        line-height: 1.4;
        letter-spacing: 0.8px;
        margin-bottom: 2rem;
        max-width: 600px;
    }
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 24px;
        line-height: 1.42;
        letter-spacing: 1.1px;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 28px;
        line-height: 1.43;
        letter-spacing: 1.4px;
        max-width: 724px;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
    width: 100%;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }
}

.btn {
    padding: 0.75rem 1.5rem;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.5px;
    border-radius: 10px;
    height: 48px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

@media (min-width: 640px) {
    .btn {
        padding: 1rem 2rem;
        font-size: 16px;
        letter-spacing: 0.7px;
        height: 54px;
        width: auto;
        min-width: 240px;
    }
}

@media (min-width: 1024px) {
    .btn {
        font-size: 18px;
        letter-spacing: 0.9px;
        height: 58px;
        min-width: 260px;
    }
}

@media (min-width: 1280px) {
    .btn {
        min-width: 280px;
    }
}

.btn-primary {
    background-color: #f3bf5f;
    color: white;
}

.btn-primary:hover {
    background-color: #d19f3f;
    transform: translateY(-2px);
}

.btn-group {
    display: flex;
    width: 100%;
}

@media (min-width: 640px) {
    .btn-group {
        width: auto;
    }
}

.btn-secondary {
    border: 2px solid;
    color: #1cb40e;
    
    background: transparent;
    flex: 1;
    border-radius: 10px 0 0 10px;
    min-width: 200px;
}

@media (min-width: 1024px) {
    .btn-secondary {
        min-width: 220px;
    }
}

@media (min-width: 1280px) {
    .btn-secondary {
        min-width: 240px;
    }
}

.btn-secondary:hover {
    background-color: #13690b;
    color: white;
    transform: translateY(-2px);
}

.btn-arrow {
    background-color: #4f4f4f;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.75rem;
    border-radius: 0 10px 10px 0;
    box-shadow: var(--shadow-lg);
    color: var(--secondary-color);
    font-size: 20px;
}

@media (min-width: 640px) {
    .btn-arrow {
        padding: 0 1rem;
    }
}

.hero-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 20;
  animation: fadeInUp 0.6s ease-out 1.2s both;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

.indicator.active {
  background: #e2b051;
  transform: scale(1.25);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 20;
  animation: fadeInUp 0.6s ease-out 1.4s both;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  animation: float 2s ease-in-out infinite;
}

.scroll-dot {
  width: 4px;
  height: 12px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  margin-top: 8px;
  animation: scroll 2s ease-in-out infinite;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #111;
}

.section-divider {
  width: 96px;
  height: 4px;
  background: #ccc;
  margin: 0 auto 1.5rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #666;
  max-width: 48rem;
  margin: 0 auto;
}





/* Typography */
.font-poppins {
  font-family: 'Poppins', sans-serif;
}

.font-inter {
  font-family: 'Inter', sans-serif;
}

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

.text-blue {
  color: #eab308;
}

.text-green {
  color: #eab308;
}

.text-yellow {
  color: var(--accent-yellow);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 0.5rem;
}

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

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

.btn-yellow:hover {
  background-color: #f59e0b;
  transform: translateY(-2px);
}

.btn-green {
  background-color: #eab308;
  color: white;
}

.btn-green:hover {
  background-color: #16a34a;
  transform: translateY(-2px);
}

.btn-outline-green {
  border: 2px solid var(--accent-green);
  color: var(--accent-green);
  background: transparent;
}

.btn-outline-green:hover {
  background-color: var(--accent-green);
  color: white;
  transform: translateY(-2px);
}

.btn-black {
  background-color: #eab308;
  color: white;
}

.btn-black:hover {
  background-color: #333;
  transform: translateY(-2px);
}

.btn-outline-white {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.btn-outline-white:hover {
  background-color: white;
  color: var(--foreground);
  transform: translateY(-2px);
}

.btn-app-store {
  background-color: #000;
  color: white;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0.75rem;
}

.btn-app-store:hover {
  background-color: #333;
  transform: translateY(-2px);
}

.app-store-text {
  text-align: left;
}

.app-store-small {
  font-size: 0.75rem;
  opacity: 0.8;
}

.app-store-large {
  font-size: 0.875rem;
  font-weight: 600;
}

/* Header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

#header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  color: var(--foreground);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #eab308;
}

.nav-underline {
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-blue);
  transition: width 0.3s ease;
}

.nav-link:hover .nav-underline {
  width: 100%;
}

.cta-buttons {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--foreground);
  cursor: pointer;
  padding: 0.5rem;
}

/* Hero Section */
.hero-section {
  padding: 8rem 0 4rem;
  background-color: var(--background);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

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

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  position: relative;
  z-index: 10;
}

.phone-img {
  width: 20rem;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: rotate(3deg);
  transition: transform 0.5s ease;
}

.phone-img:hover {
  transform: rotate(6deg);
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  filter: blur(2rem);
  animation: float 3s ease-in-out infinite;
}

.floating-1 {
  top: 2.5rem;
  left: -2.5rem;
  width: 5rem;
  height: 5rem;
  background-color: rgba(251, 191, 36, 0.2);
}

.floating-2 {
  bottom: 2.5rem;
  right: -2.5rem;
  width: 8rem;
  height: 8rem;
  background-color: rgba(37, 99, 235, 0.2);
  animation-delay: 0.3s;
}

.floating-3 {
  top: 50%;
  left: 2.5rem;
  width: 4rem;
  height: 4rem;
  background-color: rgba(34, 197, 94, 0.2);
  animation-delay: 0.15s;
}

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

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 32rem;
  margin: 0 auto;
}

/* Features Section */
.features-section {
  padding: 10rem 0;
  background-color: var(--background);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.feature-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.feature-image {
  position: relative;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 18rem;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feature-card:hover .feature-image img {
  transform: scale(1.1);
}

.feature-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color:#eab308;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.feature-content {
  padding: 1.5rem;
}

.feature-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-description {
  font-family: 'Inter', sans-serif;
  color: var(--muted-foreground);
}

/* Highlight Section */
.highlight-section {
  padding: 4rem 0;
  background-color: var(--foreground);
  color: var(--background);
}

.highlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

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

.highlight-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.highlight-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.highlight-features {
  margin-bottom: 2rem;
}

.highlight-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  justify-content: center;
}

.highlight-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--accent-green);
  border-radius: 50%;
}

.highlight-feature span {
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.9);
}

.highlight-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.highlight-image {
  position: relative;
  display: flex;
  justify-content: center;
  width: 300px;
  
}

.phone-mockup-dark {
  position: relative;
  z-index: 10;
  width: 300px;
}

.phone-img-dark {
  width: 450px;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: rotate(-6deg);
  transition: transform 0.5s ease;
}

.phone-img-dark:hover {
  transform: rotate(-3deg);
}

.glow-element {
  position: absolute;
  border-radius: 50%;
  filter: blur(2rem);
  animation: float 3s ease-in-out infinite;
}

.glow-1 {
  top: 25%;
  left: -2rem;
  width: 5rem;
  height: 5rem;
  background-color: rgba(251, 191, 36, 0.3);
}

.glow-2 {
  bottom: 25%;
  right: -2rem;
  width: 6rem;
  height: 6rem;
  background-color: rgba(37, 99, 235, 0.3);
  animation-delay: 0.3s;
}

/* Educator Section */
.educator-section {
  padding: 4rem 0;
  background-color: rgba(236, 236, 240, 0.3);
}

.educator-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

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

.educator-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.educator-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.educator-features {
  margin-bottom: 2rem;
}

.educator-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  text-align: left;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.educator-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.educator-icon-green {
  background-color: rgba(34, 197, 94, 0.2);
  color: var(--accent-green);
}

.educator-feature-content {
  flex: 1;
}

.educator-feature-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.educator-feature-description {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.educator-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.tablet-img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
}

.tablet-img:hover {
  transform: scale(1.05);
}

.decorative-element {
  position: absolute;
  border-radius: 50%;
  filter: blur(2rem);
  animation: float 4s ease-in-out infinite;
}

.decorative-1 {
  top: -1rem;
  right: -1rem;
  width: 4rem;
  height: 4rem;
  background-color: rgba(34, 197, 94, 0.2);
}

.decorative-2 {
  bottom: -1rem;
  left: -1rem;
  width: 5rem;
  height: 5rem;
  background-color: rgba(37, 99, 235, 0.2);
  animation-delay: 0.5s;
}

/* Special Offer Section */
.special-offer-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--foreground), #374151);
  color: var(--background);
  position: relative;
  overflow: hidden;
}

.bg-decorative {
  position: absolute;
  border-radius: 50%;
  filter: blur(3rem);
}

.bg-decorative-1 {
  top: 0;
  left: 25%;
  width: 8rem;
  height: 8rem;
  background-color: rgba(251, 191, 36, 0.2);
}

.bg-decorative-2 {
  bottom: 0;
  right: 25%;
  width: 10rem;
  height: 10rem;
  background-color: rgba(37, 99, 235, 0.2);
}

.special-offer-content {
  text-align: center;
  position: relative;
  z-index: 10;
  max-width: 48rem;
  margin: 0 auto;
}

.offer-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.offer-badge span {
  font-family: 'Inter', sans-serif;
  color: var(--accent-yellow);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

.offer-badge i {
  color: var(--accent-yellow);
}

.offer-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.offer-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.offer-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

.offer-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.offer-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.offer-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--accent-green);
  border-radius: 50%;
}

.offer-feature span {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Benefits Section */
.benefits-section {
  padding: 4rem 0;
  background-color: var(--background);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.benefit-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
}

.benefit-icon-blue {
  background-color: rgba(37, 99, 235, 0.2);
  color: var(--accent-blue);
}

.benefit-icon-yellow {
  background-color: rgba(251, 191, 36, 0.2);
  color: var(--accent-yellow);
}

.benefit-icon-green {
  background-color: rgba(34, 197, 94, 0.2);
  color: var(--accent-green);
}

.benefit-blue {
  border-color: rgba(37, 99, 235, 0.2);
}

.benefit-yellow {
  border-color: rgba(251, 191, 36, 0.2);
}

.benefit-green {
  border-color: rgba(34, 197, 94, 0.2);
}

.benefit-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.benefit-description {
  font-family: 'Inter', sans-serif;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(236, 236, 240, 0.5), var(--background));
  position: relative;
  overflow: hidden;
}

.final-bg-decorative {
  position: absolute;
  border-radius: 50%;
  filter: blur(2rem);
  animation: float 4s ease-in-out infinite;
}

.final-bg-1 {
  top: 25%;
  left: 2.5rem;
  width: 5rem;
  height: 5rem;
  background-color: rgba(251, 191, 36, 0.2);
}

.final-bg-2 {
  bottom: 25%;
  right: 2.5rem;
  width: 6rem;
  height: 6rem;
  background-color: rgba(37, 99, 235, 0.2);
  animation-delay: 0.3s;
}

.final-bg-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8rem;
  height: 8rem;
  background-color: rgba(34, 197, 94, 0.2);
  animation-delay: 0.15s;
}

.final-cta-content {
  text-align: center;
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
}

.final-cta-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.final-cta-badge span {
  font-family: 'Inter', sans-serif;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

.final-cta-badge i {
  color: var(--accent-yellow);
}

.final-cta-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.final-cta-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-buttons {
  display: flex;
  flex-direction: column-reverse;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: nowrap;
  justify-content: center;
}

.final-cta-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 48rem;
  margin: 0 auto;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Footer */

/* Footer */
.footer {
  position: relative;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://cdn.pixabay.com/photo/2020/05/04/13/30/outdoors-5129182_960_720.jpg");
  background-size: cover;
  background-position: center;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.75);
}

.footer-content {
  position: relative;
  z-index: 10;
  padding: 4rem 0;
}

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

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

.footer-company {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .footer-company {
    grid-column: span 1;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 48px;
  width: auto;
  border-radius: 8px;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

.social-link {
  width: 36px;
  height: 36px;
  background: #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  text-decoration: none;
  color: #555;
}

.social-link:hover {
  background: #e2b051;
  transform: scale(1.1);
}

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

.footer-section-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1.5rem;
}

.footer-links {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links p {
  margin-bottom: 1rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.footer-links p:hover {
  color: white;
}

.footer-contact {
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-link:hover {
  color: white;
}

/* Responsive Design */
@media (max-width: 767px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.125rem;
  }

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

  .testimonial-quote {
    font-size: 1.25rem;
  }
}

/* Scroll animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.fade-in-up.animate {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease-out;
}

.fade-in-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease-out;
}

.fade-in-right.animate {
  opacity: 1;
  transform: translateX(0);
}




/* Responsive Design */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .cta-buttons {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

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

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

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

  .hero-buttons {
    flex-direction: row;
    justify-content: flex-start;
  }

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

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

  .highlight-content {
    text-align: left;
  }

  .highlight-feature {
    justify-content: flex-start;
  }

  .highlight-buttons {
    flex-direction: row;
    justify-content: flex-start;
  }

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

  .educator-content {
    text-align: left;
  }

  .educator-feature {
    margin-left: 0;
    margin-right: 0;
  }

  .offer-buttons {
    flex-direction: row;
    gap: 1.5rem;
  }

  .offer-features {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .final-cta-buttons {
    flex-direction: row;
  }

  .final-cta-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  
}

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

  .section-title {
    font-size: 2.5rem;
  }

  .highlight-title {
    font-size: 2.5rem;
  }

  .educator-title {
    font-size: 2.5rem;
  }

  .offer-title {
    font-size: 3rem;
  }

  .final-cta-title {
    font-size: 3rem;
  }
}

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

  .offer-title {
    font-size: 3.5rem;
  }

  .final-cta-title {
    font-size: 3.5rem;
  }
}



.btn-secondary {
  border: 2px solid white;
  color: white;
  background: transparent;
  backdrop-filter: blur(4px);
}