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

:root {
  --bg-main: #0e1723;
  --bg-card: #161f2b;
  --text-main: #f5f5f7;
  --text-link: #917eff;
  --card-border: #585cf6;
  --card-radius: 14px;
  --accent: #60a5fa;
  --minecraft-green: #10b981;
  --gradient: linear-gradient(135deg, #ffffff 0%, #60a5fa 40%, #a78bfa 70%, #10b981 100%);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  margin: 0;
  background: #101827;
  background: linear-gradient(135deg, #101827 0%, #20283a 100%);
  color: var(--text-main);
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: 80px;
}

/* Sticky Header */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(14, 23, 35, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(96, 165, 250, 0.1);
  padding: 1rem 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateY(0);
}

.sticky-header.header-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.sticky-header.header-visible {
  transform: translateY(0);
  opacity: 1;
}

.sticky-header-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  position: relative;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Logo Styles */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.2s ease;
}

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

.logo-icon {
  width: 36px;
  height: 36px;
  position: relative;
}

.logo-text-container {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.01em;
}

.logo-domain {
  font-size: 0.7rem;
  color: #60a5fa;
  font-weight: 400;
  opacity: 0.8;
  margin-top: -0.1rem;
}

/* Navigation Buttons */
.nav-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-btn {
  background: rgba(59,130,246,0.13);
  color: #60a5fa;
  border: 1.5px solid #60a5fa;
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(59,130,246,0.11);
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-btn:hover {
  background: #60a5fa;
  color: #141a20;
  border-color: #60a5fa;
  transform: translateY(-1px);
}

.nav-btn.discord {
  background: rgba(114, 137, 218, 0.13);
  color: #7289da;
  border-color: #7289da;
}

.nav-btn.discord:hover {
  background: #7289da;
  color: white;
}

/* Login Button */
.login-btn {
  background: rgba(59,130,246,0.13);
  color: #60a5fa;
  border: 1.5px solid #60a5fa;
  border-radius: 999px;
  padding: 0.7rem 1.6rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(59,130,246,0.11);
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
}

.login-btn:hover {
  background: #60a5fa;
  color: #141a20;
  border-color: #60a5fa;
  transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: rgba(59,130,246,0.13);
  color: var(--accent);
  border: 1.5px solid var(--accent);
  border-radius: 8px;
  padding: 0.6rem 0.8rem;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 600;
}

.mobile-menu-toggle:hover {
  background: var(--accent);
  color: #141a20;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(14, 23, 35, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 999;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.show {
  display: flex;
  opacity: 1;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.mobile-menu-nav .nav-btn {
  width: 280px;
  text-align: center;
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.mobile-menu-nav .login-btn {
  width: 280px;
  text-align: center;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  margin-top: 1rem;
}

.mobile-menu-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Breadcrumbs - Minecraft Specific */
.breadcrumbs {
  max-width: 1320px;
  margin: 0 auto;
  padding: 1rem 2rem 0.5rem 2rem;
  font-size: 0.9rem;
}

.breadcrumbs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.breadcrumbs-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumbs-link {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-link:hover {
  color: var(--minecraft-green);
}

.breadcrumbs-separator {
  color: #6b7280;
  user-select: none;
}

.breadcrumbs-current {
  color: var(--minecraft-green);
  font-weight: 500;
}

.header {
  position: relative;
  padding: 2rem 0 2.5rem 0;
  text-align: center;
  margin-top: 0;
}

.hero-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #10b981 0%, #8964fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero-desc {
  font-size: 1.15rem;
  color: #d1d5db;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  line-height: 1.6;
}

.cta-btn {
  margin-top: 0.4rem;
  background: linear-gradient(90deg, #10b981, #3be0a7 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.cta-btn:hover {
  background: linear-gradient(90deg, #3be0a7 0%, #10b981 100%);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.features-section {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 4rem 0;
}

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

.feature-card {
  background: rgba(22,31,43,0.95);
  border: 1.5px solid var(--minecraft-green);
  border-radius: var(--card-radius);
  padding: 1.6rem 2rem 1.25rem 2rem;
  box-shadow: 0 2px 20px 0px rgba(16, 185, 129, 0.1);
  transition: border 0.2s, box-shadow 0.2s;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 135px;
}

.feature-card:hover {
  border-color: #3be0a7;
  box-shadow: 0 4px 28px 2px rgba(16, 185, 129, 0.15);
}

.feature-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--minecraft-green);
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 0.40rem;
  letter-spacing: -0.5px;
  border-bottom: 1.2px solid #222b3d;
  padding-bottom: 0.32rem;
}

.feature-desc {
  font-size: 1.01rem;
  color: #b3b7db;
  margin-bottom: 0.12rem;
  margin-top: 0.35rem;
}

.feature-link {
  color: var(--text-link);
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.15s;
}

.feature-link:hover {
  color: #6f83fa;
}

main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 2rem;
}

section {
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Plugins Section - Minecraft Specific */
.plugins-section {
  background: rgba(22,31,43,0.5);
  border-radius: 14px;
  padding: 3rem 2rem;
}

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

.plugin-card {
  background: rgba(14, 23, 35, 0.8);
  border: 1.5px solid var(--minecraft-green);
  border-radius: 14px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.plugin-card:hover {
  border-color: #3be0a7;
  box-shadow: 0 4px 28px rgba(16, 185, 129, 0.2);
  transform: translateY(-4px);
}

.plugin-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--minecraft-green);
  margin-bottom: 0.75rem;
}

.plugin-card p {
  color: #b3b7db;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.plugin-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plugin-card ul li {
  color: #9ca3af;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.plugin-card ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--minecraft-green);
}

.plugins-footer {
  text-align: center;
  margin-top: 2rem;
  color: #9ca3af;
  font-size: 0.95rem;
}

/* Game Modes Section - Minecraft Specific */
.gamemodes-section {
  background: rgba(22,31,43,0.5);
  border-radius: 14px;
  padding: 3rem 2rem;
}

.gamemodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.gamemode-card {
  background: rgba(14, 23, 35, 0.8);
  border: 1.5px solid var(--minecraft-green);
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.gamemode-card:hover {
  border-color: #3be0a7;
  box-shadow: 0 4px 28px rgba(16, 185, 129, 0.2);
  transform: translateY(-4px);
}

.gamemode-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--minecraft-green);
  margin-bottom: 0.75rem;
}

.gamemode-card p {
  color: #b3b7db;
  line-height: 1.6;
}

/* Steps Section */
.steps-section {
  background: rgba(22,31,43,0.5);
  border-radius: 14px;
  padding: 3rem 2rem;
}

.steps-section p {
  text-align: center;
  color: #b3b7db;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.steps-section ul {
  max-width: 700px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.steps-section ul li {
  color: #b3b7db;
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  line-height: 1.6;
}

.steps-section ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--minecraft-green);
  font-weight: 700;
  font-size: 1.2rem;
}

/* Specs Section - Minecraft Specific */
.specs-section {
  background: rgba(22,31,43,0.5);
  border-radius: 14px;
  padding: 3rem 2rem;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.spec-card {
  background: rgba(14, 23, 35, 0.8);
  border: 1.5px solid var(--minecraft-green);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.spec-card:hover {
  border-color: #3be0a7;
  transform: translateY(-4px);
}

.spec-label {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.spec-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--minecraft-green);
}

/* CTA Section */
.cta-section {
  text-align: center;
  background: rgba(22,31,43,0.5);
  padding: 4rem 2rem;
  border-radius: 14px;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.cta-subtitle {
  font-size: 1.125rem;
  color: #b3b7db;
  margin-bottom: 2rem;
}

/* FAQ Section - FIXED FOR BUTTON ELEMENTS */
.faq-section {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq-container {
  margin: 0 auto;
}

.faq-item {
  background: rgba(22,31,43,0.95);
  border: 1.5px solid var(--minecraft-green);
  border-radius: 14px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.12);
}

.faq-item:hover {
  border-color: #3be0a7;
  box-shadow: 0 6px 24px rgba(16, 185, 129, 0.2);
}

/* FAQ Question - Works for both <button> and <div> */
.faq-question,
button.faq-question {
  width: 100%;
  padding: 1.3rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--minecraft-green);
  cursor: pointer;
  display: flex;
  align-items: center;
  user-select: none;
  justify-content: space-between;
  background: transparent;
  border: none;
  text-align: left;
  font-family: inherit;
  transition: background 0.2s ease;
}

.faq-question:hover,
button.faq-question:hover {
  background: rgba(16, 185, 129, 0.05);
}

.faq-question::after,
button.faq-question::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--minecraft-green);
  transition: transform 0.3s ease;
  margin-left: 1rem;
  flex-shrink: 0;
}

