/* JOJOcell - Main Stylesheet */

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: linear-gradient(135deg, #020617 0%, #0f172a 50%, #1e293b 100%);
  color: white;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: white;
}

.logo-icon {
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, #26a000, #1f7a00);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.25rem;
}

.logo-blue { color: #28911b; -webkit-text-fill-color: #28911b; }
.logo-white { color: white; }

.logo-text {
  animation: logoGlow 2s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 8px rgba(147, 197, 253, 0.6));
}

@keyframes logoGlow {
  from {
    filter: drop-shadow(0 0 8px rgba(147, 197, 253, 0.6)) drop-shadow(0 0 20px rgba(147, 197, 253, 0.3));
  }
  to {
    filter: drop-shadow(0 0 15px rgba(147, 197, 253, 0.7)) drop-shadow(0 0 30px rgba(147, 197, 253, 0.4)) drop-shadow(0 0 40px rgba(147, 197, 253, 0.2));
  }
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.nav-links a:hover {
  color: #6366f1;
}

/* Logo Styles */
.logo-image {
  height: 40px;
  width: auto;
  transition: all 0.3s ease;
}

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

.hero-logo-image {
  height: clamp(120px, 15vw, 200px);
  width: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 20px rgba(147, 197, 253, 0.8));
  animation: heroLogoGlow 3s ease-in-out infinite alternate;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-top: 5rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.1) 30%, transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(120px);
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  animation: float 6s ease-in-out infinite reverse;
}

/* Hero Badge */
.hero-badge {
  margin-bottom: 2rem;
  animation: slideInDown 1s ease-out;
}

.badge-text {
  display: inline-block;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
  border: 1px solid rgba(99, 102, 241, 0.4);
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #ffffff;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

/* Hero Logo */
.hero-content h1 {
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 0.9;
  margin-top: 1rem;
  animation: slideInUp 1s ease-out 0.2s both;
}

.hero-logo {
  animation: heroLogoGlow 3s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 20px rgba(147, 197, 253, 0.8));
}

@keyframes heroLogoGlow {
  0% {
    filter: drop-shadow(0 0 20px rgba(147, 197, 253, 0.8)) drop-shadow(0 0 40px rgba(147, 197, 253, 0.4)) drop-shadow(0 0 60px rgba(147, 197, 253, 0.2));
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(147, 197, 253, 1)) drop-shadow(0 0 60px rgba(147, 197, 253, 0.6)) drop-shadow(0 0 90px rgba(147, 197, 253, 0.3));
  }
  100% {
    filter: drop-shadow(0 0 25px rgba(147, 197, 253, 0.9)) drop-shadow(0 0 50px rgba(147, 197, 253, 0.5)) drop-shadow(0 0 75px rgba(147, 197, 253, 0.25));
  }
}

.gradient-text {
  background: linear-gradient(135deg, #26a000, #1f7a00, #26a000);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

.cell-text {
  color: white;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: slideInUp 1s ease-out 0.4s both;
}

.subtitle-line {
  color: #cbd5e1;
  display: block;
}

.subtitle-highlight {
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 2s ease-in-out infinite;
  display: block;
  font-weight: 800;
  text-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
}

/* Hero Description */
.hero-description {
  font-size: 1.25rem;
  color: #cbd5e1;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  animation: slideInUp 1s ease-out 0.6s both;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  animation: slideInUp 1s ease-out 0.8s both;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: #6366f1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: #cbd5e1;
  font-weight: 500;
}

/* Hero Particles */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(99, 102, 241, 0.6);
  border-radius: 50%;
  animation: particleFloat 8s linear infinite;
}

.particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 6s;
}

.particle:nth-child(2) {
  top: 60%;
  left: 20%;
  animation-delay: 1s;
  animation-duration: 8s;
}

.particle:nth-child(3) {
  top: 30%;
  right: 15%;
  animation-delay: 2s;
  animation-duration: 7s;
}

.particle:nth-child(4) {
  top: 70%;
  right: 25%;
  animation-delay: 3s;
  animation-duration: 9s;
}

.particle:nth-child(5) {
  top: 40%;
  left: 50%;
  animation-delay: 4s;
  animation-duration: 6.5s;
}

.particle:nth-child(6) {
  top: 80%;
  left: 30%;
  animation-delay: 5s;
  animation-duration: 7.5s;
}

.particle:nth-child(7) {
  top: 10%;
  right: 40%;
  animation-delay: 6s;
  animation-duration: 8.5s;
}

.particle:nth-child(8) {
  top: 50%;
  right: 10%;
  animation-delay: 7s;
  animation-duration: 6s;
}

