/* =========================================================
   PRIME START
   Main Website Stylesheet
   ========================================================= */


/* =========================================================
   1. RESET
   ========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    background: #ffffff;
    color: #172033;

    line-height: 1.6;
    font-size: 16px;

    -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

ul,
ol {
    list-style: none;
}


/* =========================================================
   2. VARIABLES
   ========================================================= */

:root {

    /* Brand */
    --primary: #155eef;
    --primary-dark: #0f4bc4;
    --primary-light: #eef4ff;

    /* Secondary */
    --secondary: #0f766e;
    --secondary-light: #ecfdf5;

    /* Text */
    --text-dark: #172033;
    --text: #344054;
    --text-light: #667085;
    --text-muted: #98a2b3;

    /* Background */
    --white: #ffffff;
    --background: #f8fafc;
    --background-dark: #101828;

    /* Borders */
    --border: #e4e7ec;
    --border-dark: #d0d5dd;

    /* Status */
    --success: #039855;
    --success-light: #ecfdf3;

    --warning: #dc6803;
    --warning-light: #fffaeb;

    --danger: #d92d20;
    --danger-light: #fef3f2;

    /* Layout */
    --container: 1180px;

    /* Radius */
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Shadow */
    --shadow-sm:
        0 1px 2px rgba(16, 24, 40, 0.05);

    --shadow:
        0 4px 12px rgba(16, 24, 40, 0.08);

    --shadow-lg:
        0 15px 35px rgba(16, 24, 40, 0.12);

    /* Transition */
    --transition: 0.25s ease;
}


/* =========================================================
   3. GLOBAL
   ========================================================= */

.container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: 0 auto;
}

.section {
    padding: 90px 0;
}

.section-sm {
    padding: 60px 0;
}

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

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

.text-muted {
    color: var(--text-light);
}


/* =========================================================
   4. TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.03em;
}

h3 {
    font-size: 1.35rem;
}

h4 {
    font-size: 1.1rem;
}

p {
    color: var(--text);
}

.lead {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 50px;
}

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

.section-heading .eyebrow {
    margin-bottom: 12px;
}

.section-heading h2 {
    margin-bottom: 18px;
}

.section-heading p {
    color: var(--text-light);
}


/* =========================================================
   5. EYEBROW
   ========================================================= */

.eyebrow {
    display: inline-flex;
    align-items: center;

    color: var(--primary);
    background: var(--primary-light);

    border-radius: 50px;

    padding: 7px 13px;

    font-size: 0.82rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.06em;
}


/* =========================================================
   6. HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.96);

    border-bottom: 1px solid var(--border);

    backdrop-filter: blur(12px);
}

.header-container {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   7. LOGO
   ========================================================= */

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-weight: 800;
}

.site-logo {
    font-size: 1.25rem;
}

.logo-mark {
    width: 38px;
    height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: var(--primary);
    color: var(--white);

    border-radius: 9px;

    font-weight: 800;
    font-size: 1.1rem;
}

.logo-text {
    color: var(--text-dark);
}


/* =========================================================
   8. NAVIGATION
   ========================================================= */

.main-navigation {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-navigation > a {
    position: relative;

    padding: 10px 14px;

    color: var(--text);
    font-size: 0.95rem;
    font-weight: 600;

    border-radius: var(--radius-sm);

    transition:
        color var(--transition),
        background var(--transition);
}

.main-navigation > a:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.main-navigation > a.active {
    color: var(--primary);
}

.main-navigation .nav-apply {
    margin-left: 8px;

    background: var(--primary);
    color: var(--white);

    padding: 12px 18px;

    border-radius: var(--radius-sm);
}

.main-navigation .nav-apply:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.main-navigation .nav-apply.active {
    color: var(--white);
}


/* =========================================================
   9. MOBILE MENU
   ========================================================= */

.mobile-menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid var(--border);

    background: var(--white);

    border-radius: var(--radius);

    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;

    width: 19px;
    height: 2px;

    background: var(--text-dark);

    border-radius: 10px;

    transition: var(--transition);
}


/* =========================================================
   10. MAIN
   ========================================================= */

.site-main {
    min-height: 60vh;
}


/* =========================================================
   11. HERO
   ========================================================= */

.hero {
    position: relative;

    overflow: hidden;

    padding: 110px 0 100px;

    background:
        linear-gradient(
            135deg,
            #f7faff 0%,
            #ffffff 55%,
            #eef4ff 100%
        );
}

.hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(350px, 0.9fr);

    gap: 70px;

    align-items: center;
}

