/* ============================================================
   FRONT-END ONLY STYLES (StoryBrand Home)
   This file assumes /css/style.css is loaded FIRST.
   It refines and overrides layout for the front-facing homepage.
   ============================================================ */

/* ---------------- NAVBAR (FRONT-END) ---------------- */

html, body {
    overflow-x: hidden;
}

.page {
    max-width: 100%;
    overflow-x: hidden;
}

header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(229,231,235,0.9);
}

.nav {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0.8rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* --- FRONT-END NAV REFINEMENTS --- */

/* Slightly larger logo */
.nav-logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;          /* was 28px — bump up for presence */
    width: auto;
}

/* Keep aspect ratio clean */
.nav-logo-mark img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Add more gap between logo + text */
.nav-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;              /* was 0.75rem — gives breathing room */
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Improve alignment between main name + subline */
.nav-brand {
    display: flex;
    flex-direction: column;
    justify-content: center;     /* vertically centers the two lines */
    line-height: 1.15;           /* improves matching height with taller logo */
}

/* Slight typography refinement */
.nav-brand-main {
    font-weight: 700;
    font-size: 1.08rem;     /* slightly larger — more proportional to taller logo */
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nav-brand-sub {
    font-size: 0.80rem;     /* bump slightly */
    color: var(--text-muted);
    margin-top: .8px;        /* micro-spacing to align visually */
}


.nav-brand-main {
    font-weight: 700;
    font-size: 1.02rem; /* nudge bigger for readability */
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nav-brand-sub {
    font-size: 0.78rem; /* slightly bigger */
    color: var(--text-muted);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.nav-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text-main);
}

/* Mobile nav */
@media (max-width: 720px) {
    .nav {
        padding: 0.7rem 1rem;
    }

    .nav-links {
        position: absolute;
        inset: 56px 1rem auto;
        background: #FFFFFF;
        border-radius: 0.9rem;
        padding: 0.75rem 0.85rem;
        box-shadow: var(--shadow-soft);
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        display: none;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }
}

/* ===============================
   NAV — PROFILE AVATAR (LEFT)
================================ */

.nav-avatar {
    width: 50px;
    height: 50px;
    border-radius: 999px;
    overflow: hidden;
    flex-shrink: 0;

    background: #2563eb;                 /* Call Ray blue */
    border: 2px solid rgba(255,255,255,0.85);
}

.nav-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 999px;
    display: block;
}


/* ---------------- GENERAL SECTION WRAPPERS ---------------- */

section {
    padding: 3.2rem 1.25rem;
}

.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 1.9rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 36rem;
    margin-bottom: 1.8rem;
    font-size: 0.98rem;
}

/* ---------------- HERO ---------------- */

.hero {
    padding: 2.6rem 1.25rem 2.4rem;
}

.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Dark full-width band */
.hero-frame {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    background-color: #111827;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15,23,42,0.35);
    min-height: 320px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("PATH-TO-YOUR-HERO-IMAGE.jpg"); /* replace when ready */
    background-size: cover;
    background-position: center;
    filter: blur(1px);
    transform: scale(1.03);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(0,84,166,0.45), transparent 50%),
        linear-gradient(to right, rgba(0,0,0,0.78), rgba(0,0,0,0.65), rgba(0,0,0,0.75));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 2.8rem 2.4rem;
    color: #F9FAFB;
    margin: 0 auto;
}

.hero-kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #E5E7EB;
    font-weight: 600;
    margin-bottom: 0.9rem;
    text-align: center;
}

.hero-title {
    font-size: clamp(2.5rem, 3vw + 1.6rem, 3rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    text-align: center;
}

.hero-title span.highlight {
    color: var(--highlight);
    display: inline-block;
    margin-top: 0.6em;
}

.hero-subtitle {
    font-size: 1rem;
    color: #E5E7EB;
    max-width: 38rem;
    margin: 0 auto 1.6rem;
    text-align: center;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 1.4rem;
    justify-content: center;
}

.btn-primary {
    padding: 0.95rem 1.7rem;
    border-radius: 999px;
    background: var(--highlight);
    color: #111827;
    border: 1px solid var(--highlight);
    font-weight: 600;
    font-size: 0.96rem;
    box-shadow: 0 16px 36px rgba(0,0,0,0.35);
}

.btn-primary:hover {
    background: var(--highlight-dark);
    border-color: var(--highlight-dark);
    color: #111827;
}

.btn-secondary {
    padding: 0.95rem 1.7rem;
    border-radius: 999px;
    border: 1px solid #E5E7EB;
    background: transparent;
    color: #F9FAFB;
    font-weight: 500;
    font-size: 0.95rem;
}

.btn-secondary:hover {
    background: rgba(249,250,251,0.08);
}

.hero-note {
    font-size: 0.86rem;
    color: #D1D5DB;
    text-align: center;
}

/* Hero bottom actions */
.hero-actions-bar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.4rem;
    flex-wrap: wrap;
}

