    /* Mission-specific overrides */
    :root {
      --cream: #FFFFFF;
      --text: #4A5568;
      --text-dark: #2D3748;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: var(--font-main);
      background: var(--cream);
      color: var(--text);
      line-height: 1.7;
      font-weight: 300;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2.5rem;
    }
    
    /* Navigation styles imported from navigation.css */
    
    /* Hero Section */
    .hero {
      padding: 8rem 0 4rem;
      text-align: center;
      background: linear-gradient(135deg, var(--light-green) 0%, var(--cream) 100%);
    }
    
    .hero h1 {
      font-size: 3rem;
      font-weight: 600;
      color: var(--forest-green);
      margin-bottom: 1rem;
      line-height: 1.2;
    }
    
    .hero .subtitle {
      font-size: 1.3rem;
      color: var(--text);
      opacity: 0.8;
      max-width: 700px;
      margin: 0 auto 2rem;
    }
    
    .hero-image {
      max-width: 600px;
      margin: 2rem auto;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    }
    
    .hero-image img {
      width: 100%;
      height: auto;
      display: block;
    }
    
    /* Impact Section */
    .impact-section {
      padding: 5rem 0 4rem;
      background: var(--cream);
    }
    
    .section-title {
      font-size: 2.5rem;
      font-weight: 300;
      color: var(--text-dark);
      text-align: center;
      margin-bottom: 3rem;
      letter-spacing: -0.01em;
    }
    
    .impact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin: 0;
    }
    
    .impact-card {
      background: var(--light-green);
      padding: 2rem 1.5rem;
      border-radius: 8px;
      text-align: center;
      border: 1px solid rgba(44, 74, 60, 0.08);
    }
    
    .impact-icon {
      width: 48px;
      height: 48px;
      margin: 0 auto 1rem;
      color: var(--forest-green);
      opacity: 0.8;
    }
    
    .impact-icon svg {
      width: 100%;
      height: 100%;
    }
    
    .impact-card h3 {
      font-size: 1.125rem;
      font-weight: 400;
      color: var(--text-dark);
      margin-bottom: 0.75rem;
    }
    
    .impact-card p {
      color: var(--text);
      font-weight: 300;
      line-height: 1.7;
    }
    
    /* Partnership Section */
    .partnership {
      background: var(--light-green);
      padding: 2.5rem 2.75rem;
      border-radius: 8px;
      margin: 0;
      display: flex;
      align-items: center;
      gap: 3rem;
      flex-wrap: wrap;
      border: 1px solid var(--medium-green);
    }
    
    .partnership-logo {
      flex: 0 0 200px;
    }
    
    .partnership-logo img {
      width: 100%;
      height: auto;
    }
    
    .partnership-content {
      flex: 1;
      min-width: 300px;
    }
    
    .partnership-content h3 {
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--text-dark);
      margin-bottom: 1.25rem;
      line-height: 1.3;
    }
    
    .partnership-content p {
      font-size: 1rem;
      line-height: 1.7;
      color: var(--text);
      font-weight: 300;
      margin: 0;
    }
    
    /* Donation Section */
    .donation-section {
      padding: 4rem 0;
      max-width: 800px;
      margin: 0 auto;
    }
    
    .donation-amounts {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 1rem;
      margin-bottom: 2rem;
    }
    
    .amount-option {
      background: white;
      border: 2px solid var(--medium-green);
      border-radius: 8px;
      padding: 2rem 1rem;
      text-align: center;
      cursor: pointer;
      transition: all 0.2s ease;
      position: relative;
    }
    
    .amount-option:hover {
      border-color: var(--forest-green);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(44, 74, 60, 0.1);
    }
    
    .amount-option.active {
      background: var(--forest-green);
      border-color: var(--forest-green);
      color: white;
    }
    
    .amount-option .amount {
      font-size: 2rem;
      font-weight: 700;
      display: block;
      margin-bottom: 0.5rem;
    }
    
    .amount-option .label {
      font-size: 0.9rem;
      opacity: 0.8;
      font-weight: 500;
    }
    
    .amount-option .badge {
      position: absolute;
      top: -10px;
      right: -10px;
      background: #e74c3c;
      color: white;
      font-size: 0.75rem;
      padding: 0.25rem 0.5rem;
      border-radius: 12px;
      font-weight: 600;
    }
    
    .amount-option .icon {
      width: 40px;
      height: 40px;
      margin: 0 auto;
      color: var(--forest-green);
    }
    
    .amount-option .icon svg {
      width: 100%;
      height: 100%;
    }
    
    .custom-amount {
      margin: 2rem 0;
      display: none;
    }
    
    .custom-amount.active {
      display: block;
    }
    
    .custom-amount label {
      display: block;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: var(--forest-green);
    }
    
    .custom-amount input {
      width: 100%;
      padding: 1rem;
      border: 2px solid var(--medium-green);
      border-radius: 8px;
      font-size: 1.2rem;
      font-family: var(--font-main);
      transition: border-color 0.2s;
    }
    
    .custom-amount input:focus {
      outline: none;
      border-color: var(--forest-green);
    }
    
    .recognition-tier {
      background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
      border: 2px solid #f1c40f;
      border-radius: 8px;
      padding: 1.5rem;
      margin: 2rem 0;
      text-align: center;
    }
    
    .recognition-tier .tier-icon {
      width: 50px;
      height: 50px;
      margin: 0 auto 0.5rem;
      color: #d68910;
    }
    
    .recognition-tier .tier-icon svg {
      width: 100%;
      height: 100%;
    }
    
    .recognition-tier h4 {
      font-size: 1.3rem;
      font-weight: 600;
      color: #d68910;
      margin-bottom: 0.5rem;
    }
    
    .recognition-tier p {
      color: #856404;
      font-size: 0.95rem;
    }
    
    .donate-button {
      width: 100%;
      background: var(--forest-green);
      color: white;
      border: 1.5px solid var(--forest-green);
      border-radius: 4px;
      padding: 1.5rem;
      font-size: 1.3rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s ease;
      font-family: var(--font-main);
      letter-spacing: 0.02em;
    }
    
    .donate-button:hover {
      background: var(--dark-green);
      border-color: var(--dark-green);
      transform: none;
      box-shadow: none;
    }
    
    .donate-button:disabled {
      background: #ccc;
      border-color: #ccc;
      cursor: not-allowed;
      transform: none;
    }
    
    .reward-info {
      background: var(--light-green);
      border-radius: 8px;
      padding: 1.5rem;
      margin-top: 2rem;
      border: 1px solid var(--medium-green);
    }
    
    .reward-info h4 {
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--forest-green);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      justify-content: center;
    }
    
    .reward-info .gift-icon {
      width: 24px;
      height: 24px;
    }
    
    .reward-info .gift-icon svg {
      width: 100%;
      height: 100%;
    }
    
    .reward-info ul {
      list-style: none;
      padding: 0;
    }
    
    .reward-info li {
      padding: 0.5rem 0;
      padding-left: 1.5rem;
      position: relative;
    }
    
    .reward-info li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--forest-green);
      font-weight: bold;
    }
    
    /* Mission Section */
    .mission-section {
      padding: 6rem 0 5rem;
      background: var(--cream);
    }
    
    .mission-title {
      font-size: 2.5rem;
      font-weight: 300;
      color: var(--text-dark);
      text-align: center;
      margin-bottom: 1.5rem;
      letter-spacing: -0.01em;
    }
    
    .mission-intro {
      text-align: center;
      max-width: 750px;
      margin: 0 auto 3rem;
    }
    
    .mission-intro h3 {
      font-size: 1.375rem;
      font-weight: 400;
      color: var(--text-dark);
      margin-bottom: 1.5rem;
      line-height: 1.4;
    }
    
    .mission-intro p {
      font-size: 1.0rem;
      color: var(--text);
      font-weight: 300;
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }
    
    .mission-intro .intro-main {
      margin-bottom: 2rem;
    }
    
    .impact-breakdown {
      background: var(--light-green);
      border-radius: 8px;
      padding: 1.5rem 1.75rem;
      margin: 2rem 0;
      border: 1px solid var(--medium-green);
    }
    
    .breakdown-header {
      font-size: 1rem;
      font-weight: 400;
      color: var(--text-dark);
      margin-bottom: 1rem !important;
    }
    
    .impact-item {
      margin-bottom: 0.75rem !important;
      font-size: 1rem;
      line-height: 1.6;
    }
    
    .impact-item:last-child {
      margin-bottom: 0 !important;
    }
    
    .impact-label {
      font-weight: 500;
      color: var(--text-dark);
    }
    
    .intro-detail {
      margin-bottom: 1.5rem;
      line-height: 1.7;
    }
    
    .intro-emphasis {
      font-weight: 500;
      color: var(--text-dark);
      font-size: 1rem;
      margin-bottom: 0;
      line-height: 1.7;
    }
    
    .impact-highlight-box {
      display: flex;
      align-items: center;
      gap: 2.5rem;
      background: linear-gradient(135deg, var(--light-green) 0%, #f0f7f3 100%);
      border: 2px solid var(--forest-green);
      border-radius: 12px;
      padding: 2.25rem 2.75rem;
      text-align: left;
      box-shadow: 0 4px 12px rgba(44, 74, 60, 0.08);
    }
    
    .highlight-stat {
      flex-shrink: 0;
      text-align: center;
      padding-right: 2rem;
      border-right: 2px solid rgba(44, 74, 60, 0.2);
    }
    
    .stat-number {
      font-size: 4rem;
      font-weight: 600;
      color: var(--forest-green);
      line-height: 1;
      margin-bottom: 0.5rem;
    }
    
    .stat-label {
      font-size: 0.95rem;
      color: var(--forest-green);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    
    .highlight-content {
      flex: 1;
    }
    
    .highlight-main {
      font-size: 1.125rem;
      font-weight: 500;
      color: var(--text-dark);
      margin-bottom: 1.25rem;
      line-height: 1.6;
    }
    
    .impact-points {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }
    
    .impact-point {
      font-size: 0.95rem;
      color: var(--text);
      padding: 0.625rem 1rem;
      background: white;
      border-radius: 8px;
      border: 1px solid rgba(44, 74, 60, 0.15);
      flex: 1;
      min-width: 200px;
    }
    
    .impact-point strong {
      color: var(--forest-green);
      font-weight: 600;
      display: block;
      margin-bottom: 0.25rem;
    }
    
    /* Progress Counter */
    .progress-counter {
      background: var(--light-green);
      border-radius: 8px;
      padding: 2.5rem 2.5rem;
      margin: 0 0 3rem 0;
      border: 1px solid var(--medium-green);
    }
    
    .counter-content {
      max-width: 600px;
      margin: 0 auto;
    }
    
    .counter-number {
      text-align: center;
      margin-bottom: 2rem;
    }
    
    .counter-number .count {
      display: block;
      font-size: 3.5rem;
      font-weight: 400;
      color: var(--text-dark);
      line-height: 1;
      margin-bottom: 0.75rem;
    }
    
    .counter-label {
      display: block;
      font-size: 1rem;
      color: var(--text);
      font-weight: 300;
      line-height: 1.5;
    }
    
    .counter-goal {
      margin-top: 0;
    }
    
    .progress-bar {
      width: 100%;
      height: 12px;
      background: rgba(255, 255, 255, 0.5);
      border-radius: 20px;
      overflow: hidden;
      margin-bottom: 1rem;
      box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .progress-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--forest-green) 0%, #3d6b52 100%);
      border-radius: 20px;
      transition: width 1s ease;
      box-shadow: 0 2px 4px rgba(44, 74, 60, 0.3);
    }
    
    .goal-text {
      text-align: center;
      font-size: 1rem;
      color: var(--text);
      margin: 1rem 0 0 0;
      font-weight: 300;
      line-height: 1.5;
    }
    
    .goal-text strong {
      color: var(--forest-green);
      font-weight: 500;
    }
    
    /* Impact Tiers */
    .impact-tiers {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      margin: 0 0 2.5rem 0;
    }
    
    /* Custom Give - Compact Horizontal Layout */
    .tier-card-compact {
      grid-column: 1 / -1;
      background: white;
      border: 1px solid var(--medium-green);
      border-radius: 8px;
      padding: 1.25rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      transition: all 0.2s ease;
    }
    
    .tier-card-compact:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(44, 74, 60, 0.08);
      border-color: var(--forest-green);
    }
    
    .compact-left {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }
    
    .compact-title {
      font-size: 1.25rem;
      font-weight: 500;
      color: var(--text-dark);
      display: block;
    }
    
    .compact-description {
      font-size: 0.875rem;
      color: var(--text);
      line-height: 1.4;
      display: block;
    }
    
    .compact-button {
      background: var(--forest-green);
      color: white;
      border: 1.5px solid var(--forest-green);
      border-radius: 4px;
      padding: 0.875rem 2.5rem;
      font-size: 1rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s ease;
      font-family: var(--font-main);
      letter-spacing: 0.02em;
      white-space: nowrap;
      flex-shrink: 0;
    }
    
    .compact-button:hover {
      background: var(--dark-green);
      border-color: var(--dark-green);
    }
    
    .tier-card {
      background: white;
      border: 1px solid var(--medium-green);
      border-radius: 8px;
      padding: 2rem 1.875rem 2.125rem;
      position: relative;
      transition: all 0.2s ease;
      display: flex;
      flex-direction: column;
    }
    
    .tier-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(44, 74, 60, 0.12);
      border-color: var(--forest-green);
    }
    
    .tier-popular {
      border-color: var(--forest-green);
      border-width: 1.5px;
    }
    
    .tier-hero {
      border-color: #e8b44c;
      border-width: 1.5px;
      background: linear-gradient(135deg, #fffef9 0%, #fffbf0 100%);
    }
    
    .tier-badge {
      position: absolute;
      top: -10px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--forest-green);
      color: white;
      padding: 0.35rem 0.875rem;
      border-radius: 16px;
      font-size: 0.75rem;
      font-weight: 400;
      white-space: nowrap;
      letter-spacing: 0.02em;
    }
    
    .hero-badge {
      background: #e8b44c;
      color: var(--text-dark);
    }
    
    .tier-header {
      margin-bottom: 1.5rem;
      padding-top: 0.5rem;
    }
    
    .tier-header h4 {
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--text-dark);
      margin-bottom: 0.625rem;
      line-height: 1.3;
    }
    
    .tier-donation {
      font-size: 0.875rem;
      color: var(--text);
      font-weight: 300;
      line-height: 1.5;
    }
    
    .tier-simple-description {
      font-size: 1.0625rem;
      color: var(--text);
      font-weight: 300;
      line-height: 1.7;
      margin: 0;
    }
    
    .tier-price {
      margin-bottom: 1.25rem;
      text-align: left;
    }
    
    /* Impact Visual Badges */
    .tier-impact-visual {
      margin-bottom: 1.5rem;
    }
    
    .impact-badge {
      background: linear-gradient(135deg, var(--light-green) 0%, #e8f5e9 100%);
      border: 1px solid var(--medium-green);
      border-radius: 8px;
      padding: 1rem 1.25rem;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      text-align: left;
    }
    
    .impact-badge-hero {
      background: linear-gradient(135deg, #fffbf0 0%, #fff9e6 100%);
      border: 1px solid #e8b44c;
    }
    
    .impact-badge span {
      font-size: 0.9375rem;
      color: var(--text);
      font-weight: 400;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .impact-badge strong {
      color: var(--forest-green);
      font-weight: 600;
    }
    
    .impact-badge-hero strong {
      color: #d68910;
    }
    
    .you-get {
      padding-bottom: 0.5rem;
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }
    
    .mission-impact {
      padding-top: 0.25rem;
    }
    
    .price-main {
      display: block;
      font-size: 2.75rem;
      font-weight: 600;
      color: var(--text-dark);
      line-height: 1;
      margin-bottom: 0.5rem;
    }
    
    .price-subtext {
      display: block;
      font-size: 0.9375rem;
      color: #666;
      font-weight: 400;
    }
    
    .price-regular {
      font-size: 0.875rem;
      font-weight: 400;
      color: var(--text);
      opacity: 0.5;
      text-decoration: line-through;
      margin-right: 0.5rem;
    }
    
    .breakdown-line {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.625rem 0.875rem;
      margin-bottom: 0.5rem;
      background: rgba(245, 250, 247, 0.5);
      border-radius: 6px;
      border: 1px solid transparent;
    }
    
    .breakdown-line:last-child {
      margin-bottom: 0;
    }
    
    .breakdown-label {
      font-size: 0.875rem;
      color: var(--text);
      font-weight: 300;
    }
    
    .breakdown-value {
      font-size: 1rem;
      font-weight: 400;
      color: var(--text-dark);
    }
    
    .donation-line {
      background: rgba(44, 74, 60, 0.06);
      border-color: rgba(44, 74, 60, 0.12);
    }
    
    .donation-value {
      color: var(--forest-green);
      font-size: 1.0625rem;
      font-weight: 500;
    }
    
    .savings-line {
      background: rgba(232, 180, 76, 0.08);
      border-color: rgba(232, 180, 76, 0.2);
    }
    
    .savings-highlight {
      color: #e8b44c;
      font-size: 1.0625rem;
      font-weight: 500;
    }
    
    .tier-impact {
      flex: 1;
      margin-bottom: 1.5rem;
    }
    
    .impact-visual {
      display: flex;
      justify-content: center;
      margin-bottom: 1rem;
    }
    
    .frame-icon {
      width: 60px;
      height: 60px;
      color: var(--forest-green);
    }
    
    .frame-icon svg {
      width: 100%;
      height: 100%;
    }
    
    .tier-impact p {
      text-align: center;
      font-size: 0.95rem;
      color: var(--text);
      opacity: 0.8;
      line-height: 1.5;
    }
    
    .tier-button {
      width: 100%;
      background: var(--forest-green);
      color: white;
      border: 1.5px solid var(--forest-green);
      border-radius: 4px;
      padding: 1rem;
      font-size: 1rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s ease;
      font-family: var(--font-main);
      letter-spacing: 0.02em;
    }
    
    .tier-button:hover {
      background: var(--dark-green);
      border-color: var(--dark-green);
      transform: none;
      box-shadow: none;
    }
    
    .tier-hero .tier-button {
      background: #e8b44c;
      color: var(--text-dark);
      border-color: #e8b44c;
      border-width: 1.5px;
    }
    
    .tier-hero .tier-button:hover {
      background: #d9a43a;
      border-color: #d9a43a;
    }
    
    /* Disabled/Countdown State */
    .tier-button.countdown-active {
      background: #e0e0e0;
      color: #999;
      border-color: #d0d0d0;
      cursor: not-allowed;
      opacity: 0.7;
    }
    
    .tier-button.countdown-active:hover {
      background: #e0e0e0;
      border-color: #d0d0d0;
      transform: none;
      box-shadow: none;
    }
    
    .tier-launch-note {
      text-align: center;
      font-size: 0.875rem;
      color: var(--forest-green);
      font-weight: 500;
      margin-top: 0.75rem;
      margin-bottom: 0;
    }
    
    .remind-me-link {
      color: var(--forest-green);
      text-decoration: underline;
      font-weight: 600;
      cursor: pointer;
      transition: color 0.2s ease;
    }
    
    .remind-me-link:hover {
      color: var(--dark-green);
    }
    
    .tier-hero .tier-button.countdown-active {
      background: #f5f5f5;
      color: #999;
      border-color: #e0e0e0;
    }
    
    .tier-hero .tier-button.countdown-active:hover {
      background: #f5f5f5;
      border-color: #e0e0e0;
    }
    
    .tier-note {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      margin: 0 0 3rem 0;
    }
    
    .tier-note-icon {
      width: 20px;
      height: 20px;
      color: var(--forest-green);
      flex-shrink: 0;
    }
    
    .tier-note p {
      font-size: 1rem;
      color: var(--text);
      font-weight: 300;
      margin: 0;
    }
    
    /* Consolidated Progress Section */
    .mission-progress-consolidated {
      background: var(--light-green);
      border: 1px solid var(--medium-green);
      border-radius: 8px;
      padding: 2rem 2.5rem;
      margin: 0 0 3rem 0;
      display: grid;
      grid-template-columns: 2fr 1fr;
      align-items: center;
      gap: 2.5rem;
    }
    
    .stat-large {
      font-size: 3.5rem;
      font-weight: 600;
      color: var(--forest-green);
      line-height: 1;
      margin-bottom: 0.5rem;
    }
    
    .stat-label-small {
      font-size: 0.875rem;
      color: var(--text);
      font-weight: 400;
    }
    
    .progress-visual {
      flex: 1;
    }
    
    .progress-bar-inline {
      width: 100%;
      height: 24px;
      background: rgba(44, 74, 60, 0.1);
      border-radius: 24px;
      overflow: hidden;
      margin-bottom: 0.75rem;
    }
    
    .progress-fill-inline {
      height: 100%;
      background: linear-gradient(90deg, var(--forest-green) 0%, #3d6b52 100%);
      border-radius: 20px;
      transition: width 1s ease;
    }
    
    .progress-goal-text {
      font-size: 1.1rem;
      color: var(--text);
      margin: 0;
      text-align: center;
    }
    
    .progress-goal-text strong {
      color: var(--forest-green);
      font-weight: 600;
    }
    
    .impact-summary {
      border-left: 2px solid rgba(44, 74, 60, 0.2);
      padding-left: 2.5rem;
      max-width: 300px;
    }
    
    .impact-summary p {
      font-size: 0.95rem;
      color: var(--text);
      margin: 0;
      line-height: 1.5;
    }
    
    .impact-summary strong {
      color: var(--forest-green);
      font-weight: 600;
    }
    
    /* Launch Reminder Modal */
    .launch-reminder-modal {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 10001;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    
    .launch-reminder-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(4px);
    }
    
    .launch-reminder-content {
      position: relative;
      background: linear-gradient(135deg, #ffffff 0%, #f8fdf9 100%);
      border-radius: 20px;
      padding: 3rem 2.5rem;
      max-width: 520px;
      width: 90%;
      text-align: center;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      border: 3px solid var(--light-green);
      animation: slideUp 0.4s ease;
    }
    
    @keyframes slideUp {
      from { 
        opacity: 0;
        transform: translateY(30px);
      }
      to { 
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .launch-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: #666;
      cursor: pointer;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s ease;
    }
    
    .launch-close:hover {
      background: #f5f5f5;
    }
    
    .launch-icon-header {
      width: 64px;
      height: 64px;
      margin: 0 auto 1.5rem;
      color: var(--forest-green);
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    }
    
    .launch-reminder-content h3 {
      color: var(--forest-green);
      font-size: 1.75rem;
      margin-bottom: 0.75rem;
      font-weight: 600;
      line-height: 1.3;
    }
    
    .launch-reminder-content .launch-date {
      color: #e8b44c;
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }
    
    .launch-reminder-content p {
      color: var(--text);
      margin-bottom: 1.5rem;
      font-size: 1.05rem;
      line-height: 1.5;
    }
    
    .launch-excitement {
      background: linear-gradient(135deg, var(--light-green) 0%, #e8f5e9 100%);
      border-radius: 12px;
      padding: 1.25rem;
      margin-bottom: 1.5rem;
      border: 2px solid var(--medium-green);
    }
    
    .launch-excitement p {
      margin: 0;
      color: var(--forest-green);
      font-weight: 500;
    }
    
    .launch-email-input {
      width: 100%;
      padding: 0.875rem;
      border: 2px solid #e0e0e0;
      border-radius: 8px;
      font-size: 1rem;
      margin-bottom: 1rem;
      font-family: var(--font-main);
      box-sizing: border-box;
    }
    
    .launch-submit-btn {
      width: 100%;
      background: linear-gradient(135deg, var(--forest-green) 0%, #3d6352 100%);
      color: white;
      border: none;
      padding: 1.125rem 2rem;
      border-radius: 10px;
      font-size: 1.125rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: var(--font-main);
      box-shadow: 0 4px 12px rgba(44, 74, 60, 0.3);
    }
    
    .launch-submit-btn:hover {
      background: linear-gradient(135deg, #3d6352 0%, var(--dark-green) 100%);
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(44, 74, 60, 0.4);
    }
    
    .launch-note {
      font-size: 0.85rem !important;
      color: #999 !important;
      margin-top: 1rem !important;
      font-style: italic;
    }
    
    /* Page Email Reminder Section */
    .email-reminder-section {
      padding: 4rem 0;
      background: linear-gradient(135deg, var(--light-green) 0%, #e8f5e9 100%);
      border-top: 2px solid var(--medium-green);
      border-bottom: 2px solid var(--medium-green);
    }
    
    .email-reminder-card {
      background: white;
      border-radius: 20px;
      padding: 3rem 2.5rem;
      text-align: center;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
      border: 3px solid var(--light-green);
      max-width: 600px;
      margin: 0 auto;
    }
    
    .reminder-icon {
      width: 72px;
      height: 72px;
      margin: 0 auto 1.5rem;
      color: var(--forest-green);
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    }
    
    .email-reminder-card h3 {
      color: var(--forest-green);
      font-size: 2rem;
      margin-bottom: 0.5rem;
      font-weight: 600;
    }
    
    .reminder-date {
      color: #e8b44c;
      font-size: 1.35rem;
      font-weight: 600;
      margin-bottom: 1rem;
    }
    
    .reminder-highlight {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--forest-green);
      margin: 0.5rem 0 1rem 0;
    }
    
    .reminder-text {
      color: var(--text);
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 2rem;
    }
    
    .reminder-form {
      display: flex;
      gap: 1rem;
      margin-bottom: 1rem;
    }
    
    .reminder-email-input {
      flex: 1;
      padding: 1rem 1.25rem;
      border: 2px solid var(--medium-green);
      border-radius: 10px;
      font-size: 1rem;
      font-family: var(--font-main);
      transition: all 0.2s ease;
    }
    
    .reminder-email-input:focus {
      outline: none;
      border-color: var(--forest-green);
      box-shadow: 0 0 0 3px rgba(44, 74, 60, 0.1);
    }
    
    .reminder-submit-btn {
      background: linear-gradient(135deg, var(--forest-green) 0%, #3d6352 100%);
      color: white;
      border: none;
      padding: 1rem 2rem;
      border-radius: 10px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: var(--font-main);
      white-space: nowrap;
      box-shadow: 0 4px 12px rgba(44, 74, 60, 0.3);
    }
    
    .reminder-submit-btn:hover {
      background: linear-gradient(135deg, #3d6352 0%, var(--dark-green) 100%);
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(44, 74, 60, 0.4);
    }
    
    .reminder-note {
      color: #666;
      font-size: 0.9rem;
      font-style: italic;
      margin: 0;
    }
    
    @media (max-width: 768px) {
      .email-reminder-card {
        padding: 2rem 1.5rem;
      }
      
      .email-reminder-card h3 {
        font-size: 1.5rem;
      }
      
      .reminder-date {
        font-size: 1.1rem;
      }
      
      .reminder-text {
        font-size: 1rem;
      }
      
      .reminder-form {
        flex-direction: column;
      }
      
      .reminder-submit-btn {
        width: 100%;
      }
    }
    
    /* Custom Donation Section */
    .custom-donation-section {
      background: var(--light-green);
      border-radius: 8px;
      padding: 2.5rem 2.75rem;
      margin: 0 0 3rem 0;
      text-align: center;
      border: 1px solid var(--medium-green);
    }
    
    .custom-donation-icon {
      width: 32px;
      height: 32px;
      color: var(--forest-green);
      margin: 0 auto 1rem;
      display: block;
    }
    
    .custom-donation-header h3 {
      font-size: 1.375rem;
      font-weight: 400;
      color: var(--text-dark);
      margin-bottom: 1.25rem;
      line-height: 1.4;
    }
    
    .custom-donation-header p {
      font-size: 1rem;
      color: var(--text);
      font-weight: 300;
      margin-bottom: 2rem;
      line-height: 1.7;
    }
    
    .open-donation-modal {
      background: var(--forest-green);
      color: white;
      border: 1.5px solid var(--forest-green);
      border-radius: 4px;
      padding: 1rem 2.5rem;
      font-size: 1rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s ease;
      font-family: var(--font-main);
      letter-spacing: 0.02em;
    }
    
    .open-donation-modal:hover {
      background: var(--dark-green);
      border-color: var(--dark-green);
      transform: none;
      box-shadow: none;
    }
    
    /* Mission Statement */
    .mission-statement {
      text-align: center;
      max-width: 800px;
      margin: 0;
      padding: 2.5rem 2.5rem;
      background: var(--light-green);
      border-radius: 8px;
      border: 1px solid var(--medium-green);
    }
    
    .statement-main {
      font-size: 1.0625rem;
      line-height: 1.7;
      color: var(--text);
      font-weight: 300;
      margin-bottom: 1.5rem;
    }
    
    .statement-main:last-of-type {
      margin-bottom: 2rem;
    }
    
    .statement-cta {
      font-size: 1.25rem;
      color: var(--text-dark);
      margin: 0;
      font-weight: 500;
      letter-spacing: 0.005em;
      line-height: 1.4;
    }
    
    /* Donation Modal */
    .donation-modal-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 9100;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(4px);
    }
    
    .donation-modal-overlay.active {
      display: flex;
    }
    
    .donation-modal {
      background: white;
      border-radius: 12px;
      max-width: 500px;
      width: 90%;
      max-height: 90vh;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      z-index: 9101;
      position: relative;
    }
    
    .modal-header {
      padding: 1.5rem 2rem;
      border-bottom: 1px solid #e0e0e0;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .modal-header h3 {
      font-size: 1.5rem;
      color: var(--forest-green);
      margin: 0;
    }
    
    .close-modal {
      background: none;
      border: none;
      font-size: 2rem;
      color: #666;
      cursor: pointer;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
    }
    
    .close-modal:hover {
      background: #f5f5f5;
    }
    
    .modal-body {
      padding: 2rem;
    }
    
    .donation-presets {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      margin-bottom: 2rem;
    }
    
    .preset-option {
      background: white;
      border: 2px solid var(--medium-green);
      border-radius: 8px;
      padding: 1.5rem 1rem;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--forest-green);
      cursor: pointer;
      transition: all 0.2s ease;
      font-family: var(--font-main);
      position: relative;
    }
    
    .preset-option:hover {
      border-color: var(--forest-green);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(44, 74, 60, 0.15);
    }
    
    .preset-option.active {
      background: var(--forest-green);
      border-color: var(--forest-green);
      color: white;
    }
    
    .preset-option.popular {
      border-color: #d68910;
      border-width: 3px;
      background: linear-gradient(135deg, #fff9e6 0%, white 100%);
    }
    
    .preset-option.popular.active {
      background: linear-gradient(135deg, #d68910 0%, #f39c12 100%);
      border-color: #d68910;
      color: white;
    }
    
    .preset-label {
      display: block;
      font-size: 0.8rem;
      font-weight: 500;
      margin-top: 0.25rem;
      opacity: 0.8;
    }
    
    .custom-amount-section {
      margin-bottom: 2rem;
    }
    
    .custom-amount-section label {
      display: block;
      font-weight: 600;
      margin-bottom: 0.75rem;
      color: var(--forest-green);
    }
    
    .input-wrapper {
      position: relative;
    }
    
    .currency-symbol {
      position: absolute;
      left: 1rem;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--text);
      opacity: 0.6;
    }
    
    .custom-amount-section input {
      width: 100%;
      padding: 1rem 1rem 1rem 2.5rem;
      border: 2px solid var(--medium-green);
      border-radius: 8px;
      font-size: 1.2rem;
      font-family: var(--font-main);
      transition: border-color 0.2s;
    }
    
    .custom-amount-section input:focus {
      outline: none;
      border-color: var(--forest-green);
    }
    
    .modal-donate-button {
      width: 100%;
      background: var(--forest-green);
      color: white;
      border: 1.5px solid var(--forest-green);
      border-radius: 4px;
      padding: 1.2rem;
      font-size: 1.2rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s ease;
      font-family: var(--font-main);
      letter-spacing: 0.02em;
    }
    
    .modal-donate-button:hover:not(:disabled) {
      background: var(--dark-green);
      border-color: var(--dark-green);
      transform: none;
      box-shadow: none;
    }
    
    .modal-donate-button:disabled {
      background: #ccc;
      border-color: #ccc;
      cursor: not-allowed;
      transform: none;
    }
    
    .modal-note {
      margin-top: 1.5rem;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      gap: 0.5rem;
      text-align: left;
    }
    
    .modal-note-icon {
      width: 16px;
      height: 16px;
      color: var(--forest-green);
      flex-shrink: 0;
      margin-top: 0.125rem;
    }
    
    .modal-note p {
      font-size: 0.875rem;
      color: var(--text);
      font-weight: 300;
      margin: 0;
      line-height: 1.6;
    }
    
    /* Checkout Overlay */
    .checkout-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 9300;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(4px);
    }
    
    .checkout-overlay.active {
      display: flex;
    }
    
    .checkout-modal {
      background: white;
      border-radius: 12px;
      max-width: 800px;
      width: 90%;
      max-height: 90vh;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      z-index: 9301;
      position: relative;
      pointer-events: auto;
    }
    
    .checkout-header {
      padding: 1.5rem 2rem;
      border-bottom: 1px solid #e0e0e0;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .checkout-header h2 {
      font-size: 1.5rem;
      color: var(--forest-green);
    }
    
    .close-checkout {
      background: none;
      border: none;
      font-size: 2rem;
      color: #666;
      cursor: pointer;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
    }
    
    .close-checkout:hover {
      background: #f5f5f5;
    }
    
    .checkout-body {
      padding: 2rem;
      overflow-y: auto;
      max-height: calc(90vh - 80px);
      pointer-events: auto;
    }
    
    #checkoutContainer {
      pointer-events: auto;
      position: relative;
      z-index: 1;
    }
    
    /* Footer */
    .footer {
      background: var(--forest-green);
      color: white;
      padding: 3rem 0 2rem;
      text-align: center;
    }
    
    .footer p {
      opacity: 0.8;
      margin: 0.5rem 0;
    }
    
    .footer a {
      color: white;
      text-decoration: underline;
    }
    
    /* Hero Video Section */
    .hero-video {
      padding: 10rem 0 5rem;
      background: var(--cream);
    }
    
    .hero-content {
      text-align: center;
      margin-bottom: 3rem;
    }
    
    .hero-content h1 {
      font-size: 3rem;
      font-weight: 300;
      color: var(--text-dark);
      margin-bottom: 1.5rem;
      line-height: 1.25;
      letter-spacing: -0.02em;
    }
    
    .hero-subtitle {
      font-size: 1.125rem;
      color: var(--text);
      font-weight: 300;
      max-width: 650px;
      margin: 0 auto 2.5rem;
      line-height: 1.7;
    }
    
    .hero-cta {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }
    
    .hero-launch-note {
      text-align: center;
      font-size: 0.9rem;
      color: var(--forest-green);
      font-weight: 500;
      margin-top: 1rem;
      margin-bottom: 0;
    }
    
    .hero-remind-link {
      color: var(--forest-green);
      text-decoration: underline;
      font-weight: 600;
      cursor: pointer;
      transition: color 0.2s ease;
    }
    
    .hero-remind-link:hover {
      color: var(--dark-green);
    }
    
    .cta-primary, .cta-secondary {
      padding: 0.875rem 2.25rem;
      border-radius: 4px;
      font-size: 1rem;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.2s ease;
      display: inline-block;
      letter-spacing: 0.02em;
      cursor: pointer;
    }
    
    .cta-primary {
      background: var(--forest-green);
      color: white;
      border: 1.5px solid var(--forest-green);
    }
    
    .cta-primary:hover {
      background: var(--dark-green);
      border-color: var(--dark-green);
      transform: none;
      box-shadow: none;
    }
    
    .cta-secondary {
      background: white;
      color: var(--forest-green);
      border: 1.5px solid var(--forest-green);
    }
    
    .cta-secondary:hover {
      background: var(--light-green);
      border-color: var(--forest-green);
    }
    
    .hero-video-container {
      max-width: 900px;
      margin: 0 auto;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
      background: #f8f9fa;
      border: 1px solid rgba(0, 0, 0, 0.06);
    }
    
    .hero-video-placeholder {
      width: 100%;
      aspect-ratio: 16 / 9;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      color: var(--text);
      font-size: 1rem;
      font-weight: 300;
    }
    
    .mission-hero-video {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
    }
    
    .video-caption {
      background: var(--light-green);
      color: var(--text-dark);
      padding: 1.125rem 1.5rem;
      text-align: center;
      border-top: 1px solid var(--medium-green);
    }
    
    .video-caption p {
      margin: 0;
      font-size: 0.9375rem;
      font-weight: 400;
      line-height: 1.6;
    }
    
    .video-caption strong {
      font-weight: 500;
    }
    
    /* Mission Story */
    .mission-story {
      padding: 6rem 0 4rem;
      background: var(--cream);
    }
    
    .section-label {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--forest-green);
      margin-bottom: 1rem;
    }
    
    .mission-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }
    
    .mission-text h2 {
      font-size: 2.5rem;
      font-weight: 300;
      color: var(--text-dark);
      margin-bottom: 2rem;
      line-height: 1.3;
      letter-spacing: -0.01em;
    }
    
    .lead {
      font-size: 1.125rem;
      font-weight: 400;
      color: var(--text-dark);
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }
    
    .mission-text p {
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 1.5rem;
      color: var(--text);
      font-weight: 300;
    }
    
    .mission-text p:last-of-type {
      margin-bottom: 2.5rem;
    }
    
    .mission-highlight {
      background: var(--light-green);
      padding: 1.25rem 1.5rem;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 0.875rem;
      margin-top: 0;
      border: 1px solid var(--medium-green);
    }
    
    .mission-highlight svg {
      flex-shrink: 0;
      color: var(--forest-green);
    }
    
    .mission-highlight p {
      margin: 0;
      font-size: 1.1rem;
    }
    
    .mission-image {
      position: relative;
    }
    
    .mission-image img {
      width: 100%;
      height: auto;
      object-fit: cover;
      border-radius: 16px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    }
    
    .image-caption {
      background: var(--light-green);
      padding: 1.25rem 1.5rem;
      border-radius: 8px;
      margin-top: 1.5rem;
      border: 1px solid var(--medium-green);
      border-left: 3px solid var(--forest-green);
    }
    
    .image-caption > p {
      margin: 0 0 1rem 0;
      font-style: italic;
      color: var(--text);
      font-size: 0.9375rem;
      line-height: 1.6;
    }
    
    .story-toggle-btn {
      background: transparent;
      border: none;
      padding: 0.75rem 0 0.5rem 0;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      cursor: pointer;
      font-family: inherit;
      transition: all 0.2s ease;
      color: var(--forest-green);
      border-top: 1px solid var(--medium-green);
      width: 100%;
      margin-top: 0.5rem;
    }
    
    .story-toggle-btn:hover {
      color: var(--text-dark);
    }
    
    .story-toggle-btn .toggle-text {
      font-size: 0.875rem;
      font-weight: 500;
    }
    
    .story-toggle-btn .toggle-icon {
      transition: transform 0.3s ease;
      flex-shrink: 0;
      margin-left: auto;
    }
    
    .story-toggle-btn.active .toggle-icon {
      transform: rotate(180deg);
    }
    
    .story-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
      padding: 0;
    }
    
    .story-content.active {
      max-height: 500px;
      padding-top: 1rem;
    }
    
    .story-content p {
      margin: 0;
      color: var(--text-dark);
      font-size: 0.9375rem;
      line-height: 1.7;
      font-weight: 400;
    }
    
    .mission-goal-banner {
      background: linear-gradient(135deg, var(--forest-green) 0%, #2d5a3f 100%);
      padding: 2.5rem 3rem;
      border-radius: 16px;
      margin-top: 4rem;
      display: flex;
      align-items: center;
      gap: 2rem;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mission-goal-banner svg {
      flex-shrink: 0;
      color: white;
      filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    }
    
    .mission-goal-banner .goal-content {
      flex: 1;
    }
    
    .mission-goal-banner h3 {
      font-size: 0.875rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 0.5rem;
    }
    
    .mission-goal-banner p {
      margin: 0;
      font-size: 1.75rem;
      font-weight: 600;
      color: white;
      line-height: 1.3;
      letter-spacing: -0.01em;
    }
    
    .goal-subtitle {
      font-size: 1.125rem;
      font-weight: 400;
      opacity: 0.95;
      display: block;
      margin-top: 0.5rem;
    }
    
    /* Partnership Section */
    .partnership-section {
      padding: 2rem 0 4rem;
      background: var(--cream);
    }
    
    /* Product Explainer */
    .product-explainer {
      padding: 6rem 0 5rem;
      background: var(--light-green);
    }
    
    .product-explainer-header {
      text-align: center;
      margin-bottom: 3rem;
    }
    
    .product-explainer h2 {
      font-size: 2.5rem;
      font-weight: 300;
      color: var(--text-dark);
      margin-bottom: 1.5rem;
      letter-spacing: -0.01em;
    }
    
    .section-intro {
      text-align: center;
      font-size: 1.0625rem;
      max-width: 650px;
      margin: 0 auto;
      color: var(--text);
      font-weight: 300;
      line-height: 1.7;
    }
    
    .product-explainer-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }
    
    .product-explainer-carousel {
      position: sticky;
      top: 120px;
    }
    
    .product-explainer-features {
      display: flex;
      flex-direction: column;
    }
    
    .feature-tabs {
      display: flex;
      gap: 0.5rem;
      margin-bottom: 2rem;
      border-bottom: 2px solid var(--light-green);
      padding-bottom: 0;
    }
    
    .feature-tab {
      background: transparent;
      border: none;
      padding: 0.75rem 1.25rem;
      font-family: inherit;
      font-size: 0.9375rem;
      font-weight: 500;
      color: var(--text);
      cursor: pointer;
      transition: all 0.2s ease;
      border-bottom: 3px solid transparent;
      margin-bottom: -2px;
    }
    
    .feature-tab:hover {
      color: var(--forest-green);
    }
    
    .feature-tab.active {
      color: var(--forest-green);
      border-bottom-color: var(--forest-green);
    }
    
    .product-features {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin: 0;
    }
    
    .feature-card {
      background: white;
      padding: 2rem 1.5rem;
      border-radius: 8px;
      text-align: center;
      border: 1px solid rgba(44, 74, 60, 0.08);
      transition: all 0.2s ease;
    }
    
    .feature-card:hover {
      border-color: rgba(44, 74, 60, 0.15);
      transform: translateY(-2px);
    }
    
    .feature-icon {
      width: 40px;
      height: 40px;
      margin: 0 auto 1rem;
      color: var(--forest-green);
      opacity: 0.8;
    }
    
    .feature-card h3 {
      font-size: 1.125rem;
      font-weight: 400;
      color: var(--text-dark);
      margin-bottom: 0.75rem;
    }
    
    .feature-card p {
      color: var(--text);
      line-height: 1.7;
      font-size: 0.9375rem;
      font-weight: 300;
    }
    
    .product-carousel-container {
      width: 100%;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    }
    
    .product-showcase {
      max-width: 800px;
      margin: 0 auto;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    }
    
    .product-showcase img {
      width: 100%;
      display: block;
    }
    
    /* First 50 Perks */
    .first-fifty {
      padding: 5rem 0 4rem;
      background: var(--cream);
    }
    
    .perks-banner {
      max-width: 900px;
      margin: 0 auto;
      background: #fffbf0;
      border-radius: 8px;
      padding: 2.5rem 2.75rem;
      border: 1.5px solid #e8b44c;
    }
    
    .perks-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #e8b44c;
      color: var(--text-dark);
      padding: 0.5rem 1.25rem;
      border-radius: 20px;
      font-weight: 400;
      margin-bottom: 1.5rem;
      font-size: 0.875rem;
    }
    
    .badge-icon {
      width: 18px;
      height: 18px;
    }
    
    .perks-content h2 {
      font-size: 1.875rem;
      font-weight: 400;
      color: var(--text-dark);
      margin-bottom: 1.5rem;
      letter-spacing: -0.01em;
      line-height: 1.3;
    }
    
    .perks-intro {
      font-size: 1.0625rem;
      color: var(--text);
      font-weight: 300;
      margin-bottom: 2.5rem;
      line-height: 1.7;
    }
    
    .perks-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem 3rem;
      margin-bottom: 2.5rem;
    }
    
    .perk-item {
      display: flex;
      align-items: flex-start;
      gap: 1.125rem;
    }
    
    .perk-icon {
      width: 32px;
      height: 32px;
      flex-shrink: 0;
      color: var(--forest-green);
    }
    
    .perk-text strong {
      display: block;
      font-size: 1rem;
      color: var(--text-dark);
      margin-bottom: 0.25rem;
      font-weight: 500;
    }
    
    .perk-text p {
      font-size: 0.875rem;
      color: var(--text);
      font-weight: 300;
      margin: 0;
      line-height: 1.6;
    }
    
    .spots-remaining {
      background: white;
      padding: 1rem 1.25rem;
      border-radius: 6px;
      text-align: center;
      margin-top: 0;
      border: 1px solid rgba(232, 180, 76, 0.25);
    }
    
    .spots-remaining p {
      margin: 0;
      color: var(--text-dark);
      font-size: 0.9375rem;
      font-weight: 400;
      line-height: 1.5;
    }
    
    /* Timeline */
    .timeline {
      padding: 6rem 0;
      background: white;
    }
    
    .timeline h2 {
      text-align: center;
      font-size: 3rem;
      font-weight: 400;
      color: var(--forest-green);
      margin-bottom: 4rem;
      letter-spacing: -0.03em;
    }
    
    .timeline-steps {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
    }
    
    .timeline-steps::before {
      content: '';
      position: absolute;
      left: 30px;
      top: 30px;
      bottom: 30px;
      width: 2px;
      background: var(--medium-green);
    }
    
    .step {
      display: flex;
      gap: 2rem;
      margin-bottom: 3rem;
      position: relative;
    }
    
    .step:last-child {
      margin-bottom: 0;
    }
    
    .step-number {
      width: 60px;
      height: 60px;
      flex-shrink: 0;
      background: var(--forest-green);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: 700;
      box-shadow: 0 4px 12px rgba(44, 74, 60, 0.3);
      position: relative;
      z-index: 1;
    }
    
    .step-content h3 {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--forest-green);
      margin-bottom: 0.5rem;
    }
    
    .step-content p {
      color: var(--text);
      opacity: 0.8;
      line-height: 1.7;
    }
    
    /* Special Thanks */
    .special-thanks {
      padding: 5rem 0 4rem;
      background: var(--cream);
      text-align: center;
    }
    
    .special-thanks h3 {
      font-size: 2.5rem;
      font-weight: 300;
      color: var(--text-dark);
      margin-bottom: 1.5rem;
      letter-spacing: -0.01em;
    }
    
    .thanks-intro {
      font-size: 1rem;
      color: var(--text);
      font-weight: 300;
      max-width: 700px;
      margin: 0 auto 3rem;
      line-height: 1.7;
    }
    
    .partner-logos {
      display: flex;
      justify-content: center;
      gap: 3rem;
      margin: 0 0 3rem 0;
      flex-wrap: wrap;
    }
    
    .partner-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }
    
    .partner-logo {
      height: 60px;
      width: auto;
      object-fit: contain;
      filter: grayscale(20%);
      opacity: 0.9;
      transition: all 0.3s ease;
    }
    
    .partner-logo:hover {
      filter: grayscale(0%);
      opacity: 1;
    }
    
    .partner-location {
      font-size: 0.9rem;
      color: var(--text);
      opacity: 0.6;
      font-style: italic;
    }
    
    .thanks-detail {
      font-size: 0.9375rem;
      color: var(--text);
      font-weight: 300;
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.7;
    }
    
    /* FAQs */
    .faqs {
      padding: 6rem 0 5rem;
      background: var(--light-green);
    }
    
    .faqs h2 {
      text-align: center;
      font-size: 2.5rem;
      font-weight: 300;
      color: var(--text-dark);
      margin-bottom: 3rem;
      letter-spacing: -0.01em;
    }
    
    .faq-grid {
      columns: 2;
      column-gap: 1.75rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .faq-item {
      background: white;
      padding: 2.25rem 2rem;
      border-radius: 8px;
      border: 1px solid rgba(44, 74, 60, 0.06);
      transition: all 0.2s ease;
      break-inside: avoid;
      margin-bottom: 1.75rem;
      display: inline-block;
      width: 100%;
    }
    
    .faq-item:hover {
      border-color: rgba(44, 74, 60, 0.12);
      box-shadow: 0 2px 8px rgba(44, 74, 60, 0.04);
    }
    
    .faq-item h3 {
      font-size: 1.0625rem;
      font-weight: 500;
      color: var(--text-dark);
      margin-bottom: 1rem;
      line-height: 1.5;
      letter-spacing: -0.005em;
    }
    
    .faq-item p {
      color: var(--text);
      font-weight: 300;
      line-height: 1.65;
      margin: 0 0 0.75rem 0;
      font-size: 0.9375rem;
    }
    
    .faq-item p:last-child {
      margin-bottom: 0;
    }
    
    .faq-list {
      background: rgba(245, 250, 247, 0.6);
      border-radius: 6px;
      padding: 1rem 1.125rem;
      margin: 0.875rem 0;
      border: 1px solid rgba(44, 74, 60, 0.06);
    }
    
    .faq-list-item {
      margin-bottom: 0.75rem !important;
      line-height: 1.6;
      font-size: 0.9375rem;
    }
    
    .faq-list-item-last {
      margin-bottom: 0 !important;
    }
    
    .faq-list-item strong {
      font-weight: 500;
      color: var(--text-dark);
    }
    
    .faq-list + p {
      margin-top: 0.875rem;
    }
    
    /* Final CTA */
    .final-cta {
      padding: 5rem 0;
      background: linear-gradient(135deg, var(--forest-green) 0%, var(--dark-green) 100%);
      color: white;
      text-align: center;
    }
    
    .cta-content h2 {
      font-size: 2.5rem;
      font-weight: 400;
      margin-bottom: 2rem;
      letter-spacing: -0.01em;
      line-height: 1.3;
      color: white;
    }
    
    .cta-content p {
      font-size: 1.0625rem;
      max-width: 700px;
      margin: 0 auto 1.5rem;
      opacity: 0.95;
      line-height: 1.7;
      font-weight: 300;
    }
    
    .cta-urgency {
      font-size: 1.125rem;
      margin: 2.5rem auto;
      font-weight: 400;
      line-height: 1.5;
    }
    
    .cta-button-large {
      display: inline-block;
      background: white;
      color: var(--forest-green);
      padding: 1.125rem 2.5rem;
      border-radius: 4px;
      font-size: 1.0625rem;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.2s ease;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
      letter-spacing: 0.02em;
      border: 1.5px solid white;
    }
    
    .cta-button-large:hover {
      transform: none;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
      background: rgba(255, 255, 255, 0.9);
    }
    
    .progress-mini {
      margin-top: 3rem;
      padding-top: 2.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .progress-text {
      font-size: 1rem;
      opacity: 0.95;
      font-weight: 300;
      line-height: 1.5;
      margin: 0;
    }
    
    /* Responsive */
    @media (max-width: 900px) {
      .faq-grid {
        columns: 1;
      }
      
      .faq-item {
        padding: 2rem 1.75rem;
        margin-bottom: 1.5rem;
      }
      
      .faq-item h3 {
        font-size: 1.0625rem;
      }
    }
    
    @media (max-width: 768px) {
      .hero-video {
        padding: 8rem 0 3.5rem;
      }
      
      .hero-content {
        margin-bottom: 2.5rem;
      }
      
      .hero-content h1 {
        font-size: 2rem;
      }
      
      .hero-subtitle {
        font-size: 1.0625rem;
      }
      
      .hero-cta {
        flex-direction: column;
        align-items: stretch;
      }
      
      .hero-launch-note {
        font-size: 0.85rem;
        margin-top: 0.75rem;
      }
      
      .cta-primary, .cta-secondary {
        width: 100%;
        text-align: center;
      }
      
      .container {
        padding: 0 var(--container-padding-x-tablet, 1.5rem);
      }
      
      .section-title {
        font-size: 2rem;
      }
      
      .mission-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
      
      .mission-image {
        margin-top: 0;
      }
      
      .mission-story {
        padding: 4rem 0 3rem;
      }
      
      .mission-text h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
      }
      
      .lead {
        font-size: 1.0625rem;
        margin-bottom: 1.5rem;
      }
      
      .section-title {
        margin-bottom: 2.5rem;
      }
      
      .mission-title {
        margin-bottom: 1.5rem;
      }
      
      .ellie-story {
        padding: 1.5rem 1.75rem;
        margin-top: 1.25rem;
      }
      
      .ellie-story h3 {
        font-size: 1.125rem;
      }
      
      .ellie-story p {
        font-size: 0.9375rem;
      }
      
      .mission-goal-banner {
        padding: 2rem 1.75rem;
        margin-top: 3rem;
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
      }
      
      .mission-goal-banner p {
        font-size: 1.5rem;
      }
      
      .goal-subtitle {
        font-size: 1rem;
      }
      
      .partnership-section {
        padding: 1.5rem 0 3rem;
      }
      
      .product-explainer {
        padding: 4rem 0 3.5rem;
      }
      
      .product-explainer-header {
        margin-bottom: 2.5rem;
      }
      
      .product-explainer h2 {
        margin-bottom: 1.25rem;
      }
      
      .product-explainer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
      
      .product-explainer-carousel {
        position: relative;
        top: 0;
      }
      
      .product-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
      }
      
      .first-fifty {
        padding: 3.5rem 0 3rem;
      }
      
      .mission-section {
        padding: 4rem 0 3.5rem;
      }
      
      .impact-section {
        padding: 3.5rem 0 3rem;
      }
    }
    
    @media (max-width: 600px) {
      .product-features {
        grid-template-columns: 1fr;
        gap: 1.25rem;
      }
      
      .impact-grid {
        gap: 1.5rem;
      }
      
      .special-thanks {
        padding: 3.5rem 0 3rem;
      }
      
      .special-thanks h3 {
        margin-bottom: 1.25rem;
      }
      
      .thanks-intro {
        margin-bottom: 2.5rem;
      }
      
      .faqs {
        padding: 4rem 0 3.5rem;
      }
      
      .faqs h2 {
        margin-bottom: 2.5rem;
      }
      
      .final-cta {
        padding: 3.5rem 0;
      }
      
      .cta-content h2 {
        margin-bottom: 1.5rem;
      }
      
      .cta-content p {
        margin-bottom: 1.25rem;
      }
      
      .product-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
      }
      
      .perks-banner {
        padding: 2rem 1.75rem;
      }
      
      .perks-content h2 {
        margin-bottom: 1.25rem;
      }
      
      .perks-intro {
        margin-bottom: 2rem;
      }
      
      .faq-item {
        padding: 1.75rem 1.5rem;
        margin-bottom: 1.5rem;
      }
      
      .faq-item h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
      }
      
      .faq-item p {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
      }
      
      .faq-grid {
        columns: 1;
      }
      
      .perks-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
      
      .timeline-steps::before {
        left: 20px;
      }
      
      .step {
        gap: 1.5rem;
      }
      
      .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
      }
      
      .step-content h3 {
        font-size: 1.2rem;
      }
      
      .special-thanks h3 {
        font-size: 1.5rem;
      }
      
      .partner-logo {
        height: 50px;
      }
      
      .cta-content h2 {
        font-size: 2rem;
      }
      
      .cta-button-large {
        width: 100%;
        padding: 1.2rem 2rem;
      }
      
      .mission-title {
        font-size: 2rem;
      }
      
      .mission-intro h3 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
      }
      
      .mission-intro {
        margin-bottom: 2.5rem;
      }
      
      .impact-breakdown {
        margin: 1.5rem 0;
        padding: 1.25rem 1.5rem;
      }
      
      .progress-counter {
        padding: 2rem 1.75rem;
        margin: 0 0 2.5rem 0;
      }
      
      .counter-number {
        margin-bottom: 1.5rem;
      }
      
      .counter-number .count {
        font-size: 3rem;
        margin-bottom: 0.625rem;
      }
      
      .impact-tiers {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 0 0 2rem 0;
      }
      
      .tier-card {
        padding: 1.75rem 1.5rem;
      }
      
      .tier-header h4 {
        font-size: 1.375rem;
      }
      
      .tier-note {
        margin: 0 0 2.5rem 0;
      }
      
      .custom-donation-section {
        padding: 2rem 1.75rem;
        margin: 0 0 2rem 0;
      }
      
      .impact-highlight-box {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.75rem 1.5rem;
      }
      
      .highlight-stat {
        border-right: none;
        border-bottom: 2px solid rgba(44, 74, 60, 0.2);
        padding-right: 0;
        padding-bottom: 1.5rem;
        width: 100%;
      }
      
      .stat-number {
        font-size: 3rem;
      }
      
      .impact-point {
        font-size: 0.875rem;
        min-width: auto;
      }
      
      .mission-progress-consolidated {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
      }
      
      .progress-stat {
        border-right: none;
        border-bottom: 2px solid rgba(44, 74, 60, 0.2);
        padding-right: 0;
        padding-bottom: 1.5rem;
      }
      
      .stat-large {
        font-size: 2.5rem;
      }
      
      .impact-summary {
        border-left: none;
        border-top: 2px solid rgba(44, 74, 60, 0.2);
        padding-left: 0;
        padding-top: 1.5rem;
        max-width: 100%;
        text-align: center;
      }
      
      .tier-card-compact {
        grid-column: 1;
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem 1.5rem;
      }
      
      .compact-left {
        text-align: center;
      }
      
      .compact-title {
        font-size: 1.125rem;
      }
      
      .compact-description {
        font-size: 0.8rem;
      }
      
      .compact-button {
        width: 100%;
        padding: 0.875rem 2rem;
      }
      
      .impact-highlight-box {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.75rem 1.5rem;
        text-align: center;
      }
      
      .highlight-stat {
        border-right: none;
        border-bottom: 2px solid rgba(44, 74, 60, 0.2);
        padding-right: 0;
        padding-bottom: 1.25rem;
        width: 100%;
      }
      
      .stat-number {
        font-size: 3rem;
      }
      
      .impact-points {
        flex-direction: column;
        gap: 0.75rem;
      }
      
      .impact-point {
        font-size: 0.875rem;
        text-align: center;
      }
      
      .custom-donation-header h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
      }
      
      .mission-statement {
        padding: 2rem 1.75rem;
        margin: 0;
      }
      
      .statement-main {
        font-size: 1rem;
        margin-bottom: 1.25rem;
      }
      
      .statement-main:last-of-type {
        margin-bottom: 1.75rem;
      }
      
      .statement-cta {
        font-size: 1.125rem;
      }
      
      .donation-modal {
        width: 95%;
      }
      
      .modal-header {
        padding: 1rem 1.5rem;
      }
      
      .modal-body {
        padding: 1.5rem;
      }
      
      .donation-presets {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
      }
      
      .preset-option {
        padding: 1.2rem 0.8rem;
        font-size: 1.3rem;
      }
      
      .partnership {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 2rem;
      }
      
      .partnership-content h3 {
        margin-bottom: 1rem;
      }
      
      .partnership-logo {
        flex: 0 0 150px;
      }
      
      .mission-highlight {
        padding: 1rem 1.25rem;
        gap: 0.75rem;
      }
    }

