@font-face {
    font-family: 'FranklinGothicMediumCondRegular';
    src: url('./fonts/FranklinGothicMediumCondRegular.eot');
    src: url('./fonts/FranklinGothicMediumCondRegular.eot') format('embedded-opentype'),
         url('./fonts/FranklinGothicMediumCondRegular.woff2') format('woff2'),
         url('./fonts/FranklinGothicMediumCondRegular.woff') format('woff'),
         url('./fonts/FranklinGothicMediumCondRegular.ttf') format('truetype'),
         url('./fonts/FranklinGothicMediumCondRegular.svg#FranklinGothicMediumCondRegular') format('svg');
}

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --deep-green: #0c3320;
    --mid-green: #1a5c3a;
    --light-green: #2d8f5e;
    --gold: #c8a84b;
    --gold-light: #e8d9a8;
    --gold-dim: rgba(200,168,75,0.15);
    --cream: #faf6ee;
    --cream-dark: #f0e9d8;
    --text-dark: #1a1208;
    --text-mid: #4a3f2a;
    --text-muted: #7a6e58;
    --border: rgba(200,168,75,0.25);
    --border-strong: rgba(200,168,75,0.5);
    --error: #b83232;
    --section-gap: 3.5rem;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.6;
  }

  /* ── BANNER ── */
  .banner {
    background: var(--deep-green);
    position: relative;
    overflow: hidden;
    padding: 3rem 2rem;
    text-align: center;
  }
  .banner::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(60deg, transparent, transparent 38px, rgba(200,168,75,0.06) 38px, rgba(200,168,75,0.06) 40px),
      repeating-linear-gradient(-60deg, transparent, transparent 38px, rgba(200,168,75,0.06) 38px, rgba(200,168,75,0.06) 40px);
  }
  .banner-inner { position: relative; z-index: 1; }
  .banner-rule { width: 180px; height: 1px; background: var(--gold); margin: 0 auto 1.2rem; opacity: 0.6; }
  .banner-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.12em;
    line-height: 1.1;
  }
  .banner-subtitle {
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.35em;
    color: var(--gold-light);
    margin-top: 0.6rem;
    font-weight: 400;
    opacity: 0.85;
  }
  .banner-diamond {
    display: inline-block;
    width: 8px; height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
    margin: 1rem auto;
    opacity: 0.6;
  }

  /* ── PROGRESS ── */
  .progress-wrap {
    background: var(--deep-green);
    padding: 0 2rem 1.4rem;
    position: sticky; top: 0; z-index: 100;
    box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  }
  .progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    color: var(--gold-light);
    opacity: 0.7;
    padding-bottom: 0.4rem;
    font-weight: 500;
  }
  .progress-bar-bg {
    height: 3px;
    background: rgba(200,168,75,0.15);
    border-radius: 2px;
    overflow: hidden;
  }
  .progress-bar-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
    width: 0%;
    transition: width 0.4s ease;
  }

  /* ── LAYOUT ── */
.form-wrap {
    max-width: 1040px;
    margin: 20px auto 50px;
    background: #fff;
    padding: 40px 50px;
    border-radius: 20px;
    box-shadow: 0 0 30px 0 #0000000d;
}
blockquote {
    margin: 0 0 0 0;
}
.scenario-box p {
    margin: 0 0 8px 0 !important;
}
.grid-design-wrap {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
}
.grid-design-wrap textarea {
    resize: none;
}


  /* ── SECTION ── */
.section {
    margin-bottom: 10px;
    animation: fadeUp 0.5s ease both;
}
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .section:nth-child(2) { animation-delay: 0.05s; }
  .section:nth-child(3) { animation-delay: 0.1s; }
  .section:nth-child(4) { animation-delay: 0.15s; }
  .section:nth-child(5) { animation-delay: 0.2s; }
  .section:nth-child(6) { animation-delay: 0.25s; }
.section-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    margin-top: 15px;
}
.section-num {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    height: 30px;
    width: 30px;
    line-height: 25px;
    border-radius: 50%;
    background: #0f6e56;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Jost', sans-serif;
}
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--deep-green);
    line-height: 1.2;
  }
  .section-title small {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-top: 0.2rem;
    font-style: normal;
  }

  /* ── FIELD ── */