.hero-action {
    background: var(--accent);
    border: none;
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
    color: #E5E7EB;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: 999px;
    cursor: pointer;
}

.hero-action span.icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 1px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #E5E7EB;
}

.hero-action:hover {
    background: var(--accent-dark);
}

/* Scroll cue */
.scroll-cue-wrapper {
    margin-top: 1.2rem;
    display: flex;
    justify-content: center;
}

.scroll-cue {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.84rem;
    color: var(--text-muted);
    cursor: pointer;
}

.scroll-cue span.icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

/* ---------------- PHILOSOPHY FULL-WIDTH BAND ---------------- */

#philosophy {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 3rem 1.25rem 2.8rem;
    border-bottom: 1px solid var(--border-soft);
    background: linear-gradient(
        to bottom,
        #FFFFFF 0%,
        #F9FAFB 100%
    );
}

.philosophy-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-title {
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.7rem;
    color: var(--text-main);
}

.philosophy-title span {
    color: var(--accent-dark);
}

.philosophy-text {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto;
}

/* Mobile refinement */
@media (max-width: 640px) {
    #philosophy {
        padding: 2.4rem 1.25rem 2.2rem;
    }

    .philosophy-title {
        font-size: 1.25rem;
    }

    .philosophy-text {
        font-size: 0.96rem;
    }
}



/* ---------------- VALUE SECTION ---------------- */

#value {
    background: var(--bg-section);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 1.5rem 2rem;
}

.value-item {
    padding: 1.35rem 1.4rem 1.2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    background: var(--bg-alt);
}

.value-item h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.value-item p {
    font-size: 0.93rem;
    color: var(--text-muted);
}

/* ---------------- PROBLEM SECTION ---------------- */

#problem {
    background: #111827;
    color: #E5E7EB;
}

#problem .section-label {
    color: #93C5FD;
}

#problem .section-title {
    color: #F9FAFB;
}

#problem .section-subtitle {
    color: #CBD5F5;
}

.problem-grid {
    display: grid;
    grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
    gap: 2.5rem;
}

.problem-block h3 {
    font-size: 1.08rem;
    margin-bottom: 0.4rem;
}

.problem-block p {
    font-size: 0.95rem;
    color: #E5E7EB;
}

.problem-list {
    list-style: disc;
    margin-left: 1.2rem;
    margin-top: 0.6rem;
    color: #E5E7EB;
    font-size: 0.93rem;
}

.problem-list li + li {
    margin-top: 0.3rem;
}

/* ---------------- PLAN SECTION ---------------- */

#plan {
    background: var(--bg-section);
}

.plan-steps {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 1.5rem;
}

.plan-step {
    padding: 1.6rem 1.4rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    background: var(--bg-alt);
}

.plan-step-number {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.plan-step h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.plan-step p {
    font-size: 0.93rem;
    color: var(--text-muted);
}

/* Plan step helper text */
.plan-step-note {
    margin-top: 0.35rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Plan reassurance text under steps */
.plan-reassurance {
    margin-top: 1.6rem;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------------- GUIDE SECTION ---------------- */



#guide {
    background: linear-gradient(135deg,#F0F9FF,#ECFEFF);
}

/* Force left-column to be one vertical block, and align right cards with its top */
#guide .guide-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}

/* NEW: wrap the left column content tightly */
#guide .guide-grid > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Ensure title doesn't span full width */
#guide .section-title,
#guide .section-subtitle {
    grid-column: auto !important;
}

/* Keep right column tight and top-aligned */
#guide .guide-grid > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}


/* FIX: Prevent titles/subtitles from spanning full width in two-column layouts */
#guide .section-title,
#guide .section-subtitle {
    grid-column: auto !important;
}

/* FIX GUIDE SECTION LAYOUT */
.guide-grid {
    display: grid;
    grid-template-columns: 1fr 320px; /* left wide, right narrow */
    gap: 2.5rem;
    align-items: start; /* <-- THE FIX: forces right column to align to the top */
}

/* Optional: tighten spacing overall */
#guide .section-inner {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Ensure cards don't add random top margin */
.guide-grid > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.guide-grid p {
    font-size: 0.96rem;
}

.guide-card {
    padding: 1.5rem 1.45rem 1.3rem;
    border-radius: var(--radius-xl);
    background: #FFFFFF;
    border: 1px solid rgba(15,23,42,0.06);
    box-shadow: var(--shadow-soft);
}

.guide-card h3 {
    font-size: 1.02rem;
    margin-bottom: 0.4rem;
}

.guide-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
}

