@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700;800&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');
.material-symbols-rounded {
  font-family: 'Material Symbols Rounded';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -moz-font-feature-settings: 'liga';
}
.icon-circle .material-symbols-rounded {
  color: #6225b5; 
  font-size: 36px; 
}



:root {
  --primary: #432861;
  --primary-2: #5b21b6;
  --accent: #cf6ff0;
  --lilac: #b49bdf;
  --pale: #f7eefd;
  --pale-2: #fbf7fe;
  --white: #ffffff;
  --text: #2F2C45;
  --muted: #6f6a82;
  --line: #e9ddf3;
  --gradient: linear-gradient(90deg, #432861 0%, #9747ff 50%, #cf6ff0 100%);
  --soft-gradient: linear-gradient(135deg, #ffffff 0%, #f7eefd 100%);
  --shadow: 0 26px 60px rgba(67, 40, 97, 0.14);
  --radius: 24px;
  --container: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    "Rubik",
    system-ui,
    -apple-system,
    Segoe UI,
    sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}
.header {
  position: sticky;
  top: 0;
  z-index: 2147483647;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(233, 221, 243, 0.55);
}
.nav {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0.08em;
  color: var(--primary);
}
.logo img {
  width: 140px;
}
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 15px;
  color: #28243a;
}
.nav-links a {
  position: relative;
}
.nav-links a.active,
.nav-links a:hover {
  color: var(--primary-2);
  font-weight: 600;
}
.nav-links a.active:after,
.nav-links a:hover:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.menu-btn {
  display: none;
  border: 0;
  background: var(--pale);
  color: var(--primary);
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
}
.menu-btn .material-symbols-rounded {
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@keyframes menu-icon-swap {
  0%   { transform: scale(1) rotate(0deg);   opacity: 1; }
  50%  { transform: scale(0) rotate(90deg);  opacity: 0; }
  100% { transform: scale(1) rotate(0deg);   opacity: 1; }
}
.menu-btn.animating .material-symbols-rounded {
  animation: menu-icon-swap 0.3s ease forwards;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 14px;
  padding: 14px 24px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
  min-height: 48px;
}
.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 14px 30px rgba(151, 71, 255, 0.22);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(151, 71, 255, 0.32);
  filter: brightness(1.08);
}
.btn-primary:active {
  transform: translateY(1px) scale(0.97);
  box-shadow: 0 6px 16px rgba(151, 71, 255, 0.28);
  filter: brightness(0.95);
}
.btn-outline {
  background: white;
  border: 1.5px solid #7c3aed;
  color: var(--primary-2);
}
.btn-outline:hover {
  background: var(--gradient);
  border-color: transparent;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.12);
}
.btn-outline:active {
  transform: translateY(1px) scale(0.97);
  background: var(--primary);
  border-color: transparent;
  color: white;
  box-shadow: none;
}
.badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 64px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.42em;
  font-size: 18px;
  margin-bottom: 16px;
}
h1,
h2,
h3 {
  line-height: 1.08;
  color: var(--primary);
  margin: 0 0 18px;
}
h1 {
  font-size: clamp(40px, 5.5vw, 65px);
  letter-spacing: -0.055em;
  font-weight: 800;
}
h2 {
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: -0.04em;
  font-weight: 800;
}
h3 {
  font-size: 22px;
  font-weight: 800;
}
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  font-size: 20px;
  color: var(--text);
  max-width: 620px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 32px 0 26px;
}
.phone-scene {
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blob {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f2cbff, #cf6ff0);
  right: 5%;
  top: 22px;
  z-index: 0;
}
.dots {
  position: absolute;
  width: 150px;
  height: 190px;
  right: 4%;
  bottom: 28px;
  background-image: radial-gradient(#d6b5ef 2px, transparent 2px);
  background-size: 18px 18px;
  opacity: 0.7;
}
.phone {
  width: 220px;
  height: 440px;
  background: #111;
  border: 8px solid #222;
  border-radius: 36px;
  box-shadow: 0 28px 48px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.phone:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 20px;
  background: #050505;
  border-radius: 12px;
  z-index: 2;
}
.phone.front {
  transform: rotate(8deg) translateX(-18px);
  background: white;
}
.phone.back {
  transform: rotate(10deg) translateX(-42px);
  background: linear-gradient(160deg, #2b1548, #5b21b6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.phone-ui {
  padding: 42px 14px 14px;
  color: var(--primary);
}
.phone-ui .top {
  font-size: 11px;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
}
.memory-card {
  height: 100px;
  border-radius: 14px;
  background: linear-gradient(160deg, #f4a36e, #7895ad);
  margin: 16px 0;
}
.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.mini-card {
  height: 92px;
  border-radius: 12px;
  background: linear-gradient(160deg, #efb47e, #ab86ee);
}
.phone-cta {
  height: 38px;
  border-radius: 12px;
  background: var(--gradient);
  color: white;
  font-size: 11px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.phone-logo {
  text-align: center;
}
.phone-logo img {
  width: 200px;
  margin: auto;
}
.phone .btn-outline:hover,
.phone .btn-outline:active {
  background: white;
  border-color: #7c3aed;
  color: var(--primary-2);
  transform: none;
  box-shadow: none;
  filter: none;
  cursor: default;
}
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 46px;
  background: linear-gradient(90deg, #faeeff, #f3ddfb);
  padding: 28px;
  border-radius: 22px;
}
.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ebd4fa;
  color: #6225b5;
  display: grid;
  place-items: center;
  font-size: 28px;
  flex: none;
  margin: 0 auto 16px auto;
}
.strip-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.strip-item .icon-circle {
  margin: 0;
  flex-shrink: 0;
}
.strip-item h3 {
  font-size: 17px;
  margin: 0 0 2px;
}
.strip-item p {
  font-size: 13px;
  margin: 0;
  color: var(--muted);
}
.section {
  padding: 86px 0;
}
.section.center {
  text-align: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}
.card {
  background: #F8F2FD;
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: 0 8px 26px #4328610d;
}
.feature-card {
  text-align: center;
  padding: 34px 24px;
}
.feature-card .icon-circle {
  margin: 0 auto 18px;
}
.cta-banner {
  margin: 48px 0 36px;
  padding: 32px 42px;
  border-radius: 22px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: white;
  box-shadow: var(--shadow);
}
.cta-banner > img {
  width: 76px;
  filter: drop-shadow(0 8px 18px rgba(255, 255, 255, 0.25));
}
.cta-banner h3 {
  color: white;
  margin: 0 0 5px;
}
.cta-banner p {
  margin: 0;
  opacity: 0.95;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.stat {
  text-align: center;
  border-right: 1px solid var(--line);
}
.stat:last-child {
  border-right: 0;
}
.stat b {
  display: block;
  font-size: 42px;
  color: #7c3aed;
  line-height: 1;
}
.stat span {
  color: var(--muted);
}
.page-hero {
  padding: 90px 0 56px;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.page-hero-grid img {
  width: 80%;
  max-width: 500px;
  height: auto;
  justify-self: center;
}
.page-hero-grid p {
  text-align: justify;
}
.legal-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 44px;
  align-items: start;
}
.sidebar {
  position: sticky;
  top: 116px;
  background: #F8F2FD;
  border-radius: 20px;
  padding: 22px;
}
.sidebar h3 {
  font-size: 20px;
}
.side-link {
  display: block;
  padding: 13px 14px;
  border-radius: 10px;
  color: var(--text);
  font-size: 14px;
}
.side-link.active,
.side-link:hover {
  background: #f1dbfc;
  color: var(--primary-2);
  font-weight: 700;
}
.legal-content {
  border-top: 1px solid var(--line);
}
.legal-item {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.legal-item p {
  margin: 0;
  color: var(--text);
}
.accordion {
  display: grid;
  gap: 14px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-item.open {
  border-color: var(--primary-2);
  box-shadow: 0 4px 18px rgba(106, 27, 154, 0.1);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: white;
  border: 0;
  padding: 22px 26px;
  color: var(--primary-2);
  font-weight: 800;
  font-size: 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.25s ease;
}
.faq-q:hover {
  background: #f9f5ff;
}
.faq-item.open .faq-q {
  background: #f3e8ff;
}
.faq-q span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ede9fe;
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.25s ease;
}
.faq-item.open .faq-q span {
  transform: rotate(180deg);
  background: var(--primary-2);
  color: white;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 26px;
  color: var(--text);
  transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 300px;
  opacity: 1;
  padding: 0 26px 22px;
}
.faq-no-results {
  text-align: center;
  color: var(--text-muted, #888);
  padding: 24px 0;
}
.form {
  display: grid;
  gap: 16px;
}
.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1.5px solid #c9a7f4;
  border-radius: 10px;
  padding: 16px;
  font: inherit;
  color: var(--text);
  background: white;
  outline: none;
  transition: 
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.form input:focus,
.form textarea:focus,
.form select:focus,
.form input:focus-visible,
.form textarea:focus-visible,
.form select:focus-visible {
  outline: none;
  border-color: var(--primary-2);
  background-color: white;
  box-shadow: 
    0 0 0 4px rgba(207, 111, 240, 0.25),
    0 10px 24px rgba(91, 33, 182, 0.12);
  transform: translateY(-1px);
}

.form textarea {
  min-height: 150px;
  resize: vertical;
}
.contact-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin: 22px 0;
}
.contact-row h3 {
  font-size: 18px;
  margin: 0 0 2px;
}
.contact-row p {
  margin: 0;
  color: var(--text);
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.feature-row {
  display: flex;
  align-items: center;
  gap: 22px;
}
.feature-row .icon-circle {
  margin: 0;
  flex-shrink: 0;
}
.feature-row h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
}
.feature-row p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.searchbar {
  display: flex;
  align-items: center;
  border: 1.5px solid #c9a7f4;
  border-radius: 12px;
  padding: 14px 18px;
  margin: 32px 0;
}
.searchbar input {
  border: 0;
  outline: 0;
  font: inherit;
  width: 100%;
}
.footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  color: var(--muted);
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.social {
  display: flex;
  gap: 18px;
  font-size: 24px;
  color: var(--primary-2);
}
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.cookie-banner.hide {
  display: none;
}
.notfound h1 {
  font-size: 150px;
  margin-bottom: 0;
}
.map {
  height: 330px;
  border-radius: 20px;
  background: linear-gradient(45deg, #eef3f8, #fff);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.map:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#dbe6ef 1px, transparent 1px),
    linear-gradient(90deg, #dbe6ef 1px, transparent 1px);
  background-size: 38px 38px;
  z-index: -1;
}
@media (max-width: 980px) {
  .menu-btn {
    display: inline-flex;
  }
  .nav-links {
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    background: white;
    display: none;
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open {
    display: flex;
  }
  .hero-grid,
  .page-hero-grid,
  .grid-2,
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .page-hero-grid img {
    width: 60%;
    max-width: 360px;
  }
  .phone-scene {
    min-height: 420px;
  }
  .feature-strip,
  .grid-3,
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .sidebar {
    position: static;
  }
}
@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }
  .nav {
    height: 76px;
  }
  .header .btn-primary {
    display: none;
  }
  .hero {
    padding-top: 54px;
  }
  h1 {
    font-size: 40px;
  }
  .notfound h1 {
    font-size: 90px;
  }
  .phone {
    width: 170px;
    height: 340px;
  }
  .blob {
    width: 290px;
    height: 290px;
  }
  .feature-strip,
  .grid-3,
  .stats {
    grid-template-columns: 1fr;
  }
  .cta-banner {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px;
  }
  .footer-row {
    display: grid;
    grid-template-columns: 1fr;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.img-about {
  border-radius: 20px;
}

.card {
  background: #F8F2FD;
  padding: 34px;
  box-shadow: 0 8px 26px rgba(67, 40, 97, 0.05);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.card-icon {
  flex-shrink: 0;
}

.card-icon .material-symbols-rounded {
  font-size: 36px;
  color: #6225b5;
  background:#ebd4fa;
  padding: 10px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card h3 {
  margin: 0; 
  line-height: 1.2;
}

.card p {
  margin: 0;
  line-height: 1.65;
}

.social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.social-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--pale);  
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-circle i {
  font-size: 20px;
  color: var(--primary-2);
  transition: all 0.3s ease;
}


.social-circle:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.social-circle:hover i {
  color: white;
}
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-left p {
  margin-bottom: 16px;
  line-height: 1.6;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}


.contact-left .icon-circle {
  margin: 0;
  flex-shrink: 0;
}

.contact-row h3 {
  margin: 0 0 4px 0;
  font-size: 18px;
}

.contact-row p {
  margin: 0;
  color: var(--muted);
}

/* ===== SECCIÓN: LO QUE NOS DEFINE ===== */


.values-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px auto;
}

.values-header h2 {
  margin-bottom: 16px;
}

.values-description {
  font-size: 18px;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 16px;
}

.value-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--pale-2);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.value-icon .material-symbols-rounded {
  font-size: 56px;
  color: var(--primary-2);
  background: #ebd4fa;
  padding: 16px;
  border-radius: 24px;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon .material-symbols-rounded {
  background: var(--accent);
  color: white;
}

.value-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--primary);
}

.value-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

/* Responsive para tablets */
@media (max-width: 980px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Responsive para móviles */
@media (max-width: 640px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .value-card {
    padding: 24px 16px;
  }
  
  .value-icon .material-symbols-rounded {
    font-size: 44px;
    padding: 12px;
  }
}

/* ===== BANNER CONTACTO FAQ ===== */
.contact-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--pale);
  border-radius: var(--radius);
  padding: 28px 40px;
  margin: 0 0 48px;
}

.contact-cta-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-cta .icon-circle {
  margin: 0;
  flex-shrink: 0;
}

.contact-cta h3 {
  margin: 0 0 4px;
  font-size: 20px;
}

.contact-cta p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 640px) {
  .contact-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
}

/* ===== SECCIÓN DE AYUDA (CONTACTO) ===== */

.help-section {
  padding: 60px 0;
}

.help-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--primary);
}

.help-description {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 48px auto;
  color: var(--text);
  line-height: 1.6;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.help-card {
  background: var(--pale);
  padding: 32px 28px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.2s ease;
}

.help-icon {
  margin-bottom: 20px;
}

.help-icon .material-symbols-rounded {
  font-size: 48px;
   color: var(--primary-2);
  background:#ebd4fa;
  padding: 14px;
  border-radius: 20px;
  display: inline-block;
}

.help-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--primary);
}

.help-card p {
  margin-bottom: 20px;
  color: var(--muted);
  line-height: 1.5;
}

.help-link {
  color: var(--primary-2);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.help-link:hover {
  color: var(--accent);
}

/* Responsive */
@media (max-width: 980px) {
  .help-grid {
    gap: 24px;
  }
  
  .help-card {
    padding: 24px 20px;
  }
  
  .help-icon .material-symbols-rounded {
    font-size: 40px;
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .help-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .help-title {
    font-size: 28px;
  }
  
  .help-description {
    margin-bottom: 32px;
  }
}