.field {
    margin-bottom: 10px;
}
  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  @media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

  label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-mid);
    margin-bottom: 0.45rem;
    text-transform: uppercase;
  }
  label .opt {
    font-weight: 300;
    font-style: italic;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text-muted);
    font-size: 0.75rem;
  }
  label .req { color: var(--gold); margin-left: 2px; }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="url"],
  select,
  textarea {
    width: 100%;
    padding: 0.65rem 0.9rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.92rem;
    color: var(--text-dark);
    background: #fff;
    border: 1px solid var(--border-strong);
    border-radius: 4px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
  }
  input:focus, select:focus, textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-dim);
  }
  input::placeholder, textarea::placeholder { color: #bbb; }

  select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c8a84b' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    padding-right: 2.4rem;
    cursor: pointer;
  }

 textarea {
    resize: none;
    min-height: 100px;
}
.progress-wrap.active-progress {
    display: none;
}

  /* ── FILE UPLOAD ── */
  .file-upload {
    border: 1.5px dashed var(--border-strong);
    border-radius: 6px;
    padding: 1.4rem;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    position: relative;
  }
  .file-upload:hover { background: var(--gold-dim); border-color: var(--gold); }
  .file-upload input[type="file"] {
    position: absolute; inset: 0;
    opacity: 0; cursor: pointer;
    width: 100%; height: 100%;
  }
  .file-upload-icon {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
    display: block;
    color: var(--gold);
  }
  .file-upload-text {
    font-size: 0.82rem;
    color: var(--text-muted);
  }
  .file-upload-text strong { color: var(--gold); font-weight: 600; }
  .file-name {
    margin-top: 0.5rem;
    font-size: 0.78rem;
    color: var(--mid-green);
    font-weight: 500;
  }

  /* ── CHECKBOXES / RADIOS ── */

.check-item, .radio-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}

  .check-item input, .radio-item input { display: none; }
  .check-item.active, .radio-item.active {
    background: var(--gold-dim);
    border-color: var(--gold);
  }
  .check-box-indicator, .radio-indicator {
    width: 18px; height: 18px; min-width: 18px;
    border: 1.5px solid var(--border-strong);
    border-radius: 3px;
    margin-top: 1px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.15s;
    background: #fff;
  }
  .radio-indicator { border-radius: 50%; }
  .check-item.active .check-box-indicator,
  .radio-item.active .radio-indicator {
    background: var(--gold);
    border-color: var(--gold);
  }
  .check-box-indicator::after {
    content: '✓';
    font-size: 11px;
    color: #fff;
    opacity: 0;
    font-weight: 700;
  }
  .check-item.active .check-box-indicator::after { opacity: 1; }
  .radio-indicator::after {
    content: '';
    width: 7px; height: 7px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
  }
  .radio-item.active .radio-indicator::after { opacity: 1; }
.check-label {
    font-size: 0.88rem;
    color: var(--text-dark);
    line-height: 1.4;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
}

  .radio-row { display: flex; flex-direction: column; gap: 0.5rem; }

  /* ── TOGGLE YES/NO ── */
  .toggle-group { display: flex; gap: 0.8rem; }
  .toggle-btn {
    padding: 0.5rem 1.8rem;
    border: 1px solid var(--border-strong);
    border-radius: 3px;
    background: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text-mid);
    cursor: pointer;
    transition: all 0.2s;
  }
  .toggle-btn:hover { border-color: var(--gold); color: var(--gold); }
  .toggle-btn.active {
    background: var(--deep-green);
    border-color: var(--deep-green);
    color: var(--gold-light);
  }

  /* ── CONDITIONAL REVEAL ── */
  .reveal {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
  }
  .reveal.open {
    max-height: 800px;
    opacity: 1;
  }
  .reveal-inner {
    padding-top: 1.2rem;
    border-top: 1px dashed var(--border);
    margin-top: 1rem;
  }

  /* ── QUOTE BLOCK ── */
