/* Reset y Variables */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #ff8f00;
  --primary-dark: #e67e00;
  --bg-dark: #0a0b0e;
  --bg-card: rgba(255, 255, 255, 0.05);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --border: rgba(255, 255, 255, 0.1);
}

body {
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: linear-gradient(135deg, #0a0b0e 0%, #1a1a2e 50%, #16213e 100%);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Background abstracto */
body::before {
  content: '';
  position: fixed;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 30% 50%, rgba(255, 143, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 143, 0, 0.05) 0%, transparent 50%);
  animation: rotate 30s linear infinite;
  z-index: -1;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Container principal */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-wrapper {
  width: 100%;
}

/* Hero */
.hero {
  text-align: center;
  margin-bottom: 40px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}

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

.subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--text-secondary);
  font-weight: 400;
}

/* Grid superior: 2 columnas */
.grid-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .grid-top {
    grid-template-columns: 1fr;
  }
}

/* Títulos de sección principal */
.section-title {
  text-align: center;
  margin-bottom: 24px;
  margin-top: 10px;
}

.section-title h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  display: inline-block;
  padding: 8px 24px;
  border-radius: 8px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.section-title.paid h2 {
  background: rgba(255, 143, 0, 0.1);
  border: 1px solid rgba(255, 143, 0, 0.3);
}

/* Subtítulos de sección */
.section h2,
.section h3 {
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--text-primary);
  font-weight: 600;
}

/* Wrapper de tool card (contiene todo) */
.tool-card-wrapper {
  position: relative;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  height: 110px;
}

.tool-card-wrapper.disabled-wrapper {
  opacity: 0.6;
}

/* Tutorial link arriba a la derecha */
.tool-card-wrapper .tutorial-link-small {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  background: rgba(255, 143, 0, 0.2);
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(255, 143, 0, 0.3);
  cursor: pointer;
}

.tool-card-wrapper .tutorial-link-small:hover {
  background: rgba(255, 143, 0, 0.35);
  transform: scale(1.08);
  box-shadow: 0 0 18px rgba(255, 143, 0, 0.5);
}

.tool-card-wrapper .tutorial-link-small.webinar {
  animation: pulse-webinar 2s ease-in-out infinite;
}

@keyframes pulse-webinar {
  0%,
  100% {
    box-shadow: 0 0 12px rgba(255, 143, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 143, 0, 0.7);
  }
}

.tool-card-wrapper .tutorial-link-small.disabled {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.3);
  opacity: 0.4;
  box-shadow: none;
  animation: none;
}

/* Cards de GPT Tools */
.tool-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  padding-right: 130px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  flex: 1;
  height: 80px;
}

.tool-card:not(.disabled):hover {
  background: rgba(255, 143, 0, 0.15);
  border-color: var(--primary);
  border-width: 2px;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 143, 0, 0.3);
}

/* Price info abajo a la derecha */
.tool-price-info {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
}

.tool-price-info.free {
  color: #4caf50;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.tool-price-info.trial {
  color: var(--primary);
  background: rgba(255, 143, 0, 0.1);
  border: 1px solid var(--primary);
}

.tool-price-info.price {
  color: #2196f3;
  background: rgba(33, 150, 243, 0.1);
  border: 1px solid rgba(33, 150, 243, 0.3);
}

.tool-card.featured {
  border-color: var(--primary);
  background: rgba(255, 143, 0, 0.08);
}

.tool-card.featured:hover {
  background: rgba(255, 143, 0, 0.15);
  border-color: var(--primary);
}

.tool-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.tool-logo {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 4px;
}

.tool-content {
  flex: 1;
  min-width: 0;
  padding-right: 8px;
  overflow: hidden;
}

.tool-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.tool-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: var(--primary);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  display: block;
  margin-bottom: 4px;
  transition: all 0.3s ease;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}

.tool-name:hover {
  color: #ffb300;
  text-decoration-color: #ffb300;
  text-decoration-thickness: 3px;
  transform: translateX(5px);
  text-shadow: 0 0 8px rgba(255, 143, 0, 0.5);
}

.tool-name-disabled {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  display: block;
  margin-bottom: 4px;
  opacity: 0.5;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  text-decoration: none;
}

.tool-content p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.tool-arrow {
  font-size: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

/* Estado deshabilitado */
.tool-card.disabled {
  border-style: dashed;
}

.tool-card.disabled:hover {
  transform: none;
  background: var(--bg-card);
  border-color: var(--border);
}

.tool-card.disabled .tool-icon {
  opacity: 0.5;
}

.tool-card.disabled .tool-content p {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

/* Cards de Recomendadas */
.rec-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.rec-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(4px);
}

.rec-card.featured {
  border-color: var(--primary);
  background: rgba(255, 143, 0, 0.08);
}

.rec-card.featured:hover {
  background: rgba(255, 143, 0, 0.15);
  border-color: var(--primary);
}

.rec-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.rec-content {
  flex: 1;
}

.rec-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.rec-content p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.rec-link {
  font-size: 20px;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.rec-card.featured .rec-link {
  color: var(--primary);
}

/* Grid de herramientas pagadas (2 columnas) */
.grid-paid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .grid-paid {
    grid-template-columns: 1fr;
  }
}

.automation-card.featured {
  border-color: var(--primary);
  background: rgba(255, 143, 0, 0.08);
}

.automation-card:hover {
  background: rgba(255, 143, 0, 0.15);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 143, 0, 0.2);
}

