/* ============================================================
   TRYNERS LANDING PAGE — styles.css
   Unificado desde todas las secciones del builder de Hostinger
   ============================================================ */

/* ── Reset base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ── Variables globales ── */
:root {
  --primary:        #6942ff;
  --primary-light:  #9b8aff;
  --very-light:     #d8d3ff;
  --secondary:      #efecff;
  --primary-soft:   #F0EEFF;
  --purple-mid:     #6C5CE7;
  --text-dark:      #1a1a2e;
  --text-mid:       #555570;
  --text-gray:      #666680;
  --text-muted:     #444460;
  --bg-light:       #f7f7fb;
  --error-red:      #ff4d4f;
  --white:          #ffffff;
  --border-light:   #E0DCFF;

  /* Espaciado uniforme entre secciones — mobile first */
  --section-gap: 60px;
}

@media (min-width: 992px) {
  :root { --section-gap: 100px; }
}

/* ── Espaciado uniforme entre todas las secciones ── */
body > section,
body > div,
body > footer {
  margin-top: var(--section-gap);
}

/* Hero es el primer elemento: sin margen superior */
body > section.hero { margin-top: 0; }

/* Pains (sección 2) — en desktop el hero ya tiene padding generoso,
   reducimos el gap para que no quede excesivo */
@media (min-width: 992px) {
  #pains-section-container { margin-top: 40px; }
}

/* ── BOTONES — estilo único compartido ─────────────────────────
   Aplica a: .btn-primary-xl  .btn-pains-final  .btn-free-trial  .pricing-btn
   ──────────────────────────────────────────────────────────── */
.btn-primary-xl,
.btn-pains-final,
.btn-free-trial,
.pricing-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 420px;
  height: 56px;
  padding: 0 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  background-color: var(--primary);
  border: none;
  border-radius: 20px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  /* Centrar cuando está solo */
  margin-left: auto;
  margin-right: auto;
}

.btn-primary-xl:hover,
.btn-pains-final:hover,
.btn-free-trial:hover,
.pricing-btn:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

.btn-primary-xl:active,
.btn-pains-final:active,
.btn-free-trial:active,
.pricing-btn:active {
  transform: scale(0.98);
}

/* Pricing: ancho completo dentro de la card */
.pricing-btn {
  max-width: 100%;
  margin: 0;
}

/* Enterprise: fondo oscuro */
.pricing-btn[data-plan="enterprise"] {
  background-color: #333;
}
.pricing-btn[data-plan="enterprise"]:hover {
  background-color: #555;
}

/* CTA Final: botón blanco sobre fondo primario — máximo contraste */
.btn-free-trial {
  background-color: var(--white);
  color: var(--primary);
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.btn-free-trial:hover {
  background-color: var(--very-light);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--white);
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  font-family: 'Poppins', sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

.hero-text { text-align: center; }

.hero-logo {
  max-width: 140px;
  height: auto;
  margin: 0 auto 40px;
  display: block;
}

.hero-title {
  font-size: clamp(24px, 7vw, 44px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(16px, 3.5vw, 20px);
  color: var(--text-mid);
  line-height: 1.4;
  max-width: 580px;
  margin: 0 auto 32px;
}

.trust {
  margin-top: 15px;
  font-size: 10px;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-align: center;
}

.hero-image {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100% !important;
  max-width: 600px;
  height: auto !important;
  border-radius: 24px;
  display: block;
}

@media (min-width: 992px) {
  .hero                { padding: 100px 40px 120px; }
  .hero-content        { grid-template-columns: 1.1fr 0.9fr; gap: 60px; }
  .hero-text           { text-align: left; }
  .hero-logo           { margin: 0 0 60px 0; }
  .hero-subtitle       { margin: 0 0 32px 0; }
  .btn-primary-xl.hero-btn { margin: 32px 0 0 0; width: fit-content; min-width: 280px; }
  .trust               { text-align: left; }
}

/* ============================================================
   PAINS
   ============================================================ */
#pains-section-container {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-light);
  padding: 48px 20px;
  border-radius: 24px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  contain: layout;
}

.tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--purple-mid);
  text-transform: uppercase;
  margin-bottom: 16px;
}

#pains-section-container h2 {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 40px;
  line-height: 1.2;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

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

.problem-card {
  display: flex;
  align-items: flex-start;
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #ececf2;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.problem-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.problem-icon {
  min-width: 26px;
  height: 26px;
  background: #ffe5e5;
  color: var(--error-red);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 15px;
  font-size: 16px;
  font-weight: bold;
  flex-shrink: 0;
}

.problem-text {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

.sub-cta-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--primary);
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 30px;
}

.arrow-circle {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  aspect-ratio: 1 / 1;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  flex-shrink: 0;
}