.philosophy-card p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.7;
    color: #0c3320;
    margin: 0 0 0 0;
}
 .philosophy-card ul {
    list-style: none;
    margin-top: 0;
}
.philosophy-card ul li {
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    padding: 0;
    letter-spacing: 0.05em;
    color: #0c3320;
    font-weight: 500;
}
  .philosophy-card ul li::before { content: '◆  '; font-size: 0.5rem; vertical-align: middle; }

  /* ── QUESTION LABEL ── */
  .q-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--deep-green);
    margin-bottom: 0.7rem;
    display: block;
    line-height: 1.4;
  }
  .q-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 0.2rem;
    display: block;
  }

  /* ── DIVIDER ── */
.divider {
    border: none;
    height: 1px;
    margin: 5px;
}

  /* ── SCENARIO BOX ── */
.scenario-box {
    border-radius: 6px;
    margin-bottom: 0px;
}
  .scenario-box .scenario-tag {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gold);
    display: block;
    margin-bottom: 0.4rem;
  }
  .scenario-box blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.5;
  }

  /* ── CHECKBOX DECLARATION ── */
  .decl-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: #fff;
    margin-bottom: 0.7rem;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
  }
  .decl-item:hover { border-color: var(--gold); background: var(--gold-dim); }
  .decl-item.active { border-color: var(--gold); background: var(--gold-dim); }
  .decl-check {
    width: 20px; height: 20px; min-width: 20px;
    border: 1.5px solid var(--border-strong);
    border-radius: 3px;
    margin-top: 1px;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    color: #fff;
    background: #fff;
    transition: all 0.15s;
    font-weight: 700;
  }
  .decl-item.active .decl-check { background: var(--deep-green); border-color: var(--deep-green); }
  .decl-text { font-size: 0.88rem; color: var(--text-dark); line-height: 1.5; }

  /* ── SUBMIT ── */
  .submit-area { text-align: center; padding-top: 1rem; }
  .submit-btn {
    background: var(--deep-green);
    color: var(--gold-light);
    border: 2px solid var(--gold);
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 0.95rem 3.5rem;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.25s;
  }
  .submit-btn:hover {
    background: var(--gold);
    color: var(--deep-green);
    border-color: var(--gold);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(200,168,75,0.25);
  }
  .submit-hint {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 0.8rem;
    letter-spacing: 0.05em;
  }

  /* ── SUCCESS ── */
  .success-screen {
    display: none;
    text-align: center;
    padding: 4rem 2rem;
  }
  .success-icon {
    font-size: 3rem;
    color: var(--gold);
    display: block;
    margin-bottom: 1rem;
  }
  .success-screen h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--deep-green);
    margin-bottom: 0.6rem;
  }
  .success-screen p { color: var(--text-muted); font-size: 0.9rem; }

  /* ── OTHER INPUT ── */
  .other-reveal { display: none; margin-top: 0.6rem; }
  .other-reveal.show { display: block; }

  /* ── CHAR COUNT ── */
.char-count {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-align: right;
    margin-top: 0.25rem;
    display: none;
}
.dark-layout {
    background-color: #faf6ee;
}
.field h4 {
    display: block;
    margin-bottom: 0.45rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #4a3f2a;
}




 /* ── HEADER ── */
  .site-header {
    background: #0F6E56;
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    border-bottom: 4px solid #085041;
  }

  .logo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 1rem;
  }

  .logo-hex {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
  }

  .logo-text h1 {
    font-family: Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: #E1F5EE;
    letter-spacing: 0.06em;
    line-height: 1;
  }

  .logo-text p {
    font-size: 0.72rem;
    color: #9FE1CB;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 4px;
  }

  .page-tagline {
    font-size: 1.5rem;
    color: #E1F5EE;
    font-style: italic;
    font-weight: 400;
    margin-top: 0.5rem;
  }

  /* ── LAYOUT ── */
 .container {
    max-width: 1070px;
    margin: 0 auto;
    padding: 0 15px;
}
.all-section-wraap {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    margin: 30px 0 0 0;
}
.all-section-wraap > div {
    margin: 0;
}
  /* ── SECTION CARD ── */
  .section-card {
    background: #ffffff;
    border: 1px solid #d8d2c8;
    border-radius: 10px;
    margin-bottom: 2rem;
    overflow: hidden;
  }