.automation-icon {
  font-size: 36px;
  flex-shrink: 0;
}

.automation-content {
  flex: 1;
}

.automation-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.automation-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.automation-link {
  font-size: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

/* Card de herramienta pagada */
.tool-card.paid {
  border-color: rgba(33, 150, 243, 0.3);
  background: rgba(33, 150, 243, 0.05);
}

.tool-card.paid:hover {
  background: rgba(33, 150, 243, 0.1);
  border-color: rgba(33, 150, 243, 0.5);
}

/* Link de tutorial */
.tutorial-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-top: 12px;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  transition: all 0.3s ease;
}

.tutorial-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  color: var(--text-primary);
  transform: translateX(4px);
}

.tutorial-link.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.tutorial-link .link-arrow {
  color: var(--primary);
  font-size: 16px;
}

/* Link de tutorial pequeño (arriba a la derecha) */
.tutorial-link-small {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 6px;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 12px;
  white-space: nowrap;
  transition: all 0.2s ease;
  display: inline-block;
}

.tutorial-link-small:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary);
  color: var(--text-primary);
  transform: scale(1.05);
}

.tutorial-link-small.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.03);
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

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

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.modal-content {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  margin: 5% auto;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 16px;
  width: 90%;
  max-width: 700px;
  position: relative;
  animation: slideIn 0.3s ease;
}

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

.close {
  color: var(--text-secondary);
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 32px;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s;
}

.close:hover {
  color: var(--primary);
}

.modal h2 {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.modal textarea,
.modal input,
.modal select {
  width: 100%;
  padding: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  margin-bottom: 16px;
  resize: vertical;
}

.modal textarea:focus,
.modal input:focus,
.modal select:focus {
  outline: none;
  border-color: var(--primary);
}

.modal label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
}

.btn-generate {
  background: linear-gradient(90deg, var(--primary) 0%, #ffb300 100%);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.btn-generate:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 143, 0, 0.3);
}

.btn-generate:active {
  transform: translateY(0);
}

.result-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  margin-top: 20px;
  white-space: pre-wrap;
  line-height: 1.6;
  max-height: 300px;
  overflow-y: auto;
}

/* Salto de línea mobile */
.mobile-break {
  display: none;
}

/* Sección WhatsApp CTA */
.whatsapp-cta {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(37, 211, 102, 0.08));
  border: 2px solid rgba(37, 211, 102, 0.4);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  margin: 40px auto;
  max-width: 100%;
}

.whatsapp-cta h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 20px 0;
  line-height: 1.5;
  padding: 0 10px;
}

.whatsapp-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
  color: #ffffff !important;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none !important;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.whatsapp-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  background: linear-gradient(135deg, #128c7e, #25d366) !important;
  color: #ffffff !important;
}

.whatsapp-button svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: currentColor;
}

/* Sección Webinars */
.webinars-section {
  width: 100%;
  margin: 50px 0 40px 0;
}

.webinars-section .section-title.webinar-section {
  margin-top: 0 !important;
  margin-bottom: 30px !important;
}

.webinars-section .section-title.webinar-section h2 {
  background: linear-gradient(90deg, var(--primary) 0%, #ffb300 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-size: 28px !important;
  font-weight: 700 !important;
}

.webinars-section .grid-webinars {
  display: table !important;
  width: 100% !important;
  table-layout: fixed !important;
  border-collapse: separate !important;
  border-spacing: 20px 0 !important;
  margin: 0 0 40px 0 !important;
  padding: 0 !important;
}

.webinars-section .grid-webinars > .webinar-card {
  display: table-cell !important;
  vertical-align: top !important;
  width: 33.333% !important;
}

.webinars-section .webinar-card {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  border-radius: 16px !important;
  padding: 24px !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  flex-direction: column !important;
  box-sizing: border-box !important;
  min-height: 200px !important;
}

.webinars-section .webinar-card:hover {
  border-color: var(--primary) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 25px rgba(255, 143, 0, 0.2) !important;
}

.webinars-section .webinar-header {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  margin-bottom: 20px !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid var(--border) !important;
}

.webinars-section .webinar-icon {
  font-size: 40px !important;
  flex-shrink: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.webinars-section .webinar-icon.whatsapp-icon svg {
  width: 40px !important;
  height: 40px !important;
}

.webinars-section .webinar-title {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--text-primary) !important;
  line-height: 1.3 !important;
  margin: 0 !important;
  flex: 1 !important;
}

.webinars-section .webinar-info {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  margin-bottom: 20px !important;
}

.webinars-section .webinar-date {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--primary) !important;
  background: rgba(255, 143, 0, 0.1) !important;
  padding: 10px 14px !important;
  border-radius: 8px !important;
  border-left: 3px solid var(--primary) !important;
  margin-bottom: 4px !important;
}

