/* ========== ram.css ========== */
/* SHYRO Hosting - Calculadora RAM Minecraft */
/* Versión refinada profesional - Hardware de alto rendimiento · Protección DDoS */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, sans-serif;
  background-color: #05070a;
  color: #eef2ff;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: #04D2FB;
  color: #05070a;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,500;14..32,600;14..32,700;14..32,800&display=swap');

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ========== ANIMACIONES SUAVES ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* ========== NAVBAR ========== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 7, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(4, 210, 251, 0.15);
  padding: 1rem 0;
  transition: background 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.5rem;
  font-weight: 800;
  transition: opacity 0.2s ease;
}

.logo:hover {
  opacity: 0.9;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.logo span {
  background: linear-gradient(120deg, #fff, #04D2FB);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #cbd5e1;
  background: none;
  border: none;
  transition: color 0.2s ease;
}

.hamburger:hover {
  color: #04D2FB;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #e2e8f0;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #04D2FB, #47EEFC);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: #04D2FB;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: #04D2FB;
}

.nav-links a.active::after {
  width: 100%;
}

/* ========== HERO SECTION ========== */
.calculator-hero {
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.calculator-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(4, 210, 251, 0.06), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(4, 210, 251, 0.1);
  border: 1px solid rgba(4, 210, 251, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #04D2FB;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.gradient-text {
  background: linear-gradient(135deg, #04D2FB, #47EEFC);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-content p {
  color: #94a3b8;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  max-width: 500px;
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #7e89ae;
  transition: color 0.2s ease;
}

.hero-stat:hover {
  color: #04D2FB;
}

.hero-stat i {
  color: #04D2FB;
  font-size: 1rem;
}

.hero-visual {
  position: relative;
  height: 280px;
}

.floating-cube,
.floating-chip,
.floating-ram {
  position: absolute;
  background: rgba(15, 17, 26, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(4, 210, 251, 0.15);
  border-radius: 20px;
  padding: 1rem;
  transition: all 0.2s ease;
}

.floating-cube {
  top: 20%;
  left: 10%;
  font-size: 2rem;
  color: #04D2FB;
  animation: float 5s ease-in-out infinite;
  animation-delay: 0s;
}

.floating-chip {
  top: 50%;
  right: 15%;
  font-size: 2rem;
  color: #47EEFC;
  animation: float 5s ease-in-out infinite;
  animation-delay: 1s;
}

.floating-ram {
  bottom: 20%;
  left: 30%;
  font-size: 2rem;
  color: #96FAFD;
  animation: float 5s ease-in-out infinite;
  animation-delay: 2s;
}

/* ========== CALCULADORA ========== */
.calculator {
  padding: 2rem 0 4rem;
}

.calculator-wrapper {
  background: #0f111a;
  border-radius: 28px;
  padding: 2rem;
  border: 1px solid #1e2130;
  transition: border-color 0.2s ease;
}

/* Progress Steps */
.progress-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.progress-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.step-circle {
  width: 44px;
  height: 44px;
  background: #1a1d2e;
  border: 2px solid #2a2f42;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #7e89ae;
  transition: all 0.2s ease;
}

.progress-step-item.active .step-circle {
  background: linear-gradient(135deg, #04D2FB, #027BC8);
  border-color: #04D2FB;
  color: white;
}

.progress-step-item.completed .step-circle {
  background: #027BC8;
  border-color: #04D2FB;
  color: white;
}

.step-label {
  font-size: 0.7rem;
  color: #7e89ae;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.progress-step-item.active .step-label {
  color: #04D2FB;
}

.progress-line {
  width: 50px;
  height: 2px;
  background: #2a2f42;
  margin: 0 0.5rem 1.5rem;
}

/* Questions */
.questions-container {
  min-height: 300px;
}

.question-card {
  display: none;
  animation: fadeInUp 0.3s ease forwards;
}

.question-card.active {
  display: block;
}

.question-header {
  margin-bottom: 1.8rem;
  text-align: center;
}

.question-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.question-desc {
  color: #7e89ae;
  font-size: 0.9rem;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.option {
  background: #1a1d2e;
  padding: 1rem;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid #2a2f42;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.option:hover {
  border-color: rgba(4, 210, 251, 0.4);
  background: #22263b;
  transform: translateY(-1px);
}

.option.selected {
  border-color: #04D2FB;
  background: rgba(4, 210, 251, 0.1);
}

.option-icon {
  width: 44px;
  height: 44px;
  background: rgba(4, 210, 251, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.option-icon i {
  font-size: 1.3rem;
  color: #04D2FB;
}

.option.selected .option-icon i {
  color: #04D2FB;
}

.option-content {
  flex: 1;
}

.option-title {
  display: block;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: #e2e8f0;
}

.option-desc {
  font-size: 0.7rem;
  color: #7e89ae;
}

.option.selected .option-desc {
  color: #94a3b8;
}

/* ========== RESULT CARD ========== */
.result-card {
  margin-top: 2.5rem;
  padding: 1.8rem;
  background: linear-gradient(135deg, #11131f, #0a0c16);
  border-radius: 24px;
  border: 1px solid rgba(4, 210, 251, 0.25);
  text-align: center;
  transition: all 0.2s ease;
}

.result-card:hover {
  transform: translateY(-2px);
  border-color: rgba(4, 210, 251, 0.4);
}

.result-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(4, 210, 251, 0.1);
  padding: 0.3rem 0.9rem;
  border-radius: 40px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #04D2FB;
  margin-bottom: 1.2rem;
}

.ram-display {
  margin-bottom: 0.8rem;
}

.ram-value {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, #04D2FB);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.ram-unit {
  font-size: 1.1rem;
  color: #7e89ae;
}

.ram-description {
  color: #94a3b8;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

/* Plan Suggestion Styles */
.plan-suggestion {
  margin: 1rem 0;
  padding: 1rem;
  background: rgba(4, 210, 251, 0.05);
  border-radius: 18px;
}

.plan-suggestion-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-align: left;
  flex-wrap: wrap;
}

.plan-icon {
  width: 56px;
  height: 56px;
  background: rgba(4, 210, 251, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #04D2FB;
}

.plan-details {
  flex: 1;
}

.plan-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}

.plan-specs {
  font-size: 0.8rem;
  color: #7e89ae;
}

.plan-badge {
  display: inline-block;
  background: rgba(4, 210, 251, 0.15);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.65rem;
  color: #04D2FB;
  margin-bottom: 0.3rem;
}

.plan-badge.popular-badge {
  background: linear-gradient(135deg, #04D2FB, #027BC8);
  color: white;
}

.plan-prices {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  flex-wrap: wrap;
}

.plan-price-normal {
  font-size: 0.85rem;
  color: #7e89ae;
  text-decoration: line-through;
}

.plan-price-founder {
  font-size: 1rem;
  font-weight: 600;
  color: #04D2FB;
}

.plan-action {
  margin-top: 0.5rem;
}

.btn-plan-view, .btn-plan-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  background: linear-gradient(105deg, #04D2FB, #027BC8);
  border-radius: 40px;
  text-decoration: none;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-plan-contact {
  background: rgba(4, 210, 251, 0.15);
  border: 1px solid rgba(4, 210, 251, 0.2);
}

.btn-plan-view:hover, .btn-plan-contact:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.recomendacion-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
  color: #04D2FB;
}

/* Result Features */
.result-features {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin: 1.2rem 0;
}

.result-feature {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: #7e89ae;
}

.result-feature i {
  color: #04D2FB;
}

.result-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.btn-reset, .btn-planes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.3rem;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  font-size: 0.85rem;
}

.btn-reset {
  background: rgba(255, 255, 255, 0.06);
  color: #e2e8f0;
}

.btn-reset:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.btn-planes {
  background: linear-gradient(105deg, #04D2FB, #027BC8);
  color: white;
  box-shadow: 0 2px 8px rgba(4, 210, 251, 0.2);
}

.btn-planes:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(4, 210, 251, 0.3);
}

.result-note {
  font-size: 0.7rem;
  color: #5e6a8f;
  margin-top: 0.8rem;
}

.result-note i {
  margin-right: 0.3rem;
  color: #04D2FB;
}

/* ========== TRUST BADGES ========== */
.trust-badges {
  padding: 3rem 0;
  background: #070b10;
  border-top: 1px solid rgba(4, 210, 251, 0.08);
  border-bottom: 1px solid rgba(4, 210, 251, 0.08);
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(15, 17, 26, 0.5);
  border-radius: 18px;
  transition: all 0.2s ease;
}

.badge-item:hover {
  background: rgba(15, 17, 26, 0.7);
  transform: translateY(-2px);
}

.badge-item i {
  font-size: 1.8rem;
  color: #04D2FB;
  transition: color 0.2s ease;
}

.badge-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  color: #ffffff;
}

.badge-item p {
  font-size: 0.7rem;
  color: #7e89ae;
}

/* ========== REFERENCE TABLE ========== */
.reference-table {
  padding: 4rem 0;
  background: #05070a;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  background: linear-gradient(135deg, #ffffff 0%, #04D2FB 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: #94a3b8;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: 18px;
  background: #0f111a;
  border: 1px solid #1e2130;
  transition: border-color 0.2s ease;
}

.table-wrapper:hover {
  border-color: rgba(4, 210, 251, 0.3);
}

.planes-reference-table {
  width: 100%;
  border-collapse: collapse;
}

.planes-reference-table th,
.planes-reference-table td {
  padding: 1rem 1.2rem;
  text-align: left;
}

.planes-reference-table th {
  background: #1a1d2e;
  color: #96FAFD;
  font-weight: 600;
  font-size: 0.85rem;
}

.planes-reference-table td {
  border-bottom: 1px solid #1e2130;
  color: #cbd5e6;
  font-size: 0.9rem;
}

.planes-reference-table tr:hover td {
  background: rgba(4, 210, 251, 0.03);
}

.planes-reference-table tr:last-child td {
  border-bottom: none;
}

.highlight-row {
  background: rgba(4, 210, 251, 0.04);
}

.popular-badge {
  background: linear-gradient(135deg, #04D2FB, #027BC8);
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
  font-size: 0.65rem;
  margin-left: 0.5rem;
  color: white;
}

.table-note {
  text-align: center;
  font-size: 0.75rem;
  color: #5e6a8f;
  margin-top: 1rem;
}

.table-note i {
  margin-right: 0.3rem;
  color: #04D2FB;
}

/* ========== SERVER SPLITTER MENTION ========== */
.splitter-mention {
  margin-top: 2rem;
  padding: 1.3rem;
  background: rgba(4, 210, 251, 0.04);
  border-radius: 20px;
  border: 1px solid rgba(4, 210, 251, 0.1);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  transition: all 0.2s ease;
}

.splitter-mention:hover {
  border-color: rgba(4, 210, 251, 0.25);
}

.splitter-mention-icon {
  font-size: 1.8rem;
  color: #04D2FB;
  background: rgba(4, 210, 251, 0.08);
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}

.splitter-mention-content {
  flex: 1;
}

.splitter-mention-content h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
  color: #e2e8f0;
}

.splitter-mention-content p {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 0.3rem;
}

.splitter-mention-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #04D2FB;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  transition: gap 0.2s ease;
}

.splitter-mention-link:hover {
  gap: 0.6rem;
  color: #47EEFC;
}

/* ========== CTA FINAL ========== */
.cta-calculator {
  padding: 4rem 0;
  background: radial-gradient(ellipse at 30% 40%, #0c0f1c, #020408);
  text-align: center;
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.cta-content p {
  color: #94a3b8;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-cta-primary, .btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-cta-primary {
  background: linear-gradient(105deg, #04D2FB, #027BC8);
  color: white;
  box-shadow: 0 2px 8px rgba(4, 210, 251, 0.25);
}

.btn-cta-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(4, 210, 251, 0.35);
}

.btn-cta-secondary {
  background: rgba(30, 34, 48, 0.8);
  border: 1px solid rgba(4, 210, 251, 0.25);
  color: #eef2ff;
}

.btn-cta-secondary:hover {
  border-color: #04D2FB;
  background: rgba(4, 210, 251, 0.1);
  transform: translateY(-1px);
}

/* ========== FOOTER ========== */
.footer {
  background: #020308;
  padding: 4rem 0 0;
  border-top: 1px solid rgba(4, 210, 251, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(78, 89, 138, 0.15);
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #04D2FB, #47EEFC);
}

.footer-description {
  color: #94a3b8;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(4, 210, 251, 0.08);
  border-radius: 50%;
  color: #a5b3d9;
  font-size: 1rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: #04D2FB;
  color: #05070a;
  transform: translateY(-2px);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #04D2FB;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  background: rgba(15, 17, 26, 0.8);
  border: 1px solid #262b44;
  border-radius: 12px;
  color: #eef2ff;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #04D2FB;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #5e6a8f;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.2rem;
  background: linear-gradient(105deg, #04D2FB, #027BC8);
  border: none;
  border-radius: 40px;
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.footer-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.footer-bottom {
  padding: 1.5rem 0;
}

.footer-bottom-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom p {
  color: #5e6a8f;
  font-size: 0.75rem;
  margin: 0;
}

.dmca-badge {
  display: inline-block;
}

.dmca-badge img {
  height: 24px;
  width: auto;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-visual {
    display: none;
  }
  
  .calculator-wrapper {
    padding: 1.5rem;
  }
  
  .progress-line {
    width: 30px;
  }
  
  .step-circle {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 850px) {
  .hamburger {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    flex-direction: column;
    background: rgba(5, 7, 12, 0.98);
    backdrop-filter: blur(20px);
    width: 280px;
    height: 100vh;
    padding: 80px 1.5rem 2rem;
    gap: 1rem;
    transition: left 0.3s ease;
    border-right: 1px solid rgba(4, 210, 251, 0.1);
    z-index: 999;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-links li {
    width: 100%;
  }
  
  .nav-links a {
    display: block;
    padding: 0.6rem 0;
  }
  
  .nav-links a::after {
    display: none;
  }
  
  .options-grid {
    grid-template-columns: 1fr;
  }
  
  .result-features {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }
  
  .badges-grid {
    gap: 1rem;
  }
  
  .plan-suggestion-card {
    flex-direction: column;
    text-align: center;
  }
  
  .plan-details {
    text-align: center;
  }
  
  .plan-prices {
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .container {
    padding: 0 1.2rem;
  }
  
  .calculator-hero h1 {
    font-size: 1.8rem;
  }
  
  .question-header h3 {
    font-size: 1.3rem;
  }
  
  .ram-value {
    font-size: 3rem;
  }
  
  .progress-container {
    gap: 0.3rem;
  }
  
  .progress-line {
    width: 20px;
  }
  
  .step-label {
    display: none;
  }
  
  .step-circle {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
  }
  
  .result-actions {
    flex-direction: column;
  }
  
  .btn-reset, .btn-planes {
    width: 100%;
  }
  
  .planes-reference-table th,
  .planes-reference-table td {
    padding: 0.7rem 1rem;
  }
  
  .planes-reference-table td {
    font-size: 0.8rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-cta-primary, .btn-cta-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .splitter-mention {
    text-align: center;
    flex-direction: column;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .calculator-hero h1 {
    font-size: 1.5rem;
  }
  
  .hero-badge {
    font-size: 0.7rem;
  }
  
  .hero-stat {
    font-size: 0.7rem;
  }
  
  .question-header h3 {
    font-size: 1.1rem;
  }
  
  .ram-value {
    font-size: 2.5rem;
  }
  
  .option {
    padding: 0.8rem;
  }
  
  .option-icon {
    width: 38px;
    height: 38px;
  }
  
  .option-icon i {
    font-size: 1.1rem;
  }
  
  .option-title {
    font-size: 0.85rem;
  }
  
  .badge-item {
    padding: 0.8rem;
  }
  
  .badge-item i {
    font-size: 1.5rem;
  }
  
  .section-header h2 {
    font-size: 1.5rem;
  }
  
  .cta-content h2 {
    font-size: 1.5rem;
  }
}