.faq-question.active::after,
button.faq-question.active::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  color: #b3b7db;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  font-size: 1rem;
  line-height: 1.6;
  background: transparent;
}

.faq-answer.show {
  padding: 0 1.5rem 1.5rem 1.5rem;
  max-height: 1000px;
}

/* Footer */
footer {
  background: #0c0c0c;
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  color: #9ca3af;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.footer-logo-icon {
  width: 28px;
  height: 28px;
}

.footer-logo-text {
  font-size: 1rem;
  font-weight: 600;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.footer-logo-domain {
  font-size: 0.65rem;
  color: #60a5fa;
  font-weight: 400;
  opacity: 0.8;
  margin-top: -0.1rem;
}

.footer-description {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.5;
  max-width: 300px;
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-nav-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav-links a {
  color: #b3b7db;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
  padding: 0.25rem 0;
}

.footer-nav-links a:hover {
  color: #60a5fa;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: #9ca3af;
  font-size: 0.875rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  color: #9ca3af;
  transition: color 0.3s ease;
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social-link:hover {
  color: #7289da;
  background: rgba(114, 137, 218, 0.1);
}

/* Floating Action Buttons */
.floating-buttons {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 8px 32px rgba(59,130,246,0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.fab:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 28px rgba(0,0,0,0.4), 0 12px 48px rgba(59,130,246,0.3);
}

.fab:active {
  transform: translateY(-1px) scale(1.02);
}

.fab-minecraft {
  background: linear-gradient(135deg, rgba(59,130,246,0.9), rgba(96,165,250,0.9));
  color: white;
}

.fab-discord {
  background: linear-gradient(135deg, rgba(114, 137, 218, 0.9), rgba(142, 161, 238, 0.9));
  color: white;
}

.fab-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(14, 23, 35, 0.95);
  color: var(--text-main);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  border: 1px solid rgba(96, 165, 250, 0.2);
  backdrop-filter: blur(10px);
}

.fab:hover .fab-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(-8px);
}

/* Responsive Design */
@media (max-width: 1100px) {
  .features-grid {
    max-width: 820px;
    gap: 1.5rem;
  }

  .plugins-grid,
  .gamemodes-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }

  .sticky-header {
    padding: 0.8rem 0;
  }

  .sticky-header-content {
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.5rem;
  }

  .nav-buttons {
    display: none;
  }

  .header-left {
    gap: 0;
    justify-self: start;
  }

  .header-right {
    display: flex;
    justify-content: center;
  }

  .mobile-menu-toggle {
    display: block;
    justify-self: end;
  }

  .login-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .header {
    padding-top: 1.5rem;
  }

  .breadcrumbs {
    padding: 0.75rem 1rem 0.25rem 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  main {
    padding: 1.5rem 1rem;
  }

  .plugins-grid,
  .gamemodes-grid {
    grid-template-columns: 1fr;
  }

  .plugins-section,
  .gamemodes-section,
  .steps-section,
  .specs-section,
  .cta-section {
    padding: 2rem 1.5rem;
  }

  .faq-section {
    padding: 0 1rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-nav-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .floating-buttons {
    bottom: 1.5rem;
    right: 1.5rem;
    gap: 0.8rem;
  }

  .fab {
    width: 52px;
    height: 52px;
    font-size: 1.1rem;
  }

  .fab-tooltip {
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
  }
}

@media (max-width: 480px) {
  .sticky-header-content {
    padding: 0 0.8rem;
  }

  .login-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .breadcrumbs {
    font-size: 0.85rem;
  }

  .hero-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .hero-desc {
    font-size: 1.05rem;
  }

  .feature-card {
    padding: 1.25rem 1.5rem;
  }

  .plugins-section,
  .gamemodes-section,
  .steps-section,
  .specs-section,
  .cta-section {
    padding: 1.5rem 1rem;
  }

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

  .faq-question,
  button.faq-question {
    font-size: 1rem;
    padding: 1.1rem 1.25rem;
  }

  .faq-answer {
    font-size: 0.95rem;
  }

  .floating-buttons {
    bottom: 1rem;
    right: 1rem;
  }

  .fab {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

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

/* Animation for mobile menu */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu-overlay.show .mobile-menu-nav {
  animation: slideIn 0.3s ease-out;
}
.steps-section {
  background: linear-gradient(135deg, #0d0f12 0%, #1a1a1a 100%);
  border-radius: 14px;
  padding: 3rem 1.5rem;
  margin-bottom: 4rem;
}

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

.step-card {
  text-align: center;
  background: rgba(22,31,43,0.9);
  padding: 2rem 1.5rem;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.15);
  border: 1.5px solid #10b981;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 28px rgba(16, 185, 129, 0.25);
  border-color: #3be0a7;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #3be0a7);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.5);
}

.step-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #10b981;
  margin-bottom: 0.75rem;
}

.step-description {
  color: #b3b7db;
  line-height: 1.6;
}
