@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* CSS Variables */
:root {
  --background: 0 0% 100%;
  --foreground: 0 0% 3.9%;
  --radius: 0.5rem;
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-300: #fcd34d;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;
}

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

html {
  font-size: 16px;
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: white;
  color: hsl(var(--foreground));
}

/* Ensure all text elements inherit the font family */
*, *::before, *::after {
  font-family: inherit;
}


/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #1e293b;
}

::-webkit-scrollbar-thumb {
  background: #f59e0b;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #d97706;
}

/* Prevent iOS zoom on focus */
@media (max-width: 768px) {
  input, select, textarea {
    font-size: 16px !important;
  }
}

/* Main Container */
.snap-container {
  width: 100%;
  position: relative;
}

.snap-section {
  min-height: 100vh;
  position: relative;
  scroll-margin-top: 80px;
  background-color: rgb(2 6 23);
}

@media (max-width: 768px) {
  .snap-section {
    scroll-margin-top: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .snap-container {
    scroll-behavior: auto;
  }
  
  .snap-section {
    scroll-snap-stop: normal;
  }
  
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -20px, 0);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(245, 158, 11, 0.6);
  }
}

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

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 60s linear infinite;
  will-change: transform;
  width: max-content;
  min-width: 0;
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  gap: 4rem;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .marquee-content {
    gap: 2rem;
  }
  
  .marquee-track {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .marquee-track {
    animation-duration: 40s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.5s;
  background: transparent;
  transform: translateY(-100%);
  animation: navbarSlideDown 0.6s ease-out forwards;
}

@keyframes navbarSlideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.navbar.scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

.navbar-logo {
  flex-shrink: 0;
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  transition: transform 0.2s ease;
}

.navbar-logo:hover {
  transform: scale(1.02);
}

.navbar-logo-img {
  height: 48px;
}

@media (max-width: 768px) {
  .navbar-logo-img {
    height: 36px;
  }
}

.navbar-links-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .navbar-links-desktop {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .navbar-links-wrapper {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    padding: 0.375rem 0.5rem;
  }
  
  .navbar-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: all 0.2s;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    text-decoration: none;
  }
  
  .navbar-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
  }
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-menu-btn {
  display: block;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem;
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
  transition: all 0.2s;
}

.navbar-menu-btn:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

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

.menu-icon {
  width: 24px;
  height: 24px;
}

.navbar-demo-btn {
  display: none;
}

@media (min-width: 1024px) {
  .navbar-demo-btn {
    display: block;
    padding: 0.625rem 1.25rem;
    background: #f59e0b;
    color: white;
    font-weight: 600;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.2);
    font-size: 0.875rem;
  }
  
  .navbar-demo-btn:hover {
    background: #d97706;
    box-shadow: 0 20px 25px -5px rgba(245, 158, 11, 0.3);
  }
}

.navbar-language {
  position: relative;
}

.navbar-language-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  min-height: 44px;
  border-radius: 0.375rem;
  transition: all 0.2s;
  font-size: 0.875rem;
}

.navbar-language-btn:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.globe-icon {
  width: 16px;
  height: 16px;
}

.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
  display: none;
  min-width: 150px;
  z-index: 50;
}

.language-dropdown.show {
  display: block;
}

.language-option {
  width: 100%;
  padding: 0.5rem 0.75rem;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 0.375rem;
  transition: background 0.2s;
}

.language-option:hover {
  background: #f1f5f9;
}

/* Mobile Menu */
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  z-index: 60;
  display: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-menu-backdrop.show {
  display: block;
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  display: none;
}

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

.mobile-menu-content {
  position: relative;
  width: 100%;
  max-width: 500px;
  background: rgba(2, 6, 23, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 1.5rem;
  border: 2px solid rgba(245, 158, 11, 0.5);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  padding: 2rem;
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.5s;
}

.mobile-menu.show .mobile-menu-content {
  transform: scale(1);
  opacity: 1;
}

@media (max-width: 475px) {
  .mobile-menu {
    padding: 0;
    align-items: stretch;
    justify-content: stretch;
  }
  
  .mobile-menu-content {
    max-width: 100%;
    width: 100%;
    height: 100%;
    max-height: 100vh;
    border-radius: 0;
    border: none;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
  }
  
  .mobile-menu-items {
    flex: 1;
    overflow-y: auto;
    gap: 0.75rem;
  }
  
  .mobile-menu-title {
    margin-bottom: 1.5rem;
    flex-shrink: 0;
  }
  
  body.mobile-menu-open .navbar {
    display: none !important;
  }
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: rgba(15, 23, 42, 0.8);
  border: 2px solid rgba(51, 65, 85, 0.5);
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.mobile-menu-close:hover {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(245, 158, 11, 0.5);
}

.mobile-menu-close svg {
  width: 20px;
  height: 20px;
}

.mobile-menu-title {
  text-align: center;
  color: #94a3b8;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.mobile-menu-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(30, 41, 59, 0.5);
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
}

.mobile-menu-item:hover {
  background: rgba(30, 41, 59, 0.7);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateX(4px);
}

.mobile-menu-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.mobile-menu-item:hover .mobile-menu-icon {
  background: rgba(245, 158, 11, 0.2);
}

.mobile-menu-icon svg {
  width: 24px;
  height: 24px;
  color: #f59e0b;
}

.mobile-menu-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
  transition: color 0.3s;
}

.mobile-menu-item:hover h3 {
  color: #fbbf24;
}

.mobile-menu-item p {
  font-size: 0.875rem;
  color: #94a3b8;
}

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  overflow-y: auto;
  background: #020617;
  padding: 1rem;
  min-height: 100vh;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

.hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero-background {
    display: none;
  }
}

.hero-stripes {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, 1) 0px, rgba(15, 23, 42, 0.95) 1px, rgba(15, 23, 42, 1) 2px);
  background-size: 3px 100%;
  opacity: 0.5;
}

.hero-orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.hero-orb-1 {
  top: 25%;
  right: 25%;
  width: 600px;
  height: 600px;
  background: linear-gradient(to right, rgba(245, 158, 11, 0.2), rgba(249, 115, 22, 0.1));
  animation: float 8s ease-in-out infinite;
}

