/* CSS Variables */
:root {
  --font-size: 16px;
  --background: #eeeef0;
  --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: 68px;
  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: #0E7F66;
  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: #0E7F66;
}

/* 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: #0E7F66;
  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: #0E7F66;
  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: 2.6rem;
        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: 1150px;
    }
}

.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: #0E7F66;
    color: white;
}

.btn-primary:hover {
    background-color: #1FA58A;
    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);
}



@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: #0E7F66;
  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: #0E7F66;
}

.text-green {
  color: #0E7F66;
}

.text-yellow {
  color:  #0E7F66;
}


/* 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: #0E7F66;
  color: #000;
}

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

.btn-green {
  background-color: #0E7F66;
  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: #0E7F66;
  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: #0E7F66;
}

.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: 2.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: 45rem;
  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:#0E7F66;
  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 {
  
  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: #0E7F66;
  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: #0E7F66;
  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);
}
.section-label{
    font-size: 0.95rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #6e928a;
    margin-bottom: 2rem;
    

}

.section-header {
    text-align: center;
    margin-bottom: 8.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    animation: sectionHeaderFadeIn 0.6s ease-out forwards;
}

@media (min-width: 1024px) {
    .section-header h2, .section-title {
        font-size: 48px;
        letter-spacing: -1px;
        margin-bottom: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .section-header p, .section-description {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      font-size: 18px;
        letter-spacing: 1.2px;
        max-width: 70rem;
        margin-bottom: 1rem;
    }
    
}




/* ========================================
   THESSA PRODUCT CARD — FULLY RESPONSIVE
   ======================================== */

/* ── DESKTOP (1024px+) — original layout ── */
.product-card {
  background: #080c10;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 0px;
  overflow: hidden;
    display: grid;
  grid-template-columns: 1fr 1fr;
}

.product-info {
  padding: 10.5rem;
}

.product-tag {
  display: inline-block;
  background: rgba(0, 212, 170, 0.08);
  border: 1px solid rgba(0, 212, 170, 0.2);
  border-radius: 6px;
  padding: 0.3rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #00d4aa;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.product-info h2 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 800;
  font-size: 3.6rem;
  letter-spacing: 0.025em;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.product-info h3 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: #7a8a9a;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.product-info p {
  color: #7a8a9a;
  font-size: 1.3rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* OCTA */
.octa-highlight {
  background: linear-gradient(135deg,
    rgba(0, 212, 170, 0.08),
    rgba(59, 130, 246, 0.06)
  );
  border: 1px solid rgba(0, 212, 170, 0.15);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  gap: 1.9rem;
  align-items: center;
  margin: 2.5rem 0;
}

.octa-image-wrap {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
}

.octa-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
  border-radius: 50%;
}

.octa-text h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #7f91a3;
}

.octa-text p {
  font-size: 1.1rem;
  color: #7a8a9a;
  line-height: 1.6;
  margin-bottom: 0;
}

/* FEATURE LIST */
.feature-list {
  list-style: none;
  margin-bottom: 2rem;
}

.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--muted);
}

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

.feature-list li::before {
  content: '→';
  color: #7a8a9a;
  flex-shrink: 0;
  font-size: 1.5rem;
}

.feature-list strong {
  color: #7a8a9a;
  font-size: 1.3rem;
}

/* APP BUTTONS */
.app-btns {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s;
}

.app-btn:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
}

.app-btn-icon { font-size: 1.3rem; }