/* margen superior al botón dentro de pains */
#pains-section-container .btn-pains-final {
  margin-top: 0;
}

/* ============================================================
   BENEFITS
   ============================================================ */
.tn-benefits {
  font-family: 'Poppins', sans-serif;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-dark);
  padding: 0 20px;
}

.tn-header { text-align: center; margin-bottom: 72px; contain: layout; }

.tn-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--purple-mid);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.tn-title {
  font-size: clamp(24px, 5vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  max-width: 560px;
  margin: 0 auto;
}

.tn-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 96px;
}

.tn-block:last-of-type { margin-bottom: 0 !important; }

.tn-block.rev { direction: rtl; }
.tn-block.rev > * { direction: ltr; }

.tn-copy { display: flex; flex-direction: column; gap: 16px; }

.tn-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--purple-mid);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tn-b-title { font-size: clamp(22px, 3vw, 30px); font-weight: 600; line-height: 1.25; margin: 0; }
.tn-b-sub   { font-size: 16px; color: var(--text-mid); line-height: 1.7; margin: 0; }

.tn-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-soft);
  color: var(--purple-mid);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  width: fit-content;
}
.tn-tag::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--purple-mid); }

.tn-img img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .tn-header   { margin-bottom: 40px; }
  .tn-block    { gap: 28px; margin-bottom: 56px; direction: ltr !important; }
  .tn-block:last-of-type { margin-bottom: 0 !important; }
  .tn-img      { order: -1; }
}

@media (min-width: 1024px) {
  .tn-benefits { padding: 0 40px; max-width: 1280px; }
  .tn-block    { grid-template-columns: 1fr 1fr; gap: 100px; margin-bottom: 140px; }
  .tn-img img  { border-radius: 12px; }
  .tn-num      { width: 48px; height: 48px; font-size: 18px; }
  .tn-benefits .btn-primary-xl { width: 60%; margin-left: 0; }
}

/* ============================================================
   STATS (Autoridad / Credibilidad)
   ============================================================ */
#custom-stats-block {
  background-color: var(--primary);
  font-family: 'Poppins', sans-serif;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
  max-width: 1100px;
  gap: 40px;
  margin: 0 auto;
}

.stat-card {
  flex: 1;
  min-width: 250px;
  text-align: center;
  color: var(--white);
}

.stat-val {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -1.5px;
}

.stat-desc {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
  line-height: 1.4;
}

@media (max-width: 768px) {
  #custom-stats-block { padding: 60px 10px; }
  .stat-val  { font-size: 45px; }
  .stat-desc { font-size: 14px; }
}

/* ============================================================
   ONBOARDING
   ============================================================ */
.onboarding-section {
  font-family: 'Poppins', sans-serif;
  padding: 0 20px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.onboarding-header { text-align: center; margin-bottom: 48px; }

.onboarding-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--purple-mid);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.onboarding-title {
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 12px;
}

.onboarding-subtitle {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

.steps { display: flex; flex-direction: column; gap: 0; }

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
}

.step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 44px;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
}

.step:nth-child(1) .step-number { background: #E8E4FF; color: var(--purple-mid); }
.step:nth-child(2) .step-number { background: var(--purple-mid); color: var(--white); }
.step:nth-child(3) .step-number { background: var(--text-dark); color: var(--white); }

.step-line {
  width: 2px;
  flex: 1;
  min-height: 40px;
  background: #E8E4FF;
  margin: 6px 0;
  z-index: 1;
}
.step-last .step-line { display: none; }

.step-right { padding-bottom: 40px; flex: 1; }
.step-last .step-right { padding-bottom: 0; }

.step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  padding-top: 10px;
  line-height: 1.3;
}

.step-desc {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 12px;
}

.step-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

.step:nth-child(1) .step-badge { background: var(--primary-soft); color: var(--purple-mid); }
.step:nth-child(2) .step-badge { background: var(--primary-soft); color: var(--purple-mid); }
.step:nth-child(3) .step-badge { background: var(--text-dark); color: var(--white); }

.onboarding-section .btn-primary-xl { margin-top: 40px; }

@media (min-width: 768px) {
  .onboarding-section .btn-primary-xl { width: 60%; }
}