.hero-orb-2 {
  bottom: 25%;
  left: 25%;
  width: 500px;
  height: 500px;
  background: linear-gradient(to right, rgba(51, 65, 85, 0.1), rgba(71, 85, 105, 0.05));
  animation: float 10s ease-in-out infinite reverse;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.01) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1rem;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 6rem 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 8rem 2rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
  transition: background 0.3s;
  opacity: 0;
  transform: translateY(20px);
  animation: heroBadgeFadeIn 0.6s ease-out forwards;
}

@keyframes heroBadgeFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 768px) {
  .hero-badge {
    padding: 0.625rem 1.25rem;
    margin-bottom: 2rem;
  }
}

.hero-badge:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-badge-dot-wrapper {
  position: relative;
  display: flex;
  width: 8px;
  height: 8px;
  flex-shrink: 0;
}

.hero-badge-pulse {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: #fbbf24;
  opacity: 0.75;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.hero-badge-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: #f59e0b;
  z-index: 1;
}

.hero-badge-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .hero-badge-text {
    font-size: 0.875rem;
  }
}

.hero-title {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 2rem;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(30px);
  animation: heroTitleFadeIn 0.8s ease-out 0.1s forwards;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

@keyframes heroTitleFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

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

.hero-title-line1 {
  display: block;
  color: white;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-title-line2 {
  display: block;
  background: linear-gradient(to right, #fbbf24, #f59e0b, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 672px;
  margin: 0 auto 2rem;
  line-height: 1.75;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: heroCtaFadeIn 0.8s ease-out 0.2s forwards;
}

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

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-cta {
  display: flex;
  justify-content: center;
  padding: 0 0.5rem;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(30px);
  animation: heroCtaFadeIn 0.8s ease-out 0.3s forwards;
  width: 100%;
  box-sizing: border-box;
}

@keyframes heroCtaFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 768px) {
  .hero-cta {
    margin-bottom: 4rem;
  }
}

.hero-cta-btn {
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-weight: 600;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
  white-space: nowrap;
  box-sizing: border-box;
  max-width: 100%;
}

@media (min-width: 768px) {
  .hero-cta-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

.hero-cta-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(251, 146, 60, 0.5);
  transform: scale(1.05);
}

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

.hero-marquee {
  position: relative;
  margin-top: 3rem;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .hero-marquee {
    margin-top: 4rem;
  }
}

.hero-marquee-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  left: 0;
  right: 0;
}

.hero-marquee span {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(203, 213, 225, 0.4);
  letter-spacing: 0.05em;
  white-space: nowrap;
  flex-shrink: 0;
}

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

@media (min-width: 768px) {
  .hero-marquee span {
    font-size: 3.75rem;
  }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  min-height: 44px;
  justify-content: flex-end;
  padding-bottom: 0.5rem;
  opacity: 0;
  animation: heroScrollIndicatorFadeIn 1s ease-out 1s forwards;
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
}

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

@media (min-width: 768px) {
  .hero-scroll-indicator {
    bottom: 2rem;
    gap: 0.75rem;
  }
}

.hero-scroll-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

@media (min-width: 768px) {
  .hero-scroll-text {
    font-size: 0.875rem;
  }
}

.hero-scroll-indicator:hover .hero-scroll-text {
  color: rgba(255, 255, 255, 0.8);
}

.hero-scroll-mouse {
  width: 24px;
  height: 40px;
  color: #f59e0b;
  animation: scrollMouseBounce 1.5s infinite;
  transition: color 0.3s;
}

.hero-scroll-indicator:hover .hero-scroll-mouse {
  color: #fbbf24;
}

.hero-scroll-mouse svg {
  width: 100%;
  height: 100%;
}

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

/* What Is Section */
.what-is-section {
  display: flex;
  align-items: center;
  padding: 4rem 0;
  background: #f8fafc;
  overflow: hidden;
}

@media (min-width: 768px) {
  .what-is-section {
    padding: 6rem 0;
  }
}

@media (min-width: 1024px) {
  .what-is-section {
    padding: 8rem 0;
  }
}

.what-is-background {
  position: absolute;
  inset: 0;
}

.what-is-gradient {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: linear-gradient(to bottom, rgba(254, 243, 199, 0.5), transparent);
  border-radius: 9999px;
  filter: blur(80px);
}

.what-is-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

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

.what-is-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .what-is-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

.what-is-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.what-is-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

.what-is-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: #fef3c7;
  color: #b45309;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.what-is-left.in-view .what-is-badge {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .what-is-badge {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }
}

.what-is-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .what-is-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .what-is-title {
    font-size: 3rem;
  }
}

.what-is-description {
  font-size: 1rem;
  color: #475569;
  margin-bottom: 1rem;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .what-is-description {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }
}

.what-is-highlight {
  font-size: 1rem;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: white;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  line-height: 1.75;
}

@media (min-width: 768px) {
  .what-is-highlight {
    font-size: 1.125rem;
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .what-is-highlight {
    font-size: 1.25rem;
  }
}

.highlight-quote {
  color: #f59e0b;
}

.what-is-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .what-is-benefits {
    gap: 1rem;
  }
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.benefit-item.in-view {
  opacity: 1;
  transform: translateX(0);
}

.benefit-item:hover {
  transform: translateX(10px);
}

.benefit-icon-wrapper {
  flex-shrink: 0;
}

.benefit-icon {
  width: 20px;
  height: 20px;
  color: #f59e0b;
}

.benefit-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.benefit-title {
  font-size: 0.875rem;
  color: #334155;
  font-weight: 600;
  line-height: 1.4;
}

.benefit-description {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 400;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .benefit-title {
    font-size: 1rem;
  }
  
  .benefit-description {
    font-size: 0.9375rem;
  }
}

.what-is-right {
  position: relative;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.what-is-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

.what-is-image {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  object-fit: contain;
}

.what-is-card {
  position: relative;
  background: linear-gradient(to bottom right, #0f172a, #1e293b, #0f172a);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(51, 65, 85, 0.5);
}

.what-is-card-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  border-radius: 1.5rem;
}

.what-is-card-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.what-is-order-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.order-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.order-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  font-size: 1.5rem;
}

.order-number {
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
}

.order-time {
  color: #64748b;
  font-size: 0.75rem;
}

.order-status {
  padding: 0.375rem 0.75rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #34d399;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  backdrop-filter: blur(4px);
}

.order-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #334155, transparent);
}