/* ── RIGHT SIDE — Product Visual ── */
.product-visual {
  background: #121820;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;      /* items vertically stack */
  align-items: center;         /* horizontally center */
  justify-content: center;     /* vertically center */
  gap: 2rem;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

/* Teal glow background effect */
.glow-ring {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 212, 170, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;        /* click events block කරන්නේ නෑ */
}

/* ── Phone Mockup ── */
.phone-mockup {
  width: 220px;
  height: 440px;
  background: #0a0f14;
  border-radius: 32px;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.04) inset;
  overflow: hidden;
  position: relative;
  z-index: 2;
  cursor: zoom-in;
  transform: rotate(3deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.phone-mockup:hover {
  transform: rotate(0deg) scale(1.04);
  box-shadow:
    0 40px 80px rgba(0,212,170,0.15),
    0 0 0 1px rgba(0,212,170,0.1) inset;
}

/* Phone top notch */
.phone-notch {
  width: 80px;
  height: 22px;
  background: #0a0f14;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

/* Screen content area */
.phone-screen {
  padding: 0 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: calc(100% - 22px);  /* notch height අඩු කරලා */
}

/* Green gradient header inside phone */
.phone-header {
  background: linear-gradient(135deg, #00d4aa, #3b82f6);
  height: 80px;
  border-radius: 12px;
  margin-bottom: 4px;
  display: flex;
  align-items: flex-end;
  padding: 10px 12px;
}

.phone-header span {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #080c10;
  letter-spacing: 0.05em;
}

/* Skeleton loading lines */
.skeleton {
  height: 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
}

.skeleton.accent { background: rgba(0,212,170,0.25); width: 55%; }
.skeleton.short  { width: 38%; }
.skeleton.med    { width: 75%; }

/* Progress bar */
.progress-bar-wrap {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  overflow: hidden;
  margin: 4px 0;
}

.progress-bar-fill {
  height: 100%;
  width: 72%;
  background: linear-gradient(90deg, #00d4aa, #3b82f6);
  border-radius: 6px;
  animation: progressPulse 2s ease-in-out infinite;
}

@keyframes progressPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.6; }
}

/* Floating Octa bubble */
.octa-bubble {
  width: 48px;
  height: 48px;
  background: radial-gradient(circle, #00d4aa, #3b82f6);
  border-radius: 50%;
  position: absolute;
  bottom: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 24px rgba(0,212,170,0.35);
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}

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

/* "🔍 click to expand" hint text */
.zoom-hint {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
  pointer-events: none;
  white-space: nowrap;
}

/* Learn More Button */
.learn-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,212,170,0.08);
  border: 1px solid rgba(0,212,170,0.3);
  border-radius: 10px;
  padding: 0.7rem 1.4rem;
  color: #00d4aa;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: all 0.25s ease;
  position: relative;
  z-index: 2;
  cursor: pointer;
  width: 50%;
}

.learn-more-btn:hover {
  background: rgba(0,212,170,0.15);
  border-color: rgba(0,212,170,0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,212,170,0.15);
}

.btn-arrow {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.learn-more-btn:hover .btn-arrow {
  transform: translate(2px, -2px);
}

/* ── Responsive ── */
@media (min-width: 1024px) and (max-width: 1439px) {
  .phone-mockup { width: 180px; height: 360px; }
}

@media (min-width: 600px) and (max-width: 1023px) {
  .product-visual {
    border-left: none;
    border-top: 1px solid var(--border);
    min-height: 320px;
    gap: 1.5rem;
  }
  .phone-mockup { width: 160px; height: 320px; }
  .learn-more-btn { font-size: 0.85rem; }
}

@media (max-width: 599px) {
  .product-visual {
    border-left: none;
    border-top: 1px solid var(--border);
    min-height: 280px;
    gap: 1.2rem;
  }
  .phone-mockup { width: 140px; height: 280px; transform: none; }
  .learn-more-btn { font-size: 0.82rem; padding: 0.6rem 1rem; }
}



@media (min-width: 640px) {
    .learn-more-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.9375rem;
        margin-top: 1.5rem;
    }
}




/* Every Product Stands Alone. All of Them Work Better Together. */
  
@media (min-width: 1024px) {
    .image-cards-container {
        flex-direction: row;
        gap: clamp(1.5rem, 4vw, 4rem);
        justify-content: center;
        overflow-x: visible;
        padding: 0;
    }

    .phone-img {
  width: 30rem;
  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;
}

.image-cards-container {
    display: flex;
    flex-direction:row-reverse;
    gap: 3rem;
    align-items: center;
    overflow-x: auto;
    padding: 1rem 1rem 1.5rem;
    -webkit-overflow-scrolling: touch;
    flex-wrap: wrap;
}

.product-info {
    padding: 6rem;
}
}

/* ── DESKTOP (1440px+) ── */
@media (min-width: 1440px) {
     .image-cards-container {
        flex-direction:column;
        gap: clamp(1.5rem, 4vw, 4rem);
        justify-content: center;
        overflow-x: visible;
        padding: 0;
    }

    .phone-img {
  width: 30rem;
  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;
}

.image-cards-container {
    display: flex;
    flex-direction:row;
    gap: 4rem;
    align-items: center;
    overflow-x: auto;
    padding: 1rem 1rem 1.5rem;
    -webkit-overflow-scrolling: touch;
    flex-wrap: wrap;
}
}




/* ========================================
   ATHENA PRODUCT CARD
   ======================================== */

/* Reverse layout — visual left, info right */
.product-card.reverse {
  direction: rtl;
}
.product-card.reverse > * {
  direction: ltr;
}

/* Visual side border fix for reverse */
.product-card.reverse .product-visual {
  border-left: none;
  border-right: 1px solid rgba(255,255,255,0.07);
}

/* ----------------------------------------
   PRODUCT TAG — "Web Platform · Teachers..."
   ---------------------------------------- */
.product-tag {
  display: inline-block;
  background: rgba(0, 212, 170, 0.08);
  border: 1px solid rgba(0, 212, 170, 0.2);
  border-radius: 6px;
  padding: 0.3rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #00d4aa;           /* #00d4aa */
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* ----------------------------------------
   HEADINGS
   ---------------------------------------- */

/* "Athena" */
.product-info h2 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
  color: #7a8a9a;             /* #f0f4f8 */
}

/* "Less Admin. Better Insight..." */
.product-info h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #7a8a9a;            /* #7a8a9a */
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Description paragraph */
.product-info p {
  color: #7a8a9a;
  font-size: 1.2rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* ----------------------------------------
   FEATURE LIST
   ---------------------------------------- */
.feature-list {
  list-style: none;
  margin-bottom: 2rem;
}

.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.88rem;
  color: #7a8a9a;
}

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

/* → arrow */
.feature-list li::before {
  content: '→';
  color: #00d4aa;
  flex-shrink: 0;
  font-size: 1.5rem;
  margin-top: 1.5rem;
}

.feature-list strong {
  color: #f0f4f8;             /* white-ish for bold parts */
}

/* ----------------------------------------
   CTA BUTTON — "Request an Athena Demo"
   ---------------------------------------- */
.btn-product {
  display: inline-block;
  background: transparent;
  border: 1.5px solid #00d4aa;
  color: #00d4aa;
  padding: 0.7rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.5rem;
  transition: background 0.2s, color 0.2s;
}

.btn-product:hover {
  background: #00d4aa;
  color: #080c10;                 /* dark bg on hover */
}

/* ----------------------------------------
   RIGHT SIDE — Dashboard Visual
   ---------------------------------------- */
.product-visual {
  background: #121820;         /* #121820 */
  border-left: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}

/* Teal glow background */
.glow-ring {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 212, 170, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Dashboard mock card */
.mock-dashboard {
  background: #111820;        /* #111820 */
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 1.5rem;
  width: 280px;
  position: relative;
  z-index: 2;
}

/* "Class Performance — Biology" */
.mock-db-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #7a8a9a;
}

/* Each subject row */
.mock-bar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
  font-size: 1.5rem;
  color: #7a8a9a;
}

/* Subject name column — fixed width */
.mock-bar-row span:first-child {
  width: 80px;
  flex-shrink: 0;
}

/* Progress bar track */
.mock-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
}

