/* Ohmelon Landing Page - Main Styles */

:root {
  /* Ohmelon Warm Color Palette */
  --melon-orange: #FEB47B;
  --melon-green: #5B7F4F;
  --melon-light: #FFE5D0;
  --beige-warm: #F5E6D3;
  --beige-dark: #E8D5B7;
  --text-dark: #2C3E2C;
  --text-medium: #4A5F4A;
  --text-light: #7A8A7A;
  --white: #FFFFFF;
  --shadow-soft: rgba(254, 180, 123, 0.15);

  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-xxl: 64px;
  --spacing-giant: 96px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--beige-warm);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fadeIn {
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-slideInLeft {
  animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slideInRight {
  animation: slideInRight 0.8s ease-out forwards;
}

.animate-scaleIn {
  animation: scaleIn 0.6s ease-out forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-350 {
  animation-delay: 0.35s;
}

.delay-400 {
  animation-delay: 0.4s;
}

.delay-500 {
  animation-delay: 0.5s;
}

.delay-600 {
  animation-delay: 0.6s;
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--shadow-soft);
}

.hover-scale {
  transition: transform 0.3s ease;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245, 230, 211, 0.95);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(254, 180, 123, 0.2);
}

.header.header-scrolled {
  background: rgba(245, 230, 211, 0.98);
  box-shadow: 0 4px 20px rgba(254, 180, 123, 0.15);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-image {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  background: none;
  border: none;
  color: var(--text-medium);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s ease;
  padding: 8px 0;
  font-family: inherit;
}

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

.btn-header {
  background: var(--melon-green);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(91, 127, 79, 0.3);
  font-family: inherit;
}

.btn-header:hover {
  background: var(--melon-orange);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 20px rgba(254, 180, 123, 0.4);
}

.mobile-menu-button {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
  padding: 8px;
}

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

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(60px);
}

.hero-shape-1 {
  width: 500px;
  height: 500px;
  background: var(--melon-orange);
  top: -200px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: var(--melon-green);
  bottom: -150px;
  left: -100px;
  animation: float 10s ease-in-out infinite;
  animation-delay: 1s;
}

.hero-shape-3 {
  width: 300px;
  height: 300px;
  background: var(--beige-dark);
  top: 50%;
  left: 50%;
  animation: pulse 6s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-text {
  max-width: 600px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--melon-orange), var(--melon-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-medium);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.feature-badge:hover {
  transform: translateY(-2px);
}

.feature-badge svg {
  color: var(--melon-orange);
}

.hero-social-proof {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-medium);
  font-weight: 500;
}

.proof-item.highlight {
  color: var(--melon-green);
  font-weight: 600;
}

.proof-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--white);
  border-radius: 50%;
  color: var(--melon-green);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.gift-icon-wrapper {
  margin: 1.5rem auto;
  display: flex;
  justify-content: center;
  filter: drop-shadow(0 4px 12px rgba(254, 180, 123, 0.4));
}

.hero-cta {
  background: var(--melon-green);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 18px 48px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(91, 127, 79, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: inherit;
}

.hero-cta:hover {
  background: var(--melon-orange);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(254, 180, 123, 0.5);
}

.hero-cta svg {
  animation: pulse 2s ease-in-out infinite;
}

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

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.image-wrapper:hover .hero-img {
  transform: scale(1.02);
}

.image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(254, 180, 123, 0.3), transparent 70%);
  z-index: -1;
  filter: blur(40px);
}

.hero-float-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  animation: float 4s ease-in-out infinite;
  z-index: 2;
}

.hero-float-1 {
  top: 10%;
  right: -10px;
  animation-delay: 0s;
}

.hero-float-2 {
  bottom: 20%;
  left: -10px;
  animation-delay: 1s;
}

.hero-float-3 {
  top: 45%;
  right: -15px;
  animation-delay: 2s;
}

/* Features Showcase */
.features-showcase {
  padding: var(--spacing-giant) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.features-showcase::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--melon-light) 0%, transparent 60%);
  opacity: 0.5;
  filter: blur(100px);
}

.showcase-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.featured-image-wrapper {
  position: relative;
  border-radius: 32px;
  overflow: visible;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.featured-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  border-radius: 32px;
}

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--melon-green), #7FD876);
  padding: 12px 24px;
  border-radius: 25px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: white;
  font-weight: 600;
  font-size: 16px;
  z-index: 10;
  animation: float 3s ease-in-out infinite;
  backdrop-filter: blur(10px);
}

