/* ===== FROM index.html ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Newsreader', Georgia, serif;
      color: #323331;
      background: #fff7e9;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }

    /* ── NAV ── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: #835152;
      box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    }
    .nav-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 40px;
      display: flex; align-items: center; justify-content: space-between;
      height: 90px;
    }
    .nav-logo {
      display: flex; align-items: center;
      margin-left: -40px;
    }
    .nav-logo img {
      height: 80px; width: auto;
    }
    .nav-links {
      display: flex; align-items: center; gap: 32px; list-style: none;
    }
    .nav-links a {
      font-family: 'Libre Baskerville', serif;
      font-size: 18px; font-weight: 400; line-height: 28px;
      letter-spacing: -0.45px; color: #f3e4c9;
      transition: color 0.3s;
    }
    .nav-links a:hover { color: #fff; }
    .nav-cta {
      font-family: 'Work Sans', sans-serif !important;
      font-size: 14px !important; font-weight: 400 !important;
      letter-spacing: 1.4px !important; color: #6d645a !important;
      background: #eedfdf; padding: 10px 32px; border-radius: 9999px;
      transition: all 0.3s;
    }
    .nav-cta:hover { background: #fff; }
    .nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
    .nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: 0.3s; }

    /* ── HERO ── */
    .hero {
      padding-top: 90px;
      background: #fff7e9;
    }
    .hero-inner {
      max-width: 1280px; margin: 0 auto;
      padding: 100px 40px 100px 80px;
      display: flex; align-items: center; gap: 56px;
    }
    .hero-content { flex: 1; }
    .hero-eyebrow {
      font-family: 'Work Sans', sans-serif;
      font-size: 14px; font-weight: 600; line-height: 20px;
      letter-spacing: 2.4px; color: #685d57;
      text-transform: uppercase; margin-bottom: 20px;
    }
    .hero-title {
      font-family: 'Newsreader', serif;
      font-size: 72px; font-weight: 400; line-height: 72px;
      color: #323331; margin-bottom: 24px;
    }
    .hero-title em {
      font-style: italic; font-weight: 400;
    }
    .hero-subtitle {
      font-family: 'Newsreader', serif;
      font-size: 24px; font-weight: 400; line-height: 32px;
      color: #5f5f5d; margin-bottom: 40px;
      max-width: 645px;
    }
    .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
    .hero-image-wrap {
      flex: 0 0 472px; position: relative;
    }
    .hero-decorative {
      position: absolute; top: -30px; left: -30px;
      width: 160px; height: 160px;
      background: #fdbcbc; border-radius: 9999px;
      filter: blur(60px); opacity: 0.6; z-index: 0;
    }
    .hero-photo-card {
      position: relative; z-index: 1;
      width: 472px; height: 590px;
      background: #fff; border-radius: 48px;
      overflow: hidden;
      box-shadow: 0 25px 60px rgba(131,81,82,0.15);
    }
    .hero-photo-card img { width: 100%; height: 100%; object-fit: cover; }

    /* ── BUTTONS ── */
    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      font-family: 'Work Sans', sans-serif;
      font-size: 14px; font-weight: 400; letter-spacing: 1.4px;
      line-height: 20px; padding: 20px 40px; border-radius: 9999px;
      border: none; cursor: pointer; transition: all 0.3s;
      text-transform: uppercase;
    }
    .btn-primary {
      background: #835152; color: #fff7f6;
      box-shadow: 0 8px 24px rgba(131,81,82,0.3);
    }
    .btn-primary:hover { background: #6d4243; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(131,81,82,0.4); }
    .btn-secondary { background: #eedfdf; color: #6d645a; }
    .btn-secondary:hover { background: #e4d0d0; transform: translateY(-2px); }

    /* ── QUOTE BREAK ── */
    .quote-break {
      background: linear-gradient(135deg, #feede5 0%, #fdbcbc 100%);
      padding: 96px 40px; text-align: center;
    }
    .quote-break blockquote {
      max-width: 816px; margin: 0 auto;
      font-family: 'Newsreader', serif;
      font-size: 36px; font-weight: 400; line-height: 40px;
      color: #643738; font-style: italic;
    }

    /* ── QUIÉN ES SILVIA ── */
    .about-section { padding: 128px 40px; background: #fff9f6; }
    .about-inner {
      max-width: 1200px; margin: 0 auto;
      display: flex; gap: 64px;
    }
    .about-text { flex: 0 0 462px; }
    .about-eyebrow {
      font-family: 'Work Sans', sans-serif;
      font-size: 14px; font-weight: 600; line-height: 20px;
      letter-spacing: 4.2px; color: #685d57;
      text-transform: uppercase; margin-bottom: 8px;
    }
    .about-title {
      font-family: 'Newsreader', serif;
      font-size: 48px; font-weight: 400; line-height: 60px;
      color: #835152; margin-bottom: 32px;
    }
    .about-body {
      font-family: 'Newsreader', serif;
      font-size: 18px; font-weight: 400; line-height: 29.25px;
      color: #685d57; margin-bottom: 16px; text-align: justify;
    }
    .about-credentials {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 16px; margin-top: 40px;
    }
    .credential-card {
      background: #fff; border: 1px solid #ffecec;
      border-radius: 32px; padding: 24px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.04);
      display: flex; flex-direction: column; gap: 8px;
    }
    .credential-card svg { color: #835152; margin-bottom: 4px; }
    .credential-title {
      font-family: 'Newsreader', serif;
      font-size: 20px; font-weight: 400; line-height: 28px; color: #835152;
    }
    .credential-desc {
      font-family: 'Newsreader', serif;
      font-size: 14px; font-weight: 400; line-height: 20px; color: #685d57;
    }
    .about-grid {
      flex: 1; display: grid;
      grid-template-columns: 1fr 1fr; gap: 16px;
    }
    .about-grid-item { border-radius: 48px; overflow: hidden; }
    .about-grid-item img { width: 100%; height: 320px; object-fit: cover; object-position: center 68%; }
    .about-grid-purpose {
      background: #635852; border-radius: 48px; padding: 32px;
      display: flex; flex-direction: column; justify-content: center;
    }
    .about-grid-purpose h3 {
      font-family: 'Newsreader', serif;
      font-size: 24px; font-weight: 400; line-height: 32px;
      color: #fff; margin-bottom: 8px;
    }
    .about-grid-purpose p {
      font-family: 'Newsreader', serif;
      font-size: 16px; font-weight: 400; line-height: 24px; color: #fff;
    }
    .about-grid-hobbies {
      background: #ffecec; border: 1px solid #ff6b6b;
      border-radius: 48px; padding: 32px;
      display: flex; flex-direction: column; justify-content: center;
    }
    .about-grid-hobbies h3 {
      font-family: 'Newsreader', serif;
      font-size: 24px; font-weight: 400; line-height: 32px;
      color: #4a1d1d; margin-bottom: 8px;
    }
    .about-grid-hobbies p {
      font-family: 'Newsreader', serif;
      font-size: 16px; font-weight: 400; line-height: 24px; color: #4a1d1d;
    }

    /* ── WHY I STARTED ── */
    .why-section { padding: 128px 40px; background: #fff7e9; }
    .why-inner { max-width: 1024px; margin: 0 auto; }
    .why-title {
      font-family: 'Newsreader', serif;
      font-size: 48px; font-weight: 400; line-height: 48px;
      color: #835152; margin-bottom: 48px; text-align: center;
    }
    .why-card {
      background: #fff; border-radius: 48px; padding: 48px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.06);
      display: flex; flex-direction: column; gap: 32px;
    }
    .why-tag {
      display: inline-flex; align-items: center; gap: 12px;
      align-self: center;
    }
    .why-tag-text {
      font-family: 'Work Sans', sans-serif;
      font-size: 16px; font-weight: 500; line-height: 24px;
      letter-spacing: 1.6px; color: #835152; text-transform: uppercase;
    }
    .why-body {
      font-family: 'Newsreader', serif;
      font-size: 18px; font-weight: 400; line-height: 32.5px;
      color: #6d645a; text-align: justify;
    }
    .why-quote {
      font-family: 'Newsreader', serif;
      font-size: 28px; font-weight: 400; line-height: 36px;
      color: #835152; font-style: italic;
      text-align: center; padding: 16px 0;
    }

    /* ── FARMASI ── */
    .farmasi-section { padding: 128px 40px; background: #fff9f6; }
    .farmasi-inner {
      max-width: 1200px; margin: 0 auto;
      display: flex; gap: 32px; align-items: stretch;
    }
    .farmasi-content {
      flex: 1; background: #ffecec; border-radius: 48px;
      padding: 64px; display: flex; flex-direction: column; justify-content: center;
    }
    .farmasi-eyebrow {
      font-family: 'Work Sans', sans-serif;
      font-size: 14px; font-weight: 400; line-height: 20px;
      letter-spacing: 1.4px; color: #685d57;
      text-transform: uppercase; margin-bottom: 16px;
    }
    .farmasi-title {
      font-family: 'Newsreader', serif;
      font-size: 48px; font-weight: 400; line-height: 48px;
      color: #835152; margin-bottom: 24px;
    }
    .farmasi-desc {
      font-family: 'Newsreader', serif;
      font-size: 20px; font-weight: 400; line-height: 32.5px;
      color: #635852; margin-bottom: 32px;
    }
    .farmasi-features {
      display: flex; gap: 24px; margin-bottom: 40px; flex-wrap: wrap;
    }
    .farmasi-feature {
      display: flex; align-items: center; gap: 8px;
    }
    .farmasi-feature span {
      font-family: 'Work Sans', sans-serif;
      font-size: 14px; font-weight: 600; line-height: 20px; color: #685d57;
    }
    .farmasi-image {
      flex: 0 0 380px; border-radius: 48px; overflow: hidden;
      position: relative;
    }
    .farmasi-image img { width: 100%; height: 100%; object-fit: contain; background: #fff7e9; }
    .farmasi-badge {
      position: absolute; top: 24px; right: 24px;
      background: linear-gradient(135deg, #835152 0%, #a86b6b 100%);
      color: #fff; border-radius: 20px; padding: 12px 20px;
      font-family: 'Work Sans', sans-serif;
      font-size: 13px; font-weight: 600; letter-spacing: 0.8px;
      line-height: 18px; text-align: center;
      box-shadow: 0 8px 24px rgba(131,81,82,0.4);
      display: flex; align-items: center; gap: 8px;
      backdrop-filter: blur(8px);
    }
    .farmasi-badge svg { flex-shrink: 0; }

    /* ── COACHING ── */
    .coaching-section { padding: 128px 40px; background: #fff7e9; }
    .coaching-inner { max-width: 1200px; margin: 0 auto; }
    .coaching-header { text-align: center; margin-bottom: 64px; }
    .coaching-title {
      font-family: 'Newsreader', serif;
      font-size: 48px; font-weight: 400; line-height: 48px;
      color: #835152; margin-bottom: 16px;
    }
    .coaching-subtitle {
      font-family: 'Newsreader', serif;
      font-size: 24px; font-weight: 400; line-height: 28px;
      color: #6d645a; max-width: 672px; margin: 0 auto;
    }
    .coaching-cards {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    }
    .coaching-card {
      background: #fff; border: 1px solid #f1f5f9;
      border-radius: 48px; padding: 48px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.04);
      display: flex; flex-direction: column; gap: 16px;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .coaching-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
    .coaching-card-icon {
      width: 64px; height: 64px; border-radius: 9999px;
      display: flex; align-items: center; justify-content: center;
    }
    .coaching-card-icon.pink-bg { background: #ffecec; }
    .coaching-card-icon.gray-bg { background: #f1f5f9; }
    .coaching-card h3 {
      font-family: 'Newsreader', serif;
      font-size: 30px; font-weight: 400; line-height: 36px;
      color: #835152; margin-top: 8px;
    }
    .coaching-card p {
      font-family: 'Newsreader', serif;
      font-size: 16px; font-weight: 400; line-height: 26px; color: #685d57;
    }
    .coaching-card-list {
      list-style: none; display: flex; flex-direction: column;
      gap: 8px; margin-top: 8px;
    }
    .coaching-card-list li {
      display: flex; align-items: center; gap: 10px;
      font-family: 'Newsreader', serif;
      font-size: 14px; font-weight: 400; line-height: 20px; color: #685d57;
    }
    .coaching-card-list li svg { flex-shrink: 0; }

    /* ── COMMUNITY ── */
    .community-section { padding: 40px; background: #fff7e9; }
    .community-inner {
      max-width: 1200px; margin: 0 auto;
      background: #6d645a; border-radius: 48px;
      overflow: hidden; display: flex; min-height: 648px;
    }
    .community-content {
      flex: 1; padding: 80px;
      display: flex; flex-direction: column; justify-content: center;
    }
    .community-title {
      font-family: 'Newsreader', serif;
      font-size: 48px; font-weight: 400; line-height: 60px;
      color: #fcf9f7; margin-bottom: 24px;
    }
    .community-desc {
      font-family: 'Newsreader', serif;
      font-size: 20px; font-weight: 400; line-height: 28px;
      color: #e4e2df; margin-bottom: 32px;
    }
    .community-whatsapp {
      display: inline-flex; align-items: center; gap: 10px;
      background: #835152; border: none;
      padding: 20px 40px; border-radius: 9999px;
      transition: all 0.3s; text-transform: uppercase;
      box-shadow: 0 8px 24px rgba(131,81,82,0.3);
    }
    .community-whatsapp:hover { background: #6d4243; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(131,81,82,0.4); }
    .community-whatsapp span {
      font-family: 'Work Sans', sans-serif;
      font-size: 14px; font-weight: 400; letter-spacing: 1.4px; color: #fcf9f7;
    }
    .community-right {
      flex: 0 0 50%; position: relative; display: flex;
    }
    .community-image-wrap {
      flex: 1; position: relative;
      display: flex; align-items: center; justify-content: center;
    }
    .community-image-wrap img {
      width: 100%; height: 100%; object-fit: cover;
    }
    .community-toolkit {
      font-family: 'Newsreader', serif;
      font-size: 22px; font-weight: 400; line-height: 32px;
      color: #fdbcbc; margin-bottom: 16px; font-style: italic;
    }
    .community-toolkit-text {
      font-family: 'Newsreader', serif;
      font-size: 17px; font-weight: 400; line-height: 26px;
      color: #e4e2df; margin-bottom: 12px;
    }
    .community-toolkit-cta {
      font-family: 'Newsreader', serif;
      font-size: 18px; font-weight: 500; line-height: 26px;
      color: #fff; margin-bottom: 32px;
    }
    .community-tags {
      position: absolute; left: 170px; top: 50%; transform: translateY(-50%);
      padding: 32px;
      display: flex; flex-direction: column; gap: 16px;
      text-align: left;
    }
    .community-tag {
      font-family: 'Newsreader', serif;
      font-size: 60px; font-weight: 400; line-height: 60px;
    }
    .community-tag.pink { color: #fdbcbc; }
    .community-tag.light { color: #fcf9f7; }

    /* ── FOOTER ── */
    .footer { background: #835152; padding: 64px 40px; }
    .footer-inner {
      max-width: 1200px; margin: 0 auto;
      display: flex; justify-content: space-between; align-items: flex-start;
    }
    .footer-brand {
      font-family: 'Libre Baskerville', serif;
      font-size: 20px; font-weight: 400; line-height: 28px;
      color: #fdbcbc; margin-bottom: 12px;
    }
    .footer-copy {
      font-family: 'Work Sans', sans-serif;
      font-size: 14px; font-weight: 400; line-height: 22.75px;
      letter-spacing: 0.35px; color: #f3e4c9; max-width: 400px;
    }
    .footer-links { display: flex; gap: 32px; }
    .footer-links a {
      font-family: 'Work Sans', sans-serif;
      font-size: 14px; font-weight: 400; line-height: 20px;
      letter-spacing: 0.35px; color: #f3e4c9; transition: color 0.3s;
    }
    .footer-links a:hover { color: #fff; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .hero-inner { flex-direction: column; text-align: center; padding: 80px 40px; }
      .hero-image-wrap { flex: none; width: 100%; max-width: 400px; margin: 0 auto; order: -1; }
      .hero-photo-card { width: 100%; height: 500px; }
      .hero-buttons { justify-content: center; }
      .hero-title { font-size: 52px; line-height: 56px; }
      .hero-subtitle { font-size: 20px; line-height: 28px; }
      .farmasi-inner { flex-direction: column; }
      .farmasi-image { flex: none; height: 400px; }
      .community-inner { flex-direction: column; }
      .community-right { flex: none; height: 400px; }
      .community-content { padding: 48px; }
      .about-inner { flex-direction: column; }
      .about-text { flex: none; }
      .coaching-cards { grid-template-columns: 1fr; }
      .footer-inner { flex-direction: column; gap: 32px; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-toggle { display: block; }
      .nav-links.active {
        display: flex; flex-direction: column;
        position: absolute; top: 90px; left: 0; right: 0;
        background: #835152; padding: 24px 40px; gap: 16px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.15);
      }
      .nav-logo img { height: 50px; }
      .quote-break { padding: 64px 24px; }
      .quote-break blockquote { font-size: 24px; line-height: 32px; }
      .hero-inner { padding: 60px 24px; }
      .hero-title { font-size: 40px; line-height: 44px; }
      .hero-subtitle { font-size: 18px; line-height: 26px; }
      .hero-photo-card { height: 400px; border-radius: 32px; }
      .why-section { padding: 80px 24px; }
      .why-title { font-size: 36px; line-height: 40px; }
      .why-card { padding: 32px; border-radius: 32px; }
      .why-quote { font-size: 22px; line-height: 30px; }
      .farmasi-section { padding: 80px 24px; }
      .farmasi-content { padding: 40px; border-radius: 32px; }
      .farmasi-title { font-size: 36px; line-height: 40px; }
      .farmasi-image { border-radius: 32px; height: 300px; }
      .farmasi-features { flex-direction: column; gap: 12px; }
      .community-section { padding: 24px; }
      .community-inner { border-radius: 32px; }
      .community-content { padding: 32px; }
      .community-title { font-size: 36px; line-height: 44px; }
      .community-tags { position: static; transform: none; margin: 24px; text-align: center; }
      .community-tag { font-size: 36px; line-height: 40px; }
      .about-section { padding: 80px 24px; }
      .about-title { font-size: 36px; line-height: 44px; }
      .about-credentials { grid-template-columns: 1fr; }
      .about-grid { grid-template-columns: 1fr; }
      .about-grid-item img { height: 280px; }
      .coaching-section { padding: 80px 24px; }
      .coaching-title { font-size: 36px; line-height: 40px; }
      .coaching-card { padding: 32px; border-radius: 32px; }
      .footer { padding: 48px 24px; }
      .footer-links { flex-direction: column; gap: 12px; }
    }

    /* ── ANIMATIONS ── */
    .fade-in {
      opacity: 0; transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== FROM case-study-silvia.html ===== */
/* ══════════════════════════════════════════════════
       UNIFIED CASE STUDY TEMPLATE — v1.0
       Shared across all Siria Mora case studies
    ══════════════════════════════════════════════════ */

    /* ── Font Faces ── */
    @font-face { font-family: Satoshi; src: url("https://cdn.prod.website-files.com/67e1c2966028e20a2abbeeee/67e1c2976028e20a2abbef39_Satoshi-Regular.woff2") format("woff2"); font-weight: 400; font-display: swap; }
    @font-face { font-family: Satoshi; src: url("https://cdn.prod.website-files.com/67e1c2966028e20a2abbeeee/67e1c2976028e20a2abbef36_Satoshi-Medium.woff2") format("woff2"); font-weight: 500; font-display: swap; }
    @font-face { font-family: Satoshi; src: url("https://cdn.prod.website-files.com/67e1c2966028e20a2abbeeee/67e1c2976028e20a2abbef37_Satoshi-Bold.woff2") format("woff2"); font-weight: 700; font-display: swap; }
    @font-face { font-family: Satoshi; src: url("https://cdn.prod.website-files.com/67e1c2966028e20a2abbeeee/67e1c2976028e20a2abbef35_Satoshi-Black.woff2") format("woff2"); font-weight: 900; font-display: swap; }

    /* ── Reset ── */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }

    body {
      font-family: Satoshi, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: #efefef;
      color: #1f1f1f;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* ── Layout ── */
    .container { max-width: 940px; margin: 0 auto; padding: 0 24px; }

    /* ── Back Link ── */
    .back-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 500;
      color: #1f1f1f;
      text-decoration: none;
      padding: 40px 0 0;
      transition: opacity 0.2s;
    }
    .back-link:hover { opacity: 0.6; }
    .back-link svg { width: 16px; height: 16px; }

    /* ── Hero ── */
    .hero {
      padding: 60px 0 80px;
      text-align: center;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #fac7ff;
      color: #1f1f1f;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 100px;
      margin-bottom: 24px;
    }
    .hero-badge svg { width: 14px; height: 14px; }
    .hero h1 {
      font-size: clamp(32px, 5vw, 56px);
      font-weight: 900;
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin-bottom: 16px;
    }
    .hero-role {
      font-size: 16px;
      font-weight: 500;
      color: #1f1f1f;
      opacity: 0.6;
    }

    /* ── Sections ── */
    .section { padding: 60px 0; }
    .section + .section { border-top: 1px solid rgba(31,31,31,0.08); }

    .section-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #1f1f1f;
      opacity: 0.4;
      margin-bottom: 12px;
    }
    .section h2 {
      font-size: clamp(24px, 3.5vw, 36px);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 20px;
    }
    .section p {
      font-size: 16px;
      line-height: 1.7;
      opacity: 0.8;
      max-width: 680px;
    }
    .section p + p { margin-top: 16px; }

    /* ── Hero Image ── */
    .hero-image {
      width: 100%;
      max-width: 940px;
      margin: 40px auto 0;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    }
    .hero-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* ── Meta Grid (overview) ── */
    .meta-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 16px;
      margin-top: 32px;
    }
    .meta-item {
      background: #ffffff;
      border-radius: 16px;
      padding: 24px;
      transition: transform 0.3s ease;
    }
    .meta-item:hover { transform: translateY(-2px); }
    .meta-item dt {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      opacity: 0.4;
      margin-bottom: 8px;
    }
    .meta-item dd {
      font-size: 15px;
      font-weight: 500;
    }

    /* ── Design Philosophy ── */
    .philosophy-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 32px;
    }
    .philosophy-card {
      background: #fff;
      border-radius: 16px;
      padding: 28px;
      transition: transform 0.3s ease;
    }
    .philosophy-card:hover { transform: translateY(-3px); }
    .philosophy-card-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      font-size: 24px;
    }
    .philosophy-card h3 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .philosophy-card p {
      font-size: 14px;
      line-height: 1.6;
      opacity: 0.6;
      max-width: none;
    }

    /* ── Visual Showcase (browser mockup) ── */
    .showcase {
      margin: 48px 0 0;
      border-radius: 16px;
      overflow: hidden;
    }
    .showcase-browser {
      background: #151515;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 24px 80px rgba(0,0,0,0.18);
    }
    .browser-bar {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 14px 20px;
      background: rgba(255,255,255,0.06);
    }
    .browser-dot {
      width: 10px; height: 10px;
      border-radius: 50%;
      background: rgba(255,255,255,0.15);
    }
    .browser-dot:first-child { background: #ff5f57; }
    .browser-dot:nth-child(2) { background: #febc2e; }
    .browser-dot:nth-child(3) { background: #28c840; }
    .browser-url {
      margin-left: 12px;
      font-size: 12px;
      color: rgba(255,255,255,0.35);
      background: rgba(255,255,255,0.06);
      padding: 4px 14px;
      border-radius: 6px;
      flex: 1;
      max-width: 280px;
    }
    .showcase-content {
      padding: 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .showcase-content img {
      width: 100%;
      height: auto;
      display: block;
    }
    .showcase-content h3 {
      font-size: clamp(22px, 3vw, 34px);
      color: #fff;
      line-height: 1.2;
      margin-bottom: 12px;
      font-weight: 700;
    }
    .showcase-content p {
      font-size: 14px;
      color: rgba(255,255,255,0.55);
      max-width: 420px;
      margin: 0 auto;
      line-height: 1.6;
      opacity: 1;
    }

    /* Showcase image fallback */
    .showcase-img {
      width: 100%;
      display: block;
    }

    /* ── Color Palette & Typography (side by side) ── */
    .visual-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 32px;
    }
    .visual-block {
      background: #fff;
      border-radius: 16px;
      padding: 32px;
    }
    .visual-block h3 {
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      opacity: 0.35;
      margin-bottom: 24px;
    }

    /* Palette Swatches */
    .palette-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 12px;
    }
    .swatch {
      border-radius: 12px;
      overflow: hidden;
    }
    .swatch-color { height: 64px; border-radius: 12px 12px 0 0; }
    .swatch-info {
      padding: 10px 12px;
      background: rgba(31,31,31,0.03);
      border-radius: 0 0 12px 12px;
    }
    .swatch-name { font-size: 13px; font-weight: 600; }
    .swatch-hex {
      font-size: 12px;
      opacity: 0.45;
      font-variant-numeric: tabular-nums;
    }

    /* Typography Samples */
    .type-sample { margin-bottom: 24px; }
    .type-sample:last-child { margin-bottom: 0; }
    .type-sample-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      opacity: 0.3;
      margin-bottom: 8px;
    }
    .type-display {
      font-size: 28px;
      line-height: 1.3;
      margin-bottom: 8px;
    }
    .type-desc {
      font-size: 13px;
      opacity: 0.4;
      line-height: 1.5;
      max-width: none;
    }

    /* ── Sections Designed ── */
    .sections-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-top: 32px;
    }
    .section-card {
      background: #fff;
      border-radius: 16px;
      padding: 28px;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .section-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    }
    .section-card-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }
    .section-card-num {
      width: 32px;
      height: 32px;
      border-radius: 10px;
      background: #fffed2;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 700;
      flex-shrink: 0;
    }
    .section-card h4 {
      font-size: 16px;
      font-weight: 700;
    }
    .section-card p {
      font-size: 14px;
      line-height: 1.6;
      opacity: 0.6;
      max-width: none;
    }
    .section-card-tag {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: #1f1f1f;
      background: #fffed2;
      padding: 4px 10px;
      border-radius: 100px;
      margin-top: 12px;
    }
    .section-card.full-width { grid-column: 1 / -1; }

    /* ── Key Decision Cards ── */
    .decisions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
      margin-top: 32px;
    }
    .decision-card {
      background: #fffed2;
      border-radius: 14px;
      padding: 28px;
      transition: transform 0.3s ease;
    }
    .decision-card:hover { transform: translateY(-4px); }
    .decision-card-icon {
      font-size: 24px;
      margin-bottom: 14px;
    }
    .decision-card h3 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .decision-card p {
      font-size: 14px;
      line-height: 1.6;
      opacity: 0.7;
      max-width: none;
    }

    /* ── Results Grid ── */
    .results-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 16px;
      margin-top: 32px;
    }
    .result-card {
      background: #fff;
      border-radius: 14px;
      padding: 28px;
      text-align: center;
      transition: transform 0.3s ease;
    }
    .result-card:hover { transform: translateY(-3px); }
    .result-card .result-icon {
      font-size: 28px;
      margin-bottom: 12px;
    }
    .result-card h3 {
      font-size: 20px;
      font-weight: 900;
      margin-bottom: 4px;
    }
    .result-card p {
      font-size: 13px;
      opacity: 0.5;
      max-width: none;
    }

    /* ── AI Badge Section ── */
    .ai-card {
      background: #151515;
      border-radius: 20px;
      padding: 48px;
      display: flex;
      gap: 40px;
      align-items: center;
      margin-top: 32px;
      position: relative;
      overflow: hidden;
    }
    .ai-card::before {
      content: '';
      position: absolute;
      top: -50%; left: -50%;
      width: 200%; height: 200%;
      background: radial-gradient(circle at 30% 40%, rgba(250,199,255,0.08) 0%, transparent 50%),
                  radial-gradient(circle at 70% 60%, rgba(255,254,210,0.06) 0%, transparent 50%);
      pointer-events: none;
    }
    .ai-badge-visual {
      flex-shrink: 0;
      width: 120px;
      height: 120px;
      border-radius: 24px;
      background: linear-gradient(135deg, #fac7ff 0%, #fffed2 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    .ai-badge-visual svg {
      width: 56px;
      height: 56px;
      color: #151515;
    }
    .ai-content {
      position: relative;
    }
    .ai-content h3 {
      font-size: 24px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 12px;
    }
    .ai-content p {
      font-size: 15px;
      line-height: 1.7;
      color: rgba(255,255,255,0.6);
      max-width: none;
      opacity: 1;
    }
    .ai-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 20px;
    }
    .ai-tag {
      font-size: 12px;
      font-weight: 600;
      color: #1f1f1f;
      background: #fac7ff;
      padding: 5px 12px;
      border-radius: 100px;
    }

    /* ── Footer ── */
    .case-footer {
      padding: 48px 0 64px;
      text-align: center;
    }
    .case-footer p {
      font-size: 13px;
      opacity: 0.4;
      margin: 0 auto;
    }
    .footer-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #151515;
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      padding: 14px 32px;
      border-radius: 100px;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      margin-bottom: 20px;
    }
    .footer-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    }

    /* ── Animations ── */
    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .fade-in-delay-1 { transition-delay: 0.1s; }
    .fade-in-delay-2 { transition-delay: 0.2s; }
    .fade-in-delay-3 { transition-delay: 0.3s; }

    /* ── Responsive ── */
    @media (max-width: 768px) {
      .hero h1 { font-size: 36px; }
      .philosophy-grid { grid-template-columns: 1fr; }
      .visual-row { grid-template-columns: 1fr; }
      .sections-grid { grid-template-columns: 1fr; }
      .decisions-grid { grid-template-columns: 1fr; }
      .ai-card {
        flex-direction: column;
        text-align: center;
        padding: 32px;
      }
      .ai-tags { justify-content: center; }
      .showcase-content { padding: 40px 20px; }
    }

    @media (max-width: 480px) {
      .container { padding: 0 20px; }
      .hero { padding: 48px 0 60px; }
      .section { padding: 48px 0; }
      .hero h1 { font-size: 30px; }
      .results-grid { grid-template-columns: 1fr 1fr; }
      .palette-grid { grid-template-columns: 1fr 1fr; }
    }

/* ===== FROM Cotizacion-Silvia-Carreno.html ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      color: #1a1a2e; background: #fff; line-height: 1.7; font-size: 14px;
    }
    @media print {
      body { font-size: 12px; }
      .page-break { page-break-before: always; }
      .no-print { display: none !important; }
      .container { box-shadow: none !important; max-width: 100% !important; }
    }
    .container { max-width: 800px; margin: 0 auto; padding: 3rem 3.5rem; background: #fff; }
    .header {
      display: flex; justify-content: space-between; align-items: flex-start;
      border-bottom: 3px solid #2c3e50; padding-bottom: 1.5rem; margin-bottom: 2rem;
    }
    .header-left h1 { font-size: 1.8rem; font-weight: 700; color: #2c3e50; letter-spacing: -0.5px; }
    .header-left p { color: #666; font-size: 0.95rem; margin-top: 0.25rem; }
    .header-right { text-align: right; color: #888; font-size: 0.85rem; line-height: 1.8; }
    .header-right strong { color: #2c3e50; }
    .badge {
      display: inline-block; background: #e74c8b; color: #fff; font-size: 0.7rem;
      font-weight: 600; padding: 3px 10px; border-radius: 20px; text-transform: uppercase;
      letter-spacing: 0.5px; margin-bottom: 0.5rem;
    }
    h2 {
      font-size: 1.15rem; font-weight: 700; color: #2c3e50;
      margin: 2rem 0 0.75rem; padding-bottom: 0.4rem; border-bottom: 1px solid #eee;
    }
    h3 { font-size: 0.95rem; font-weight: 600; color: #333; margin: 1.25rem 0 0.5rem; }
    p { margin-bottom: 0.75rem; color: #444; }
    a { color: #e74c8b; text-decoration: none; }
    a:hover { text-decoration: underline; }
    table { width: 100%; border-collapse: collapse; margin: 0.75rem 0 1.25rem; font-size: 0.9rem; }
    th, td { padding: 0.6rem 0.85rem; text-align: left; border-bottom: 1px solid #eee; }
    th {
      background: #f7f7fa; font-weight: 600; color: #2c3e50;
      font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.3px;
    }
    tr:last-child td { border-bottom: none; }
    .highlight-price {
      background: linear-gradient(135deg, #fdf2f8, #f0f4ff); border-radius: 8px; padding: 1rem 1.25rem;
      display: flex; justify-content: space-between; align-items: center; margin: 1rem 0;
    }
    .highlight-price .label { font-weight: 600; color: #2c3e50; font-size: 1rem; }
    .highlight-price .price { font-size: 1.6rem; font-weight: 700; color: #e74c8b; }
    ul { padding-left: 1.25rem; margin: 0.5rem 0 1rem; }
    li { margin-bottom: 0.35rem; color: #444; }
    li::marker { color: #e74c8b; }
    .callout {
      background: #fafafa; border-left: 4px solid #e74c8b; padding: 1rem 1.25rem;
      margin: 1rem 0; border-radius: 0 8px 8px 0;
    }
    .callout p { margin: 0; font-size: 0.9rem; }
    .callout strong { color: #2c3e50; }
    .callout-green {
      background: #f0faf4; border-left: 4px solid #27ae60; padding: 1rem 1.25rem;
      margin: 1rem 0; border-radius: 0 8px 8px 0;
    }
    .callout-green p { margin: 0; font-size: 0.9rem; }
    .callout-green strong { color: #2c3e50; }
    .payment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1rem 0; }
    .payment-box { background: #f7f7fa; border-radius: 10px; padding: 1.25rem; text-align: center; }
    .payment-box .step { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #888; margin-bottom: 0.25rem; }
    .payment-box .amount { font-size: 1.5rem; font-weight: 700; color: #e74c8b; }
    .payment-box .desc { font-size: 0.8rem; color: #666; margin-top: 0.25rem; }
    .included li::marker { content: "✓ "; color: #27ae60; }
    .excluded li::marker { content: "✗ "; color: #e74c8b; }
    .included li, .excluded li { padding-left: 0.25rem; }
    .maint-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1rem 0; }
    .maint-card { border: 1px solid #eee; border-radius: 10px; padding: 1.25rem; }
    .maint-card.recommended { border-color: #e74c8b; background: #fff5f8; }
    .maint-card .plan-name { font-weight: 700; font-size: 0.95rem; color: #2c3e50; }
    .maint-card .plan-price { font-size: 1.2rem; font-weight: 700; color: #e74c8b; margin: 0.25rem 0; }
    .maint-card .plan-price span { font-size: 0.75rem; color: #888; font-weight: 400; }
    .maint-card ul { padding-left: 1rem; margin: 0.5rem 0 0; font-size: 0.8rem; }
    .rec-badge {
      display: inline-block; background: #e74c8b; color: #fff; font-size: 0.6rem;
      padding: 2px 6px; border-radius: 10px; font-weight: 600; margin-left: 4px; vertical-align: middle;
    }
    .free-badge {
      display: inline-block; background: #27ae60; color: #fff; font-size: 0.65rem;
      padding: 2px 8px; border-radius: 10px; font-weight: 600; margin-left: 4px; vertical-align: middle;
    }
    .external-cost-card {
      border: 1px solid #eee; border-radius: 10px; padding: 1rem 1.25rem; margin: 0.5rem 0;
      display: flex; justify-content: space-between; align-items: center;
    }
    .external-cost-card .service-info h4 { font-size: 0.9rem; font-weight: 600; color: #2c3e50; margin-bottom: 0.15rem; }
    .external-cost-card .service-info p { font-size: 0.8rem; color: #888; margin: 0; }
    .external-cost-card .service-price { text-align: right; }
    .external-cost-card .service-price .price { font-size: 1.1rem; font-weight: 700; color: #2c3e50; }
    .external-cost-card .service-price .period { font-size: 0.75rem; color: #888; }
    .external-cost-card .service-price a { font-size: 0.75rem; display: block; margin-top: 0.25rem; }
    .footer {
      margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid #eee;
      display: flex; justify-content: space-between; color: #aaa; font-size: 0.8rem;
    }
    .signature-area { margin-top: 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
    .sig-block { border-top: 1px solid #ccc; padding-top: 0.5rem; }
    .sig-block .sig-label { font-size: 0.8rem; color: #888; }
    .download-bar { text-align: center; padding: 1.5rem; background: #f7f7fa; }
    .download-bar button {
      background: #2c3e50; color: #fff; border: none; padding: 0.75rem 2rem;
      font-size: 0.95rem; font-weight: 600; border-radius: 8px; cursor: pointer; font-family: 'Inter', sans-serif;
    }
    .download-bar button:hover { background: #3d5166; }
    .download-bar p { font-size: 0.8rem; color: #888; margin-top: 0.5rem; }
    .section-grid { display: grid; grid-template-columns: 30px 1fr; gap: 0.5rem; align-items: start; margin: 0.5rem 0; }
    .section-num { width: 26px; height: 26px; background: #fdf2f8; color: #e74c8b; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; }
    .section-desc h4 { font-size: 0.88rem; font-weight: 600; color: #2c3e50; margin-bottom: 0.1rem; }
    .section-desc p { font-size: 0.82rem; color: #666; margin: 0; }
    .summary-box {
      background: linear-gradient(135deg, #2c3e50, #3d5166); color: #fff; border-radius: 10px;
      padding: 1.5rem; margin: 1.5rem 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
    }
    .summary-box .sum-item { text-align: center; }
    .summary-box .sum-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.7; }
    .summary-box .sum-value { font-size: 1.3rem; font-weight: 700; margin-top: 0.25rem; }
    .summary-box .sum-value.pink { color: #f8a4c8; }

/* ===== FROM privacy-policy.html ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: 'Newsreader', Georgia, serif;
      color: #323331; background: #fff7e9;
      line-height: 1.8; -webkit-font-smoothing: antialiased;
    }
    a { color: #835152; text-decoration: underline; }
    a:hover { color: #6d4243; }

    .nav {
      background: #835152; padding: 0 40px;
      display: flex; align-items: center; height: 90px;
    }
    .nav-logo { display: flex; align-items: center; margin-left: -40px; }
    .nav-logo img { height: 80px; width: auto; }
    .nav-back {
      font-family: 'Work Sans', sans-serif;
      font-size: 14px; color: #f3e4c9; margin-left: auto;
      text-decoration: none; letter-spacing: 1px; text-transform: uppercase;
    }
    .nav-back:hover { color: #fff; }

    .content {
      max-width: 800px; margin: 0 auto;
      padding: 80px 40px 120px;
    }
    h1 {
      font-family: 'Newsreader', serif;
      font-size: 42px; font-weight: 400; line-height: 52px;
      color: #835152; margin-bottom: 16px;
    }
    .last-updated {
      font-family: 'Work Sans', sans-serif;
      font-size: 13px; color: #685d57; letter-spacing: 1px;
      text-transform: uppercase; margin-bottom: 48px;
    }
    h2 {
      font-family: 'Newsreader', serif;
      font-size: 26px; font-weight: 400; line-height: 34px;
      color: #835152; margin-top: 48px; margin-bottom: 16px;
    }
    p, li {
      font-size: 17px; line-height: 30px; color: #685d57;
      margin-bottom: 16px;
    }
    ul { padding-left: 24px; margin-bottom: 16px; }
    li { margin-bottom: 8px; }

    .footer {
      background: #835152; padding: 48px 40px; text-align: center;
    }
    .footer p {
      font-family: 'Work Sans', sans-serif;
      font-size: 14px; color: #f3e4c9;
    }

    @media (max-width: 768px) {
      .content { padding: 48px 24px 80px; }
      h1 { font-size: 32px; line-height: 40px; }
      h2 { font-size: 22px; line-height: 30px; }
    }

/* ===== FROM terms-of-service.html ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: 'Newsreader', Georgia, serif;
      color: #323331; background: #fff7e9;
      line-height: 1.8; -webkit-font-smoothing: antialiased;
    }
    a { color: #835152; text-decoration: underline; }
    a:hover { color: #6d4243; }
    .nav {
      background: #835152; padding: 0 40px;
      display: flex; align-items: center; height: 90px;
    }
    .nav-logo { display: flex; align-items: center; margin-left: -40px; }
    .nav-logo img { height: 80px; width: auto; }
    .nav-back {
      font-family: 'Work Sans', sans-serif;
      font-size: 14px; color: #f3e4c9; margin-left: auto;
      text-decoration: none; letter-spacing: 1px; text-transform: uppercase;
    }
    .nav-back:hover { color: #fff; }
    .content {
      max-width: 800px; margin: 0 auto;
      padding: 80px 40px 120px;
    }
    h1 {
      font-family: 'Newsreader', serif;
      font-size: 42px; font-weight: 400; line-height: 52px;
      color: #835152; margin-bottom: 16px;
    }
    .last-updated {
      font-family: 'Work Sans', sans-serif;
      font-size: 13px; color: #685d57; letter-spacing: 1px;
      text-transform: uppercase; margin-bottom: 48px;
    }
    h2 {
      font-family: 'Newsreader', serif;
      font-size: 26px; font-weight: 400; line-height: 34px;
      color: #835152; margin-top: 48px; margin-bottom: 16px;
    }
    p, li {
      font-size: 17px; line-height: 30px; color: #685d57;
      margin-bottom: 16px;
    }
    ul { padding-left: 24px; margin-bottom: 16px; }
    li { margin-bottom: 8px; }
    .footer {
      background: #835152; padding: 48px 40px; text-align: center;
    }
    .footer p {
      font-family: 'Work Sans', sans-serif;
      font-size: 14px; color: #f3e4c9;
    }
    @media (max-width: 768px) {
      .content { padding: 48px 24px 80px; }
      h1 { font-size: 32px; line-height: 40px; }
      h2 { font-size: 22px; line-height: 30px; }
    }