/* Coloured fill — width set inline per subject */
.mock-bar-fill {
  height: 100%;
  border-radius: 10px;
  /* background set inline: var(--accent) green / var(--accent2) blue / #ef4444 red */
}

/* Warning note at bottom */
.mock-dashboard > div:last-child {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 1.5rem;
  color: #7a8a9a;
}

/* ----------------------------------------
   RESPONSIVE
   ---------------------------------------- */
@media (max-width: 900px) {
  /* Reverse layout — back to normal stacking */
  .product-card.reverse {
    direction: ltr;
  }

  /* Hide visual on mobile */
  .product-visual {
    display: none;
  }

  .product-info {
    padding: 2rem 1.5rem;
  }

  .product-info h2 { font-size: 1.7rem; }
  .product-info h3 { font-size: 0.95rem; }
  .product-info p  { font-size: 0.9rem; }

  .btn-product {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 901px) and (max-width: 1280px) {
  .product-info { padding: 2.5rem; }
  .product-info h2 { font-size: 1.7rem; }
  .mock-dashboard { width: 240px; }
}



/* ========================================
   ATHENA — MOBILE & TABLET RESPONSIVE
   ======================================== */

/* ── TABLET (600px – 1023px) ── */
@media (min-width: 600px) and (max-width: 1023px) {

  /* Stack vertically — reverse cancel */
  .product-card.reverse {
    direction: ltr;
  }

  .product-card {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  /* Info side */
  .product-info {
    padding: 2.5rem 2rem;
  }

  .product-tag {
    font-size: 0.68rem;
    padding: 0.25rem 0.65rem;
  }

  .product-info h2 { font-size: 1.8rem; }
  .product-info h3 { font-size: 0.98rem; }
  .product-info p  { font-size: 0.92rem; }

  .feature-list li     { font-size: 0.85rem; }
  .feature-list strong { font-size: 0.85rem; }

  .btn-product {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1.2rem;
  }

  /* Visual side — show but smaller */
  .product-visual {
    display: flex;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.07);
    border-right: none;           /* reverse border fix */
    min-height: 280px;
    padding: 2rem;
  }

  /* Dashboard mock — smaller */
  .mock-dashboard {
    width: 100%;
    max-width: 360px;
    padding: 1.25rem;
  }

  .mock-db-title { font-size: 0.8rem; }

  .mock-bar-row {
    font-size: 0.7rem;
    gap: 0.5rem;
  }

  .mock-bar-row span:first-child {
    width: 70px;
  }

  .mock-bar { height: 5px; }
}

/* ── MOBILE (max 599px) ── */
@media (max-width: 599px) {

  /* Stack vertically — reverse cancel */
  .product-card.reverse {
    direction: ltr;
  }

  .product-card {
    grid-template-columns: 1fr;
    border-radius: 12px;
    margin-bottom: 2rem;
  }

  /* Info side */
  .product-info {
    padding: 1.75rem 1.25rem;
  }

  .product-tag {
    font-size: 0.65rem;
    padding: 0.2rem 0.55rem;
    letter-spacing: 0.05em;
  }

  .product-info h2 { font-size: 1.6rem; }
  .product-info h3 { font-size: 0.9rem; }
  .product-info p  { font-size: 0.88rem; line-height: 1.7; }

  .feature-list li {
    font-size: 0.82rem;
    gap: 0.5rem;
    padding: 0.5rem 0;
  }

  .feature-list strong { font-size: 0.82rem; }

  .btn-product {
    width: 100%;
    text-align: center;
    font-size: 0.85rem;
    padding: 0.7rem 1rem;
  }

  /* Visual side — show, compact */
  .product-visual {
    display: flex;
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(255,255,255,0.07);
    min-height: 220px;
    padding: 1.5rem 1rem;
  }

  /* Dashboard mock — full width, compact */
  .mock-dashboard {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
  }

  .mock-db-title {
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .mock-bar-row {
    font-size: 0.65rem;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
  }

  .mock-bar-row span:first-child {
    width: 62px;
    flex-shrink: 0;
  }

  .mock-bar { height: 5px; }

  /* Warning note */
  .mock-dashboard > div:last-child {
    font-size: 0.65rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
  }
}




/* ========================================
   THESSA — MOBILE & TABLET RESPONSIVE
   ======================================== */

/* ── TABLET (600px – 1023px) ── */
@media (min-width: 600px) and (max-width: 1023px) {

  .product-card {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  /* Info side */
  .product-info {
    padding: 2.5rem 2rem;
  }

  .product-tag {
    font-size: 0.68rem;
    padding: 0.25rem 0.65rem;
  }

  .product-info h2 { font-size: 1.8rem; }
  .product-info h3 { font-size: 0.98rem; }
  .product-info p  { font-size: 0.92rem; }

  .feature-list li     { font-size: 0.85rem; }
  .feature-list strong { font-size: 0.85rem; }

  /* Octa box — row layout */
  .octa-highlight {
    flex-direction: row;
    gap: 1.2rem;
    padding: 1.25rem;
    margin: 1.5rem 0;
  }

  .octa-image-wrap {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
  }

  .octa-emoji { font-size: 2rem; }

  .octa-text h4 { font-size: 1rem; }
  .octa-text p  { font-size: 0.85rem; }

  /* App store buttons — wrap */
  .app-btns {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .app-btn {
    font-size: 0.8rem;
    padding: 0.55rem 1rem;
  }

  /* Visual side — show but smaller */
  .product-visual {
    display: flex;
    flex-direction: column;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.07);
    min-height: 300px;
    gap: 1.5rem;
    padding: 2rem;
  }

  /* Phone image */
  .phone-img {
    width: 180px;
    transform: rotate(2deg);
  }

  /* Phone mockup (CSS version) */
  .mock-phone {
    width: 160px;
    height: 320px;
    border-radius: 24px;
  }

  .mock-phone-top { height: 65px; }
  .mock-phone-top span { font-size: 0.95rem; }

  .mock-circle {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    bottom: 14px;
    right: 14px;
  }

  /* Learn More button */
  .learn-more-btn {
    font-size: 0.85rem;
    padding: 0.65rem 1.2rem;
  }

  /* zoom hint */
  .zoom-hint { font-size: 0.68rem; }
}

/* ── MOBILE (max 599px) ── */
@media (max-width: 599px) {

  .product-card {
    grid-template-columns: 1fr;
    border-radius: 12px;
    margin-bottom: 2rem;
  }

  /* Info side */
  .product-info {
    padding: 1.75rem 1.25rem;
  }

  .product-tag {
    font-size: 0.65rem;
    padding: 0.2rem 0.55rem;
    letter-spacing: 0.05em;
  }

  .product-info h2 { font-size: 1.6rem; }
  .product-info h3 { font-size: 0.9rem; }
  .product-info p  { font-size: 0.88rem; line-height: 1.7; }

  .feature-list li {
    font-size: 0.82rem;
    gap: 0.5rem;
    padding: 0.5rem 0;
  }

  .feature-list strong { font-size: 0.82rem; }

  /* Octa box — column layout on mobile */
  .octa-highlight {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 1.25rem 1rem;
    margin: 1.25rem 0;
  }

  .octa-image-wrap {
    width: 75px;
    height: 75px;
  }

  .octa-emoji { font-size: 2.5rem; }

  .octa-text h4 { font-size: 0.95rem; }
  .octa-text p  { font-size: 0.82rem; }

  /* App store buttons — stack */
  .app-btns {
    flex-direction: column;
    gap: 0.6rem;
  }

  .app-btn {
    justify-content: center;
    font-size: 0.82rem;
    padding: 0.6rem 1rem;
  }

  /* Visual side — show, compact */
  .product-visual {
    display: flex;
    flex-direction: column;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.07);
    min-height: 260px;
    gap: 1rem;
    padding: 1.5rem 1rem;
  }

  /* Phone image */
  .phone-img {
    width: 140px;
    transform: none;
  }

  /* Phone mockup (CSS version) */
  .mock-phone {
    width: 130px;
    height: 260px;
    border-radius: 20px;
  }

  .mock-phone-top { height: 55px; }
  .mock-phone-top span { font-size: 0.85rem; }

  .mock-circle {
    width: 38px;
    height: 38px;
    font-size: 1rem;
    bottom: 10px;
    right: 10px;
  }

  /* Learn More button — full width */
  .learn-more-btn {
    font-size: 0.82rem;
    padding: 0.6rem 1rem;
    width: 100%;
    justify-content: center;
  }

  /* zoom hint */
  .zoom-hint { font-size: 0.65rem; }

  /* Lightbox — full screen on mobile */
  .lightbox-img {
    max-width: 95vw;
    max-height: 85vh;
  }

  .lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }
}



@media (min-width: 1440px) {
    .phone-img-2 {
        width: 50rem;
        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;
    }
}

@media (min-width: 1024px) {
    .phone-img-2 {
        width: 30rem;
        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;
    }
}





  /* Enhanced Approach Section */
.approach-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.approach-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(254, 202, 40, 0.5), transparent);
}

