/* ============================================================
   REVIVE NORTHBROOK — Main Stylesheet
   File: assets/css/style.css
   ============================================================ */


/* ============================================================
   RESET
   ============================================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

section[id] {
    scroll-margin-top: 78px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background: #fff;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}


/* ============================================================
   DESIGN TOKENS
   ============================================================ */

:root {
    /* Brand orange (matched to original site) */
    --orange:           #E05C1A;
    --orange-dark:      #C24F14;
    --orange-pale:      #FEF4EE;
    --orange-light:     #FDF0E6;

    /* Neutral text */
    --text-dark:        #1A2428;
    --text-mid:         #3A5060;
    --text-soft:        #5C7280;
    --text-muted:       #8AA0AA;

    /* Backgrounds */
    --white:            #FFFFFF;
    --off-white:        #FAFAF8;
    --warm-gray:        #F4F2EF;
    --warm-gray-2:      #EEEbE6;

    /* Borders */
    --border:           #E0DAD4;
    --border-light:     #EBE6E0;

    /* Shadows */
    --shadow-xs:        0 1px 3px rgba(26, 36, 40, 0.07);
    --shadow-sm:        0 2px 8px rgba(26, 36, 40, 0.09);
    --shadow:           0 4px 20px rgba(26, 36, 40, 0.09);
    --shadow-lg:        0 8px 36px rgba(26, 36, 40, 0.11);

    /* Radius */
    --radius-xs:        4px;
    --radius-sm:        6px;
    --radius:           10px;
    --radius-lg:        16px;

    /* Layout */
    --max-width:        1140px;
    --section-v:        92px;
}


/* ============================================================
   LAYOUT
   ============================================================ */

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 28px;
}

.section {
    padding: var(--section-v) 0;
}

.divider {
    border: none;
    border-top: 1px solid var(--border-light);
}


/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */

.section-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}

.section-heading {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.28;
    margin-bottom: 14px;
}

.section-intro {
    font-size: 16px;
    color: var(--text-soft);
    line-height: 1.78;
    max-width: 560px;
}

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

.text-center .section-intro {
    margin-left: auto;
    margin-right: auto;
}


/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    border-radius: var(--radius-xs);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s;
    border: 1.5px solid transparent;
    white-space: nowrap;
}

.btn-orange {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}

.btn-orange:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    box-shadow: 0 4px 14px rgba(224, 92, 26, 0.28);
}

.btn-outline-dark {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.btn-outline-dark:hover {
    background: var(--text-dark);
    color: #fff;
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.50);
}

.btn-outline-white:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.10);
}

.btn-white {
    background: #fff;
    color: var(--text-dark);
    border-color: #fff;
}

.btn-white:hover {
    background: var(--warm-gray);
}


/* ============================================================
   HEADER
   ============================================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow 0.25s;
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-decoration: none;
}

.nav-brand-name {
    font-family: 'Lora', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.nav-brand-sub {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-links a {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-mid);
    transition: color 0.18s;
}

.nav-links a:hover {
    color: var(--orange);
}

.nav-cta .btn {
    padding: 9px 20px;
    font-size: 13px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.25s;
}

.mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid var(--border-light);
    padding: 16px 28px 24px;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 11px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-mid);
    border-bottom: 1px solid var(--border-light);
}

.mobile-menu .btn {
    margin-top: 18px;
    width: 100%;
}


/* ============================================================
   HERO
   ============================================================ */

.hero {
    padding-top: 68px;
    background: var(--off-white);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 60px;
    align-items: center;
    padding-top: 72px;
    padding-bottom: 80px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    padding: 5px 12px;
    margin-bottom: 22px;
    background: #fff;
}

.hero-title {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(32px, 4.2vw, 52px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.18;
    margin-bottom: 20px;
}

.hero-title em {
    font-style: italic;
    color: var(--orange);
}

.hero-body {
    font-size: 16px;
    color: var(--text-soft);
    line-height: 1.82;
    max-width: 500px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-notice {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.65;
    padding-top: 22px;
    border-top: 1px solid var(--border-light);
    max-width: 460px;
}


/* Hero form card */

.hero-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 34px;
    box-shadow: var(--shadow);
}

.hero-card-label {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 7px;
}

.hero-card h3 {
    font-family: 'Lora', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.hero-card p {
    font-size: 13px;
    color: var(--text-soft);
    margin-bottom: 22px;
    line-height: 1.6;
}


/* ============================================================
   FORMS
   ============================================================ */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
    margin-bottom: 11px;
}

.form-row.single {
    grid-template-columns: 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-mid);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color 0.18s, box-shadow 0.18s;
    outline: none;
    appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(224, 92, 26, 0.10);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    min-height: 76px;
    resize: vertical;
    line-height: 1.6;
}