.guide-card + .guide-card {
    margin-top: 0.85rem;
}

/* ---------------- SUCCESS SECTION ---------------- */

#success {
    background: var(--bg-section);
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 1.6rem;
}

.success-list {
    list-style: none;
    display: grid;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.success-list li {
    padding: 0.95rem 1rem;
    border-radius: 0.9rem;
    background: var(--bg-alt);
    border: 1px solid var(--border-soft);
    font-size: 0.92rem;
}

.success-list strong {
    font-weight: 600;
}

/* ---------------- RESOURCES SECTION ---------------- */

#resources {
    background: var(--bg-section);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 1.4rem;
}

.resource-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    background: var(--bg-alt);
    padding: 1.2rem 1.3rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.resource-tag {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 600;
    color: var(--accent-dark);
}

.resource-title {
    font-size: 0.98rem;
    font-weight: 600;
}

.resource-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.resource-link {
    margin-top: 0.4rem;
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--accent);
}

.resource-link:hover {
    text-decoration: underline;
}

/* ---------------- CTA BANNER ---------------- */

#cta-banner {
    background: #0B1220;
    color: #E5E7EB;
    padding: 2.8rem 1.25rem 3.1rem;
}

.cta-banner-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.cta-banner-inner h2 {
    font-size: 1.9rem;
    margin-bottom: 0.5rem;
}

.cta-banner-inner p {
    color: #CBD5F5;
    font-size: 0.95rem;
    margin-bottom: 1.7rem;
}

.cta-banner-inner .hero-ctas {
    justify-content: center;
}

/* ---------------- CONTACT & GUIDE ---------------- */

#contact,
#seller-guide {
    scroll-margin-top: 80px;
}

#contact {
    background: var(--bg-section);
}

/* FIX: ensure BOTH columns align at the top */
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: start !important;    /* override all other styles */
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.problem-grid {
    display: grid;
    grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
    gap: 2.5rem;
    align-items: start;
}

.plan-steps {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 1.5rem;
    align-items: start;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 1.6rem;
    align-items: start;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 1.4rem;
    align-items: start;
}

/* ---------------- TESTIMONIALS ---------------- */

#testimonials {
    background: var(--bg-section);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
}

.testimonial-card {
    display: block;
    padding: 1.5rem 1.4rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    background: var(--bg-alt);
    text-decoration: none;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 0.6rem;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-stars {
    font-size: 0.9rem;
    color: #F59E0B;
    margin-bottom: 0.6rem;
}

.testimonial-text {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 0.6rem;
}

.testimonial-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-main);
}

.testimonials-footer {
    margin-top: 1.6rem;
    text-align: center;
}

.testimonials-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent);
}

.testimonials-link:hover {
    text-decoration: underline;
}

/* --- TESTIMONIAL TOP ROW --- */
.testimonial-top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem; /* pulls body text UP */
}

.testimonial-meta {
    display: flex;
    align-items: center;
}

/* Bigger, stronger stars */
.testimonial-stars {
    font-size: 1.15rem;   /* bigger */
    color: #F59E0B;
    letter-spacing: 0.18rem;
    line-height: 1;
}

/* Tighten spacing below stars */
.testimonial-text {
    margin-top: 0.2rem;
}


/* Mobile */
@media (max-width: 720px) {
    .testimonials-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* ---------------- REVIEWS PAGE ---------------- */

.hero-reviews {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.reviews-group {
    margin-top: 3rem;
}

.reviews-group-title {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem;
}

.review-card {
    padding: 1.6rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--bg-alt);
    border: 1px solid var(--border-soft);
}

.review-stars {
    color: #F59E0B;
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
}

.review-text {
    font-size: 0.94rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 0.6rem;
}

.review-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-main);
}