/* Approach Grid */
.approach-grid {
    display: grid;
    gap: clamp(30px, 5vw, 40px);
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    max-width: 1200px;
    margin: 0 auto;
}

/* Enhanced Approach Card */
.approach-card {
    background: #ffffff;
    border: 2px solid transparent;
    border-radius: 20px;
    padding: clamp(30px, 5vw, 45px);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 1px 4px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    animation: cardSlideUp 0.6s ease-out forwards;
}

.approach-card:nth-child(1) { animation-delay: 0.1s; }
.approach-card:nth-child(2) { animation-delay: 0.3s; }
.approach-card:nth-child(3) { animation-delay: 0.5s; }

@keyframes cardSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card Background Pattern */
.approach-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(254, 202, 40, 0.05) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
}

.approach-card:hover::before {
    opacity: 1;
    top: -20%;
    right: -20%;
}

/* Card Border Gradient on Hover */
.approach-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #0E7F66, #54e6d0, #8ef0da);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.approach-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 8px 16px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(254, 202, 40, 0.1);
}

.approach-card:hover::after {
    opacity: 1;
}

/* Enhanced Icon Container */
.approach-icon {
    position: relative;
    margin-bottom: clamp(24px, 4vw, 32px);
    width: fit-content;
}
/*
.icon-bg-1 {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1A9B88 0%, #1A9B88 100%);
    border-radius: 16px;
    transform: rotate(15deg);
    position: absolute;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(4, 216, 68, 0.25);
}
*/
.approach-card:hover .icon-bg-1 {
    transform: rotate(25deg) scale(1.05);
    /* box-shadow: 0 12px 32px #1A9B88; */
}
/*
.icon-bg-2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0E7F66 0%, #0E7F66 100%);
    border-radius: 14px;
    position: relative;
    margin-left: 5px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    box-shadow: 
        0 4px 16px rgba(12, 153, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}*/