.form-group.large input,
.form-group.large textarea {
    padding: 12px 15px;
    font-size: 14.5px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 12.5px;
    color: var(--text-soft);
    line-height: 1.55;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    width: 15px;
    height: 15px;
    min-width: 15px;
    margin-top: 2px;
    accent-color: var(--orange);
    cursor: pointer;
}

.form-privacy-note {
    font-size: 11.5px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 10px;
    line-height: 1.6;
}

.field-note {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.55;
    margin-top: 5px;
}

.btn-submit {
    width: 100%;
    padding: 13px;
    font-size: 14.5px;
    margin-bottom: 10px;
}


/* ============================================================
   SECTION HEADER HELPER
   ============================================================ */

.section-header {
    margin-bottom: 52px;
}

.section-header .section-heading {
    margin-bottom: 0;
}


/* ============================================================
   WHY SECTION
   ============================================================ */

.why-section {
    background: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
}

.why-item {
    padding: 36px 28px;
    border-right: 1px solid var(--border-light);
    background: #fff;
    transition: background 0.2s;
}

.why-item:last-child {
    border-right: none;
}

.why-item:hover {
    background: var(--orange-pale);
}

.why-num {
    font-family: 'Lora', serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 0.08em;
    margin-bottom: 18px;
    display: block;
}

.why-item h3 {
    font-family: 'Lora', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.38;
}

.why-item p {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.7;
}


/* ============================================================
   PROCESS SECTION
   ============================================================ */

.process-cta {
    text-align: center;
    margin-top: 56px;
}

.process-section {
    background: var(--warm-gray);
}

.process-header {
    text-align: center;
    margin-bottom: 56px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    position: relative;
}

.process-line {
    position: absolute;
    top: 20px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 1px;
    background: var(--border);
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lora', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.process-step.active .step-num {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

.process-step h3 {
    font-family: 'Lora', serif;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.38;
}

.process-step p {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.65;
}


/* ============================================================
   TOPICS SECTION
   ============================================================ */

.topics-section {
    background: #fff;
}

.topics-header {
    margin-bottom: 44px;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.topic-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 22px 20px;
    background: var(--off-white);
    transition: border-color 0.18s, background 0.18s;
}

.topic-item:hover {
    border-color: var(--orange);
    background: var(--orange-pale);
}

.topic-item h4 {
    font-family: 'Lora', serif;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.35;
}

.topic-item p {
    font-size: 12.5px;
    color: var(--text-soft);
    line-height: 1.6;
}


/* ============================================================
   FORM SUCCESS STATE
   ============================================================ */

.form-success {
    padding: 32px 0 8px;
    text-align: center;
}

.success-title {
    font-family: 'Lora', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.success-body {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.7;
}


/* ============================================================
   VISION SECTION
   ============================================================ */

.vision-section {
    background: var(--orange-light);
}

.vision-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 68px;
    align-items: center;
}

.vision-content .section-heading {
    margin-bottom: 16px;
}

.vision-content p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.82;
    margin-bottom: 14px;
}

.vision-disclaimer {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.65;
}

.vision-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.vision-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.vision-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.vision-tag {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-mid);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    padding: 5px 12px;
}


/* ============================================================
   ABOUT STRIP (homepage)
   ============================================================ */

.about-strip {
    background: var(--warm-gray);
}

.about-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-strip-facts {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
}

.fact-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-light);
    gap: 20px;
}

.fact-item:last-child {
    border-bottom: none;
}

.fact-label {
    font-size: 13.5px;
    color: var(--text-soft);
}

.fact-value {
    font-family: 'Lora', serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
}


/* ============================================================
   SIGNUP FORM SECTION
   ============================================================ */

.signup-section {
    background: #fff;
}

.signup-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 76px;
    align-items: start;
}

.signup-content .section-heading {
    margin-bottom: 14px;
}

.signup-content p {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.82;
    margin-bottom: 28px;
}

.trust-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.trust-list li {
    font-size: 13.5px;
    color: var(--text-mid);
    line-height: 1.6;
    padding-left: 15px;
    position: relative;
}

.trust-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--orange);
}

.signup-form-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 38px;
}

.signup-form-card h3 {
    font-family: 'Lora', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.signup-form-card .card-sub {
    font-size: 13.5px;
    color: var(--text-soft);
    margin-bottom: 24px;
}


/* ============================================================
   ABOUT SECTION
   ============================================================ */

.about-section {
    background: var(--warm-gray);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 68px;
    align-items: center;
}

.about-content .section-heading {
    margin-bottom: 16px;
}

.about-content p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.82;
    margin-bottom: 14px;
}

