body {
      margin: 0;
      font-family: 'League Spartan';
      background: #fff;
      color: #1a1a1a;
    }
    header {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px 60px;
    }
    header .logo {
      font-size: 2.5rem;
      font-weight: bold;
      color: #e6005c;
    }
    .tag {
      display: inline-flex;
      align-items: center;
      column-gap: 5px;
      background: #ffeaf2;
      color: #e6005c;
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 20px;
    }
    .hero {
      text-align: center;
      padding: 80px 20px;
    }
    .hero h1 {
      font-size: 48px;
      font-weight: 800;
      margin-bottom: 20px;
    }
    .hero h1 span {
      background: linear-gradient(90deg, #e6005c, #9b4dff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero p {
      max-width: 600px;
      margin: 0 auto 40px;
      font-size: 18px;
      color: #444;
    }
    .hero .buttons {
      margin-bottom: 40px;
    }
    .hero .buttons a {
      display: inline-block;
      margin: 0 10px;
      padding: 14px 28px;
      border-radius: 10px;
      text-decoration: none;
      font-weight: 600;
      font-size: 16px;
    }
    .hero .buttons .start {
      background: #111;
      color: white;
    }
    .hero .buttons .how {
      border: 2px solid #ccc;
      color: #333;
      background: white;
    }
    .hero .features {
      display: flex;
      justify-content: center;
      gap: 30px;
      font-size: 14px;
      color: #555;
    }
    .hero .features span {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .hero .features span:nth-child(1) .lucide {
      stroke: #22c55e;
    }
    .hero .features span:nth-child(2) .lucide {
      stroke: #3b82f6;
    }
    .hero .features span:nth-child(3) .lucide{
      stroke: #f59e0b;
    }

    /* --- Sección 2 --- */
    .features-section {
      background: #f9fafb;
      padding: 80px 20px;
      text-align: center;
    }
    .features-section h2 {
      font-size: 36px;
      font-weight: 800;
      margin-bottom: 16px;
    }
    .features-section p {
      max-width: 700px;
      margin: 0 auto 50px;
      font-size: 18px;
      color: #444;
    }
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .card {
      background: #fff;
      border-radius: 12px;
      padding: 24px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
      text-align: left;
    }
    .card .icon {
      font-size: 28px;
      margin-bottom: 12px;
    }
    .card h3 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .card small {
      display: block;
      font-size: 12px;
      font-weight: 600;
      color: #888;
      margin-bottom: 6px;
    }
    .card p {
      font-size: 15px;
      color: #555;
      line-height: 1.5;
    }

    /* --- Sección 3 (Pasos) --- */
    .steps-section {
      padding: 80px 20px;
      text-align: center;
    }
    .steps-section h2 {
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 16px;
    }
    .steps-section p {
      max-width: 700px;
      margin: 0 auto 50px;
      font-size: 18px;
      color: #444;
    }
    .steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .step-card {
      background: #fff;
      border-radius: 12px;
      padding: 24px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
      text-align: left;
    }
    .step-card .number {
      font-size: 22px;
      font-weight: 700;
      color: #ccc;
      margin-bottom: 12px;
    }
    .step-card .icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: #e6005c;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: white;
      margin-bottom: 14px;
    }
    .step-card h3 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .step-card p {
      font-size: 14px;
      color: #555;
      line-height: 1.5;
    }

    /* --- Sección 4 (Descarga app) --- */
    .download-section {
      background: #e6005c;
      color: white;
      text-align: center;
      padding: 80px 20px;
    }
    .download-section .icon {
      font-size: 40px;
      margin-bottom: 16px;
    }
    .download-section h2 {
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 10px;
    }
    .download-section p {
      font-size: 18px;
      margin-bottom: 30px;
    }
    .store-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }
    .store-buttons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      column-gap: 5px;;
      background: #000;
      color: white;
      padding: 12px 20px;
      border-radius: 8px;
      font-size: 14px;
      text-decoration: none;
      font-weight: 600;
    }
    .download-section small {
      display: block;
      margin-top: 20px;
      font-size: 14px;
      opacity: 0.8;
    }
    .store-buttons a {
      display: inline-flex;
      align-items: center;
      gap: 8px; /* space between icon and text */
      text-decoration: none;
    }

    .store-buttons .store-icon {
      width: 24px;   /* set the same size for both */
      height: 24px;
      object-fit: contain;
    }

    /* --- Sección 5 (FAQ) --- */
    .faq-section {
      background: #f9fafb;
      padding: 80px 20px;
      text-align: center;
    }
    .faq-section h2 {
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 10px;
    }
    .faq-section p {
      font-size: 16px;
      color: #555;
      margin-bottom: 10px;
    }
    .faq {
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
    }
    details {
      background: #fff;
      border-radius: 8px;
      padding: 16px;
      margin-bottom: 12px;
      cursor: pointer;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }
    summary {
      font-weight: 600;
      font-size: 15px;
      outline: none;
    }
    details p {
      margin-top: 10px;
      font-size: 14px;
      color: #444;
    }

    ul{
      margin: 0;
    }

    ul > li{
      margin-top: 0;
      color:  #555;
    }

    /* --- Footer --- */
    footer {
      background: #0f172a;
      color: #ccc;
      padding: 60px 20px;
      font-size: 14px;
    }
    .footer-container {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 40px;
    }
    .footer-brand h3 {
      color: #e6005c;
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .footer-brand p {
      margin-bottom: 20px;
      font-size: 14px;
      color: #bbb;
    }
    .socials a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #e6005c;
      color: white;
      text-align: center;
      line-height: 32px;
      margin-right: 8px;
      text-decoration: none;
      font-weight: bold;
    }
    .footer-links h4 {
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 12px;
      color: #fff;
    }
    .footer-links a {
      display: block;
      color: #ccc;
      text-decoration: none;
      margin-bottom: 8px;
      font-size: 14px;
    }
    .footer-bottom {
      border-top: 1px solid #334155;
      margin-top: 40px;
      padding-top: 20px;
      text-align: center;
      font-size: 13px;
      color: #aaa;
    }
    .footer-bottom a {
      color: #ccc;
      margin: 0 10px;
      text-decoration: none;
      font-size: 13px;
    }