.section-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 20px;
    background: #f1f8f5;
    border-bottom: 1px solid #c9e8de;
    margin: 30px 0 10px;
}
  .section-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0F6E56;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .section-icon svg {
    width: 18px;
    height: 18px;
    fill: #E1F5EE;
  }

  .section-head h2 {
    font-family: Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #085041;
    letter-spacing: 0.01em;
  }

  .section-body {
    padding: 1.6rem 1.8rem;
  }

  /* ── INTRO PARAGRAPH ── */
.intro-text {
    font-size: 14px;
    color: #2a2a2a;
    line-height: 1.7;
    margin-bottom: 10px;
}
  .intro-text:last-child { margin-bottom: 0; }

  /* ── BULLET LIST ── */
  .hikmah-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 0.6rem;
  }
.hikmah-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #2a2a2a;
    line-height: 1.7;
}
  .hikmah-list li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #1D9E75;
    margin-top: 8px;
    flex-shrink: 0;
  }

  /* ── STEPS ── */
 .steps-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
  .step-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }

  .step-num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #E1F5EE;
    border: 1.5px solid #1D9E75;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0F6E56;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .step-content strong {
    display: block;
    font-size: 0.97rem;
    font-weight: 700;
    color: #085041;
    margin-bottom: 3px;
  }
.step-content p {
    font-size: 14px;
    color: #3a3a3a;
    line-height: 1.7;
    margin: 0;
}
.step-connector {
    width: 1.5px;
    height: 14px;
    background: #9FE1CB;
    margin-left: 16px;
    display: none;
}
  /* ── IMPORTANT NOTES ── */
 .notes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.note-pill {
    background: #f5fbf8;
    border: 1px solid #c9e8de;
    border-left: 4px solid #1D9E75;
    border-radius: 0 8px 8px 0;
    padding: 12px 14px;
    font-size: 14px;
    color: #2a2a2a;
    line-height: 1.7;
}
  /* ── CALLOUT BOX ── */
  .callout-box {
    background: #f1f8f5;
    border: 1px solid #9FE1CB;
    border-radius: 8px;
    padding: 1.2rem 1.5rem;
  }
.callout-box p {
    font-size: 14px;
    color: #085041;
    line-height: 1.7;
    margin-bottom: 0.7rem;
}
.alignmentdsgn {
    padding: 0 21px;
}
  .callout-box p:last-child { margin-bottom: 0; }

  .callout-box .highlight {
    font-weight: 700;
    color: #0F6E56;
    font-style: italic;
  }

  /* ── NOTE BEFORE ── */
  .note-before {
    background: #fffdf5;
    border: 1px solid #FAC775;
    border-left: 4px solid #BA7517;
    border-radius: 0 8px 8px 0;
    padding: 1rem 1.4rem;
    margin-bottom: 0;
  }
.note-before p {
    font-size: 14px;
    color: #412402;
    line-height: 1.7;
    margin-bottom: 7px;
}
  .note-before p:last-child { margin-bottom: 0; }

  /* ── FORM SECTION ── */
  .form-banner {
    background: #0F6E56;
    padding: 1.5rem 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
    border-radius: 10px;
  }

  .form-banner h2 {
    font-family: Georgia, serif;
    font-size: 1.4rem;
    color: #E1F5EE;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
.form-banner p {
    font-size: 14px;
    color: #9FE1CB;
    line-height: 1.7;
    font-style: italic;
}
  /* ── DIVIDER ── */
 .ornament-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 10px 0;
}
  .ornament-divider span {
    flex: 1;
    height: 1px;
    background: #d8d2c8;
  }

  .ornament-divider em {
    font-size: 1rem;
    color: #1D9E75;
    font-style: normal;
  }

  @media (max-width: 560px) {
    .notes-grid { grid-template-columns: 1fr; }
    .logo-wrap { flex-direction: column; text-align: center; }
    .logo-text p { text-align: center; }
    .page-tagline { font-size: 1.15rem; }
  }