@media (min-width: 992px) {
  .onboarding-section {
    max-width: 1100px;
    padding: 0 40px;
  }
  .steps {
    flex-direction: row;
    gap: 40px;
    align-items: stretch;
  }
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
  }
  .step-left {
    width: 100%;
    margin-bottom: 24px;
  }
  .step-line {
    width: 100%;
    height: 2px;
    min-height: auto;
    position: absolute;
    top: 22px;
    left: 50%;
    margin: 0;
  }
  .step-right  { padding-bottom: 0; }
  .step-title  { padding-top: 0; font-size: 19px; }
  .step-desc   { min-height: 60px; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  font-family: 'Poppins', sans-serif;
  padding: 0 20px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-header { text-align: center; margin-bottom: 56px; }

.testimonials-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--purple-mid);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.testimonials-title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.testimonial-card {
  background: var(--white);
  border: 0.5px solid var(--border-light);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card.featured { border: 1.5px solid var(--purple-mid); }

.stars { color: #F4C430; font-size: 16px; letter-spacing: 3px; }
.stars.four::after { content: "★"; color: #ddd; }

.quote { font-size: 14px; color: var(--text-muted); line-height: 1.75; flex: 1; }

.author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 0.5px solid var(--primary-soft);
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--purple-mid);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author strong { display: block; font-size: 14px; font-weight: 600; color: var(--text-dark); }
.author span   { font-size: 12px; color: #888; }

.scroll-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #bbb;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 16px;
}

.testimonials-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.testimonials-scroll::-webkit-scrollbar { height: 4px; }
.testimonials-scroll::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 10px; }

.testimonials-scroll .testimonial-card {
  min-width: 280px;
  max-width: 280px;
  scroll-snap-align: start;
  border-radius: 12px;
}

.testimonials-section .btn-primary-xl { margin-top: 40px; }

@media (max-width: 768px) {
  .featured-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonials-scroll .testimonial-card { min-width: 260px; max-width: 260px; }
  .testimonials-section .btn-primary-xl  { width: 100%; }
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section {
  background: var(--bg-light);
  padding: 48px 20px;
  border-radius: 24px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-dark);
}

.pricing-header {
  text-align: center;
  margin-bottom: 50px;
}

.pricing-header h2 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--purple-mid);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pricing-header p {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  text-wrap: balance;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border: 1px solid #d8d3ff;
  border-radius: 24px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover { transform: translateY(-5px); }

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 8px;
  white-space: nowrap;
}

.plan-name   { font-size: 22px; font-weight: 600; margin-bottom: 8px; }
.plan-desc   { font-size: 15px; color: #4D5562; margin-bottom: 24px; line-height: 1.4; }

.price-container {
  display: flex;
  align-items: baseline;
  margin-bottom: 30px;
  height: 60px;
}

.price-symbol { font-size: 28px; font-weight: 700; }
.price-number { font-size: 48px; font-weight: 800; }
.price-number.price-custom { font-size: 32px; }
.price-period { font-size: 14px; color: #777; margin-left: 4px; }

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  flex-grow: 1;
}

.features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #333;
}

.features li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 800;
  flex-shrink: 0;
}

/* pricing-btn ya definido en el bloque global de botones */
.enterprise-card { border-color: #e0e0e0; background: #fafafa; }

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
/* ============================================================
   FAQs
   ============================================================ */
.faq-section {
  font-family: 'Poppins', sans-serif;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  text-align: center;
}

.faqs-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--purple-mid);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.faqs-title {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 40px;
}

.faq-item {
  background: var(--white);
  margin-bottom: 12px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  text-align: left;
}

.faq-item:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif;
}

.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--purple-mid);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 14.5px;
  color: #555;
  line-height: 1.65;
  text-align: left;
  transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 240px;
  padding-bottom: 20px;
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

@media (max-width: 480px) {
  .faq-question { font-size: 14.5px; padding: 16px 18px; }
}

/* ============================================================
   CTA FINAL
   ============================================================ */
#cta-boost {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at center, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 40%, transparent 75%), var(--primary);
  padding: 80px 20px;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.cta-inner {
  max-width: 820px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  text-wrap: balance;
}

.cta-inner p {
  font-size: clamp(16px, 2vw, 18px);
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.6;
  opacity: 0.95;
}

/* btn-free-trial ya definido en el bloque global de botones */
/* En CTA el botón va centrado con margen auto — heredado del bloque global */

.cta-note {
  margin-top: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  opacity: 0.8;
  text-transform: uppercase;
}

/* Footer sin margen superior: el CTA final va pegado a él */
body > footer.footer-tryners {
  margin-top: 0;
}
.footer-tryners {
  background-color: #000;
  color: var(--white);
  padding: 40px 20px;
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-logo {
  width: 160px;
  height: auto;
  display: block;
}

.footer-copy {
  font-size: 14px;
  line-height: 1.5;
  color: #ccc;
  margin: 0;
  font-weight: 400;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: opacity 0.2s ease;
}

.footer-link:hover { opacity: 0.7; }

@media (max-width: 768px) {
  .footer-container { flex-direction: column; gap: 30px; }
  .footer-logo      { width: 140px; }
  .footer-right     { gap: 12px; }
}