.about-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: 22px;
}

.about-list li {
    font-size: 13.5px;
    color: var(--text-mid);
    line-height: 1.6;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.about-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.photo-placeholder {
    width: 100%;
    height: 380px;
    background: var(--warm-gray-2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 13px;
    text-align: center;
    border-radius: var(--radius-lg);
}

.photo-placeholder small {
    font-size: 11px;
}


/* ============================================================
   PRIVACY SECTION
   ============================================================ */

.privacy-section {
    background: #fff;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.privacy-inner {
    max-width: 740px;
    margin: 0 auto;
    text-align: center;
}

.privacy-inner .section-heading {
    font-size: clamp(22px, 3vw, 30px);
    margin-bottom: 12px;
}

.privacy-inner > p {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.82;
    margin-bottom: 40px;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    text-align: left;
}

.privacy-item {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 22px;
}

.privacy-item-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 9px;
    display: block;
}

.privacy-item h4 {
    font-family: 'Lora', serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.privacy-item p {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.65;
}


/* ============================================================
   FAQ SECTION
   ============================================================ */

.faq-section {
    background: var(--off-white);
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-list {
    max-width: 740px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item.open {
    border-color: var(--orange);
}

.faq-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
}

.faq-btn span {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.faq-caret {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    background: var(--warm-gray);
}

.faq-caret svg {
    width: 11px;
    height: 11px;
    transition: transform 0.22s;
    color: var(--text-mid);
    stroke: currentColor;
}

.faq-item.open .faq-caret {
    background: var(--orange-pale);
    border-color: var(--orange);
}

.faq-item.open .faq-caret svg {
    transform: rotate(180deg);
    color: var(--orange);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
}

.faq-body-inner {
    padding: 0 22px 20px;
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.78;
}


/* ============================================================
   FINAL CTA SECTION
   ============================================================ */

.final-cta {
    background: var(--text-dark);
    padding: 108px 0;
    text-align: center;
}

.final-cta-inner {
    max-width: 560px;
    margin: 0 auto;
}

.final-cta .section-label {
    color: var(--orange);
}

.final-cta h2 {
    font-family: 'Lora', serif;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 700;
    color: #fff;
    line-height: 1.22;
    margin-bottom: 0;
}

.final-cta-note {
    margin-top: 22px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.33);
}

.final-cta-note a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.18s;
}

.final-cta-note a:hover {
    color: rgba(255, 255, 255, 0.82);
}


/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    background: #0F2226;
    padding: 56px 0 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 44px;
    margin-bottom: 44px;
}

.footer-brand-name {
    font-family: 'Lora', serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 9px;
}

.footer-brand-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-brand-email a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.58);
    transition: color 0.18s;
}

.footer-brand-email a:hover {
    color: #fff;
}

.footer-col-title {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.30);
    margin-bottom: 16px;
}

.footer-col li {
    margin-bottom: 9px;
}

.footer-col li a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.52);
    transition: color 0.18s;
}

.footer-col li a:hover {
    color: rgba(255, 255, 255, 0.88);
}

.footer-bottom {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.26);
}

.footer-attribution a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.26);
    transition: color 0.18s;
}

.footer-attribution a:hover {
    color: rgba(255, 255, 255, 0.55);
}


/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */

.page-hero {
    padding-top: 68px;
    background: var(--off-white);
    border-bottom: 1px solid var(--border-light);
}

.page-hero-inner {
    padding-top: 64px;
    padding-bottom: 64px;
    max-width: 680px;
}

.page-hero-inner .section-label {
    margin-bottom: 14px;
}

.page-hero-title {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.22;
    margin-bottom: 16px;
}

.page-hero-title em {
    font-style: italic;
    color: var(--orange);
}

.page-hero-intro {
    font-size: 16px;
    color: var(--text-soft);
    line-height: 1.78;
    max-width: 560px;
}


/* ============================================================
   NAV ACTIVE STATE
   ============================================================ */

.nav-links a.active {
    color: var(--orange);
    font-weight: 600;
}


/* ============================================================
   STEP DETAIL (how-it-works page)
   ============================================================ */

.steps-detail {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
}

.step-detail-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 0;
    border-bottom: 1px solid var(--border-light);
    background: #fff;
    transition: background 0.18s;
}

.step-detail-item:last-child {
    border-bottom: none;
}

.step-detail-item:hover {
    background: var(--orange-pale);
}

.step-detail-num {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 32px;
    font-family: 'Lora', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--orange);
}

.step-detail-body {
    padding: 30px 32px 30px 0;
    border-left: 1px solid var(--border-light);
}