/* Frame Selection Section */
.unified-frame-section {
  margin: 1.5rem 0 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.unified-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.75rem;
  display: block;
  text-align: left;
}

.unified-frame-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.unified-frame-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
}

.unified-frame-option:hover {
  border-color: #2d5f3f;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.unified-frame-option.active {
  border-color: #2d5f3f;
  background: #f0f7f3;
  box-shadow: 0 2px 8px rgba(45, 95, 63, 0.15);
}

.frame-swatch {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.frame-light {
  background: linear-gradient(135deg, #f5f0e8 0%, #e8dcc8 100%);
}

.frame-dark {
  background: linear-gradient(135deg, #4a3428 0%, #2d1f17 100%);
}

.frame-black {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.frame-white {
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

@media (max-width: 768px) {
  .unified-frame-options {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  
  .unified-frame-option {
    padding: 0.6rem 0.75rem;
    font-size: 0.85rem;
  }
  
  .frame-swatch {
    width: 20px;
    height: 20px;
  }
  
  .impact-badge {
    padding: 0.875rem 1rem;
  }
  
  .impact-badge span {
    font-size: 0.875rem;
  }
}

/* Tier Benefits List */
.tier-benefits {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.25rem;
  text-align: left;
}

.tier-benefits li {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.5rem;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.tier-benefits li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--forest-green);
  font-weight: 600;
}

.tier-benefits li:last-child {
  margin-bottom: 0;
}

/* Quantity Selection Section */
.quantity-section {
  margin: 1.25rem 0;
  padding: 1rem 0 0.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.quantity-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.75rem;
  display: block;
}

.quantity-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.quantity-btn {
  width: 40px;
  height: 40px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: white;
  font-size: 1.5rem;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
}

.quantity-btn:hover {
  border-color: #2d5f3f;
  background: #f0f7f3;
  color: #2d5f3f;
}

.quantity-btn:active {
  transform: scale(0.95);
}

.quantity-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  border-color: #e0e0e0;
  background: white;
}

.quantity-input {
  width: 60px;
  height: 40px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: white;
  color: #333;
  font-family: var(--font-main);
}

.quantity-input:focus {
  outline: none;
  border-color: #2d5f3f;
}

/* Frame Help Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
  pointer-events: none;
}

.modal-overlay.visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s 0s;
  pointer-events: auto;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  z-index: 9100;
  max-width: 900px;
  width: 90%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s;
  overflow: visible;
  max-height: 90vh;
}

.modal.visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0s;
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: #666;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}

.modal-close-btn:hover {
  background: #f5f5f5;
  color: #333;
}

.modal-content {
  padding: 2rem;
  overflow-y: auto;
  max-height: calc(90vh - 4rem);
}

.frame-help-modal {
  max-width: 1000px;
  max-height: 90vh;
  overflow-y: auto;
}

.frame-help-modal .modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.frame-help-modal .modal-header h2 {
  margin: 0 0 0.5rem 0;
  font-size: 1.75rem;
  color: #333;
  font-weight: 400;
}

.frame-help-modal .modal-subtitle {
  color: #666;
  font-size: 1rem;
  margin: 0 0 1.5rem 0;
  font-weight: 300;
}

.frame-quality-features {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.quality-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #333;
}

.quality-icon {
  color: var(--forest-green);
  display: flex;
  align-items: center;
}

.frame-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.frame-showcase-item {
  background: #f8f9fa;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  transition: all 0.2s ease;
}

.frame-showcase-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: var(--forest-green);
}

.frame-showcase-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #fff;
}

.frame-detail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame-showcase-content {
  padding: 1.5rem;
}

.frame-showcase-content h3 {
  font-size: 1.25rem;
  font-weight: 500;
  color: #333;
  margin: 0 0 0.75rem 0;
}

.frame-description {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.6;
  margin: 0 0 1rem 0;
  font-weight: 300;
}

.select-frame-btn {
  width: 100%;
  background: var(--forest-green);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.select-frame-btn:hover {
  background: var(--dark-green);
  transform: translateY(-1px);
}

.modal-footer {
  text-align: center;
  padding: 1rem 0 0 0;
  border-top: 1px solid #e0e0e0;
}

.frame-note {
  font-size: 0.875rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
  font-weight: 300;
}

@media (max-width: 768px) {
  .frame-help-modal .modal-content {
    padding: 1.5rem;
  }
  
  .frame-help-modal {
    margin: 1rem;
    max-height: calc(100vh - 2rem);
    width: calc(100% - 2rem) !important;
  }
  
  .frame-showcase-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .frame-quality-features {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}