.webinars-section .webinar-speaker-inline {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 10px 14px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border-radius: 8px !important;
  border-left: 3px solid var(--primary) !important;
}

.webinars-section .speaker-label {
  font-size: 11px !important;
  color: var(--text-secondary) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  font-weight: 600 !important;
}

.webinars-section .speaker-name {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--primary) !important;
}

.webinars-section .speaker-role {
  font-size: 13px !important;
  color: var(--text-secondary) !important;
  font-style: italic !important;
}

.webinars-section .webinar-cta {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  background: linear-gradient(135deg, var(--primary), #ffb300) !important;
  color: #ffffff !important;
  padding: 14px 24px !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(255, 143, 0, 0.3) !important;
  margin-top: 16px !important;
  cursor: pointer !important;
  border: none !important;
}

.webinars-section .webinar-cta:hover {
  transform: translateY(-2px) scale(1.03) !important;
  box-shadow: 0 6px 20px rgba(255, 143, 0, 0.5) !important;
  background: linear-gradient(135deg, #ffb300, var(--primary)) !important;
  color: #ffffff !important;
}

/* Botón Ver Grabación (color azul/morado) */
.webinars-section .webinar-cta-replay {
  background: linear-gradient(135deg, #667eea, #764ba2) !important;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3) !important;
}

.webinars-section .webinar-cta-replay:hover {
  background: linear-gradient(135deg, #764ba2, #667eea) !important;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5) !important;
}

/* Responsive */
@media (max-width: 768px) {
  .mobile-break {
    display: inline;
  }

  .container {
    padding: 16px;
    justify-content: flex-start;
    padding-top: 30px;
  }

  .hero {
    margin-bottom: 30px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .section h2 {
    font-size: 16px;
    margin-bottom: 14px;
  }

  .section h3 {
    font-size: 16px;
    margin-bottom: 14px;
    line-height: 1.4;
  }

  .tool-card-wrapper {
    height: 110px;
  }

  .tool-card,
  .rec-card {
    padding: 14px;
    padding-right: 100px;
    gap: 12px;
    height: 80px;
  }

  .tool-icon,
  .rec-icon {
    font-size: 24px;
  }

  .tool-content h3,
  .rec-content h3 {
    font-size: 14px;
  }

  .tool-content p,
  .rec-content p {
    font-size: 12px;
  }

  .tool-name {
    font-size: 14px;
  }

  .tool-name-disabled {
    font-size: 14px;
  }

  .whatsapp-cta {
    padding: 24px 16px;
    margin: 30px 0;
  }

  .whatsapp-cta h3 {
    font-size: 17px;
    margin-bottom: 16px;
    padding: 0 5px;
    line-height: 1.5;
  }

  .whatsapp-button {
    padding: 14px 20px;
    font-size: 14px;
    gap: 10px;
  }

  .whatsapp-button svg {
    width: 20px;
    height: 20px;
  }

  .webinars-section .grid-webinars {
    display: block !important;
    border-spacing: 0 !important;
    margin: 0 0 30px 0 !important;
  }

  .webinars-section .grid-webinars > .webinar-card {
    display: block !important;
    width: 100% !important;
    margin: 0 0 20px 0 !important;
  }

  .webinars-section .webinar-card {
    padding: 20px !important;
  }

  .webinars-section .webinar-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }

  .webinars-section .webinar-icon {
    font-size: 36px !important;
  }

  .webinars-section .webinar-icon.whatsapp-icon svg {
    width: 36px !important;
    height: 36px !important;
  }

  .webinars-section .webinar-title {
    font-size: 16px !important;
    line-height: 1.4 !important;
  }

  .webinars-section .webinar-speaker-inline {
    padding: 8px 12px !important;
    gap: 6px !important;
  }

  .webinars-section .speaker-name {
    font-size: 14px !important;
  }

  .webinars-section .speaker-role {
    font-size: 12px !important;
  }

  .webinars-section .webinar-cta {
    padding: 12px 20px !important;
    font-size: 14px !important;
  }

  .tutorial-link-small {
    font-size: 11px;
    padding: 4px 8px;
    top: 8px;
    right: 8px;
  }

  .tool-price-info {
    font-size: 11px;
    padding: 4px 8px;
    bottom: 8px;
    right: 8px;
  }

  .modal-content {
    width: 95%;
    margin: 10% auto;
    padding: 24px;
  }

  .modal h2 {
    font-size: 24px;
  }
}

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

  .subtitle {
    font-size: 16px;
  }

  .tool-card-wrapper {
    height: 110px;
  }

  .tool-card {
    padding-right: 95px;
    height: 80px;
  }

  .tool-content h3,
  .tool-name {
    font-size: 13px;
  }

  .tool-content p {
    font-size: 11px;
  }

  .tutorial-link-small {
    font-size: 10px;
    padding: 3px 6px;
    top: 6px;
    right: 6px;
  }

  .tool-price-info {
    font-size: 10px;
    padding: 3px 6px;
    bottom: 6px;
    right: 6px;
    max-width: 90px;
    line-height: 1.2;
  }
}
