﻿:root {
    --green-dark: #0b5b3c;
    --green: #0f8a4b;
    --yellow: #ffc628;
    --bg-light: #f5f7fb;
    --text-dark: #1f2933;
    --text-muted: #6b7280;
    --white: #ffffff;
    --danger: #b91c1c;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

header {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: var(--white);
    padding: 1rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 20;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}
.crj-container {
    display: flex;
    justify-content: center;
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo {
    height: 60px;
    width: auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

    .brand-text span:first-child {
        font-weight: 800;
        letter-spacing: 0.05em;
        font-size: 0.9rem;
    }

    .brand-text span:last-child {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.8);
    }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.nav-phone {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 0.8rem;
}

    .nav-phone strong {
        font-size: 1rem;
    }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.15s ease;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--yellow);
    color: #1a1a1a;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

    .btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
        background: #ffd75c;
    }

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    color: var(--white);
}

    .btn-outline:hover {
        background: rgba(255,255,255,0.1);
    }

main {
    padding: 2rem 1.5rem 3rem;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
    gap: 2.5rem;
    align-items: center;
    margin-top: 1.5rem;
}

.hero-left h1 {
    font-size: clamp(2.1rem, 3.2vw + 1rem, 3rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

    .hero-left h1 span {
        color: var(--green-dark);
    }

.hero-left p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 1.4rem;
    font-size: 0.8rem;
}

.hero-badge {
    background: rgba(15, 138, 75, 0.05);
    border-radius: 999px;
    padding: 0.35rem 0.8rem;
    border: 1px solid rgba(11, 91, 60, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--green);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.8rem;
}

.hero-note {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.hero-right {
    background: var(--white);
    padding: 1.5rem 1.25rem;
    border-radius: 1.25rem;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(15, 138, 75, 0.06);
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
}

    .form-header h2 {
        font-size: 1.25rem;
    }

    .form-header span {
        font-size: 0.8rem;
        color: var(--text-muted);
    }

form {
    display: grid;
    gap: 0.75rem;
}

label {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    display: inline-block;
}

input, select {
    width: 100%;
    padding: 0.55rem 0.65rem;
    border-radius: 0.6rem;
    border: 1px solid #d1d5db;
    font-size: 0.9rem;
    outline: none;
    transition: border 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
    background: #f9fafb;
}

    input:focus, select:focus {
        border-color: var(--green);
        box-shadow: 0 0 0 3px rgba(15, 138, 75, 0.18);
        background: #ffffff;
    }

/* ---------- ORG CHART STYLES ---------- */

.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.org-node {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: center;
    max-width: 220px;
}

    .org-node img {
        width: 100%;
        max-width: 140px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 10px;
    }

    .org-node h3 {
        margin: 6px 0 4px;
    }

    .org-node p {
        font-size: 0.9rem;
        color: #555;
    }

.org-parent-wrapper {
    position: relative;
    padding-bottom: 20px;
}

    .org-parent-wrapper::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 2px;
        height: 20px;
        background: #c3d4f5;
    }

.org-children-wrapper {
    width: 100%;
    position: relative;
    padding-top: 20px;
}

    .org-children-wrapper::before {
        content: "";
        position: absolute;
        top: 0;
        left: 10%;
        right: 10%;
        height: 2px;
        background: #c3d4f5;
    }

.org-children {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 10px;
}

.org-child-connector {
    position: relative;
}

    .org-child-connector::before {
        content: "";
        position: absolute;
        top: -20px;
        left: 50%;
        width: 2px;
        height: 20px;
        background: #c3d4f5;
        transform: translateX(-50%);
    }

/* -------------------------------------- */

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 0.75rem;
}

.form-footer {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
}

.section {
    margin-top: 3rem;
}

.section-header {
    text-align: center;
    margin-bottom: 1.75rem;
}

    .section-header h2 {
        font-size: 1.6rem;
        margin-bottom: 0.4rem;
    }

    .section-header p {
        font-size: 0.9rem;
        color: var(--text-muted);
    }

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.3rem 1.2rem;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 138, 75, 0.05);
}

    .card h3 {
        font-size: 1rem;
        margin-bottom: 0.45rem;
        color: var(--green-dark);
    }

    .card p {
        font-size: 0.85rem;
        color: var(--text-muted);
    }

.card-number {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15,138,75,0.1);
    color: var(--green-dark);
    font-size: 0.8rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.benefit-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    gap: 0.4rem;
    margin-top: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

    .benefit-list li::before {
        content: "✔";
        color: var(--green);
        margin-right: 0.35rem;
        font-size: 0.8rem;
    }

.testimonial-section {
    display: grid;
    grid-template-columns: 3fr 2.2fr;
    gap: 1.5rem;
    align-items: center;
}

.testimonials {
    display: grid;
    gap: 1rem;
}

.testimonial {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.1rem 1.1rem;
    border-left: 4px solid var(--yellow);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.07);
    font-size: 0.85rem;
    color: var(--text-muted);
}

    .testimonial strong {
        display: block;
        margin-top: 0.45rem;
        color: var(--text-dark);
    }

.rating {
    color: #f59e0b;
    font-size: 0.85rem;
    margin-top: 0.1rem;
}

.trust-panel {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: var(--white);
    border-radius: 1.25rem;
    padding: 1.3rem 1.4rem;
    font-size: 0.9rem;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.23);
}

    .trust-panel h3 {
        font-size: 1.15rem;
        margin-bottom: 0.4rem;
    }

    .trust-panel ul {
        list-style: none;
        margin-top: 0.6rem;
        padding-left: 0;
        display: grid;
        gap: 0.35rem;
        font-size: 0.85rem;
    }

    .trust-panel li::before {
        content: "•";
        margin-right: 0.35rem;
        color: var(--yellow);
    }

.faq {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    padding: 1rem 1.1rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(148, 163, 184, 0.35);
    font-size: 0.85rem;
}

    .faq-item h3 {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }

footer {
    background: #0b1726;
    color: rgba(226, 232, 240, 0.9);
    padding: 1.5rem 1.5rem 2rem;
    font-size: 0.75rem;
    margin-top: 2.5rem;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 0.75rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

    .footer-links a {
        color: rgba(226, 232, 240, 0.85);
        text-decoration: underline;
    }

.disclaimer {
    color: rgba(148, 163, 184, 0.95);
    max-width: 900px;
}

@media (max-width: 900px) {
    .hero,
    .testimonial-section {
        grid-template-columns: 1fr;
    }

    .hero-right {
        order: -1;
    }

    .grid-3 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    header {
        position: static;
    }

    .nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-cta {
        width: 100%;
        justify-content: space-between;
    }

    .hero {
        margin-top: 1rem;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }


    main {
        padding-inline: 1rem;
    }
}
/* ===============================
   SUBMISSION LOADER + WARNING
   =============================== */

.loading-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 1.25rem;
    padding: 1.5rem 1.25rem;
    min-height: 180px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    color: var(--text-dark);
    text-align: center;
}

/* Spinner */

.loading-spinner {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 4px solid rgba(15, 138, 75, 0.2);
    border-top-color: var(--green);
    animation: spin 0.9s linear infinite;
    margin-bottom: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Main status text */

.loading-text {
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 4px;
}

/* Safety notice */

.loading-warning {
    margin-top: 6px;
    font-size: 0.85rem;
    color: var(--danger);
    line-height: 1.35;
    font-weight: 700;
}