.order-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-item {
  text-align: center;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(51, 65, 85, 0.3);
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat-value-success {
  color: #34d399;
}

.stat-value-blue {
  color: #60a5fa;
}

.stat-value-amber {
  color: #fbbf24;
}

.stat-label {
  color: #64748b;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.what-is-float-1 {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  background: white;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: float 3s ease-in-out infinite;
}

.what-is-float-1 .float-icon {
  width: 20px;
  height: 20px;
  color: #10b981;
}

.what-is-float-1 span {
  color: #0f172a;
  font-weight: 600;
  font-size: 0.875rem;
}

.what-is-float-2 {
  position: absolute;
  bottom: -1rem;
  left: -1.5rem;
  background: linear-gradient(to bottom right, #f59e0b, #f97316);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: float 4s ease-in-out infinite reverse;
}

.what-is-float-2 .float-icon {
  width: 20px;
  height: 20px;
  color: white;
}

.what-is-float-2 span {
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
}

.what-is-card-glow {
  position: absolute;
  inset: -4px;
  background: linear-gradient(to right, rgba(245, 158, 11, 0.2), rgba(249, 115, 22, 0.2));
  border-radius: 1.5rem;
  filter: blur(16px);
  z-index: -10;
  opacity: 0.5;
}

/* How It Works Section */
.how-it-works-section {
  display: flex;
  align-items: center;
  padding: 8rem 0;
  background: white;
  overflow: hidden;
}

.how-it-works-background {
  position: absolute;
  inset: 0;
}

.how-it-works-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: blur(4px);
}

.how-it-works-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
}

.how-it-works-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .how-it-works-content {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .how-it-works-content {
    padding: 0 2rem;
  }
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.how-it-works-header.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .how-it-works-header {
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .how-it-works-header {
    margin-bottom: 3rem;
  }
}

.how-it-works-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: #f1f5f9;
  color: #475569;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .how-it-works-badge {
    font-size: 0.875rem;
  }
}

@media (min-width: 640px) {
  .how-it-works-badge {
    font-size: 0.875rem;
  }
}

.how-it-works-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
  line-height: 1.1;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .how-it-works-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .how-it-works-title {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
}

.how-it-works-subtitle {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 672px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .how-it-works-subtitle {
    font-size: 1.125rem;
  }
}

@media (min-width: 768px) {
  .how-it-works-subtitle {
    font-size: 1.25rem;
  }
}

.how-it-works-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .how-it-works-desktop {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
  }
}

.how-it-works-laptop {
  flex: 1;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.how-it-works-laptop.in-view {
  opacity: 1;
  transform: translateX(0);
}

.laptop-frame {
  position: relative;
  background: #1e293b;
  border-radius: 1rem 1rem 0 0;
  padding: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 
              0 0 0 1px rgba(0, 0, 0, 0.1) inset;
}

.laptop-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #0f172a;
  border-radius: 0 0 0.375rem 0.375rem;
  z-index: 10;
}

.laptop-screen {
  position: relative;
  background: #000;
  border-radius: 0.5rem;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  width: 100%;
  border: 2px solid rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.laptop-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, transparent 2%);
  pointer-events: none;
  z-index: 1;
}

.laptop-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: opacity 180ms ease-out;
  position: relative;
  z-index: 0;
}

.laptop-base {
  position: relative;
  height: 16px;
  background: linear-gradient(to bottom, #475569, #334155, #1e293b);
  border-radius: 0 0 1.5rem 1.5rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3),
              0 0 0 1px rgba(0, 0, 0, 0.1) inset;
}

.laptop-base::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: rgba(15, 23, 42, 0.4);
  border-radius: 0 0 1.5rem 1.5rem;
}

.laptop-base::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0 0 1px 1px;
}

.laptop-bottom {
  position: relative;
  margin-top: -4px;
}

.laptop-bottom::after {
  content: '';
  display: block;
  height: 8px;
  background: linear-gradient(to bottom, #1e293b, #0f172a);
  border-radius: 0 0 1.5rem 1.5rem;
  margin: 0 2rem;
  box-shadow: 0 20px 30px -5px rgba(0, 0, 0, 0.4),
              0 0 0 1px rgba(0, 0, 0, 0.2) inset;
  clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
}

.how-it-works-steps {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-item {
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border: 2px solid #e2e8f0;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease, transform 0.6s ease, all 0.3s;
}

.step-item.in-view {
  opacity: 1;
  transform: translateX(0);
}

.step-item:hover {
  border-color: #fde68a;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.step-item.active {
  background: linear-gradient(to right, #fffbeb, #fff7ed);
  border: 2px solid #fbbf24;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.step-indicator {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #f59e0b, #f97316);
  border-radius: 0.75rem 0 0 0.75rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.step-item.active .step-indicator {
  opacity: 1;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-number {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.875rem;
  font-weight: 900;
  transition: all 0.2s;
}

.step-item:not(.active) .step-number {
  background: #f1f5f9;
  color: #94a3b8;
}

.step-item:hover:not(.active) .step-number {
  background: #fef3c7;
  color: #f59e0b;
}

.step-item.active .step-number {
  background: linear-gradient(to bottom right, #f59e0b, #f97316);
  color: white;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.25);
}

.step-content {
  flex: 1;
  min-width: 0;
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  transition: color 0.3s;
}

.step-item:not(.active) .step-content h3 {
  color: #334155;
}

.step-item:hover:not(.active) .step-content h3 {
  color: #0f172a;
}

.step-item.active .step-content h3 {
  color: #0f172a;
}

.step-content p {
  font-size: 0.875rem;
  line-height: 1.75;
  transition: color 0.3s;
}

.step-item:not(.active) .step-content p {
  color: #64748b;
}

.step-item:hover:not(.active) .step-content p {
  color: #475569;
}

.step-item.active .step-content p {
  color: #475569;
}

.how-it-works-mobile {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

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

@media (min-width: 1024px) {
  .how-it-works-mobile {
    display: none;
  }
}

.step-card {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #f1f5f9;
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease, all 0.5s;
}

.step-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .step-card {
    border-radius: 1.5rem;
    padding: 2rem;
  }
}

.step-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-color: #fde68a;
  transform: translateY(-10px) scale(1.05);
}

.step-card:active {
  transform: scale(0.95);
}

.step-card-hand {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 20px;
  height: 20px;
  color: rgba(245, 158, 11, 0.6);
  animation: bounce 1.5s infinite;
}

@media (min-width: 640px) {
  .step-card-hand {
    top: 1rem;
    right: 1rem;
    width: 24px;
    height: 24px;
  }
}

.step-card:hover .step-card-hand {
  color: #f59e0b;
}

.step-card-number {
  font-size: 3.75rem;
  font-weight: 900;
  color: #f59e0b;
  display: block;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .step-card-number {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
  }
}

.step-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
}

.step-card p {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.75;
}

@media (min-width: 640px) {
  .step-card p {
    font-size: 1rem;
  }
}

/* Features Section */
.features-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  background-color: rgb(2, 6, 23);
  overflow: hidden;
}

.features-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.features-background-gradient {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: linear-gradient(to bottom right, rgba(254, 243, 199, 0.5), rgba(255, 237, 213, 0.3), transparent);
  filter: blur(64px);
  -webkit-filter: blur(64px);
}

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

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

.features-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
}

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

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

.features-container {
  position: relative;
  background: #020617;
  border-radius: 1rem;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid rgba(30, 41, 59, 0.5);
  box-sizing: border-box;
  width: 100%;
}

@media (min-width: 768px) {
  .features-container {
    border-radius: 2.5rem;
    padding: 3rem;
  }
}

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

.features-container-stripes {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, 1) 0px, rgba(15, 23, 42, 0.95) 1px, rgba(15, 23, 42, 1) 2px);
  background-size: 3px 100%;
  opacity: 0.3;
  pointer-events: none;
}