.badge-icon {
  font-size: 24px;
  line-height: 1;
}

.badge-icon-svg {
  color: white;
}

.badge-text {
  white-space: nowrap;
}

.badge-1 {
  top: 20px;
  right: -20px;
  background: linear-gradient(135deg, #FF6B6B, #FFB347);
  animation-delay: 0s;
}

.badge-2 {
  top: 50%;
  left: -30px;
  background: linear-gradient(135deg, var(--melon-green), #4ECDC4);
  animation-delay: 1s;
}

.badge-3 {
  bottom: 100px;
  right: -30px;
  background: linear-gradient(135deg, #FFD93D, var(--melon-orange));
  animation-delay: 2s;
}

.badge-4 {
  bottom: 20px;
  left: -20px;
  background: linear-gradient(135deg, #6BCF7F, var(--melon-green));
  animation-delay: 1.5s;
}

.secondary-images {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.secondary-image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.secondary-image-card:hover {
  transform: translateX(8px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.secondary-image-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.secondary-image-card:hover img {
  transform: scale(1.05);
}

.image-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.image-badge svg {
  color: var(--melon-orange);
}

/* For Users Section */
.for-users {
  padding: var(--spacing-giant) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.for-users::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--melon-light);
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(80px);
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
}

.users-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xxl);
}

.users-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--spacing-lg);
}

.benefit-card {
  background: var(--beige-warm);
  padding: var(--spacing-lg);
  border-radius: 24px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.benefit-card:hover {
  border-color: var(--melon-orange);
  background: var(--white);
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: var(--melon-green);
  border-radius: 20px;
  color: white;
  margin-bottom: 20px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: rotate(5deg) scale(1.1);
  background: var(--melon-orange);
}

.benefit-title {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.benefit-description {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.6;
}

.users-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  max-width: 900px;
  margin: 0 auto;
}

.image-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.image-card:hover {
  transform: translateY(-8px);
}

.image-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.image-card-1 {
  transform: translateY(20px);
}

.image-card-2 {
  transform: translateY(-20px);
}

/* For Merchants Section */
.for-merchants {
  padding: var(--spacing-giant) 0;
  background: linear-gradient(135deg, var(--beige-warm) 0%, var(--melon-light) 100%);
  position: relative;
  overflow: hidden;
}

.for-merchants::before {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: var(--melon-green);
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(100px);
}

.merchants-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--spacing-xxl);
  align-items: center;
}

.merchants-title {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.merchants-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  gap: 16px;
  background: var(--white);
  padding: 20px;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.merchants-manifesto {
  margin: 4rem auto 0;
  max-width: 900px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 253, 245, 0.9));
  padding: 3rem;
  border-radius: 32px;
  border: 1px solid rgba(139, 195, 74, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.merchants-manifesto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--melon-green), var(--melon-orange));
}

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

.manifesto-icon {
  width: 80px;
  height: 80px;
  background: var(--melon-light);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--melon-green);
  margin-bottom: 0.5rem;
  transform: rotate(-10deg);
  transition: transform 0.3s ease;
}

.merchants-manifesto:hover .manifesto-icon {
  transform: rotate(0deg) scale(1.1);
}

.merchants-footer-text {
  font-size: 1.35rem;
  line-height: 1.7;
  color: var(--text-dark);
  font-weight: 500;
  margin: 0;
}

.feature-item:hover {
  border-color: var(--melon-orange);
  transform: translateX(8px);
}

.feature-icon-small {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--melon-green);
  border-radius: 12px;
  color: white;
  transition: background 0.3s ease;
}

.feature-item:hover .feature-icon-small {
  background: var(--melon-orange);
}

.feature-content {
  flex: 1;
}

.feature-title-small {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.feature-desc-small {
  font-size: 0.9375rem;
  color: var(--text-medium);
  line-height: 1.5;
}

.merchants-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.highlight-badge {
  background: var(--white);
  padding: 14px 24px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

.highlight-badge:hover {
  transform: translateY(-3px);
}

.merchants-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
}

.merchant-image-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.merchant-image-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.merchant-image-card:hover img {
  transform: scale(1.05);
}

.merchant-card-small img {
  height: 250px;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 24px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.merchant-image-card:hover .image-overlay {
  transform: translateY(0);
}

.overlay-text {
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
}

/* Market Carousel */
.market-carousel {
  padding: var(--spacing-giant) 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--beige-warm) 100%);
  position: relative;
  overflow: hidden;
}

