*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        :root {
          --cream: #f5f0e8;
          --cream-dark: #ede5d5;
          --warm-brown: #6b4f3a;
          --dark-brown: #3a2a1e;
          --forest-green: #3d5a3e;
          --forest-green-light: #4e7050;
          --text-body: #5a4535;
          --text-light: #8a7060;
          --section-divider: #c8b89a;
          --font-serif: 'Cormorant Garamond', Georgia, serif;
          --font-body: 'EB Garamond', Georgia, serif;
        }

        html { scroll-behavior: smooth; }
        body {
          font-family: var(--font-body);
          background: var(--cream);
          color: var(--text-body);
          overflow-x: hidden;
        }

        @keyframes fadeUp {
          from { opacity: 0; transform: translateY(22px); }
          to   { opacity: 1; transform: translateY(0); }
        }

        /* ====== HERO ====== */
        .hero {
          margin-top: 61px; position: relative; overflow: hidden;
          min-height: 480px; display: flex; align-items: center; justify-content: center;
        }
        .hero-bg {
          position: absolute; inset: 0;
          background:
            linear-gradient(to bottom, rgba(20,15,8,0.3) 0%, rgba(20,15,8,0.62) 100%),
            /*url('https://images.unsplash.com/photo-1476234251651-f353703a034d?w=1400&q=80') center/cover no-repeat;*/
            url('../img/control_esfinters.avif') center 90% /cover no-repeat;
        }
        .hero-content {
          position: relative; z-index: 2;
          text-align: center; color: #fff;
          padding: 72px 24px; max-width: 720px; margin: 0 auto;
          animation: fadeUp 0.9s ease both;
        }
        .hero-tag {
          display: inline-block;
          background: rgba(61,90,62,0.85); color: #fff;
          font-family: var(--font-body); font-size: 0.82rem;
          letter-spacing: 0.1em; text-transform: uppercase;
          padding: 6px 18px; border-radius: 100px; margin-bottom: 22px;
        }
        .hero-eyebrow {
          font-family: var(--font-body); font-size: 0.8rem;
          letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.7;
          margin-bottom: 16px;
          display: flex; align-items: center; justify-content: center; gap: 12px;
        }
        .hero-eyebrow::before, .hero-eyebrow::after {
          content: ''; display: block; height: 1px; width: 32px;
          background: rgba(255,255,255,0.45);
        }
        .hero-title {
          font-family: var(--font-serif);
          font-size: clamp(2rem, 5vw, 3.6rem);
          font-weight: 400; letter-spacing: 0.02em; line-height: 1.15;
          margin-bottom: 0.4em; text-shadow: 0 2px 16px rgba(0,0,0,0.3);
        }
        .hero-subtitle {
          font-family: var(--font-serif); font-style: italic;
          font-size: clamp(1rem, 2vw, 1.25rem);
          font-weight: 300; opacity: 0.9; line-height: 1.65; margin-bottom: 2em;
        }
        .hero-cta {
          display: inline-flex; align-items: center; gap: 10px;
          padding: 16px 36px;
          background: var(--forest-green); color: #fff;
          font-family: var(--font-body); font-size: 1.05rem;
          letter-spacing: 0.07em; border-radius: 100px;
          text-decoration: none; border: none; cursor: pointer;
          transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
          box-shadow: 0 4px 24px rgba(0,0,0,0.25);
        }
        .hero-cta:hover {
          background: var(--forest-green-light);
          transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.3);
        }

        /* ====== SHARED ====== */
        .page-wrap { max-width: 860px; margin: 0 auto; padding: 0 24px; }

        .section-label {
          font-family: var(--font-body); font-size: 0.78rem;
          letter-spacing: 0.14em; text-transform: uppercase;
          color: var(--forest-green); margin-bottom: 14px;
        }
        .section-title {
          font-family: var(--font-serif);
          font-size: clamp(1.7rem, 3.5vw, 2.4rem);
          font-weight: 400; color: var(--dark-brown);
          letter-spacing: 0.03em; line-height: 1.25; margin-bottom: 20px;
        }
        .section-desc {
          font-family: var(--font-body);
          font-size: clamp(0.97rem, 1.5vw, 1.08rem);
          color: var(--text-body); line-height: 1.88;
        }
        .section-desc p { margin-bottom: 1.1em; }
        .section-desc p:last-child { margin-bottom: 0; }
        .section-desc strong { font-weight: 500; color: var(--dark-brown); }

        /* ====== INTRO ====== */
        .intro-section { padding: 64px 0 0; }

        .pull-quote {
          margin: 36px 0; padding: 26px 28px;
          border-left: 3px solid var(--forest-green);
          background: rgba(61,90,62,0.04); border-radius: 0 10px 10px 0;
        }
        .pull-quote p {
          font-family: var(--font-serif); font-style: italic;
          font-size: clamp(1.1rem, 2vw, 1.3rem);
          color: var(--warm-brown); line-height: 1.65; margin: 0;
        }

        /* ====== LEARN ====== */
        .learn-section {
          background: var(--cream-dark); padding: 72px 24px; margin-top: 72px;
        }
        .learn-inner { max-width: 860px; margin: 0 auto; }
        .learn-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 44px; }

        .learn-card {
          background: #fff; border-radius: 14px; padding: 28px 24px 30px;
          box-shadow: 0 4px 20px rgba(58,42,30,0.06);
          display: flex; gap: 18px; align-items: flex-start;
          transition: transform 0.3s, box-shadow 0.3s;
        }
        .learn-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(58,42,30,0.11); }
        .learn-bullet {
          flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
          background: rgba(61,90,62,0.1);
          display: flex; align-items: center; justify-content: center;
          font-size: 1.1rem; margin-top: 2px;
        }
        .learn-title {
          font-family: var(--font-serif); font-size: 1.1rem; font-weight: 500;
          color: var(--dark-brown); margin-bottom: 7px; line-height: 1.3;
        }
        .learn-desc {
          font-family: var(--font-body); font-size: 0.93rem;
          color: var(--text-light); line-height: 1.75;
        }

        /* ====== INCLUDES ====== */
        .includes-section { padding: 72px 0 0; }
        .includes-list { margin-top: 36px; border-top: 1px solid var(--section-divider); }
        .includes-item {
          display: flex; align-items: flex-start; gap: 20px;
          padding: 24px 0; border-bottom: 1px solid var(--section-divider);
        }
        .includes-num {
          flex-shrink: 0; font-family: var(--font-serif);
          font-size: 2rem; font-weight: 300; color: var(--section-divider);
          line-height: 1; min-width: 32px; padding-top: 2px;
        }
        .includes-icon { flex-shrink: 0; font-size: 1.5rem; padding-top: 4px; }
        .includes-title {
          font-family: var(--font-serif); font-size: 1.1rem; font-weight: 500;
          color: var(--dark-brown); margin-bottom: 5px;
        }
        .includes-desc {
          font-family: var(--font-body); font-size: 0.95rem;
          color: var(--text-light); line-height: 1.7; font-style: italic;
        }

        /* ====== PRICING ====== */
        .pricing-section { background: var(--cream-dark); padding: 72px 24px; margin-top: 72px; }
        .pricing-inner { max-width: 860px; margin: 0 auto; }
        .pricing-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 44px; }

        .pricing-card {
          background: #fff; border-radius: 16px; padding: 36px 28px 40px;
          box-shadow: 0 4px 24px rgba(58,42,30,0.08);
          display: flex; flex-direction: column; position: relative;
          transition: transform 0.3s, box-shadow 0.3s;
        }
        .pricing-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(58,42,30,0.13); }
        .pricing-card.featured { border: 2px solid var(--forest-green); }
        .pricing-badge {
          position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
          background: var(--forest-green); color: #fff;
          font-family: var(--font-body); font-size: 0.75rem;
          letter-spacing: 0.1em; text-transform: uppercase;
          padding: 5px 16px; border-radius: 100px; white-space: nowrap;
        }
        .pricing-option {
          font-family: var(--font-body); font-size: 0.78rem;
          letter-spacing: 0.12em; text-transform: uppercase;
          color: var(--forest-green); margin-bottom: 10px;
        }
        .pricing-title {
          font-family: var(--font-serif); font-size: 1.3rem; font-weight: 500;
          color: var(--dark-brown); margin-bottom: 6px; line-height: 1.3;
        }
        .pricing-subtitle {
          font-family: var(--font-body); font-size: 0.92rem;
          color: var(--text-light); font-style: italic;
          margin-bottom: 24px; line-height: 1.6;
        }
        .pricing-price {
          font-family: var(--font-serif);
          font-size: clamp(2.4rem, 4vw, 3.2rem);
          font-weight: 300; color: var(--dark-brown); line-height: 1; margin-bottom: 6px;
        }
        .pricing-note {
          font-family: var(--font-body); font-size: 0.85rem;
          color: var(--text-light); margin-bottom: 28px;
        }
        .pricing-features {
          list-style: none; margin-bottom: 32px; flex: 1;
          display: flex; flex-direction: column; gap: 10px;
        }
        .pricing-features li {
          display: flex; align-items: flex-start; gap: 10px;
          font-family: var(--font-body); font-size: 0.95rem;
          color: var(--text-body); line-height: 1.55;
        }
        .pricing-features li::before {
          content: '✓'; color: var(--forest-green);
          font-size: 0.9rem; flex-shrink: 0; margin-top: 1px;
        }
        .pricing-btn {
          display: flex; align-items: center; justify-content: center;
          padding: 14px 24px; font-family: var(--font-body); font-size: 1rem;
          letter-spacing: 0.06em; border-radius: 100px;
          text-decoration: none; border: none; cursor: pointer;
          transition: background 0.3s, color 0.3s, transform 0.2s;
        }
        .pricing-btn-primary {
          background: var(--forest-green); color: #fff;
          box-shadow: 0 4px 16px rgba(61,90,62,0.25);
        }
        .pricing-btn-primary:hover { background: var(--forest-green-light); transform: translateY(-2px); }
        .pricing-btn-secondary {
          background: transparent; color: var(--forest-green);
          border: 1.5px solid var(--forest-green);
        }
        .pricing-btn-secondary:hover { background: var(--forest-green); color: #fff; transform: translateY(-2px); }

        .scholarship-band {
          margin-top: 28px; padding: 22px 28px;
          background: rgba(61,90,62,0.06); border-radius: 12px;
          border: 1px dashed var(--forest-green);
          display: flex; align-items: flex-start; gap: 16px;
        }
        .scholarship-icon { font-size: 1.5rem; flex-shrink: 0; }
        .scholarship-title {
          font-family: var(--font-serif); font-size: 1.05rem; font-weight: 500;
          color: var(--dark-brown); margin-bottom: 5px;
        }
        .scholarship-desc {
          font-family: var(--font-body); font-size: 0.93rem;
          color: var(--text-light); line-height: 1.7;
        }
        .scholarship-desc a {
          color: var(--forest-green); text-decoration: none; transition: color 0.2s;
        }
        .scholarship-desc a:hover { color: var(--forest-green-light); text-decoration: underline; }

        /* ====== BOTTOM CTA ====== */
        .bottom-cta {
          padding: 80px 24px; text-align: center;
          max-width: 600px; margin: 0 auto;
        }
        .bottom-cta h2 {
          font-family: var(--font-serif);
          font-size: clamp(1.6rem, 3.5vw, 2.4rem);
          font-weight: 400; color: var(--dark-brown);
          letter-spacing: 0.03em; line-height: 1.25; margin-bottom: 16px;
        }
        .bottom-cta p {
          font-family: var(--font-serif); font-style: italic;
          font-size: clamp(1rem, 1.8vw, 1.2rem);
          color: var(--warm-brown); line-height: 1.7; margin-bottom: 36px;
        }
        .bottom-cta-btn {
          display: inline-flex; align-items: center; gap: 10px;
          padding: 18px 40px;
          background: var(--forest-green); color: #fff;
          font-family: var(--font-body); font-size: 1.05rem;
          letter-spacing: 0.07em; border-radius: 100px;
          text-decoration: none; border: none; cursor: pointer;
          transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
          box-shadow: 0 4px 24px rgba(61,90,62,0.28);
        }
        .bottom-cta-btn:hover {
          background: var(--forest-green-light);
          transform: translateY(-2px); box-shadow: 0 8px 32px rgba(61,90,62,0.32);
        }
        .bottom-cta-note {
          margin-top: 18px; font-family: var(--font-serif); font-style: italic;
          font-size: 0.95rem; color: var(--text-light);
        }
        .bottom-cta-note a { color: var(--forest-green); text-decoration: none; }
        .bottom-cta-note a:hover { text-decoration: underline; }

        /* ====== MOBILE STICKY ====== */
        .mobile-sticky {
          display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
          background: rgba(245,240,232,0.97); backdrop-filter: blur(10px);
          padding: 12px 20px 20px; border-top: 1px solid var(--section-divider);
          box-shadow: 0 -4px 24px rgba(58,42,30,0.1);
          align-items: center; justify-content: space-between; gap: 14px;
        }
        .mobile-sticky-text {
          font-family: var(--font-serif); font-size: 0.92rem;
          color: var(--text-light); font-style: italic; line-height: 1.3;
        }
        .mobile-sticky-btn {
          flex-shrink: 0; padding: 12px 22px;
          background: var(--forest-green); color: #fff;
          font-family: var(--font-body); font-size: 0.92rem;
          letter-spacing: 0.05em; border-radius: 100px;
          text-decoration: none; border: none; cursor: pointer;
          transition: background 0.3s; white-space: nowrap;
        }
        .mobile-sticky-btn:hover { background: var(--forest-green-light); }

        /* ====== REVEAL ====== */
        .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
        .reveal.visible { opacity: 1; transform: none; }
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }

        /* ====== RESPONSIVE ====== */
        @media (max-width: 767px) {
          .learn-grid { grid-template-columns: 1fr; }
          .pricing-grid { grid-template-columns: 1fr; }
          .mobile-sticky { display: flex; }
          body { padding-bottom: 80px; }
          .hero { min-height: 420px; }
        }
        @media (min-width: 1024px) { nav { padding: 18px 48px; } }