    :root {
      --green: #6DC05E;
      --green-dark: #4fa840;
      --green-light: #e8f7e5;
      --dark: #1a1a1a;
      --gray: #555;
      --light-gray: #f5f5f5;
      --white: #fff;
      --border: #e5e5e5;
      --radius: 18px;
      --shadow: 0 8px 32px rgba(0,0,0,0.10);
      --container: 1260px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: 'Nunito', sans-serif;
      background: var(--white);
      color: var(--dark);
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button, input { font: inherit; }
    .page { display: none; min-height: 100vh; background: var(--white); }
    .page.active { display: block; }

    .section-inner,
    .nav-inner,
    .footer-inner,
    .footer-bottom {
      width: min(var(--container), calc(100% - 10vw));
      margin: 0 auto;
    }

    .section-title {
      font-size: clamp(1.7rem, 3vw, 2.6rem);
      font-weight: 900;
      line-height: 1.15;
      margin: 0 0 14px;
      letter-spacing: -0.5px;
    }
    .section-subtitle {
      margin: 0;
      color: var(--gray);
      line-height: 1.7;
      font-size: 1rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 15px 32px;
      background: var(--green);
      color: var(--white);
      border-radius: 50px;
      font-weight: 800;
      border: none;
      cursor: pointer;
      transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
      box-shadow: 0 12px 24px rgba(109,192,94,0.22);
    }
    .btn:hover {
      background: var(--green-dark);
      transform: translateY(-2px);
      box-shadow: 0 16px 28px rgba(109,192,94,0.28);
    }
    .btn-arrow {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(255,255,255,0.25);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      line-height: 1;
    }

    .nav-wrap {
      position: sticky;
      top: 0;
      z-index: 1000;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      background: rgba(255,255,255,0.78);
      border-bottom: 1px solid rgba(229,229,229,0.85);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 78px;
      gap: 20px;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 1.25rem;
      font-weight: 800;
      line-height: 1;
    }
    .brand-icon {
      height: 60px;
      width: auto;
      display: block;
      object-fit: contain;
      filter: saturate(1.04) contrast(1.03);
      flex: 0 0 auto;
    }
    .nav-links,
    .nav-right {
      display: flex;
      align-items: center;
      gap: 28px;
    }
    .nav-links a,
    .nav-right a {
      color: var(--gray);
      font-weight: 700;
      transition: color .2s ease;
    }
    .nav-links a:hover,
    .nav-right a:hover,
    .mobile-menu a:hover,
    .footer-col a:hover {
      color: var(--green);
    }
    .login-btn {
      background: var(--green);
      color: var(--white) !important;
      border-radius: 12px;
      padding: 8px 18px;
      font-weight: 800;
    }
    .login-btn:hover { background: var(--green-dark); color: var(--white); }

    .hamburger {
      display: none;
      background: transparent;
      border: 0;
      padding: 0;
      cursor: pointer;
      width: 42px;
      height: 42px;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
    }
    .hamburger:hover { background: var(--light-gray); }

    .mobile-menu {
      position: fixed;
      inset: 0;
      background: rgba(255,255,255,0.98);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      z-index: 1200;
      padding: 28px 7vw 36px;
      display: flex;
      flex-direction: column;
      transform: translateY(-100%);
      opacity: 0;
      pointer-events: none;
      transition: transform .35s ease, opacity .35s ease;
    }
    .mobile-menu.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
    .mobile-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 34px;
    }
    .mobile-close {
      width: 44px;
      height: 44px;
      border: 1px solid var(--border);
      border-radius: 14px;
      background: var(--white);
      cursor: pointer;
      font-size: 1.5rem;
      color: var(--dark);
    }
    .mobile-links {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 10px;
    }
    .mobile-links a {
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--dark);
      padding: 10px 0;
      border-bottom: 1px solid var(--border);
    }
    .mobile-extra { margin-top: auto; display: flex; flex-direction: column; gap: 14px; }

    .hero {
      position: relative;
      min-height: 92vh;
      overflow: hidden;
      background: linear-gradient(135deg, #f0fcea 0%, #fff 60%);
      padding: 60px 5vw;
      display: flex;
      align-items: center;
    }
    .hero-bg {
      position: absolute;
      top: 0;
      right: 0;
      width: 52%;
      height: 100%;
      overflow: hidden;
      border-radius: 0 0 0 80px;
      clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
    }
    .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, #f0fcea 0%, rgba(240,252,234,0.95) 12%, rgba(240,252,234,0.72) 24%, rgba(240,252,234,0.25) 38%, transparent 55%);
    }
    .hero-content { position: relative; z-index: 2; max-width: 560px; }
    .hero-content h1 {
      margin: 0 0 22px;
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      font-weight: 900;
      line-height: 1.12;
      letter-spacing: -1px;
    }
    .hero-content p {
      margin: 0 0 30px;
      font-size: 1.1rem;
      color: var(--gray);
      line-height: 1.7;
      max-width: 440px;
    }
    .hero-stats {
      display: flex;
      align-items: center;
      gap: 28px;
      margin-top: 42px;
      flex-wrap: wrap;
    }
    .hero-avatars {
      display: flex;
      align-items: center;
    }
    .hero-avatars img {
      width: 40px;
      height: 40px;
      object-fit: cover;
      border-radius: 50%;
      border: 3px solid var(--white);
      margin-left: -10px;
      box-shadow: 0 4px 18px rgba(0,0,0,0.12);
    }
    .hero-avatars img:first-child { margin-left: 0; }
    .stat-block {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }
    .stat-item strong {
      display: block;
      font-size: 1.2rem;
      font-weight: 900;
      line-height: 1.1;
    }
    .stat-item span { color: var(--gray); font-size: 0.92rem; }
    .stat-divider { width: 1px; height: 36px; background: var(--border); }

    .categories { padding: 76px 5vw 52px; }
    .categories-heading { text-align: center; max-width: 760px; margin: 0 auto 34px; }
    .categories-grid {
      width: min(var(--container), calc(100% - 10vw));
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .cat-card {
      position: relative;
      border-radius: var(--radius);
      aspect-ratio: 3 / 4;
      overflow: hidden;
      cursor: pointer;
      background: #ddd;
      box-shadow: var(--shadow);
    }
    .cat-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .4s;
    }
    .cat-card:hover img { transform: scale(1.05); }
    .cat-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.7) 100%);
    }
    .cat-card span {
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 18px;
      z-index: 1;
      color: var(--white);
      font-size: 1.05rem;
      font-weight: 800;
    }
    .divider { height: 1px; background: var(--border); margin: 42px 5vw 0; }

    .wellness { padding: 80px 5vw; }
    .wellness-grid {
      width: min(var(--container), calc(100% - 10vw));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .wellness-copy p {
      color: var(--gray);
      line-height: 1.7;
      margin: 0 0 24px;
      max-width: 560px;
    }
    .feature-list {
      display: flex;
      flex-direction: column;
      gap: 22px;
      margin-top: 30px;
    }
    .feature-item { display: flex; gap: 16px; align-items: flex-start; }
    .feature-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: var(--green-light);
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 48px;
    }
    .feature-icon svg { width: 24px; height: 24px; }
    .feature-text h4 {
      margin: 2px 0 6px;
      font-size: 1.05rem;
      font-weight: 800;
    }
    .feature-text p { margin: 0; color: var(--gray); line-height: 1.7; }
    .wellness-image {
      border-radius: 24px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .wellness-image img {
      width: 100%;
      height: 480px;
      object-fit: cover;
    }

    .pricing {
      padding: 80px 5vw;
      background: linear-gradient(180deg, #f7fdf5 0%, #fff 100%);
    }
    .pricing-header {
      width: min(740px, 100%);
      margin: 0 auto 40px;
      text-align: center;
    }
    .pricing-decor {
      margin: 18px auto 0;
      width: 82px;
      height: 22px;
      display: block;
    }
    .pricing-grid {
      width: min(820px, 100%);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }
    .price-card {
      position: relative;
      border-radius: 24px;
      padding: 40px 36px;
      background: var(--white);
      border: 2px solid var(--border);
      box-shadow: 0 14px 30px rgba(0,0,0,0.04);
    }
    .price-card.popular {
      border-color: var(--green);
      background: linear-gradient(145deg, #f0fcea, #fff);
    }
    .popular-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--green);
      color: var(--white);
      border-radius: 20px;
      padding: 8px 14px;
      font-size: 0.78rem;
      font-weight: 800;
      white-space: nowrap;
    }
    .plan-name {
      margin: 0 0 18px;
      font-size: 1.2rem;
      font-weight: 900;
    }
    .price-line {
      display: flex;
      align-items: flex-end;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 6px;
    }
    .price-from,
    .price-unit,
    .plan-desc,
    .plan-then { color: var(--gray); }
    .price-main {
      font-size: 2.4rem;
      line-height: 1;
      font-weight: 900;
      color: var(--dark);
    }
    .plan-then { font-size: 0.85rem; margin-bottom: 18px; }
    .plan-desc { margin: 0 0 22px; line-height: 1.7; }
    .feature-checks {
      display: grid;
      gap: 12px;
      margin: 24px 0 0;
      padding: 0;
      list-style: none;
    }
    .feature-checks li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: var(--dark);
      font-weight: 700;
      line-height: 1.55;
    }
    .check {
      color: var(--green);
      font-weight: 900;
      flex: 0 0 auto;
      margin-top: 1px;
    }

    .testimonials { padding: 82px 5vw; }
    .testimonials-header { text-align: center; margin-bottom: 38px; }
    .testimonial-layout {
      width: min(var(--container), calc(100% - 10vw));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 380px minmax(0, 1fr);
      gap: 48px;
      align-items: center;
    }
    .avatars-circle {
      width: 340px;
      height: 340px;
      position: relative;
      margin: 0 auto;
    }
    .avatar-center {
      position: absolute;
      inset: 50%;
      width: 100px;
      height: 100px;
      border-radius: 50%;
      border: 4px solid var(--green);
      overflow: hidden;
      transform: translate(-50%, -50%);
      box-shadow: var(--shadow);
    }
    .avatar-center img, .avatar-orbit img { width: 100%; height: 100%; object-fit: cover; }
    .avatar-orbit { position: absolute; width: 60px; text-align: center; }
    .avatar-orbit .orbit-img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      overflow: hidden;
      border: 3px solid var(--white);
      box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    }
    .avatar-orbit span {
      display: block;
      margin-top: 7px;
      font-size: 0.6rem;
      font-weight: 800;
      color: var(--gray);
      letter-spacing: 0.04em;
    }
    .pos-top { top: 0; left: 50%; transform: translateX(-50%); }
    .pos-top-right { top: 18%; right: 0; }
    .pos-bottom-right { bottom: 18%; right: 0; }
    .pos-bottom { bottom: 0; left: 50%; transform: translateX(-50%); }
    .pos-bottom-left { bottom: 18%; left: 0; }
    .pos-top-left { top: 18%; left: 0; }

    .review-card h3 {
      margin: 0 0 18px;
      font-size: 1.45rem;
      font-weight: 900;
      letter-spacing: 0.04em;
    }
    .review-photo {
      width: 100%;
      max-height: 220px;
      object-fit: cover;
      border-radius: 18px;
      margin-bottom: 18px;
      box-shadow: var(--shadow);
    }
    .stars {
      display: flex;
      gap: 6px;
      margin-bottom: 16px;
      color: #f6b913;
    }
    .stars svg { width: 20px; height: 20px; }
    .review-card p {
      margin: 0;
      font-size: 1rem;
      color: var(--gray);
      line-height: 1.75;
      font-style: italic;
    }

    .refund { padding: 70px 5vw; }
    .refund-inner { width: min(700px, 100%); margin: 0 auto; text-align: center; }
    .refund-badge {
      width: 86px;
      height: 86px;
      margin: 0 auto 22px;
      display: block;
    }
    .refund-copy {
      color: var(--gray);
      line-height: 1.7;
      margin: 0 auto 28px;
      max-width: 620px;
    }
    .payments { margin: 0 0 26px; }
    .payments strong {
      display: block;
      margin-bottom: 14px;
      font-size: 1rem;
    }
    .payment-list {
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    .pay-pill {
      background: var(--white);
      border-radius: 999px;
      box-shadow: var(--shadow);
      padding: 10px 16px;
      font-weight: 800;
      color: var(--dark);
      border: 1px solid rgba(229,229,229,0.8);
    }
    .cta-inline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      margin-top: 4px;
    }
    .cta-circle {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--green);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      box-shadow: 0 12px 24px rgba(109,192,94,0.28);
    }
    .cta-label {
      font-weight: 800;
      font-size: 1.1rem;
    }

    .faq-section { padding: 80px 5vw; }
    .faq-layout {
      width: min(var(--container), calc(100% - 10vw));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 48px;
      align-items: flex-start;
    }
    .faq-tag {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 14px;
      background: var(--green-light);
      color: var(--green);
      border-radius: 20px;
      font-size: 0.84rem;
      font-weight: 800;
      margin-bottom: 16px;
    }
    .faq-help {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: 18px;
      color: var(--green);
      font-weight: 800;
    }
    .faq-list { width: 100%; }
    .faq-item {
      border: 1px solid var(--border);
      border-radius: 14px;
      margin-bottom: 12px;
      overflow: hidden;
      background: var(--white);
    }
    .faq-q {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px 24px;
      border: none;
      background: var(--white);
      text-align: left;
      font-weight: 700;
      color: var(--dark);
      cursor: pointer;
    }
    .chevron { transition: transform .35s ease; flex: 0 0 auto; color: var(--gray); }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease, padding .35s ease;
      padding: 0 24px;
      color: var(--gray);
      line-height: 1.7;
    }
    .faq-item.open .faq-a {
      max-height: 200px;
      padding: 0 24px 22px;
    }
    .faq-item.open .chevron { transform: rotate(180deg); }

    .footer {
      background: var(--dark);
      color: var(--white);
      padding: 52px 5vw 30px;
    }
    .footer-inner {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-brand p {
      margin: 16px 0 0;
      font-size: 0.85rem;
      color: #999;
      line-height: 1.6;
      max-width: 360px;
    }
    .footer-col h5 {
      margin: 0 0 16px;
      color: var(--white);
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 800;
    }
    .footer-col a {
      display: block;
      color: #b8b8b8;
      margin: 0 0 12px;
      font-weight: 700;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      color: #b8b8b8;
      font-size: 0.92rem;
    }
    .footer-pills {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    .footer-pill {
      padding: 8px 13px;
      border-radius: 999px;
      background: rgba(255,255,255,0.07);
      color: var(--white);
      font-weight: 800;
      font-size: 0.85rem;
    }

    .subpage-hero {
      padding: 86px 5vw 30px;
      background: linear-gradient(180deg, #f7fdf5 0%, #fff 100%);
    }
    .subpage-hero .section-inner {
      width: min(var(--container), calc(100% - 10vw));
      margin: 0 auto;
    }
    .subpage-label {
      display: inline-block;
      background: var(--green-light);
      color: var(--green);
      border-radius: 999px;
      padding: 8px 14px;
      font-weight: 800;
      font-size: 0.84rem;
      margin-bottom: 14px;
    }
    .subpage-text {
      color: var(--gray);
      line-height: 1.75;
      max-width: 720px;
      margin: 0;
    }

    .blog-grid {
      width: min(var(--container), calc(100% - 10vw));
      margin: 0 auto;
      padding: 40px 0 90px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .blog-card {
      border: 1px solid var(--border);
      border-radius: 22px;
      overflow: hidden;
      background: var(--white);
      box-shadow: 0 12px 26px rgba(0,0,0,0.04);
    }
    .blog-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }
    .blog-card-body { padding: 22px; }
    .blog-tag {
      display: inline-block;
      padding: 7px 12px;
      border-radius: 999px;
      background: var(--green-light);
      color: var(--green);
      font-size: 0.78rem;
      font-weight: 800;
      margin-bottom: 12px;
    }
    .blog-card h3 {
      margin: 0 0 10px;
      font-size: 1.15rem;
      font-weight: 900;
    }
    .blog-card p {
      margin: 0;
      color: var(--gray);
      line-height: 1.7;
    }

    .about-wrap {
      width: min(var(--container), calc(100% - 10vw));
      margin: 0 auto;
      padding: 44px 0 90px;
    }
    .about-hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 36px;
      align-items: center;
      margin-bottom: 42px;
    }
    .about-hero img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      border-radius: 24px;
      box-shadow: var(--shadow);
    }
    .about-copy p {
      color: var(--gray);
      line-height: 1.8;
      margin: 0 0 16px;
    }
    .team-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-bottom: 34px;
    }
    .team-card {
      border: 1px solid var(--border);
      border-radius: 22px;
      overflow: hidden;
      background: var(--white);
    }
    .team-card img {
      width: 100%;
      height: 260px;
      object-fit: cover;
    }
    .team-card-body {
      padding: 18px 18px 20px;
    }
    .team-card h4 {
      margin: 0 0 6px;
      font-weight: 900;
      font-size: 1.05rem;
    }
    .team-card p {
      margin: 0;
      color: var(--gray);
      line-height: 1.65;
    }
    .about-metrics {
      background: var(--green);
      color: var(--white);
      border-radius: 24px;
      padding: 28px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      box-shadow: 0 18px 30px rgba(109,192,94,0.22);
    }
    .metric strong {
      display: block;
      font-size: 2rem;
      font-weight: 900;
      margin-bottom: 6px;
    }
    .metric span { opacity: 0.95; }

    .faq-page-wrap {
      width: min(720px, calc(100% - 10vw));
      margin: 0 auto;
      padding: 40px 0 90px;
    }

    .legal-wrap {
      width: min(860px, calc(100% - 10vw));
      margin: 0 auto;
      padding: 40px 0 90px;
    }
    .legal-wrap section { margin-bottom: 30px; }
    .legal-wrap h2 {
      margin: 0 0 10px;
      font-size: 1.35rem;
      font-weight: 900;
    }
    .legal-wrap p, .legal-wrap li {
      color: var(--gray);
      line-height: 1.8;
    }
    .legal-wrap ul { margin: 0; padding-left: 20px; }

    .support-wrap {
      width: min(var(--container), calc(100% - 10vw));
      margin: 0 auto;
      padding: 40px 0 90px;
    }
    .support-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-bottom: 34px;
    }
    .support-card {
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 26px;
      background: var(--white);
      box-shadow: 0 10px 26px rgba(0,0,0,0.04);
    }
    .support-icon {
      width: 54px;
      height: 54px;
      border-radius: 16px;
      background: var(--green-light);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      color: var(--green);
    }
    .support-card h3 { margin: 0 0 10px; font-weight: 900; }
    .support-card p { margin: 0; color: var(--gray); line-height: 1.7; }
    .support-topics {
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 28px;
      background: linear-gradient(180deg, #fff, #fbfdfb);
    }
    .support-topics h3 { margin: 0 0 16px; font-weight: 900; }
    .topic-list { display: flex; flex-wrap: wrap; gap: 12px; }
    .topic-pill {
      padding: 10px 14px;
      background: var(--green-light);
      color: var(--green-dark);
      border-radius: 999px;
      font-weight: 800;
    }

    .login-wrap {
      min-height: calc(100vh - 106px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 50px 5vw 90px;
      background: linear-gradient(180deg, #f7fdf5 0%, #fff 100%);
    }
    .login-card {
      width: min(460px, 100%);
      border-radius: 24px;
      border: 1px solid var(--border);
      background: var(--white);
      box-shadow: var(--shadow);
      padding: 36px;
    }
    .login-card h2 { margin: 0 0 10px; font-size: 2rem; font-weight: 900; }
    .login-card p { margin: 0 0 24px; color: var(--gray); line-height: 1.7; }
    .form-group { margin-bottom: 16px; }
    .form-label {
      display: block;
      margin-bottom: 8px;
      font-weight: 800;
    }
    .input {
      width: 100%;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 14px 16px;
      outline: none;
      transition: border-color .2s ease, box-shadow .2s ease;
    }
    .input:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 4px rgba(109,192,94,0.14);
    }
    .login-foot {
      margin-top: 16px;
      color: var(--gray);
      text-align: center;
      font-size: 0.95rem;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-content h1    { animation: fadeUp .6s ease both .1s; }
    .hero-content p     { animation: fadeUp .6s ease both .2s; }
    .hero-content a     { animation: fadeUp .6s ease both .3s; }
    .hero-stats         { animation: fadeUp .6s ease both .4s; }

    @media (max-width: 900px) {
      .nav-links, .nav-right { display: none; }
      .hamburger { display: inline-flex; }
      .hero-bg { width: 40%; }
      .categories-grid { grid-template-columns: repeat(2,1fr); }
      .wellness-grid,
      .testimonial-layout,
      .faq-layout,
      .about-hero,
      .support-grid {
        grid-template-columns: 1fr;
      }
      .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
      }
      .footer-inner { grid-template-columns: 1fr 1fr; }
      .blog-grid { grid-template-columns: 1fr; }
      .team-grid, .about-metrics { grid-template-columns: 1fr; }
      .testimonial-layout { gap: 34px; }
    }

    @media (max-width: 600px) {
      .hero { padding-top: 42px; padding-bottom: 42px; min-height: auto; }
      .hero-bg { display: none; }
      .hero-content { max-width: 100%; }
      .hero-stats { gap: 16px; }
      .stat-divider { display: none; }
      .footer-inner { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
      .categories-grid { grid-template-columns: 1fr; }
      .price-card { padding: 34px 24px; }
      .avatars-circle { width: 300px; height: 300px; }
      .support-grid { grid-template-columns: 1fr; }
      .login-card { padding: 28px 22px; }
      .brand { font-size: 1.18rem; gap: 12px; }
      .brand-icon { height: 42px; }
    }