.features-container-orb-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 20rem;
  height: 20rem;
  background: rgba(245, 158, 11, 0.15);
  border-radius: 50%;
  filter: blur(64px);
  -webkit-filter: blur(64px);
  pointer-events: none;
}

.features-container-orb-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 15rem;
  height: 15rem;
  background: rgba(51, 65, 85, 0.1);
  border-radius: 50%;
  filter: blur(64px);
  -webkit-filter: blur(64px);
  pointer-events: none;
}

.features-inner {
  position: relative;
  z-index: 10;
}

.features-header {
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .features-header {
    margin-bottom: 4rem;
  }
}

.features-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.features-header.in-view .features-badge {
  opacity: 1;
  transform: translateY(0);
}

.features-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.1s, transform 0.8s ease 0.1s;
}

.features-header.in-view .features-title {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

.features-subtitle {
  font-size: 1rem;
  color: rgba(226, 232, 240, 0.7);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.features-header.in-view .features-subtitle {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .features-subtitle {
    font-size: 1.125rem;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  min-width: 0;
  width: 100%;
}

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

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

.feature-card {
  padding: 1.5rem;
  background: rgba(15, 23, 42, 0.5);
  border-radius: 1rem;
  border: 1px solid rgba(30, 41, 59, 0.5);
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  cursor: pointer;
  box-sizing: border-box;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.feature-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  background: white;
  border-color: rgba(30, 41, 59, 0.1);
  /* border-bottom-color: #f59e0b; */
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: scale(1.02);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: #1e293bcc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #f59e0b;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: #f59e0b;
  color:white;
  transform: scale(1.1);
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke-width: 2;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  transition: color 0.3s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.feature-card:hover h3 {
  color: #0f172a;
}

.feature-card p {
  font-size: 0.875rem;
  color: rgba(226, 232, 240, 0.7);
  line-height: 1.75;
  margin: 0;
  transition: color 0.3s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.feature-card:hover p {
  color: #64748b;
}

/* For Whom Section */
.for-whom-section {
  display: flex;
  align-items: center;
  padding: 4rem 0;
  background: #0f172a;
  overflow: hidden;
}

@media (min-width: 768px) {
  .for-whom-section {
    padding: 5rem 0;
  }
}

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

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

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

.for-whom-card {
  position: relative;
  background: linear-gradient(to bottom right, rgba(30, 41, 59, 0.5), rgba(51, 65, 85, 0.5), rgba(30, 41, 59, 0.5));
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(71, 85, 105, 0.3);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
  .for-whom-card {
    border-radius: 2rem;
    padding: 3rem;
  }
}

@media (min-width: 1024px) {
  .for-whom-card {
    border-radius: 3rem;
    padding: 4rem;
  }
}

.for-whom-background {
  position: absolute;
  inset: 0;
  border-radius: 3rem;
  overflow: hidden;
}

.for-whom-background::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: linear-gradient(to bottom right, rgba(245, 158, 11, 0.1), transparent);
  border-radius: 9999px;
  filter: blur(80px);
}

.for-whom-inner {
  position: relative;
  z-index: 10;
}

.for-whom-header {
  text-align: center;
  max-width: 768px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.for-whom-header.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .for-whom-header {
    margin-bottom: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .for-whom-header {
    margin-bottom: 4rem;
  }
}

.for-whom-badge {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .for-whom-badge {
    margin-bottom: 1.5rem;
  }
}

.for-whom-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  line-height: 1.2;
  padding: 0 0.5rem;
}

@media (min-width: 640px) {
  .for-whom-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .for-whom-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }
}

.for-whom-subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  padding: 0 0.5rem;
}

@media (min-width: 768px) {
  .for-whom-subtitle {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .for-whom-subtitle {
    font-size: 1.125rem;
  }
}

.for-whom-industries {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .for-whom-industries {
    gap: 1.5rem;
  }
}

.industry-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background: rgba(30, 41, 59, 0.3);
  border-radius: 0.75rem;
  border: 1px solid rgba(51, 65, 85, 0.5);
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.4s ease, transform 0.4s ease, all 0.3s;
}

.industry-item.in-view {
  opacity: 1;
  transform: translateX(0);
}

@media (min-width: 640px) {
  .industry-item {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 1rem;
  }
}

.industry-item:hover {
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.15);
}

.industry-icon {
  flex-shrink: 0;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .industry-icon {
    margin: 0;
  }
}

.industry-icon svg {
  width: 48px;
  height: 48px;
}

@media (min-width: 768px) {
  .industry-icon svg {
    width: 64px;
    height: 64px;
  }
}

.industry-content {
  flex: 1;
  text-align: center;
}

@media (min-width: 640px) {
  .industry-content {
    text-align: left;
  }
}

.industry-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .industry-content h3 {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .industry-content h3 {
    font-size: 1.5rem;
  }
}

.industry-content p {
  color: #cbd5e1;
  font-size: 0.875rem;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .industry-content p {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .industry-content p {
    font-size: 1.125rem;
  }
}

.for-whom-closing {
  margin-top: 2.5rem;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
}

.for-whom-closing.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .for-whom-closing {
    margin-top: 3.5rem;
  }
}

.for-whom-closing-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 768px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .for-whom-closing-text {
    font-size: 1.125rem;
  }
}