@keyframes particleFloat {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

@keyframes modalSlideIn {
  0% {
    transform: translateY(50px) scale(0.9);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  align-items: center;
  animation: slideInUp 1s ease-out 0.7s both;
}

.download-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: slideInUp 1s ease-out 0.8s both;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 200px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* App Store button - Apple's official black background */
.download-btn[data-platform="ios"] {
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-btn[data-platform="ios"]:hover {
  background: #1a1a1a;
  border-color: rgba(255, 255, 255, 0.2);
}

/* Google Play button - Google's official black background */
.download-btn[data-platform="android"] {
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-btn[data-platform="android"]:hover {
  background: #1a1a1a;
  border-color: rgba(255, 255, 255, 0.2);
}

.download-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.download-icon svg {
  color: #ffffff;
  width: 24px;
  height: 24px;
}

/* App Store specific styling */
.download-btn[data-platform="ios"] .download-icon {
  background: rgba(0, 122, 255, 0.2);
  border-color: rgba(0, 122, 255, 0.3);
}

.download-btn[data-platform="ios"] .download-icon svg {
  color: #007AFF;
}

/* Google Play specific styling */
.download-btn[data-platform="android"] .download-icon {
  background: rgba(0, 150, 136, 0.2);
  border-color: rgba(0, 150, 136, 0.3);
}

.download-btn[data-platform="android"] .download-icon svg {
  color: #009688;
}

.download-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.download-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  line-height: 1;
}

.download-store {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.2;
}

.btn-text {
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn-icon {
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
  font-size: 1.2em;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 50%, #3730a3 100%);
  color: white;
  padding: 1.125rem 2.25rem;
  border: none;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.025em;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 56px;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 4px 14px rgba(99, 102, 241, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 1px 0 rgba(255, 255, 255, 0.2) inset;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(99, 102, 241, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 1px 0 rgba(255, 255, 255, 0.25) inset;
  background: linear-gradient(135deg, #7c3aed 0%, #6366f1 50%, #4f46e5 100%);
}

.btn-primary:hover .btn-text {
  transform: translateX(-2px);
}

.btn-primary:hover .btn-icon {
  transform: translateX(3px);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
  transition: all 0.1s ease;
}

.btn-primary:focus {
  outline: none;
  box-shadow: 
    0 0 0 3px rgba(99, 102, 241, 0.3),
    0 4px 14px rgba(99, 102, 241, 0.25);
}

.btn-secondary {
  background: rgba(99, 102, 241, 0.05);
  border: 2px solid rgba(99, 102, 241, 0.3);
  color: #6366f1;
  padding: 1.125rem 2.25rem;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.025em;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 56px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 4px 20px rgba(99, 102, 241, 0.15),
    0 0 0 1px rgba(99, 102, 241, 0.1) inset;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(99, 102, 241, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  color: white;
  border-color: #6366f1;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(99, 102, 241, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover::before {
  opacity: 1;
}

.btn-secondary:active {
  transform: translateY(-1px) scale(0.98);
  transition: all 0.1s ease;
}

.btn-secondary:focus {
  outline: none;
  box-shadow: 
    0 0 0 3px rgba(99, 102, 241, 0.3),
    0 4px 20px rgba(99, 102, 241, 0.15);
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.feature-item {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 2rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-12px) scale(1.02);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 
    0 25px 50px rgba(99, 102, 241, 0.2),
    0 0 0 1px rgba(99, 102, 241, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-item:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 6rem;
  height: 6rem;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
  box-shadow: 
    0 15px 35px rgba(99, 102, 241, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.feature-icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899);
  border-radius: 2rem;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-item:hover .feature-icon::after {
  opacity: 1;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #91d18d;
  background: linear-gradient(135deg, #ffffff, #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #91d18d;
  background-clip: text;
}

.feature-description {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 250px;
  margin: 0 auto;
}

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

.section-header h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff, #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.25rem;
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.8));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover .feature-card-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.3));
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.feature-card-icon svg {
  width: 3.0rem;
  height: 3.0rem;
  stroke: #acff9ac4;
}

.feature-card-icon {
  width: 7rem;
  height: 7rem;
  border-radius: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 3rem;
  color: white;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
  border: 1px solid rgba(99, 102, 241, 0.3);
  transition: all 0.3s ease;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #91d18d;
}

.feature-card p {
  color: #cbd5e1;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* How to Join Section */
.how-to-join {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.9));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.step-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.2);
}

.step-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #91d18d;
}

.step-badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.2);
  color: #6366f1;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-family: monospace;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.step-description {
  color: #6366f1;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.step-details {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Support Sections */
.support-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.95));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.help-category {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  backdrop-filter: blur(20px);
}

.help-category h3 {
  color: #6366f1;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.help-links {
  list-style: none;
  padding: 0;
}

.help-links li {
  margin-bottom: 0.75rem;
  color: #cbd5e1;
  padding: 0.5rem 0;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}

.help-links li::before {
  content: "•";
  color: #6366f1;
  position: absolute;
  left: 0;
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.docs-category h3 {
  color: #6366f1;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.docs-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  backdrop-filter: blur(20px);
}

.docs-item h4 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.docs-item p {
  color: #cbd5e1;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-grid-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  margin: 3rem auto 0;
  padding: 0 1rem;
}

.contact-professional {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3rem auto 0;
  padding: 0 1rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  padding: 3rem;
  text-align: center;
  max-width: 500px;
  width: 100%;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-header {
  margin-bottom: 2rem;
}

.contact-icon-large {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
  border: 2px solid rgba(99, 102, 241, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon-large {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.3));
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.contact-icon-large svg {
  color: #6366f1;
}

.contact-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin: 0;
}

.contact-details {
  text-align: center;
}

.contact-email {
  font-size: 1.5rem;
  font-weight: 600;
  color: #6366f1;
  margin-bottom: 1rem;
  word-break: break-all;
}

.contact-description {
  font-size: 1rem;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.contact-meta {
  display: flex;
  justify-content: center;
  align-items: center;
}

.response-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #94a3b8;
  background: rgba(99, 102, 241, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.response-time svg {
  color: #6366f1;
}

.contact-info h3 {
  color: #6366f1;
  margin-bottom: 2rem;
  font-size: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-icon {
  font-size: 2rem;
  margin-top: 0.25rem;
}

.contact-item h4 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.contact-item p {
  color: #cbd5e1;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.response-time {
  color: #6366f1;
  font-size: 0.875rem;
  font-weight: 500;
}

.contact-form h3 {
  color: #6366f1;
  margin-bottom: 2rem;
  font-size: 1.25rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: white;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  color: white;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.status-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  backdrop-filter: blur(20px);
}

.status-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.status-header h3 {
  color: white;
  font-size: 1.25rem;
  margin: 0;
}

.status-badge {
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.status-operational {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.status-service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.status-service:last-child {
  border-bottom: none;
}

.service-name {
  color: #cbd5e1;
  font-size: 0.95rem;
}

.service-status.operational {
  color: #22c55e;
  font-size: 1.5rem;
}

.service-value {
  color: #6366f1;
  font-weight: 600;
  font-size: 0.95rem;
}

.status-footer {
  text-align: center;
  margin-top: 3rem;
  color: #94a3b8;
  font-size: 0.875rem;
}

.status-footer a {
  color: #6366f1;
  text-decoration: none;
}

.status-footer a:hover {
  text-decoration: underline;
}

/* Policy Pages Styles */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.policy-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  backdrop-filter: blur(20px);
}

.policy-section h3 {
  color: #6366f1;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.policy-section h4 {
  color: white;
  margin: 1.5rem 0 1rem 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.policy-section p {
  color: #cbd5e1;
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 1rem;
}

.policy-section ul {
  color: #cbd5e1;
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.policy-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.policy-section strong {
  color: white;
  font-weight: 600;
}

.policy-section a {
  color: #6366f1;
  text-decoration: none;
  transition: color 0.3s;
}

.policy-section a:hover {
  color: #8b5cf6;
  text-decoration: underline;
}

.cookie-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.cookie-type {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.cookie-type h4 {
  color: #6366f1;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.cookie-type p {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.cookie-type ul {
  padding-left: 1rem;
}

.cookie-type li {
  color: #cbd5e1;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

/* Footer */
.footer {
  background: rgba(15, 23, 42, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #6366f1;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s;
}

.social-link:hover {
  background: rgba(99, 102, 241, 0.2);
  color: #6366f1;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #64748b;
  font-size: 0.875rem;
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
  z-index: 1000;
}

.scroll-top:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

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

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

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

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Policy Pages */
.main-content {
  padding-top: 5rem;
  min-height: 100vh;
}

.policy-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 2rem 0;
}

.policy-header h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff, #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.policy-intro {
  font-size: 1.25rem;
  color: #cbd5e1;
  max-width: 800px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}

.last-updated {
  font-size: 0.9rem;
  color: #94a3b8;
  font-style: italic;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

.policy-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  backdrop-filter: blur(20px);
}

.policy-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #6366f1;
  border-bottom: 2px solid rgba(99, 102, 241, 0.3);
  padding-bottom: 0.5rem;
}

.policy-section h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem;
  color: #e2e8f0;
}

.policy-section p {
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.policy-section ul {
  color: #cbd5e1;
  line-height: 1.7;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-section li {
  margin-bottom: 0.5rem;
}

.policy-section strong {
  color: #e2e8f0;
  font-weight: 600;
}

.contact-info {
  margin-top: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #cbd5e1;
}

.contact-item svg {
  color: #6366f1;
  flex-shrink: 0;
}

/* Mobile Responsiveness */
/* Mobile Menu Styles */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  z-index: 1000;
}

.mobile-menu.active {
  display: block;
  animation: slideDown 0.3s ease-out;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.mobile-menu li {
  margin: 1rem 0;
}

.mobile-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  display: block;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: #6366f1;
}

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

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .navbar {
    padding: 0.75rem 0;
  }

  .nav-links {
    display: none;
  }

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

  .logo-image {
    height: 35px;
  }

  /* Hero Section Mobile Improvements */
  .hero {
    min-height: 100vh;
    padding: 6rem 0 3rem;
  }

  .hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1rem;
  }

  .hero-logo-image {
    height: clamp(80px, 12vw, 120px);
    margin-bottom: 1.5rem;
  }

  .hero-subtitle {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
    line-height: 1.6;
  }

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

  .btn-primary,
  .btn-secondary {
    min-width: 280px;
    width: 100%;
    max-width: 320px;
    height: 56px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
  }

  .download-buttons {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    justify-content: center;
    align-items: center;
  }

  .download-btn {
    min-width: 250px;
    width: 100%;
    max-width: 300px;
    padding: 1rem 1.5rem;
    height: 60px;
    margin: 0 auto;
  }

  .download-icon {
    width: 36px;
    height: 36px;
  }

  .download-icon svg {
    width: 20px;
    height: 20px;
  }

  .download-label {
    font-size: 0.8rem;
  }

  .download-store {
    font-size: 1.1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  .stat-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stat-number {
    font-size: 2rem;
    font-weight: 800;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  /* Features Section Mobile */
  .features {
    padding: 4rem 0;
  }

  .section-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
  }

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

  .feature-item {
    padding: 2.5rem 1.5rem;
    text-align: center;
  }

  .feature-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
  }

  .feature-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .feature-description {
    font-size: 1rem;
    line-height: 1.6;
  }

  /* How to Join Section Mobile */
  .how-to-join {
    padding: 4rem 0;
  }

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

  .step-item {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .step-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
  }

  .step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .step-content p {
    font-size: 1rem;
    line-height: 1.6;
  }

  /* Contact Section Mobile */
  .contact {
    padding: 4rem 0;
  }

  .contact-card {
    padding: 2.5rem 1.5rem;
    margin: 0 1rem;
    text-align: center;
  }

  .contact-icon-large {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
  }

  .contact-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .contact-email {
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
  }

  /* Footer Mobile */
  .footer {
    padding: 3rem 0 2rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-logo img {
    height: 40px;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-links a {
    font-size: 1rem;
    padding: 0.5rem 0;
  }

  /* Scroll to Top Button Mobile */
  .scroll-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
  }

  .scroll-top svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero {
    padding: 5rem 0 2rem;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .hero-logo-image {
    height: clamp(60px, 10vw, 80px);
  }

  .hero-subtitle {
    font-size: clamp(1rem, 3.5vw, 1.2rem);
  }

  .hero-description {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }

  .btn-primary,
  .btn-secondary {
    min-width: 260px;
    max-width: 280px;
    height: 52px;
    font-size: 0.95rem;
  }

  .download-btn {
    min-width: 260px;
    max-width: 280px;
    height: 56px;
    padding: 0.9rem 1.2rem;
    margin: 0 auto;
  }

  .download-label {
    font-size: 0.75rem;
  }

  .download-store {
    font-size: 1rem;
  }

  .feature-item {
    padding: 2rem 1rem;
  }

  .feature-icon {
    width: 3.5rem;
    height: 3.5rem;
  }

  .feature-title {
    font-size: 1.2rem;
  }

  .feature-description {
    font-size: 0.95rem;
  }

  .step-item {
    padding: 1.5rem 1rem;
  }

  .step-icon {
    width: 3.5rem;
    height: 3.5rem;
  }

  .step-content h3 {
    font-size: 1.2rem;
  }

  .step-content p {
    font-size: 0.95rem;
  }

  .contact-card {
    padding: 2rem 1rem;
    margin: 0 0.5rem;
  }

  .contact-icon-large {
    width: 4rem;
    height: 4rem;
  }

  .contact-header h3 {
    font-size: 1.3rem;
  }

  .contact-email {
    font-size: 1rem;
    padding: 0.9rem 1.2rem;
  }

  .section-title {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
  }

  .section-subtitle {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }

  .scroll-top {
    bottom: 1rem;
    right: 1rem;
    width: 2.2rem;
    height: 2.2rem;
  }

  .scroll-top svg {
    width: 14px;
    height: 14px;
  }
}