.hero-content {
    max-width: 700px;
}

.hero-content .eyebrow {
    margin-bottom: 22px;
}

.hero-content h1 {
    margin-bottom: 24px;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content > p {
    max-width: 650px;

    font-size: 1.15rem;

    color: var(--text-light);

    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;
}

.hero-visual {
    position: relative;
}

.hero-card {
    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-xl);

    padding: 35px;

    box-shadow: var(--shadow-lg);
}

.hero-card h3 {
    margin-bottom: 10px;
}

.hero-card p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.hero-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 18px 0;

    border-top: 1px solid var(--border);
}

.hero-stat strong {
    font-size: 1.4rem;
    color: var(--text-dark);
}

.hero-stat span {
    color: var(--text-light);
    font-size: 0.9rem;
}


/* =========================================================
   12. BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 12px 22px;

    border-radius: var(--radius-sm);

    border: 1px solid transparent;

    font-size: 0.95rem;
    font-weight: 700;

    transition:
        background var(--transition),
        border-color var(--transition),
        color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);

    box-shadow:
        0 8px 20px rgba(21, 94, 239, 0.2);
}

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

.btn-secondary:hover {
    background: var(--background);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-success {
    background: var(--secondary);
    color: var(--white);
}

.btn-danger {
    background: var(--danger);
    color: var(--white);
}

.btn-sm {
    min-height: 40px;
    padding: 9px 15px;
    font-size: 0.88rem;
}


/* =========================================================
   13. CARDS
   ========================================================= */

.card {
    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    padding: 30px;

    box-shadow: var(--shadow-sm);
}

.card:hover {
    box-shadow: var(--shadow);
}

.card-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--primary-light);
    color: var(--primary);

    border-radius: var(--radius);

    margin-bottom: 20px;

    font-size: 1.25rem;
}

.card h3 {
    margin-bottom: 10px;
}

.card p {
    color: var(--text-light);
}


/* =========================================================
   14. GRID
   ========================================================= */

.grid {
    display: grid;
    gap: 25px;
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}


/* =========================================================
   15. FEATURE CARDS
   ========================================================= */

.features {
    background: var(--white);
}

.feature-card {
    height: 100%;
}

.feature-number {
    display: inline-flex;

    width: 34px;
    height: 34px;

    align-items: center;
    justify-content: center;

    background: var(--primary-light);
    color: var(--primary);

    border-radius: 50%;

    font-weight: 800;
    font-size: 0.85rem;

    margin-bottom: 20px;
}


/* =========================================================
   16. PROCESS / HOW IT WORKS
   ========================================================= */

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

.process-card {
    position: relative;

    height: 100%;

    padding: 30px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);
}

.process-number {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--primary);
    color: var(--white);

    border-radius: 50%;

    font-weight: 800;

    margin-bottom: 22px;
}

.process-card h3 {
    margin-bottom: 10px;
}

.process-card p {
    color: var(--text-light);
}


/* =========================================================
   17. CTA
   ========================================================= */

.cta-section {
    padding: 90px 0;
}

.cta-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding: 55px;

    background: var(--background-dark);

    border-radius: var(--radius-xl);

    color: var(--white);
}

.cta-box h2 {
    color: var(--white);

    margin-bottom: 12px;
}

.cta-box p {
    color: #d0d5dd;

    max-width: 650px;
}

.cta-box .btn {
    flex-shrink: 0;
}


/* =========================================================
   18. PAGE HEADER
   ========================================================= */

.page-header {
    padding: 80px 0;

    background:
        linear-gradient(
            135deg,
            #f7faff,
            #eef4ff
        );

    border-bottom: 1px solid var(--border);
}

.page-header-content {
    max-width: 760px;
}

.page-header .eyebrow {
    margin-bottom: 15px;
}

.page-header h1 {
    margin-bottom: 15px;
}

.page-header p {
    color: var(--text-light);

    font-size: 1.1rem;
}


/* =========================================================
   19. ABOUT
   ========================================================= */

.about-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 70px;

    align-items: center;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-light);

    margin-bottom: 18px;
}

.about-list {
    margin-top: 25px;
}

.about-list li {
    position: relative;

    padding-left: 30px;

    margin-bottom: 13px;

    color: var(--text);
}

.about-list li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 0;

    color: var(--success);

    font-weight: 800;
}

.about-panel {
    padding: 40px;

    background: var(--primary-light);

    border-radius: var(--radius-xl);
}


/* =========================================================
   20. CONTACT
   ========================================================= */

