/* CSS Variables */
:root {
  --primary: #005F56;
  --primary-dark: #004D45;
  --primary-light: #007A6E;
  --accent: #FFB400;
  --accent-dark: #E6A200;
  --accent-light: #FFC233;
  --purple: #8B5CF6;
  --pink: #EC4899;
  --green: #10B981;
  --blue: #3B82F6;

  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

  --radius-sm: 6px;
  --radius: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-light {
  background: linear-gradient(135deg, var(--white) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-purple {
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-green {
  background: linear-gradient(135deg, var(--green) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-pink {
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(0, 95, 86, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 95, 86, 0.4);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--gray-700);
  border-color: var(--gray-200);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--gray-300);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

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

.nav-links a:not(.btn) {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-600);
}

.nav-links a:not(.btn):hover {
  color: var(--primary);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-lg);
  z-index: 999;
}

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

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f0fdf9 0%, #fff 50%, #fef3c7 100%);
  z-index: -1;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  animation: blobFloat 8s ease-in-out infinite;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: rgba(0, 95, 86, 0.15);
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.blob-2 {
  width: 300px;
  height: 300px;
  background: rgba(255, 180, 0, 0.15);
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

.blob-3 {
  width: 250px;
  height: 250px;
  background: rgba(139, 92, 246, 0.1);
  top: 40%;
  left: 30%;
  animation-delay: 4s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 540px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: 60px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--gray-900);
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--gray-600);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-users {
  display: flex;
  align-items: center;
  gap: 16px;
}

.user-avatars {
  display: flex;
}

.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid var(--white);
  margin-left: -12px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.user-avatar:first-child {
  margin-left: 0;
}

.user-count {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-text {
  font-size: 14px;
  color: var(--gray-500);
}

/* Hero Phone Mockup */
.hero-phone {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.phone-frame {
  position: relative;
  width: 280px;
  height: 580px;
  background: #1a1a1a;
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 50px 100px -20px rgba(0, 0, 0, 0.25),
    0 30px 60px -30px rgba(0, 0, 0, 0.3),
    inset 0 -2px 6px rgba(255, 255, 255, 0.1);
  animation: phoneFloat 6s ease-in-out infinite;
}

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

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #1a1a1a;
  border-radius: 0 0 16px 16px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #f8fafc;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* App Header */
.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 16px 12px;
  background: white;
  border-bottom: 1px solid #f1f5f9;
}

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

.app-logo-img {
  height: 24px;
  width: auto;
  object-fit: contain;
}

.app-header-icons {
  display: flex;
  gap: 12px;
  color: var(--gray-500);
}

/* App Tabs */
.app-tabs {
  display: flex;
  padding: 8px 12px;
  gap: 4px;
  background: white;
}

.app-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-400);
  border-radius: var(--radius-md);
  transition: all 0.2s;
}

.app-tab.active {
  background: var(--primary);
  color: white;
}

.app-tab svg {
  width: 14px;
  height: 14px;
}

/* Buddies Grid */
.app-buddies-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 8px 10px;
  overflow-y: auto;
}

.buddy-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  border: 1px solid #f1f5f9;
}

.buddy-card-image {
  position: relative;
  height: 70px;
}

.buddy-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.online-dot {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.connect-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  background: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  cursor: pointer;
  color: var(--primary);
}

.compat-badge {
  position: absolute;
  bottom: 4px;
  left: 4px;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  color: white;
}

.compat-badge.gold { background: #FFD700; }
.compat-badge.green { background: #22c55e; }
.compat-badge.teal { background: var(--primary); }
.compat-badge.blue { background: #3B82F6; }

.buddy-card-info {
  padding: 6px 8px;
}

.buddy-card-info .buddy-name-row {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 2px;
}

.buddy-card-info .name {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-900);
}

.buddy-location {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 9px;
  color: var(--gray-500);
  margin-bottom: 1px;
}

.buddy-distance {
  font-size: 8px;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.buddy-interests {
  display: flex;
  gap: 3px;
}

.interest-emoji {
  background: rgba(0, 95, 86, 0.1);
  padding: 2px 4px;
  border-radius: 4px;
  font-size: 10px;
}

.more-interests {
  background: var(--gray-100);
  padding: 2px 4px;
  border-radius: 4px;
  font-size: 8px;
  color: var(--gray-500);
}

/* Bottom Nav */
.app-bottom-nav {
  display: flex;
  justify-content: space-around;
  padding: 12px 20px 20px;
  background: white;
  border-top: 1px solid var(--gray-100);
}

.nav-item {
  color: var(--gray-400);
  padding: 8px;
}

.nav-item.active {
  color: var(--primary);
}

/* Floating Badges */
.floating-badge .badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-phone .floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  z-index: 10;
}

.hero-phone .badge-1 {
  top: 60px;
  left: -40px;
  animation: badgeFloat 3s ease-in-out infinite;
}

.hero-phone .badge-2 {
  bottom: 180px;
  left: -60px;
  animation: badgeFloat 3s ease-in-out infinite 0.5s;
}

.hero-phone .badge-3 {
  top: 200px;
  right: -50px;
  animation: badgeFloat 3s ease-in-out infinite 1s;
}

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

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-400);
  font-size: 13px;
  animation: bounce 2s ease-in-out infinite;
}

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

/* Social Proof */
.social-proof {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 32px 0;
}

.proof-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
}