.approach-card:hover .icon-bg-2 {
    transform: scale(1.1) translateY(-3px);
    /* box-shadow: 
        0 8px 24px rgba(12, 153, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4); */
}

.icon-bg-2 img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
    transition: all 0.4s ease;
}

.approach-card:hover .icon-bg-2 img {
    transform: scale(1.1) rotate(5deg);
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Number Badge */
.approach-card {
    counter-increment: approach-counter;
}

.approach-grid {
    counter-reset: approach-counter;
}
/*
.approach-icon::before {
    content: counter(approach-counter, decimal-leading-zero);
    position: absolute;
    top: -12px;
    right: -12px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #0E7F66, #0A5F4D);
    color: #fffefe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    z-index: 2;

    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}*/

.approach-card:hover .approach-icon::before {
    transform: scale(1.15) rotate(360deg);
    /* box-shadow: 
        0 6px 16px rgba(254, 202, 40, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4); */
}

/* Card Title */
.approach-card h3 {
    font-size: clamp(22px, 3.5vw, 28px);
    font-weight: 700;
    color: #222c38;
    letter-spacing: 0.3px;
    line-height: 1.3;
    margin-bottom: clamp(14px, 2.5vw, 18px);
    transition: all 0.4s ease;
    position: relative;
    display: inline-block;
}

.approach-card h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #0E7F66, #1A9B88);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.approach-card:hover h3 {
    color: #0E7F66;
}

