:root {
      --chime-green: #1EC677;
      --chime-green-dark: #0a9551;
      --chime-green-soft: #d9f5e7;
      --chime-bottle: #0D4029;
      --chime-soft-bg: #ECF9EE;
      --ink: #1a1a1a;
      --ink-soft: #4a4a4a;
      --ink-muted: #6b7280;
      --border: #e5e7eb;
      --white: #ffffff;
      --radius: 14px;
      --radius-sm: 10px;
      --shadow: 0 12px 28px -8px rgba(13, 64, 41, 0.12);
      --shadow-sm: 0 4px 14px rgba(13, 64, 41, 0.06);
      --transition: 0.2s ease;
    }

    /* ========== Reset & Base ========== */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--ink);
      background-color: #fafafa;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: color var(--transition);
    }

    ul {
      list-style: none;
    }

    /* ========== Navbar ========== */
    .navbar {
      position: sticky;
      top: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
      z-index: 1000;
    }

    .nav-container {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 1.5rem;
    }

    .logo a {
      font-weight: 800;
      font-size: 1.5rem;
      color: var(--chime-green);
      letter-spacing: -0.04em;
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }

    .logo img {
      height: 32px;
      width: auto;
    }

    .nav-menu ul {
      display: flex;
      gap: 2.25rem;
    }

    .nav-menu a {
      font-weight: 500;
      font-size: 0.95rem;
      color: var(--ink-soft);
    }

    .nav-menu a:hover {
      color: var(--chime-green);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 26px;
      height: 18px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
    }

    .hamburger .bar {
      height: 2.5px;
      width: 100%;
      background: var(--ink);
      border-radius: 4px;
      transition: var(--transition);
    }

    /* ========== Main ========== */
    .main-content {
      max-width: 920px;
      margin: 0 auto;
      padding: 2.5rem 1.5rem 5rem;
    }

    /* ========== Hero ========== */
    .hero-media {
      margin-bottom: 2.75rem;
    }

    .image-wrapper {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      background: linear-gradient(145deg, var(--chime-soft-bg) 0%, #e8f8ef 100%);
      aspect-ratio: 9 / 5;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .image-placeholder {
      text-align: center;
      padding: 2rem;
      color: var(--chime-bottle);
      font-weight: 600;
      font-size: 1.15rem;
    }

    .image-placeholder small {
      display: block;
      margin-top: 0.4rem;
      font-weight: 400;
      font-size: 0.9rem;
      opacity: 0.7;
    }

    /* ========== Intro ========== */
    .section-padding {
      margin-bottom: 3.25rem;
    }

    .text-center {
      text-align: center;
    }

    .rate-badge {
      display: inline-block;
      background: var(--chime-green-soft);
      color: var(--chime-green-dark);
      font-size: 0.8125rem;
      font-weight: 600;
      padding: 0.4rem 1.15rem;
      border-radius: 50px;
      margin-bottom: 1.15rem;
      letter-spacing: 0.01em;
    }

    .section-title {
      font-size: clamp(1.9rem, 4.5vw, 2.65rem);
      color: var(--chime-bottle);
      font-weight: 800;
      margin-bottom: 1rem;
      letter-spacing: -0.035em;
      line-height: 1.15;
    }

    .section-description {
      font-size: 1.125rem;
      color: var(--ink-muted);
      max-width: 620px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* ========== Benefits ========== */
    .benefits {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.35rem;
      margin-bottom: 3.5rem;
    }

    .benefit-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.6rem 1.4rem;
      text-align: center;
      transition: transform var(--transition), box-shadow var(--transition);
    }

    .benefit-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-sm);
      border-color: #c8ebd7;
    }

    .benefit-icon {
      width: 48px;
      height: 48px;
      background: var(--chime-green-soft);
      color: var(--chime-green-dark);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.1rem;
      font-size: 1.35rem;
      font-weight: 700;
    }

    .benefit-card h3 {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 0.4rem;
      color: var(--chime-bottle);
    }

    .benefit-card p {
      font-size: 0.9rem;
      color: var(--ink-muted);
      line-height: 1.55;
    }

    /* ========== Form ========== */
    .form-container {
      display: flex;
      justify-content: center;
      background-color: #0a9551;
      border-radius: 17px;
    }

    .form-card {
      background: var(--white);
      padding: 2.6rem;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      width: 100%;
      max-width: 520px;
      border: 1px solid var(--border);
    }

    .form-header {
      text-align: center;
      margin-bottom: 2rem;
    }

    .form-header h2 {
      font-size: 1.55rem;
      font-weight: 700;
      color: var(--chime-bottle);
      margin-bottom: 0.5rem;
    }

    .note-text {
      font-size: 0.875rem;
      color: var(--ink-muted);
    }

    .form-group {
      margin-bottom: 1.35rem;
    }

    .form-group label {
      display: block;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--ink-soft);
      margin-bottom: 0.45rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .form-group input,
    .form-group select {
      width: 100%;
      padding: 0.9rem 1.05rem;
      font-size: 1rem;
      font-family: inherit;
      border: 1.5px solid #d1d5db;
      border-radius: var(--radius-sm);
      background: var(--white);
      color: var(--ink);
      outline: none;
      transition: border-color var(--transition), box-shadow var(--transition);
    }

    .form-group input:focus,
    .form-group select:focus {
      border-color: var(--chime-green);
      box-shadow: 0 0 0 3.5px rgba(30, 198, 119, 0.18);
    }

    .form-group input::placeholder {
      color: #35373a;
    }

    .btn-submit {
      width: 100%;
      background: var(--chime-green);
      color: var(--white);
      border: none;
      padding: 1.05rem;
      font-size: 1.05rem;
      font-weight: 600;
      font-family: inherit;
      border-radius: var(--radius-sm);
      cursor: pointer;
      transition: background var(--transition), transform 0.12s ease, box-shadow var(--transition);
      margin-top: 0.6rem;
      box-shadow: 0 4px 14px rgba(30, 198, 119, 0.3);
    }

    .btn-submit:hover {
      background: var(--chime-green-dark);
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(30, 198, 119, 0.35);
    }

    .btn-submit:active {
      transform: translateY(0);
    }

    /* ========== Footer ========== */
    .footer {
      background: var(--chime-bottle);
      color: #a7c4b5;
      padding: 4rem 1.5rem 2rem;
    }

    .footer-container {
      max-width: 1100px;
      margin: 0 auto;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
      gap: 2.5rem;
      margin-bottom: 3rem;
    }

    .footer-logo {
      font-weight: 800;
      font-size: 1.4rem;
      color: var(--chime-green);
      margin-bottom: 0.9rem;
      letter-spacing: -0.03em;
    }

    .brand-col p {
      font-size: 0.95rem;
      line-height: 1.65;
      max-width: 280px;
      color: #8fb5a3;
    }

    .footer-col h4 {
      color: var(--white);
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 1.15rem;
    }

    .footer-col ul li {
      margin-bottom: 0.65rem;
    }

    .footer-col a {
      font-size: 0.925rem;
      color: #8fb5a3;
    }

    .footer-col a:hover {
      color: var(--chime-green);
    }

    .footer-col p {
      font-size: 0.925rem;
      margin-bottom: 0.5rem;
      color: #8fb5a3;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 1.75rem;
      text-align: center;
      font-size: 0.875rem;
      color: #6b9480;
    }

    /* ========== Responsive ========== */
    @media (max-width: 900px) {
      .benefits {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .hamburger {
        display: flex;
      }

      .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        box-shadow: 0 14px 24px rgba(0, 0, 0, 0.07);
      }

      .nav-menu.active {
        max-height: 280px;
        border-bottom: 1px solid var(--border);
      }

      .nav-menu ul {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.25rem;
        align-items: center;
      }

      .form-card {
        padding: 1.85rem 1.5rem;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
    }
    /* Password Field Wrapper */
.password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-wrapper input {
  width: 100%;
  padding: 0.85rem 3rem 0.85rem 1rem; /* Right padding leaves space for the eye icon */
  font-size: 1rem;
  border: 1px solid var(--border-color, #cbd5e1);
  border-radius: 8px;
  background-color: #ffffff;
  color: var(--chime-dark, #122232);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.password-wrapper input:focus {
  border-color: var(--chime-green, #25c974);
  box-shadow: 0 0 0 3px rgba(37, 201, 116, 0.2);
}

/* Show/Hide Button inside Input */
.toggle-password {
  position: absolute;
  right: 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-muted, #5e6d7a);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: color 0.2s ease;
}

.toggle-password:hover {
  color: var(--chime-green, #25c974);
}