.proof-item {
  text-align: center;
}

.proof-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
}

.proof-label {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 4px;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}

/* Section Styles */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-badge {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(0, 95, 86, 0.1), rgba(0, 95, 86, 0.05));
  border: 1px solid rgba(0, 95, 86, 0.2);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-500);
}

/* Modes Section */
.modes-section {
  padding: 100px 0;
  background: var(--gray-50);
}

.modes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.mode-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s ease;
}

.mode-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.mode-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.mode-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.mode-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.mode-icon {
  position: absolute;
  bottom: -24px;
  left: 24px;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}

.mode-buddy .mode-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
}

.mode-travel .mode-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
}

.mode-events .mode-icon {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: white;
}

.mode-content {
  padding: 40px 24px 24px;
}

.mode-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.mode-content p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 20px;
}

.mode-features {
  list-style: none;
}

.mode-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 10px;
}

.mode-features li svg {
  color: var(--green);
  flex-shrink: 0;
}

/* Features Section */
.features-section {
  padding: 100px 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse > * {
  direction: ltr;
}

.feature-badge {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(0, 95, 86, 0.1), rgba(0, 95, 86, 0.05));
  border: 1px solid rgba(0, 95, 86, 0.2);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.feature-content h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 20px;
}

.feature-content p {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 32px;
}

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

.highlight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.highlight-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(0, 95, 86, 0.1), rgba(0, 95, 86, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.highlight strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.highlight span {
  font-size: 14px;
  color: var(--gray-500);
}

.feature-image {
  position: relative;
}

.feature-image img {
  width: 100%;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
}

.image-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 12px 20px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--gray-700);
}

.float-1 {
  bottom: 40px;
  left: -20px;
}

.match-percent {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
}

.float-2 {
  top: 40px;
  right: -20px;
}

.event-count {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--purple);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.float-3 {
  bottom: 60px;
  right: 20px;
}

.travel-flag {
  font-size: 24px;
}

.event-types {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.event-type {
  padding: 10px 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: all 0.2s;
}

.event-type:hover {
  background: var(--white);
  border-color: var(--purple);
  color: var(--purple);
}

.travel-stats {
  display: flex;
  gap: 48px;
}

.travel-stat {
  text-align: center;
}

.travel-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.travel-stat span:last-child {
  font-size: 14px;
  color: var(--gray-500);
}

/* Events Showcase */
.events-showcase {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2xl);
}

.event-card .event-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.event-card .event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-date {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.date-day {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
}

.date-month {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-500);
  text-transform: uppercase;
}

.event-details {
  padding: 20px;
}

.event-category {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.category-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.event-details h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.event-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.event-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-500);
}

.event-host {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.event-host img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.event-host span {
  font-size: 13px;
  color: var(--gray-500);
}

.event-host strong {
  color: var(--gray-700);
}

.events-cta {
  text-align: center;
}

/* Activities Section */
.activities-section {
  padding: 100px 0;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.activity-card {
  padding: 24px 16px;
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.activity-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.activity-card:hover .activity-icon-wrapper {
  background: var(--accent);
  transform: scale(1.1);
}

.activity-card:hover .activity-icon-wrapper svg {
  stroke: white;
}

.activity-icon-wrapper {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.activity-icon-wrapper svg {
  stroke: var(--gray-600);
}

.activity-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
  background: var(--gray-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.testimonial-content {
  margin-bottom: 24px;
}

.stars {
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-content p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
  color: var(--gray-900);
}

.testimonial-author span {
  font-size: 13px;
  color: var(--gray-500);
}

/* CTA Section */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -25%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(255, 180, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

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

.cta-content h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* Footer */
.footer {
  padding: 80px 0 32px;
  background: var(--gray-900);
  color: var(--white);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--gray-700);
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand .logo-img {
  height: 36px;
}

.footer-brand p {
  color: var(--gray-400);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-800);
  border-radius: 50%;
  color: var(--gray-400);
  transition: all 0.2s;
}

.social-links a:hover {
  background: var(--primary);
  color: var(--white);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.footer-column a {
  display: block;
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.footer-column a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 32px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--gray-500);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

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

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

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

  .hero-phone {
    order: -1;
  }

  .phone-frame {
    width: 260px;
    height: 540px;
  }

  .floating-badge {
    display: none;
  }

  .modes-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
    gap: 48px;
    direction: ltr;
  }

  .events-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 48px;
  }

  .activities-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

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

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

  .hero {
    padding: 100px 0 40px;
    min-height: auto;
  }

  .hero-title {
    font-size: 40px;
  }

  .scroll-indicator {
    display: none;
  }

  .proof-items {
    flex-wrap: wrap;
    gap: 24px;
  }

  .proof-divider {
    display: none;
  }

  .section-title {
    font-size: 32px;
  }

  .feature-content h2 {
    font-size: 32px;
  }

  .activities-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .activity-card {
    padding: 16px 8px;
  }

  .activity-icon-wrapper {
    width: 44px;
    height: 44px;
  }

  .activity-card h4 {
    font-size: 12px;
  }

  .cta-content h2 {
    font-size: 36px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .trust-badges {
    flex-direction: column;
    gap: 16px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

  .phone-frame {
    width: 240px;
    height: 500px;
  }

  .buddy-card-image {
    height: 60px;
  }

  .buddy-card-info {
    padding: 4px 6px;
  }

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

  .footer-links {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