@media (min-width: 1024px) {
  .for-whom-closing-text {
    font-size: 1.25rem;
  }
}

/* CTA Section */
.cta-section {
  display: flex;
  align-items: center;
  padding: 4rem 0;
  background: white;
  overflow: hidden;
}

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

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

.cta-background {
  position: absolute;
  inset: 0;
}

.cta-gradient {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 9999px;
  background: linear-gradient(to bottom right, rgba(254, 243, 199, 0.5), rgba(255, 237, 213, 0.3), transparent);
  filter: blur(80px);
}

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

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

.cta-card {
  position: relative;
  background: #020617;
  border-radius: 1rem;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid rgba(30, 41, 59, 0.5);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.cta-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .cta-card {
    border-radius: 2.5rem;
    padding: 3rem;
  }
}

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

.cta-card-stripes {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, 1) 0px, rgba(15, 23, 42, 0.95) 1px, rgba(15, 23, 42, 1) 2px);
  background-size: 3px 100%;
  opacity: 0.3;
}

.cta-card-orb-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 320px;
  background: rgba(245, 158, 11, 0.15);
  border-radius: 9999px;
  filter: blur(80px);
}

.cta-card-orb-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 240px;
  height: 240px;
  background: rgba(51, 65, 85, 0.1);
  border-radius: 9999px;
  filter: blur(80px);
}