.carousel-header {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

.carousel-title {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.carousel-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--text-medium);
}

.carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.carousel-slide {
  position: absolute;
  width: 70%;
  height: 500px;
  border-radius: 32px;
  overflow: hidden;
  transition: all 0.5s ease;
  opacity: 0;
  transform: scale(0.8) translateX(0);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1) translateX(0);
  z-index: 3;
  pointer-events: auto;
}

.carousel-slide.prev {
  opacity: 0.5;
  transform: scale(0.85) translateX(-40%);
  z-index: 2;
}

.carousel-slide.next {
  opacity: 0.5;
  transform: scale(0.85) translateX(40%);
  z-index: 2;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: var(--spacing-lg);
  color: white;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.carousel-slide.active .slide-overlay {
  transform: translateY(0);
}

.slide-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.slide-description {
  font-size: 1.125rem;
  opacity: 0.9;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--melon-green);
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  color: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.carousel-button:hover {
  background: var(--melon-orange);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.carousel-button-prev {
  left: -28px;
}

.carousel-button-next {
  right: -28px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: var(--spacing-lg);
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--beige-dark);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: var(--melon-orange);
  width: 32px;
  border-radius: 6px;
}

.carousel-dot:hover {
  background: var(--melon-green);
}

/* Coming Soon Section */
.coming-soon {
  padding: var(--spacing-giant) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.coming-soon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--melon-light) 0%, transparent 70%);
  opacity: 0.4;
  filter: blur(100px);
}

.coming-soon-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.coming-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--melon-green);
  color: white;
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(91, 127, 79, 0.3);
}

.coming-title {
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.coming-description {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--text-medium);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 56px;
}

.coming-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.coming-feature-card {
  background: var(--beige-warm);
  padding: var(--spacing-lg);
  border-radius: 24px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.coming-feature-card:hover {
  background: var(--white);
  border-color: var(--melon-orange);
}

.coming-feature-card svg {
  color: var(--melon-orange);
  margin-bottom: 16px;
}

.coming-feature-card h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.coming-feature-card p {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.5;
}

.cities-preview {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.cities-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.cities-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.city-badge {
  background: var(--melon-orange);
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 500;
  transition: transform 0.2s ease, background 0.3s ease;
  cursor: default;
}

.city-badge:hover {
  transform: translateY(-3px);
  background: var(--melon-green);
}

/* Lead Forms Section */
.lead-forms {
  padding: var(--spacing-giant) 0;
  background: linear-gradient(180deg, var(--beige-warm) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.lead-forms::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--melon-orange) 0%, transparent 60%);
  opacity: 0.1;
  filter: blur(120px);
}

.forms-header {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
  position: relative;
  z-index: 1;
}

.forms-title {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.forms-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--text-medium);
}

