/* ============================================
   HIIT Ambala Portfolio - Styles
   ============================================ */

:root {
  --primary: #1a56db;
  --primary-dark: #1244b0;
  --primary-light: #3b7ddd;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --success: #10b981;
  --dark: #111827;
  --dark-light: #1f2937;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #1a56db 0%, #7c3aed 50%, #f59e0b 100%);
  --gradient-blue: linear-gradient(135deg, #1a56db, #3b7ddd);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-700);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  color: var(--gray-900);
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header.light h2,
.section-header.light p {
  color: var(--white);
}

.section-tag {
  display: inline-block;
  background: rgba(26, 86, 219, 0.1);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-header.light .section-tag {
  background: rgba(255,255,255,0.15);
  color: var(--accent);
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-500);
}

.gradient-text {
  background: var(--gradient);
  -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: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gradient-blue);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(26, 86, 219, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 86, 219, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-secondary {
  background: var(--gray-100);
  color: var(--primary);
  border-color: var(--gray-200);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  padding: 10px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-name {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gray-900);
}

.logo-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-500);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: 8px;
}

.nav-links a:hover {
  color: var(--primary);
  background: rgba(26, 86, 219, 0.05);
}

.nav-cta {
  background: var(--gradient-blue) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 10px 24px !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(26, 86, 219, 0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 40%, #bae6fd 100%);
  z-index: -2;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(147, 197, 253, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(253, 230, 138, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(165, 243, 252, 0.3) 0%, transparent 40%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a56db' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--gray-900);
  max-width: 900px;
  margin: 0 auto 24px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 650px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray-600);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--gray-500);
  font-size: 0.8rem;
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--gray-400);
  border-bottom: 2px solid var(--gray-400);
  transform: rotate(45deg);
  margin: 8px auto 0;
}

/* About */
.about {
  background: var(--gray-50);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: var(--gray-600);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}

.about-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.about-feature h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 0.85rem;
  margin: 0;
  color: var(--gray-500);
}

.about-visual {
  position: relative;
}

.about-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.card-header {
  background: var(--dark-light);
  padding: 12px 16px;
  display: flex;
  gap: 8px;
}

.card-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.card-dot.red { background: #ef4444; }
.card-dot.yellow { background: #f59e0b; }
.card-dot.green { background: #10b981; }

.card-body {
  padding: 24px;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
}

.code-line {
  margin-bottom: 8px;
  color: #e2e8f0;
}

.code-tag { color: #f472b6; }
.code-comment { color: #6b7280; font-style: italic; }

.floating-badge {
  position: absolute;
  background: var(--white);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  animation: float 3s ease-in-out infinite;
}

.badge-1 { top: -10px; right: -20px; color: var(--success); }
.badge-2 { bottom: 60px; left: -30px; color: var(--primary); animation-delay: 1s; }
.badge-3 { bottom: -10px; right: 40px; color: var(--accent); animation-delay: 2s; }

/* Services */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.step-num {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-100);
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.services-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.highlight-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.highlight-card.accent {
  background: linear-gradient(135deg, rgba(26,86,219,0.05), rgba(124,58,237,0.05));
  border-color: rgba(26,86,219,0.2);
}

.highlight-card h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.check-list li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* Projects */
.projects {
  background: var(--gray-50);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.project-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.08);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 86, 219, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-overlay a {
  color: var(--white);
  font-weight: 600;
  padding: 10px 24px;
  border: 2px solid var(--white);
  border-radius: 50px;
}

.project-overlay a:hover {
  background: var(--white);
  color: var(--primary);
}

.project-body {
  padding: 24px;
}

.project-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.project-meta {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 10px;
}

.project-body p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 14px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.project-tags span {
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 50px;
  font-weight: 500;
}

/* Earnings */
.earnings {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1a56db 100%);
  position: relative;
}

.earnings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.earning-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 24px;
  transition: var(--transition);
}

.earning-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}

.earning-avatar {
  flex-shrink: 0;
}

.earning-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
}

.earning-info h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.earning-course {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}

.earning-amount {
  display: inline-block;
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.earning-platform {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 10px;
}

.earning-story {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
}

.earning-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.earning-skills span {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 50px;
}

.earnings-cta {
  text-align: center;
  margin-top: 50px;
}

.earnings-cta p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* Hosting */
.hosting-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 32px;
}

.hosting-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
}

.hosting-card:hover {
  box-shadow: var(--shadow-lg);
}

.hosting-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(26,86,219,0.03), rgba(124,58,237,0.03));
}

.hosting-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
}

.hosting-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.hosting-card h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.hosting-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.7;
}

.hosting-tag {
  display: inline-block;
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
}

.hosting-tag.accent {
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent-dark);
}

.hosting-note {
  background: var(--gray-50);
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.hosting-note p {
  font-size: 0.95rem;
  color: var(--gray-600);
}

/* Contact */
.contact {
  background: var(--gray-50);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
}

.contact-benefits li {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.benefit-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-benefits strong {
  display: block;
  font-size: 0.95rem;
  color: var(--gray-900);
}

.contact-benefits p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin: 0;
}

.contact-details {
  margin-top: 32px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

.contact-details h4 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.contact-details p {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--gray-600);
}

.contact-details a {
  color: var(--primary);
}

.contact-details a:hover {
  text-decoration: underline;
}

.form-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  min-height: 500px;
}

.form-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px;
  min-height: 500px;
}

.placeholder-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-placeholder h3 {
  margin-bottom: 10px;
}

.form-placeholder p {
  color: var(--gray-500);
  margin-bottom: 8px;
}

.placeholder-note {
  font-size: 0.8rem !important;
  color: var(--gray-400) !important;
  margin-bottom: 24px !important;
}

.placeholder-note code {
  background: var(--gray-100);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.75rem;
}

.google-form-iframe {
  width: 100%;
  min-height: 600px;
  border: none;
}

/* Footer */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-name {
  color: var(--white);
}

.footer-brand .logo-sub {
  color: rgba(255,255,255,0.5);
}

.footer-brand p {
  margin: 16px 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 24px 24px;
    box-shadow: var(--shadow-xl);
    transition: right 0.3s ease;
    gap: 4px;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    padding: 12px 16px;
    border-radius: 8px;
  }

  .about-grid,
  .services-highlight,
  .hosting-grid,
  .contact-wrapper,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .steps-grid,
  .projects-grid,
  .earnings-grid {
    grid-template-columns: 1fr;
  }

  .earning-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .hero-stats {
    gap: 24px;
  }

  .floating-badge {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }
}