.contact-grid {
    display: grid;

    grid-template-columns:
        minmax(280px, 0.8fr)
        minmax(0, 1.2fr);

    gap: 60px;

    align-items: start;
}

.contact-info h2 {
    margin-bottom: 15px;
}

.contact-info > p {
    color: var(--text-light);

    margin-bottom: 30px;
}

.contact-item {
    display: flex;

    gap: 15px;

    padding: 18px 0;

    border-bottom: 1px solid var(--border);
}

.contact-item:first-of-type {
    border-top: 1px solid var(--border);
}

.contact-item-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: var(--primary-light);
    color: var(--primary);

    border-radius: var(--radius);
}

.contact-item h4 {
    margin-bottom: 3px;
}

.contact-item p,
.contact-item a {
    color: var(--text-light);
}


/* =========================================================
   21. FORMS
   ========================================================= */

.form-card {
    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    padding: 35px;

    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;

    margin-bottom: 7px;

    color: var(--text-dark);

    font-size: 0.92rem;
    font-weight: 600;
}

.form-label .required {
    color: var(--danger);
}

.form-control {
    width: 100%;

    min-height: 48px;

    padding: 11px 14px;

    border: 1px solid var(--border-dark);

    border-radius: var(--radius-sm);

    background: var(--white);

    color: var(--text-dark);

    outline: none;

    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

.form-control:focus {
    border-color: var(--primary);

    box-shadow:
        0 0 0 3px rgba(21, 94, 239, 0.1);
}

textarea.form-control {
    min-height: 140px;

    resize: vertical;
}

select.form-control {
    cursor: pointer;
}

.form-row {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;
}

.form-help {
    display: block;

    margin-top: 6px;

    color: var(--text-muted);

    font-size: 0.83rem;
}

.form-actions {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 25px;
}


/* =========================================================
   22. FUNDING APPLICATION
   ========================================================= */

.application-section {
    background: var(--background);
}

.application-layout {
    display: grid;

    grid-template-columns:
        minmax(240px, 0.65fr)
        minmax(0, 1.35fr);

    gap: 45px;

    align-items: start;
}

.application-sidebar {
    position: sticky;

    top: 110px;
}

.application-sidebar-card {
    padding: 25px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);
}

.application-sidebar-card h3 {
    margin-bottom: 20px;
}

.application-step {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    padding: 12px 0;
}

.application-step-number {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--background);

    color: var(--text-light);

    font-size: 0.82rem;
    font-weight: 700;
}

.application-step.active
.application-step-number {
    background: var(--primary);

    color: var(--white);
}

.application-step strong {
    display: block;

    color: var(--text-dark);

    font-size: 0.9rem;
}

.application-step span {
    color: var(--text-muted);

    font-size: 0.8rem;
}


/* =========================================================
   23. ALERTS
   ========================================================= */

.alert {
    padding: 14px 16px;

    border-radius: var(--radius);

    margin-bottom: 20px;

    border: 1px solid transparent;
}

.alert-success {
    background: var(--success-light);
    color: var(--success);

    border-color: #abefc6;
}

.alert-error {
    background: var(--danger-light);
    color: var(--danger);

    border-color: #fecdca;
}

.alert-warning {
    background: var(--warning-light);
    color: var(--warning);

    border-color: #fedf89;
}

.alert-info {
    background: var(--primary-light);
    color: var(--primary);

    border-color: #b2ccff;
}


/* =========================================================
   24. BADGES
   ========================================================= */

.badge {
    display: inline-flex;

    align-items: center;

    padding: 5px 10px;

    border-radius: 50px;

    font-size: 0.78rem;
    font-weight: 700;
}

.badge-primary {
    background: var(--primary-light);
    color: var(--primary);
}

.badge-success {
    background: var(--success-light);
    color: var(--success);
}

.badge-warning {
    background: var(--warning-light);
    color: var(--warning);
}

.badge-danger {
    background: var(--danger-light);
    color: var(--danger);
}


/* =========================================================
   25. TABLE
   ========================================================= */

.table-wrapper {
    width: 100%;

    overflow-x: auto;

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    background: var(--white);
}

.table {
    width: 100%;

    border-collapse: collapse;
}

.table th,
.table td {
    padding: 15px 18px;

    text-align: left;

    border-bottom: 1px solid var(--border);
}

.table th {
    background: var(--background);

    color: var(--text-dark);

    font-size: 0.85rem;

    font-weight: 700;
}

.table td {
    color: var(--text);
}

.table tr:last-child td {
    border-bottom: 0;
}