.forms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.form-card {
  background: var(--white);
  border-radius: 32px;
  padding: var(--spacing-xl);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.form-card:hover {
  border-color: var(--melon-orange);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.form-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.form-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: var(--melon-green);
  border-radius: 20px;
  color: white;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.form-card:hover .form-icon {
  transform: rotate(5deg) scale(1.1);
}

.merchant-icon {
  background: var(--melon-orange);
}

.form-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-description {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.5;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-dark);
}

.input-label svg {
  color: var(--melon-orange);
}

.input-field {
  width: 100%;
  padding: 14px 18px;
  font-size: 16px;
  border: 2px solid var(--beige-dark);
  border-radius: 12px;
  background: var(--beige-warm);
  color: var(--text-dark);
  transition: all 0.2s ease;
  font-family: inherit;
}

.input-field:focus {
  outline: none;
  border-color: var(--melon-orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(254, 180, 123, 0.1);
}

.input-field::placeholder {
  color: var(--text-light);
}

.submit-button {
  background: var(--melon-green);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 16px 32px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 8px;
  box-shadow: 0 6px 20px rgba(91, 127, 79, 0.3);
  font-family: inherit;
}

.submit-button:hover:not(:disabled) {
  background: var(--melon-orange);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(254, 180, 123, 0.4);
}

.submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.submit-button.submitted {
  background: var(--melon-green);
}

.form-message {
  margin-top: 15px;
  padding: 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  display: none;
  animation: fadeIn 0.3s ease-out;
}

.form-message.success {
  display: block;
  background-color: rgba(91, 127, 79, 0.1);
  color: var(--melon-green);
  border: 1px solid var(--melon-green);
}

.form-message.error {
  display: block;
  background-color: rgba(255, 107, 107, 0.1);
  color: #D32F2F;
  border: 1px solid #FF6B6B;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--text-medium) 100%);
  color: white;
  padding: var(--spacing-xxl) 0 var(--spacing-lg);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--melon-orange), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: linear-gradient(135deg, var(--melon-orange), var(--melon-green));
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}

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

.footer-link {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.2s ease;
  text-align: left;
  padding: 0;
  font-family: inherit;
}

.footer-link:hover {
  color: var(--melon-orange);
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
}

.footer-contact svg {
  color: var(--melon-orange);
  flex-shrink: 0;
}

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

.contact-link:hover {
  color: var(--melon-orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
}

.legal-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.legal-link:hover {
  color: var(--melon-orange);
}

.separator {
  color: rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero {
    padding-top: 60px;
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-features {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .image-wrapper {
    max-width: 400px;
  }

  .hero-float-badge {
    font-size: 13px;
    padding: 8px 16px;
  }

  .hero-float-1 {
    top: 5%;
    right: 5px;
  }

  .hero-float-2 {
    bottom: 25%;
    left: 5px;
  }

  .hero-float-3 {
    top: 40%;
    right: 5px;
  }

  .showcase-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .featured-image {
    height: 450px;
  }

  .secondary-images {
    grid-template-columns: 1fr;
  }

  .badge-1,
  .badge-2,
  .badge-3,
  .badge-4 {
    font-size: 14px;
    padding: 10px 18px;
  }

  .badge-1 {
    top: 10px;
    right: 10px;
  }

  .badge-2 {
    left: 10px;
  }

  .badge-3 {
    bottom: 80px;
    right: 10px;
  }

  .badge-4 {
    bottom: 10px;
    left: 10px;
  }

  .for-users {
    padding: var(--spacing-xl) 0;
  }

  .users-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .users-images {
    grid-template-columns: 1fr;
  }

  .image-card-1,
  .image-card-2 {
    transform: translateY(0);
  }

  .image-card img {
    height: 250px;
  }

  .for-merchants {
    padding: var(--spacing-xl) 0;
  }

  .merchants-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .merchants-manifesto {
    padding: 2rem 1.5rem;
    margin-top: 3rem;
  }

  .merchants-footer-text {
    font-size: 1.15rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .merchants-images {
    order: -1;
  }

  .merchant-image-card img {
    height: 300px;
  }

  .merchant-card-small img {
    height: 200px;
  }

  .market-carousel {
    padding: var(--spacing-xl) 0;
  }

  .carousel-container {
    height: 450px;
  }

  .carousel-slide {
    width: 90%;
    height: 400px;
  }

  .carousel-slide.prev,
  .carousel-slide.next {
    display: none;
  }

  .carousel-button {
    width: 48px;
    height: 48px;
  }

  .carousel-button-prev {
    left: 8px;
  }

  .carousel-button-next {
    right: 8px;
  }

  .slide-title {
    font-size: 1.5rem;
  }

  .slide-description {
    font-size: 1rem;
  }

  .coming-soon {
    padding: var(--spacing-xl) 0;
  }

  .coming-features {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .cities-badges {
    gap: 8px;
  }

  .lead-forms {
    padding: var(--spacing-xl) 0;
  }

  .forms-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .form-card {
    padding: var(--spacing-lg);
  }

  .footer {
    padding: var(--spacing-xl) 0 var(--spacing-md);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-tagline {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--spacing-sm);
  }

  .header-container {
    padding: 12px 16px;
  }

  .mobile-menu-button {
    display: block;
  }

  .nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--beige-warm);
    flex-direction: column;
    gap: 0;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .nav.nav-mobile-open {
    transform: translateX(0);
  }

  .nav-link {
    width: 100%;
    text-align: left;
    padding: 16px 0;
    border-bottom: 1px solid var(--beige-dark);
  }

  .btn-header {
    width: 100%;
    margin-top: 16px;
  }

  .logo-image {
    height: 40px;
  }

  .secondary-image-card img {
    height: 150px;
  }
}

/* Why Ohmelon Section */
.why-ohmelon {
  padding: var(--spacing-xl) 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-md);
}

.why-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--beige-warm);
  padding: 24px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.why-item:hover {
  transform: translateY(-5px);
  background: var(--melon-light);
}

.why-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--melon-green);
  opacity: 0.5;
}

.why-item p {
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.cta-highlight {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--melon-green);
  margin-top: 1rem;
  animation: pulse 2s infinite;
}