.approach-card:hover h3::after {
    width: 100%;
}

/* Card Description */
.approach-card p {
    font-size: clamp(15px, 2.2vw, 17px);
    color: #5a6c7d;
    letter-spacing: 0.2px;
    line-height: 1.75;
    margin: 0;
    transition: color 0.3s ease;
}

.approach-card:hover p {
    color: #3d4f5d;
}

/* Decorative Corner Elements */
.approach-card:nth-child(1)::before {
    background: radial-gradient(
        circle,
        rgba(254, 202, 40, 0.08) 0%,
        transparent 70%
    );
}

.approach-card:nth-child(2)::before {
    background: radial-gradient(
        circle,
        rgba(12, 80, 255, 0.08) 0%,
        transparent 70%
    );
}

.approach-card:nth-child(3)::before {
    background: radial-gradient(
        circle,
        rgba(12, 226, 255, 0.08) 0%,
        transparent 70%
    );
}

/* Arrow Indicator */
.approach-card h3::before {
    content: '→';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    opacity: 0;
    color: #0E7F66;
    font-size: 24px;
    font-weight: bold;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.approach-card:hover h3::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Shine Effect on Hover */
.approach-card .icon-bg-2::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.approach-card:hover .icon-bg-2::after {
    transform: translateX(100%);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .approach-grid {
        grid-template-columns: 1fr;
    }

    .approach-card {
        padding: clamp(25px, 5vw, 35px);
    }

    .icon-bg-1 {
        width: 60px;
        height: 60px;
    }

    .icon-bg-2 {
        width: 52px;
        height: 52px;
    }

    .icon-bg-2 img {
        width: 24px;
        height: 24px;
    }
}

/* Accessibility - Focus States */
.approach-card:focus-within {
    outline: 3px solid rgba(254, 202, 40, 0.5);
    outline-offset: 4px;
}

/* Add subtle animation loop */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.approach-card:hover .approach-icon {
    animation: float 2s ease-in-out infinite;
}



/* Approach Section */


.approach-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

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

.approach-card {
    background-color: #ffffff;
    border: 1px solid #e5e5db;
    border-radius: 20px;
    padding: 1rem;
    box-shadow: #2c2c2c;
    transition: #777777;
    opacity: 0;
    transform: translateY(30px);
    animation: cardFadeInUp 0.6s ease-out forwards;
}

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

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

.approach-card:nth-child(2) {
    animation-delay: 0.2s;
}

.approach-card:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes cardFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.approach-icon {
    position: relative;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .approach-icon {
        margin-bottom: 1.5rem;
    }
}

.icon-bg-1 {
    width: 30px;
    height: 30px;
    background: linear-gradient(to bottom, #1A9B88, #15bda7);
    border-radius: 5px;
    transform: rotate(15deg);
    position: absolute;
}
/*
@media (min-width: 640px) {
    .icon-bg-1 {
        width: 37px;
        height: 37px;
    }*/


.icon-bg-2 {
    width: 24px;
    height: 24px;
    background: linear-gradient(to bottom, #11a579, #0ae69c);
    border-radius: 5px;
    position: relative;
    margin-left: 3px;
    margin-top: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

@media (min-width: 640px) {
    .icon-bg-2 {
        width: 30px;
        height: 30px;
    }
}

.approach-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: #222c38;
    letter-spacing: 0.8px;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

@media (min-width: 640px) {
    .approach-card h3 {
        font-size: 24px;
        letter-spacing: 1.2px;
        margin-bottom: 1rem;
    }
}

@media (min-width: 1024px) {
    .approach-card h3 {
        font-size: 32px;
        letter-spacing: 1.6px;
        margin-bottom: 1.5rem;
    }
}

.approach-card:hover h3 {
    color: #0E7F66;
}


.approach-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.approach-card p {
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 0.4px;
    line-height: 1.57;
}

@media (min-width: 640px) {
    .approach-card p {
        font-size: 16px;
        letter-spacing: 0.6px;
        line-height: 1.75;
    }
}

@media (min-width: 1024px) {
    .approach-card p {
        font-size: 18px;
        letter-spacing: 0.9px;
        line-height: 2;
    }
}


  /* STATS STRIP */
  .stats {
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 2.5rem 4rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3.2rem;
    background: var(--bg2);
    
  }
  .stat { text-align: center; }
  .stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #00d4aa;
    display: block;
    line-height: 1;
    margin-bottom: 0.4rem;
    
  }
  .stat-label { font-size: 0.85rem; color: #7a8a9a;
  line-height: 0.03rem; }



  @media (min-width: 1024px) {
    .image-card-content h3 {
        font-size: 1.2rem;
    }
}

@media (min-width: 640px) {
    .image-card-content {
        bottom: 1.875rem;
        left: 1.3125rem;
        right: 1.3125rem;
        padding: 1.5rem;
    }
}

.image-card-content {
    position: absolute;
    bottom: 1.5rem;
    left: 1rem;
    right: 1rem;
    background: rgb(255, 255, 255);
    border-radius: 0.625rem;
    padding: 1.25rem;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
    text-align: center;
    transition: var(--transition);
    transition: normal;
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0s;

    
}

.image-card-content h3 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 650;
    color: rgb(121, 119, 119);
    margin-bottom: clamp(12px, 2vw, 16px);
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}