/* Mobile */
@media (max-width: 720px) {
    .reviews-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}


/* ================= LEFT BLUE FORM (Simple Plan) ================= */

.front-form-block {
    margin: 0 !important;
    padding: 0 !important;            /* removes the big top gap */
}

.front-form-container {
    background: #F8FBFF;
    border-radius: 20px;
    padding: 32px 40px;               /* tightened + even */
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    margin-top: 0 !important;
}

/* ensure the form sits right under the title/subtitle */
.front-form-container .front-form {
    margin-top: 10px;
}

/* guaranteed full stacking */
.front-form .form-row {
    display: block !important;
    width: 100%;
}

.front-form .form-row > div {
    width: 100%;
    margin-bottom: 20px;
}

/* consistent labels */
.front-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #0D1B2A;
}

/* clean inputs */
.front-form input,
.front-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #CCD7E1;
    border-radius: 8px;
    font-size: 15px;
    background: #fff;
}

.front-form textarea {
    min-height: 110px;
    resize: vertical;
}

.front-form-note {
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* button corrected + visible */
.front-btn {
    width: 100%;
    background: #F79A17;
    color: #000;
    border: none;
    padding: 18px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    box-shadow: 0px 6px 15px rgba(0,0,0,0.15);
    transition: 0.2s ease;
}

.front-btn:hover {
    background: #e5890e;
}

/* ================= RIGHT YELLOW GUIDE BOX ================= */

.guide-download-box {
    padding: 1.75rem 1.6rem;
    border-radius: 20px;
    background: #FEFCE8;
    border: 1px solid #FACC15;
    margin-top: 0 !important;    /* matches left side */
}

.guide-download-box p {
    font-size: 0.93rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.guide-form {
    display: grid;
    gap: 0.9rem;
    margin-top: 1rem;
}

.guide-form input {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #D1D5DB;
    background: #fff;
}

/* guarantee both cards are vertically aligned */
.contact-layout > section,
.contact-layout > div,
.front-form-block,
.front-form-container,
.guide-download-box {
    align-self: start !important;
}


/* =============== LEFT FORM STYLES (Simple Plan) =============== */

.front-form-block {
    margin: 0 !important; 
}

.front-form-container {
    background: #F8FBFF;            /* soft blue tint */
    border-radius: 20px;
    padding-top: 30px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.front-form .form-row {
    display: block !important;;   /* children will stack full width */
}

.front-form .form-row > div {
    width: 100%;
    margin-bottom: 18px;
}

.front-form-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0D1B2A;
}

.front-form-sub {
    margin-bottom: 30px;
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

.front-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #0D1B2A;
}

.front-form input,
.front-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #CCD7E1;
    border-radius: 8px;
    font-size: 15px;
    background: #fff;
}

.front-form textarea {
    min-height: 110px;
    resize: vertical;
}

.front-btn {
    width: 100%;
    background: #F79A17;
    color: #000000;
    border: none;
    padding: 18px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    box-shadow: 0px 6px 15px rgba(0,0,0,0.15);
    transition: 0.2s ease;
}

.front-btn:hover {
    background: #e5890e;
}

.form-success-msg {
    margin-top: 18px;
    padding: 14px;
    border-radius: 10px;
    background: #E8FCEF;
    color: #08632A;
    font-weight: 600;
    text-align: center;
}

.form-status {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.form-status.success {
    background: #D1FAE5;
    border: 1px solid #10B981;
    color: #065F46;
}

.form-status.error {
    background: #FEE2E2;
    border: 1px solid #DC2626;
    color: #7F1D1D;
}

/* ======================================
   MOBILE CALL BUTTON — SHOW ON PHONES ONLY
====================================== */
.nav-call-btn {
    display: none;
    padding: 0.65rem 1.2rem;
    background: #F79A17;
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    margin-left: 0.5rem;

    display: none;  /* only activate in mobile media query below */
    align-items: center;
    gap: 0.45rem;   /* spacing between icon + text */

    box-shadow: 0 4px 12px rgba(247,154,23,0.45);
    border: 1px solid rgba(0,0,0,0.08);
    transition: 0.2s ease;
}


/* Phone icon */
.icon-phone {
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

/* Hover is mostly for desktop preview */
.nav-call-btn:hover {
    background: #e5890e;
    box-shadow: 0 5px 14px rgba(247,154,23,0.55);
}

/* Mobile only — make it stand out */
@media (max-width: 720px) {
    .nav-call-btn {
        display: inline-flex;
        transform: scale(1.05);
        margin-left: 0.25rem; /* a little closer to the toggle */
    }

    .nav-right {
        gap: 0.6rem;
    }


}


/* ---------------- FOOTER (FRONT-END) ---------------- */

footer {
    margin-top: 3rem;
    background: #111827;
    color: #e5e7eb;
    font-size: 0.85rem;
    padding: 1.6rem 1.25rem;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===============================
   FOOTER — EXP LOGO (WHITE)
================================ */

.footer-left {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-exp-logo {
    height: 20px;
    width: auto;
    opacity: 0.9;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.4));
}

/* ======================================
   FRONT PAGE SITEMAP FOOTER
====================================== */

.front-sitemap-footer {
    background: #0b1220; /* deep navy, matches site */
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 3rem 1.25rem 2.6rem;
}

.front-sitemap-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2.5rem;
}

/* Column header */
.front-sitemap-footer h4 {
    margin: 0 0 0.85rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.front-sitemap-footer h4 a {
    color: #f9fafb;
    text-decoration: none;
}

.front-sitemap-footer h4 a:hover {
    text-decoration: underline;
}

/* Link lists */
.front-sitemap-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.front-sitemap-footer li + li {
    margin-top: 0.45rem;
}

.front-sitemap-footer a {
    font-size: 0.88rem;
    color: #c7d2fe;
    text-decoration: none;
}

.front-sitemap-footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Divider for tools column */
.sitemap-divider {
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 0.9rem 0 0.8rem;
}

/* Slight visual distinction for last column */
.sitemap-col--tools {
    opacity: 0.95;
}

/* Center content inside each sitemap column */
.front-sitemap-footer .sitemap-col {
    text-align: center;
}

/* Remove default left alignment behavior from lists */
.front-sitemap-footer ul {
    align-items: center;
}

/* Front page only: merge sitemap + footer visually */
.front-sitemap-footer + footer {
    margin-top: 0;
}

/* ===============================
   RESPONSIVE BEHAVIOR
================================ */

@media (max-width: 900px) {
    .front-sitemap-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .front-sitemap-inner {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }

    .front-sitemap-footer h4 {
        font-size: 0.85rem;
    }
}



/* ---------------- RESPONSIVE TWEAKS ---------------- */

@media (max-width: 960px) {
    .hero-frame {
        min-height: 360px;
    }

    .hero-content {
        padding: 2.4rem 1.9rem;
    }

    .problem-grid,
    .guide-grid,
    .success-grid,
    .contact-layout {
        grid-template-columns: minmax(0,1fr);
    }

    #guide .guide-grid {
        grid-template-columns: 1fr !important;  /* collapse into single column */
        gap: 2rem;
    }

    #guide .guide-cards {
        margin-top: 1.2rem;   /* add natural spacing between text and cards */
    }

   
}


@media (max-width: 720px) {
    .hero {
        padding-top: 2.2rem;
    }

    .hero-content {
        padding: 2.2rem 1.6rem;
    }

    .value-grid,
    .plan-steps,
    .resources-grid {
        grid-template-columns: minmax(0,1fr);
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .front-form .form-row {
        grid-template-columns: 1fr;
    }

}

/* ============================================================
   TESTIMONIALS — CENTERED REVIEW LAYOUT (SAFE OVERRIDE)
   Affects ONLY .testimonial-card content
============================================================ */

.testimonial-card {
    text-align: center;
}

/* Avatar + stars wrapper */
.testimonial-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.9rem;
}

/* Bigger avatar */
.testimonial-avatar {
    width: 68px;
    height: 68px;
    margin: 0 auto 0.5rem;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 999px;
}

/* Big, obvious stars */
.testimonial-stars {
    font-size: 1.85rem;
    color: #F59E0B;
    letter-spacing: 0.28rem;
    line-height: 1;
    margin-bottom: 0.4rem;
}

/* Text spacing */
.testimonial-text {
    margin-top: 0.5rem;
}

/* Name spacing */
.testimonial-name {
    margin-top: 0.4rem;
}