.cta-inner {
  position: relative;
  z-index: 10;
  text-align: center;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

.cta-card.in-view .cta-badge {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .cta-badge {
    margin-bottom: 2rem;
  }
}

.cta-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: #4ade80;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.cta-badge-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.cta-card.in-view .cta-title {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

.cta-description {
  font-size: 1rem;
  color: #cbd5e1;
  max-width: 672px;
  margin: 0 auto 2rem;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.cta-card.in-view .cta-description {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .cta-description {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
  }
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}

.cta-card.in-view .cta-buttons {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    align-items: center;
    width: auto;
    gap: 1rem;
  }
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: #f59e0b;
  color: white;
  font-weight: 600;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 20px 25px -5px rgba(245, 158, 11, 0.25);
  min-height: 44px;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .cta-btn-primary {
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

.cta-btn-primary:hover {
  background: #d97706;
  box-shadow: 0 20px 40px rgba(251, 146, 60, 0.4);
  transform: scale(1.05);
}

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

.cta-btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.cta-btn-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  animation: bounce 1.5s infinite;
}

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-weight: 600;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 44px;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .cta-btn-secondary {
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(251, 146, 60, 0.5);
  transform: scale(1.05);
}

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

.cta-micro-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-top: 1.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}

.cta-card.in-view .cta-micro-text {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .cta-micro-text {
    font-size: 0.875rem;
    margin-top: 2rem;
  }
}

/* Footer */
.footer {
  background: #0f172a;
  padding: 3rem 1rem;
  border-top: 1px solid rgba(30, 41, 59, 0.5);
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.footer-logo-link:hover {
  transform: scale(1.02);
}

.footer-logo-img {
  height: 24px;
  width: auto;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

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

.footer-social-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.footer-copyright {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .footer {
    padding: 2rem 1rem;
  }
  
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-social {
    justify-content: center;
    flex-direction: row;
    gap: 1.5rem;
  }
  
  .footer-copyright {
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 0.25rem;
    white-space: normal;
  }
}

/* Demo Modal */
.demo-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(4px);
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
  overflow-x: hidden;
}

.demo-modal-backdrop.show {
  display: flex;
}

/* Body scroll prevention is handled via JavaScript inline styles */

.demo-modal {
  position: relative;
  width: 100%;
  max-width: 1152px;
  height: 95vh;
  height: 95vh;
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  margin: auto;
  z-index: 9999;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  transition: all 0.3s;
  align-self: center;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.demo-modal-backdrop.show .demo-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.demo-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 40px;
  height: 40px;
  background: rgba(15, 23, 42, 0.8);
  color: white;
  border-radius: 9999px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.demo-modal-close:hover {
  background: rgba(15, 23, 42, 1);
}

.demo-modal-close svg {
  width: 20px;
  height: 20px;
}

.demo-modal-content {
  padding: 1rem;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.demo-modal-step {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  height: 100%;
  min-height: 500px;
}

@media (min-width: 768px) {
  .demo-modal-step {
    min-height: 600px;
  }
}

@media (min-width: 640px) {
  .demo-modal-content {
    padding: 1.25rem;
  }
}

@media (min-width: 768px) {
  .demo-modal-content {
    padding: 1.5rem;
  }
}

.demo-modal-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .demo-modal-indicators {
    margin-bottom: 1rem;
  }
}

.demo-indicator {
  height: 8px;
  width: 8px;
  border-radius: 9999px;
  background: #cbd5e1;
  transition: all 0.3s;
}

.demo-indicator.active {
  width: 48px;
  background: #f59e0b;
}

.demo-modal-header {
  text-align: center;
  margin-bottom: 0.75rem;
  padding: 0 0.5rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .demo-modal-header {
    margin-bottom: 1rem;
  }
}

.demo-modal-number {
  font-size: 2rem;
  font-weight: 900;
  color: #f59e0b;
  display: block;
  margin-bottom: 0.25rem;
  line-height: 1;
}

@media (min-width: 640px) {
  .demo-modal-number {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) {
  .demo-modal-number {
    font-size: 3rem;
  }
}

.demo-modal-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
  word-break: break-word;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .demo-modal-title {
    font-size: 1.25rem;
  }
}

@media (min-width: 768px) {
  .demo-modal-title {
    font-size: 1.5rem;
  }
}

.demo-modal-description {
  font-size: 0.8125rem;
  color: #475569;
  word-break: break-word;
  line-height: 1.4;
}

@media (min-width: 640px) {
  .demo-modal-description {
    font-size: 0.875rem;
  }
}

@media (min-width: 768px) {
  .demo-modal-description {
    font-size: 1rem;
  }
}

.demo-modal-image-wrapper {
  position: relative;
  margin-bottom: 0.75rem;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 2px solid #e2e8f0;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .demo-modal-image-wrapper {
    border-radius: 1rem;
    border-width: 4px;
    margin-bottom: 1rem;
  }
}

.demo-modal-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 100%;
  display: block;
}

.demo-modal-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  background: rgba(245, 158, 11, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@media (min-width: 768px) {
  .demo-modal-pulse {
    width: 64px;
    height: 64px;
  }
}

.demo-modal-pulse::after {
  content: '';
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  background: #f59e0b;
}

@media (min-width: 768px) {
  .demo-modal-pulse::after {
    width: 32px;
    height: 32px;
  }
}

.demo-modal-tooltip {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 23, 42, 0.9);
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  max-width: 90%;
  text-align: center;
  word-break: break-word;
  animation: fadeIn 0.5s ease-out 0.5s both;
}

@media (min-width: 768px) {
  .demo-modal-tooltip {
    bottom: 2rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.demo-modal-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0 0.5rem;
  flex-shrink: 0;
  margin-top: auto;
}

.demo-nav-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.2s;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
}

@media (min-width: 640px) {
  .demo-nav-btn {
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

.demo-nav-btn:disabled {
  background: #f1f5f9;
  color: #94a3b8;
  cursor: not-allowed;
}

.demo-nav-btn:not(:disabled) {
  background: #0f172a;
  color: white;
}

.demo-nav-btn:not(:disabled):hover {
  background: #1e293b;
}

.demo-nav-btn-primary {
  background: #f59e0b;
  color: white;
}

.demo-nav-btn-primary:hover {
  background: #d97706;
}

.demo-nav-btn svg {
  width: 16px;
  height: 16px;
}

@media (min-width: 640px) {
  .demo-nav-btn svg {
    width: 20px;
    height: 20px;
  }
}

.demo-nav-counter {
  color: #475569;
  font-weight: 500;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .demo-nav-counter {
    font-size: 1rem;
  }
}

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

/* Page-specific styles */
.page-hero {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 5rem;
  background: #020617;
  overflow: hidden;
}

.page-hero-background {
  position: absolute;
  inset: 0;
}

.page-hero-stripes {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, 1) 0px, rgba(15, 23, 42, 0.95) 1px, rgba(15, 23, 42, 1) 2px);
  background-size: 3px 100%;
  opacity: 0.5;
}

.page-hero-gradient {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: linear-gradient(to bottom right, rgba(245, 158, 11, 0.1), transparent);
  border-radius: 9999px;
  filter: blur(80px);
}

.page-hero-content {
  position: relative;
  z-index: 10;
  max-width: 896px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

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

.page-hero-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fbbf24;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.page-hero-badge.in-view {
  opacity: 1;
  transform: translateY(0);
}

.page-hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.1s, transform 0.8s ease 0.1s;
}

.page-hero-title.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

.page-hero-title-gradient {
  background: linear-gradient(to right, #fbbf24, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-content {
  padding: 5rem 0;
  background: white;
}

.page-content-wrapper {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.page-content-wrapper > * {
  max-width: none;
}

.page-content-text {
  font-size: 1.125rem;
  color: #334155;
  margin-bottom: 1.5rem;
  line-height: 1.75;
  transition: opacity 0.6s ease, transform 0.6s ease;
  opacity: 0;
  transform: translateY(30px);
}

.page-content-text.in-view {
  opacity: 1;
  transform: translateY(0);
}

.page-content-text:nth-of-type(2) {
  color: #475569;
  margin-bottom: 2rem;
}

.page-content-text strong {
  color: #0f172a;
  font-weight: 700;
}

.page-content-box {
  background: #f8fafc;
  border-radius: 1rem;
  padding: 2rem;
  margin: 3rem 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  opacity: 0;
  transform: translateY(30px);
}

.page-content-box.in-view {
  opacity: 1;
  transform: translateY(0);
}

.page-content-box-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.page-content-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #334155;
  padding: 0;
  margin: 0;
}

.page-content-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.page-content-list-checkmark {
  color: #f59e0b;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.page-content-quote {
  border-left: 4px solid #f59e0b;
  padding-left: 1.5rem;
  margin: 3rem 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  opacity: 0;
  transform: translateY(30px);
}

.page-content-quote.in-view {
  opacity: 1;
  transform: translateY(0);
}

.page-content-quote-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.page-content-quote-text {
  font-size: 1.25rem;
  color: #334155;
  font-weight: 500;
  margin-bottom: 1rem;
}

.page-content-quote-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: #475569;
}

.page-values {
  padding: 5rem 0;
  background: #f8fafc;
}

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

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

.page-values-header {
  text-align: center;
  margin-bottom: 4rem;
  transition: opacity 0.6s ease, transform 0.6s ease;
  opacity: 0;
  transform: translateY(30px);
}

.page-values-header.in-view {
  opacity: 1;
  transform: translateY(0);
}

.page-values-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

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

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

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

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

.page-value-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s, opacity 0.6s ease, transform 0.6s ease;
  opacity: 0;
  transform: translateY(40px);
}

.page-value-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.page-value-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.page-value-image {
  width: 128px;
  height: 128px;
  border-radius: 0.75rem;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.page-value-image img {
  width: 112px;
  height: 112px;
  object-fit: contain;
}

.page-value-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  text-align: center;
}

.page-value-card p {
  font-size: 0.875rem;
  color: #475569;
  text-align: center;
}

.navbar-link.active {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.page-hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 672px;
  margin: 0 auto;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.page-hero-subtitle.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .page-hero-subtitle {
    font-size: 1.125rem;
  }
}