/* =========================================================
   26. FOOTER
   ========================================================= */

.site-footer {
    background: var(--background-dark);

    color: var(--white);

    padding: 70px 0 25px;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.4fr
        0.8fr
        0.8fr
        1fr;

    gap: 50px;

    padding-bottom: 50px;

    border-bottom: 1px solid #344054;
}

.footer-logo {
    color: var(--white);

    margin-bottom: 20px;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-about p {
    max-width: 360px;

    color: #98a2b3;

    font-size: 0.92rem;
}

.footer-column h3 {
    color: var(--white);

    font-size: 0.95rem;

    margin-bottom: 18px;
}

.footer-links li {
    margin-bottom: 11px;
}

.footer-links a {
    color: #98a2b3;

    font-size: 0.9rem;

    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact li {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-bottom: 14px;

    color: #98a2b3;

    font-size: 0.9rem;
}

.footer-contact a {
    transition: color var(--transition);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-contact-icon {
    color: #b2ccff;

    flex-shrink: 0;
}


/* =========================================================
   27. FOOTER CTA
   ========================================================= */

.footer-cta {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 35px 0;

    border-bottom: 1px solid #344054;
}

.footer-cta h3 {
    color: var(--white);

    margin-bottom: 5px;
}

.footer-cta p {
    color: #98a2b3;

    font-size: 0.9rem;
}


/* =========================================================
   28. FOOTER BOTTOM
   ========================================================= */

.footer-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding-top: 25px;
}

.footer-bottom p {
    color: #667085;

    font-size: 0.83rem;
}

.footer-bottom-links {
    display: flex;

    gap: 20px;
}

.footer-bottom-links a {
    color: #667085;

    font-size: 0.83rem;
}

.footer-bottom-links a:hover {
    color: var(--white);
}


/* =========================================================
   29. EMPTY STATE
   ========================================================= */

.empty-state {
    padding: 60px 30px;

    text-align: center;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);
}

.empty-state h3 {
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--text-light);

    max-width: 500px;

    margin: 0 auto;
}


/* =========================================================
   30. UTILITY CLASSES
   ========================================================= */

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 10px !important;
}

.mt-2 {
    margin-top: 20px !important;
}

.mt-3 {
    margin-top: 30px !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 10px !important;
}

.mb-2 {
    margin-bottom: 20px !important;
}

.mb-3 {
    margin-bottom: 30px !important;
}

.hidden {
    display: none !important;
}


/* =========================================================
   31. RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .hero-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .hero-content {
        max-width: 800px;
    }

    .hero-visual {
        max-width: 650px;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .application-layout {
        grid-template-columns: 1fr;
    }

    .application-sidebar {
        position: static;
    }

    .footer-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   32. TABLET / MOBILE NAVIGATION
   ========================================================= */

@media (max-width: 800px) {

    .header-container {
        min-height: 70px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-navigation {
        display: none;

        position: absolute;

        top: 70px;
        left: 20px;
        right: 20px;

        flex-direction: column;

        align-items: stretch;

        gap: 4px;

        padding: 12px;

        background: var(--white);

        border: 1px solid var(--border);

        border-radius: var(--radius-lg);

        box-shadow: var(--shadow-lg);
    }

    .main-navigation.open {
        display: flex;
    }

    .main-navigation > a {
        width: 100%;

        padding: 12px 14px;
    }

    .main-navigation .nav-apply {
        margin-left: 0;

        margin-top: 5px;

        text-align: center;
    }

    .hero {
        padding: 80px 0;
    }

    .section {
        padding: 70px 0;
    }

    .cta-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 40px;
    }

    .footer-cta {
        flex-direction: column;

        align-items: flex-start;
    }
}


/* =========================================================
   33. MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .container {
        width: min(
            calc(100% - 30px),
            var(--container)
        );
    }

    h1 {
        font-size: 2.35rem;
    }

    h2 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1.05rem;
    }

    .hero {
        padding: 65px 0;
    }

    .hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-card {
        padding: 25px;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

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

        gap: 0;
    }

    .form-card {
        padding: 25px 20px;
    }

    .page-header {
        padding: 60px 0;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-box {
        padding: 30px 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;
    }

    .footer-bottom-links {
        flex-direction: column;

        gap: 8px;
    }

    .contact-grid {
        gap: 35px;
    }
}


/* =========================================================
   34. ACCESSIBILITY
   ========================================================= */

:focus-visible {
    outline: 3px solid rgba(21, 94, 239, 0.35);

    outline-offset: 2px;
}