.step-detail-body h3 {
    font-family: 'Lora', serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.step-detail-body p {
    font-size: 13.5px;
    color: var(--text-soft);
    line-height: 1.72;
}


/* ============================================================
   TWO-COL CONTENT (general purpose)
   ============================================================ */

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.two-col.center {
    align-items: center;
}

.content-block .section-heading {
    margin-bottom: 14px;
}

.content-block p {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.82;
    margin-bottom: 14px;
}

.content-block p:last-child {
    margin-bottom: 0;
}


/* ============================================================
   SIMPLE LIST (clean styled list)
   ============================================================ */

.simple-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
}

.simple-list li {
    padding: 15px 20px;
    font-size: 14px;
    color: var(--text-mid);
    border-bottom: 1px solid var(--border-light);
    background: #fff;
    line-height: 1.6;
}

.simple-list li:last-child {
    border-bottom: none;
}


/* ============================================================
   ZONE CARDS (vision page)
   ============================================================ */

.zones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.zone-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: border-color 0.18s, background 0.18s;
}

.zone-card:hover {
    border-color: var(--orange);
    background: var(--orange-pale);
}

.zone-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 10px;
    display: block;
}

.zone-card h3 {
    font-family: 'Lora', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.zone-card p {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.68;
}


/* ============================================================
   VISION IMAGE FULL
   ============================================================ */

.vision-full-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: zoom-in;
    margin-bottom: 48px;
}

.vision-full-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.vision-full-img:hover img {
    transform: scale(1.01);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    z-index: 999;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--radius);
    box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.12);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.22);
}


/* ============================================================
   FAQ SEARCH
   ============================================================ */

.faq-search-wrap {
    max-width: 480px;
    margin: 0 auto 40px;
    position: relative;
}

.faq-search {
    width: 100%;
    padding: 13px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    background: #fff;
    outline: none;
    transition: border-color 0.18s, box-shadow 0.18s;
    appearance: none;
}

.faq-search:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(224, 92, 26, 0.10);
}

.faq-search::placeholder {
    color: var(--text-muted);
}

.faq-item.hidden {
    display: none;
}


/* ============================================================
   CONTACT STRIP
   ============================================================ */

.contact-strip {
    background: var(--warm-gray);
    padding: 56px 0;
    text-align: center;
}

.contact-strip h3 {
    font-family: 'Lora', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-strip p {
    font-size: 14.5px;
    color: var(--text-soft);
    margin-bottom: 20px;
}

.contact-strip a.email-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--orange);
    transition: color 0.18s;
}

.contact-strip a.email-link:hover {
    color: var(--orange-dark);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .hero-inner          { grid-template-columns: 1fr; }
    .hero-card           { display: none; }
    .why-grid            { grid-template-columns: repeat(2, 1fr); }
    .why-item            { border-right: none; border-bottom: 1px solid var(--border-light); }
    .why-item:nth-child(3),
    .why-item:nth-child(4) { border-bottom: none; }
    .topics-grid         { grid-template-columns: repeat(2, 1fr); }
    .footer-grid         { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 1024px) {
    .zones-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 840px) {
    :root { --section-v: 68px; }
    .process-steps       { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .process-line        { display: none; }
    .vision-inner        { grid-template-columns: 1fr; gap: 44px; }
    .vision-img-wrap     { order: -1; }
    .signup-inner        { grid-template-columns: 1fr; gap: 44px; }
    .about-inner         { grid-template-columns: 1fr; gap: 44px; }
    .about-img-wrap      { order: -1; }
    .about-strip-inner   { grid-template-columns: 1fr; gap: 40px; }
    .privacy-grid        { grid-template-columns: 1fr; }
    .two-col             { grid-template-columns: 1fr; gap: 44px; }
    .zones-grid          { grid-template-columns: 1fr; }
    .step-detail-item    { grid-template-columns: 52px 1fr; }
}

@media (max-width: 640px) {
    .container           { padding: 0 18px; }
    .nav-links,
    .nav-cta             { display: none; }
    .hamburger           { display: flex; }
    .why-grid            { grid-template-columns: 1fr; }
    .process-steps       { grid-template-columns: 1fr; }
    .topics-grid         { grid-template-columns: 1fr 1fr; }
    .footer-grid         { grid-template-columns: 1fr; }
    .footer-bottom       { flex-direction: column; align-items: flex-start; }
    .hero-actions        { flex-direction: column; align-items: flex-start; }
    .final-cta-actions   { flex-direction: column; }
    .final-cta-actions .btn { width: 100%; max-width: 300px; }
    .form-row            { grid-template-columns: 1fr; }
    .privacy-grid        { grid-template-columns: 1fr; }
}