@media (min-width: 768px) {
  .page-hero-subtitle {
    font-size: 1.25rem;
  }
}

/* Features Page */
.features-phase-switcher {
  padding: 2rem 0;
  background: #f8fafc;
}

@media (min-width: 640px) {
  .features-phase-switcher {
    padding: 3rem 0;
  }
}

.features-phase-wrapper {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .features-phase-wrapper {
    gap: 1rem;
  }
}

.phase-btn {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.75rem;
  transition: all 0.3s, opacity 0.6s ease, transform 0.6s ease;
  border: 1px solid #e2e8f0;
  background: white;
  color: #475569;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
}

.phase-btn.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .phase-btn {
    flex: none;
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
  }
}

.phase-btn:hover {
  background: #f1f5f9;
}

.phase-btn.active {
  background: #f59e0b;
  color: white;
  border-color: #f59e0b;
  box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.3);
}

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

.features-page-content {
  padding: 3rem 0;
  background: #f8fafc;
}

@media (min-width: 640px) {
  .features-page-content {
    padding: 4rem 0;
  }
}

@media (min-width: 768px) {
  .features-page-content {
    padding: 5rem 0;
  }
}

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

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

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

.phase-content {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.phase-content.active {
  display: block;
}

.phase-content.active.in-view {
  opacity: 1;
  transform: translateY(0);
}

.features-flow-card {
  background: white;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid #e2e8f0;
}

@media (min-width: 640px) {
  .features-flow-card {
    border-radius: 1.5rem;
    padding: 1.5rem;
  }
}

@media (min-width: 768px) {
  .features-flow-card {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .features-flow-card {
    padding: 3rem;
  }
}

.features-flow-grid {
  display: grid;
  gap: 2rem;
}

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

.features-flow-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  text-align: center;
  transition: opacity 0.6s ease, transform 0.6s ease;
  opacity: 0;
  transform: translateY(20px);
}

.features-flow-title.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .features-flow-title {
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) {
  .features-flow-title {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .features-flow-title {
    text-align: left;
  }
}

.features-flow-subtitle {
  font-size: 0.875rem;
  color: #475569;
  margin-bottom: 1.5rem;
  text-align: center;
  transition: opacity 0.6s ease, transform 0.6s ease;
  opacity: 0;
  transform: translateY(20px);
}

.features-flow-subtitle.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .features-flow-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .features-flow-subtitle {
    text-align: left;
  }
}

.features-circular-flow {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 280px;
  margin: 0 auto;
  padding: 1rem;
}

@media (min-width: 640px) {
  .features-circular-flow {
    max-width: 384px;
  }
}

@media (min-width: 768px) {
  .features-circular-flow {
    max-width: 448px;
  }
}

.circular-flow-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.flow-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 80px;
  height: 80px;
  border-radius: 9999px;
  background: white;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #f59e0b;
  z-index: 10;
  transition: transform 0.8s ease 0.2s;
  opacity: 0;
}