::selection {
    background: var(--primary);
    color: var(--white);
}


/* =========================================================
   35. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */

.testimonial-card {
    height: 100%;

    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    color: #f59e0b;

    font-size: 1rem;

    letter-spacing: 2px;

    margin-bottom: 18px;
}

.testimonial-text {
    color: var(--text);

    font-size: 1rem;

    line-height: 1.75;

    flex: 1;

    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;

    align-items: center;

    gap: 12px;

    padding-top: 20px;

    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: var(--primary-light);
    color: var(--primary);

    border-radius: 50%;

    font-size: 0.82rem;
    font-weight: 800;
}

.testimonial-author strong {
    display: block;

    color: var(--text-dark);

    font-size: 0.9rem;
}

.testimonial-author span {
    display: block;

    color: var(--text-muted);

    font-size: 0.8rem;

    margin-top: 2px;
}
.testimonial-photo {
    object-fit: cover;
}
/* =========================================================
   SITE LOGO
   ========================================================= */

.site-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
}

.site-logo-image {
    display: block;
    width: auto;
    max-width: 190px;
    max-height: 60px;
    object-fit: contain;
}

.site-logo-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: inherit;
    text-decoration: none;
}


@media (max-width: 768px) {

    .site-logo-image {
        max-width: 155px;
        max-height: 48px;
    }

    .site-logo-text {
        font-size: 1.2rem;
    }

}

/* =========================================================
   PUBLIC SITE LOGO
   ========================================================= */

.site-logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: 190px;
    height: 60px;
    overflow: hidden;
    flex-shrink: 0;
}

.site-logo-image {
    display: block;
    width: auto;
    max-width: 190px;
    height: auto;
    max-height: 52px;
    object-fit: contain;
    object-position: left center;
}


/* Larger desktop screens */

@media (min-width: 992px) {

    .site-logo {
        width: 220px;
        height: 65px;
    }

    .site-logo-image {
        max-width: 220px;
        max-height: 58px;
    }

}


/* Mobile */

@media (max-width: 768px) {

    .site-logo {
        width: 155px;
        height: 50px;
    }

    .site-logo-image {
        max-width: 155px;
        max-height: 44px;
    }

}
/* =====================================================
   MOBILE NAVIGATION
   ===================================================== */

.mobile-menu-toggle {
    display: none;
}


@media (max-width: 768px) {

    .site-header {
        position: relative;
    }


    .header-container {
        position: relative;
    }


    .mobile-menu-toggle {
        display: flex;

        flex-direction: column;

        justify-content: center;

        align-items: center;

        gap: 5px;

        width: 42px;

        height: 42px;

        padding: 8px;

        border: 0;

        background: transparent;

        cursor: pointer;

        z-index: 1002;
    }


    .mobile-menu-toggle span {
        display: block;

        width: 24px;

        height: 2px;

        background: currentColor;

        transition:
            transform .25s ease,
            opacity .25s ease;
    }


    .main-navigation {
        display: none;

        position: absolute;

        top: 100%;

        left: 0;

        right: 0;

        width: 100%;

        padding: 10px 20px 20px;

        background: #fff;

        box-shadow:
            0 10px 25px
            rgba(0, 0, 0, .10);

        z-index: 1001;
    }


    .main-navigation.mobile-menu-open {
        display: flex;

        flex-direction: column;

        align-items: stretch;
    }


    .main-navigation a {
        display: block;

        width: 100%;

        padding: 14px 10px;

        text-decoration: none;
    }


    /*
     * Hamburger → X
     */

    .mobile-menu-toggle.is-open
    span:nth-child(1) {

        transform:
            translateY(7px)
            rotate(45deg);
    }


    .mobile-menu-toggle.is-open
    span:nth-child(2) {

        opacity: 0;
    }


    .mobile-menu-toggle.is-open
    span:nth-child(3) {

        transform:
            translateY(-7px)
            rotate(-45deg);
    }

}

.money-input-wrapper {
    position: relative;
    width: 100%;
}

.money-symbol {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);

    color: #5f6f85;
    font-size: 1rem;
    font-weight: 700;

    pointer-events: none;
    z-index: 2;
}

.money-input {
    padding-left: 35px !important;
}

.money-input-wrapper {
    position: relative;
    width: 100%;
}

.money-prefix {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);

    color: #5f6f85;
    font-size: 1rem;
    font-weight: 700;

    pointer-events: none;
    z-index: 2;
}

.money-input {
    padding-left: 34px !important;
}