.flow-center.in-view {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

@media (min-width: 640px) {
  .flow-center {
    width: 96px;
    height: 96px;
  }
}

.flow-icon {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  background: white;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e2e8f0;
  transition: all 0.3s, transform 0.5s ease, opacity 0.5s ease;
  cursor: pointer;
  opacity: 0;
}

.flow-icon.in-view {
  opacity: 1;
}

.flow-icon:hover {
  border-color: #fbbf24;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.flow-icon.highlighted {
  border-color: #f59e0b !important;
  border-width: 3px !important;
  box-shadow: 0 25px 50px -12px rgba(245, 158, 11, 0.4) !important;
  transition: all 0.3s ease;
}

.flow-line {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.flow-line.in-view {
  opacity: 1;
}

@media (min-width: 640px) {
  .flow-icon {
    width: 80px;
    height: 80px;
  }
}

.flow-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

@media (min-width: 640px) {
  .flow-icon img {
    width: 56px;
    height: 56px;
  }
}

.features-modules-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-module-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #f8fafc;
  border-radius: 0.75rem;
  padding: 1rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s, opacity 0.6s ease, transform 0.6s ease;
  cursor: pointer;
  opacity: 0;
  transform: translateX(20px);
}

.feature-module-card.in-view {
  opacity: 1;
  transform: translateX(0);
}

.feature-module-card:hover {
  background: white;
  border-color: #fbbf24;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-module-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 0.75rem;
  background: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s;
}

.feature-module-card:hover .feature-module-icon {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-module-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.feature-module-content {
  flex: 1;
  min-width: 0;
}

.feature-module-content h4 {
  font-weight: 700;
  color: #0f172a;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
  .feature-module-content h4 {
    font-size: 1rem;
  }
}

.feature-module-content p {
  font-size: 0.75rem;
  color: #475569;
}

@media (min-width: 640px) {
  .feature-module-content p {
    font-size: 0.875rem;
  }
}

.features-cta {
  padding: 3rem 0;
  background: white;
}

@media (min-width: 640px) {
  .features-cta {
    padding: 4rem 0;
  }
}

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

.features-cta-wrapper {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

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

.features-cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.features-cta-title.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .features-cta-title {
    font-size: 1.875rem;
  }
}

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

.features-cta-text {
  font-size: 1rem;
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

.features-cta-text.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .features-cta-text {
    font-size: 1.125rem;
  }
}

@media (min-width: 768px) {
  .features-cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
}

.features-cta-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #f59e0b;
  color: white;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s, background 0.3s, transform 0.2s;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 20px 25px -5px rgba(245, 158, 11, 0.25);
  font-size: 0.875rem;
}

.features-cta-btn.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .features-cta-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

.features-cta-btn:hover {
  background: #d97706;
  transform: scale(1.02);
}

.features-cta-btn:active {
  transform: scale(0.98);
}

/* Why Ventor Timeline */
.why-ventor-timeline {
  position: relative;
  background: #020617;
  overflow: hidden;
  min-height: 100vh;
}

.timeline-header {
  position: relative;
  z-index: 10;
  padding: 6rem 0;
  text-align: center;
}

.timeline-title {
  font-size: 3rem;
  font-weight: 900;
  color: white;
  letter-spacing: -0.025em;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.timeline-title.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

.timeline-base {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 12rem;
  bottom: 0;
  width: 4px;
  background: rgba(30, 41, 59, 0.3);
  display: none;
}

@media (min-width: 768px) {
  .timeline-base {
    display: block;
  }
}

.timeline-fill {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(0);
  top: 12rem;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #f59e0b, #f97316, #ea580c);
  transform-origin: top;
  display: none;
  z-index: 10;
}

@media (min-width: 768px) {
  .timeline-fill {
    display: block;
  }
}

.timeline-step {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.timeline-step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #020617, rgba(15, 23, 42, 0.95), #020617);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  background: #f59e0b;
  border: 4px solid #020617;
  z-index: 20;
  display: none;
}

@media (min-width: 768px) {
  .timeline-dot {
    display: block;
  }
}

.timeline-content-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

@media (min-width: 1024px) {
  .timeline-content-wrapper {
    padding: 5rem 2rem;
  }
}

@media (min-width: 768px) {
  .timeline-content-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

.timeline-content {
  position: relative;
  z-index: 10;
}

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

@media (min-width: 768px) {
  .timeline-content-left {
    text-align: right;
  }
}

.timeline-content-right {
  text-align: left;
}

@media (min-width: 768px) {
  .timeline-content-right {
    grid-column: 2;
  }
}

.timeline-step-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #fbbf24;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.timeline-step-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2rem;
  line-height: 1.2;
}

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

.timeline-step-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
}

@media (min-width: 768px) {
  .timeline-step-list {
    font-size: 1.125rem;
  }
}

.timeline-content-wrapper {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.timeline-content {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.timeline-content-right {
  transform: translateX(60px);
}

.timeline-content-left {
  transform: translateX(-60px);
}

.timeline-content.in-view {
  opacity: 1;
  transform: translateX(0);
}

@media (min-width: 768px) {
  .timeline-content-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

.timeline-step-list p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .timeline-content-left .timeline-step-list p {
    flex-direction: row-reverse;
  }
}

.timeline-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  background: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.125rem;
  color: white;
}

.timeline-check svg {
  width: 16px;
  height: 16px;
  stroke-width: 3;
}

.timeline-impact {
  position: relative;
  padding: 8rem 0;
  scroll-snap-align: start;
}

.timeline-impact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #020617, rgba(15, 23, 42, 0.2), #020617);
}

.timeline-impact-card {
  position: relative;
  z-index: 10;
  max-width: 896px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

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

.timeline-impact-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(to bottom right, rgba(245, 158, 11, 0.1), rgba(249, 115, 22, 0.1));
  border: 2px solid rgba(245, 158, 11, 0.3);
  border-radius: 1.5rem;
  padding: 3rem;
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.timeline-impact-text.in-view {
  opacity: 1;
  transform: scale(1);
}

@media (min-width: 768px) {
  .timeline-impact-text {
    font-size: 2.25rem;
  }
}

.timeline-impact-line {
  height: 6px;
  width: 128px;
  background: linear-gradient(to right, #f59e0b, #f97316);
  border-radius: 9999px;
  margin: 0 auto;
}

/* Trusted By Page */
.trusted-by-clients {
  padding: 5rem 0;
  background: #020617;
}

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

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

.trusted-by-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .trusted-by-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

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

.trusted-by-client {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.trusted-by-logo-box {
  width: 256px;
  height: 256px;
  background: rgba(51, 65, 85, 0.3);
  border-radius: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(4px);
}

.trusted-by-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.trusted-by-client-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #cbd5e1;
}

@media (min-width: 768px) {
  .trusted-by-client-name {
    font-size: 1.5rem;
  }
}

.trusted-by-cta {
  padding: 5rem 0;
  background: #f8fafc;
}

.trusted-by-cta-wrapper {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .trusted-by-cta-wrapper {
    padding: 0 2rem;
  }
}

.trusted-by-cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

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

.trusted-by-cta-text {
  font-size: 1.25rem;
  color: #475569;
  margin-bottom: 2rem;
}

.trusted-by-cta-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: #f59e0b;
  color: white;
  font-weight: 600;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 20px 25px -5px rgba(245, 158, 11, 0.25);
}

.trusted-by-cta-btn:hover {
  background: #d97706;
  transform: scale(1.02);
}

.trusted-by-cta-btn:active {
  transform: scale(0.98);
}

/* Dimosiotita Page */
.dimosiotita-content {
  padding: 5rem 0;
  background: white;
}

.dimosiotita-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.dimosiotita-card {
  background: #f8fafc;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
  .dimosiotita-card {
    padding: 3rem;
  }
}

.dimosiotita-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.dimosiotita-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.dimosiotita-card-icon svg {
  width: 24px;
  height: 24px;
}

.dimosiotita-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
}

@media (min-width: 768px) {
  .dimosiotita-card-title {
    font-size: 1.875rem;
  }
}

.dimosiotita-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.dimosiotita-info-item {
  border-left: 4px solid #f59e0b;
  padding-left: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.dimosiotita-info-label {
  font-size: 0.875rem;
  color: #475569;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.dimosiotita-info-value {
  font-size: 1.125rem;
  color: #0f172a;
  font-weight: 600;
}

.dimosiotita-address {
  font-size: 1.125rem;
  color: #334155;
  line-height: 1.75;
}

.dimosiotita-capital-box {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.dimosiotita-capital-amount {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.dimosiotita-table-wrapper {
  overflow-x: auto;
}

.dimosiotita-table {
  width: 100%;
  border-collapse: collapse;
}

.dimosiotita-table thead {
  border-bottom: 2px solid #cbd5e1;
}

.dimosiotita-table th {
  text-align: left;
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
}

.dimosiotita-table tbody tr {
  border-bottom: 1px solid #e2e8f0;
}

.dimosiotita-table td {
  padding: 1rem;
  color: #0f172a;
}

.dimosiotita-partners {
  margin-top: 1rem;
}

.dimosiotita-partners-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 1rem;
}

.dimosiotita-partners-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dimosiotita-partner-item {
  background: white;
  border-radius: 0.75rem;
  padding: 1rem;
  border: 1px solid #e2e8f0;
}

.dimosiotita-partner-item p {
  color: #0f172a;
  font-weight: 500;
}

