:root {
    --blue: #054A8A;
    --text: #21324a;
    --muted: #6b7a90;
    --border: #e6ebf3;
    --accent: #F79320;
    --soft: #fff3e6;
    --shadow: 0 10px 24px rgba(0,0,0,.05);
}

/* =====================
   GLOBAL TOKENS
===================== */
:root {
    --ss-navy: #054A8A;
    --ss-gold: #F79320;
    --ss-bg: #f7fafc;
    --ss-text: #1f2937;
    --ss-muted: #6b7280;
    --ss-card: #ffffff;
    --ss-border: #e6edf5;
    --ss-shadow: 0 10px 22px rgba(16,24,40,.08);
    --ss-radius: 16px;
}

/* Containers */
.site-container {
    width: 100%;
    max-width: 1100px;
    padding: 0 16px;
    margin: 0 auto;
}

.site-container--narrow {
    max-width: 900px;
}

/* Reusable title */
.section-title {
    text-align: center;
    font-weight: 800;
    color: var(--blue);
    font-size: 28px;
    margin: 0 0 22px;
    letter-spacing: -0.02em;
}

/* Reusable button */
.btn-outline {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    color: #f4f4f4;
    font-weight: 700;
    font-size: 14px;
}

/* =========================
   NAVBAR
========================= */
.ss-navbar {
    background: #ffffff;
    border-bottom: 1px solid rgba(22,59,115,.10);
    padding: .9rem 0;
}

.ss-logo {
    height: 60px !important;
    width: auto !important;
    display: block !important;
}

.ss-navbar .nav-link {
    font-weight: 700;
    color: var(--ss-navy);
    opacity: .92;
    padding: .5rem .85rem;
}

.ss-navbar .nav-link:hover {
    opacity: 1;
}

.ss-btn-quote {
    background: var(--ss-gold) !important;
    color: #ffffff !important;
    font-weight: 800;
    border-radius: 10px;
    padding: .65rem 1.15rem;
    border: none;
    box-shadow: 0 10px 18px rgba(215,154,56,.18);
    text-decoration: none;
}

.ss-btn-quote:hover {
    background: #054A8A;
    color: #fff !important;
}

.ss-nav-toggle {
    border: 1px solid rgba(22,59,115,.18);
    border-radius: 10px;
}

/* ============ HERO ============ */
.rs-hero {
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: center;
    background: url("../images/PersonPhoneOffice.jpg") center/cover no-repeat;
}

@media (min-width: 768px){
    .rs-hero {
        height: 50vh;
        max-height: 325px;
    }
}

@media (min-width: 1200px){
    .rs-hero {
        height: 50vh;
        max-height: 325px;
    }
}

.rs-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.88);
}

.rs-hero__inner {
    position: relative;
    text-align: center;
    padding: 40px 0;
}

.rs-hero__title {
    margin: 0 0 10px;
    color: var(--blue);
    font-weight: 900;
    font-size: 32px;
    letter-spacing: -0.02em;
}

.rs-hero__subtitle {
    margin: 0 auto;
    max-width: 760px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ============ HELPFUL RESOURCES ============ */
/* Helpful Resources section */
.hr {
    padding-top: 32px;

    /* current / mobile */
}

/* ADD space only on larger screens */
@media (min-width: 1024px){
    .hr {
        padding-top: 100px;
    }
}

.hr-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.hr-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.hr-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}

.hr-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--soft);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hr-card__icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.hr-card__tag {
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
    margin-top: 6px;
}

.hr-card__title {
    margin: 0 0 10px;
    color: var(--blue);
    font-weight: 900;
    font-size: 20px;
    letter-spacing: -0.01em;
}

.hr-card__text {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.65;
    font-size: 15px;
    max-width: 52ch;
}

.hr-card .btn-outline {
    margin-top: auto;

    /* pins button to bottom for equal-height cards */
    width: max-content;
    background-color: #f79333;
}

/* ============ FAQ ============ */
.ss-faq-section {
    background: #fff;
    padding: 40px 0 70px;
}

/* Desktop spacing only */
@media (min-width: 992px){
    .ss-faq-section {
        padding-top: 100px;

        /* adjust: 80–140px */
    }
}

.ss-faq-title {
    text-align: center;
    font-weight: 900;
    color: var(--blue);
    font-size: 28px;
    margin: 0 0 30px;
    letter-spacing: -0.02em;
}

.ss-faq-list {
    border-top: 1px solid var(--border);
}

.ss-faq-item {
    border-bottom: 1px solid var(--border);
}

.ss-faq-question {
    width: 100%;
    background: none;
    border: 0;
    padding: 18px 0;
    text-align: left;
    font-size: 16px;
    font-weight: 800;
    color: var(--blue);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.ss-faq-icon {
    font-size: 18px;
    color: var(--blue);
    transition: transform .25s ease;
}

.ss-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.ss-faq-answer p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.65;
    font-size: 15px;
}

/* Open state */
.ss-faq-item.is-open .ss-faq-answer {
    max-height: 320px;
}

.ss-faq-item.is-open .ss-faq-icon {
    transform: rotate(180deg);
}

/* Scale UP at 430px */
@media (min-width:430px){
    .ss-faq-title {
        font-size: 32px;
    }

    .ss-faq-question {
        font-size: 17px;
    }
}

/* ============ STATS ============ */
.ss-stats-section {
    background: #fff;
    padding: 48px 0 70px;
    text-align: center;
}

.ss-stats-title {
    margin: 0 0 34px;
    color: var(--blue);
    font-weight: 900;
    font-size: 26px;
    letter-spacing: -0.02em;
}

.ss-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

@media (min-width: 768px){
    .ss-stats-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }
}

.ss-stat {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 26px 18px 24px;
    box-shadow: var(--shadow);
}

.ss-stat-num {
    font-size: 36px;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 8px;
}

.ss-stat-text {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

/* Video Tutorials */
.vt-section {
    padding: 56px 16px;
    background: #ffffff;
}

.vt-container {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
}

.vt-title {
    margin: 0;
    font-size: 26px;
    font-weight: 800;
    color: #054A8A;

    /* deep navy */
}

.vt-subtitle {
    margin: 8px auto 22px;
    max-width: 720px;
    color: #6b778a;
    font-size: 14.5px;
    line-height: 1.55;
}

/* Grid */
.vt-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
    text-align: left;

    /* card text aligns left */
}

/* Card */
.vt-card {
    display: block;
    text-decoration: none;
    background: #fff;
    border: 1px solid #eef1f6;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
    transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}

.vt-card:hover {
    transform: translateY(-2px);
    border-color: #d9e2f1;
    box-shadow: 0 12px 34px rgba(16, 24, 40, 0.10);
}

/* Thumbnail */
.vt-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #f2f4f7;
}

.vt-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Play overlay (featured card + hover) */
.vt-play {
    position: absolute;
    left: 14px;
    top: 14px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(255, 122, 24, 0.92);
    box-shadow: 0 8px 18px rgba(255, 122, 24, 0.28);
    display: grid;
    place-items: center;
}

.vt-play::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 12px solid #fff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    margin-left: 2px;
}

/* Show play button only on featured, but also show on hover for others */
.vt-card .vt-play {
    opacity: 0;
    transform: scale(.96);
    transition: opacity .14s ease, transform .14s ease;
}

.vt-card.is-featured .vt-play {
    opacity: 1;
    transform: scale(1);
}

.vt-card:hover .vt-play {
    opacity: 1;
    transform: scale(1);
}

/* Body */
.vt-body {
    padding: 12px 12px 14px;
}

.vt-card-title {
    margin: 0 0 4px;
    font-size: 13px;
    font-weight: 800;
    color: #054A8A;
    line-height: 1.25;
}

.vt-card-desc {
    margin: 0;
    font-size: 12px;
    color: #6b778a;
    line-height: 1.35;
}

/* Featured card accent like screenshot */
.vt-card.is-featured {
    border-color: rgba(255, 122, 24, 0.35);
    box-shadow: 0 10px 28px rgba(255, 122, 24, 0.10), 0 8px 24px rgba(16, 24, 40, 0.06);
}

.vt-card.is-featured .vt-card-title {
    color: #ff7a18;
}

/* Responsive */
@media (max-width: 992px){
    .vt-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px){
    .vt-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   customers say
========================= */
.ts-section {
    padding: 56px 16px;
    background: #fff;
}

.ts-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.ts-title {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    color: #054A8A;
}

.ts-subtitle {
    margin: 10px auto 26px;
    max-width: 720px;
    font-size: 14.5px;
    line-height: 1.55;
    color: #6b778a;
}

/* Grid */
.ts-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
    text-align: left;
}

/* Card */
.ts-card {
    position: relative;
    background: #fff;
    border: 1px solid #eef1f6;
    border-radius: 12px;
    padding: 22px 20px 18px;
    box-shadow: 0 10px 28px rgba(16, 24, 40, 0.06);
    min-height: 260px;
}

.ts-quoteMark {
    color: rgba(247, 147, 32, 1);
    font-size: 44px;
    line-height: 1;
    margin-bottom: 8px;
    user-select: none;
}

.ts-text {
    margin: 0;
    color: #2e2e2f;
    font-size: 13.5px;
    line-height: 1.6;
    min-height: 120px;
}

/* Footer */
.ts-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
}

.ts-person {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.ts-avatar {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 122, 24, 0.12);
    color: #F79320;
    font-weight: 800;
    font-size: 12px;
    flex: 0 0 auto;
}

.ts-meta {
    min-width: 0;
}

.ts-name {
    font-weight: 800;
    color: #1f2a37;
    font-size: 13px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ts-company {
    font-size: 12px;
    color: #ff7a18;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Button */
.ts-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid #d9e2f1;
    background: #fff;
    color: #1f2a37;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.ts-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 122, 24, 0.45);
    box-shadow: 0 10px 22px rgba(16, 24, 40, 0.08);
}

.ts-btn-ico {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    display: grid;
    place-items: center;
    background: rgba(255, 122, 24, 0.14);
    color: #ff7a18;
    font-weight: 900;
    line-height: 1;
}

/* Responsive */
@media (max-width: 992px){
    .ts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px){
    .ts-grid {
        grid-template-columns: 1fr;
    }

    .ts-text {
        min-height: auto;
    }

    .ts-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================
   question cta
========================= */
.cta-section {
    background: #054A8A;
    margin-bottom: 56px;

    /* deep navy blue */
    padding: 56px 16px;
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
}

.cta-text {
    margin: 10px auto 28px;
    max-width: 620px;
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    line-height: 1.55;
}

/* Buttons */
.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    min-width: 180px;
    transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}

/* Primary button */
.cta-btn--primary {
    background: #F79320;

    /* soft blue */
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

.cta-btn--primary:hover {
    transform: translateY(-1px);
    background: #0a6aa2;
}

/* Outline button */
.cta-btn--outline {
    background: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255,255,255,0.6);
}

.cta-btn--outline:hover {
    transform: translateY(-1px);
    border-color: #ffffff;
    background: rgba(255,255,255,0.08);
}

/* Responsive */
@media (max-width: 520px){
    .cta-title {
        font-size: 24px;
    }

    .cta-btn {
        width: 100%;
    }
}

/* =========================
   FOOTER (TIGHTER HEIGHT)
========================= */
.ss-footer {
    background: #1f4f88;
    color: #ffffff;
    font-family: "Arimo", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    padding: 1rem 0 0;
    text-align: left;

    /* was 4.25rem */
}

/* inner layout */
.ss-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 0rem;
    justify-items: start;

    /* was 3rem bottom */
    display: grid;
    grid-template-columns: 1.2fr 1px 1.4fr 1px 1fr;
    gap: 1.5rem;

    /* was 3rem */
    align-items: start;
}

.ss-footer-col {
    min-width: 0;
}

.ss-footer-divider {
    width: 1px;
    background: rgba(255,255,255,.25);
    height: 100%;
}

/* BRAND BLOCK */
.ss-footer-brandblock {
    display: flex;
    gap: .85rem;
    align-items: center;
    margin-bottom: .65rem;

    /* was .9rem */
}

.ss-footer-brandblock--stack {
    flex-direction: column;
    align-items: flex-start;
    gap: .65rem;

    /* was .85rem */
}

.ss-footer-brandblock--row {
    flex-direction: row;
    align-items: center;
}

.ss-footer-logo {
    width: 100px;

    /* was 80px */
    height: auto;
    display: block;
    flex-shrink: 0;
}

/* Brand name */
.ss-footer-title {
    font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: #ffffff;

    /* was 3.1rem */
    line-height: 1.05;
    margin: 0;
    letter-spacing: .4px;
}

/* tagline */
.ss-footer-tagline {
    color: #f0a13e;
    font-size: 1.05rem;

    /* was 1.25rem */
    margin: 0 0 1.4rem 0;

    /* was 2rem */
}

/* contact items */
.ss-footer-contact p {
    display: flex;
    align-items: start;
    gap: .85rem;
    margin: 0 0 .95rem 0;
    justify-items: start;

    /* was 1.2rem */
    font-size: 1.05rem;

    /* was 1.25rem */
}

.ss-footer-icon {
    width: 22px;

    /* was 26px */
    height: 22px;
    object-fit: contain;
    display: block;
}

.ss-footer a {
    color: #ffffff;
    text-decoration: none;
}

.ss-footer a:hover {
    text-decoration: underline;
}

/* headings */
.ss-footer-heading {
    font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 900;
    color: #f0a13e;
    letter-spacing: .6px;
    margin: 0 0 1.05rem 0;

    /* was 1.5rem */
    font-size: 1.55rem;

    /* was 2rem */
    text-transform: uppercase;
}

/* links columns */
.ss-footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;

    /* was 2.5rem */
}

.ss-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;

    /* was 1.4rem */
}

.ss-footer-links a {
    font-size: 1.15rem;

    /* was 1.4rem */
    line-height: 1.35;
}

/* CTA */
.ss-footer-cta .ss-footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F79320;
    color: #fff;
    font-weight: 900;
    border-radius: 16px;
    padding: .95rem 1.4rem;

    /* was 1.2rem 2rem */
    font-size: 1.15rem;

    /* was 1.35rem */
    margin-top: 1rem;

    /* was 1.25rem */
    box-shadow: 0 14px 22px rgba(0,0,0,.18);
    text-decoration: none;
    width: min(320px, 100%);
    text-align: center;
}

.ss-footer-cta .ss-footer-btn:hover {
    background: #c88722;
    text-decoration: none;
}

/* bottom bar */
.ss-footer-bottom {
    border-top: 2px solid rgba(255,255,255,.20);
    padding: .5rem 2rem;

    /* was 1.8rem */
    text-align: center;
    font-size: 1rem;

    /* was 1.35rem */
    color: rgba(255,255,255,.92);
}

/* responsive */
@media (max-width: 991.98px){
    .ss-footer-inner {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding-bottom: 1.5rem;
    }

    .ss-footer-divider {
        display: none;
    }

    .ss-footer-title {
        font-size: 2.1rem;
    }

    .ss-footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 575.98px) {
    /* Center the grid itself */
    .ss-footer-inner {
        justify-items: center;
        text-align: center;
    }

    /* Brand / logo block */
    .ss-footer-brandblock,
    .ss-footer-brandblock--stack {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    /* Contact rows */
    .ss-footer-contact p {
        justify-content: center;
        text-align: center;
    }

    /* Headings */
    .ss-footer-heading {
        text-align: center;
    }

    /* quick links: keep 2 columns but center them */
    .ss-footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 0.9rem 1.25rem;
        justify-items: center;

        /* FIX */
        text-align: center;

        /* FIX */
    }

    .ss-footer-links ul {
        text-align: center;

        /* FIX */
        gap: 0.75rem;
    }

    .ss-footer-links a {
        font-size: 1.05rem;
        line-height: 1.25;
    }

    /* CTA section */
    .ss-footer-cta {
        text-align: center;
    }

    .ss-footer-cta .ss-footer-btn {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Fold unfolded / tablets / small laptops: use centered stacked footer */
@media (max-width: 1100px) {
    .ss-footer-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-bottom: 1.5rem;
        justify-items: center;

        /* center the stacked blocks */
        text-align: center;
    }

    .ss-footer-divider {
        display: none;
    }

    .ss-footer-brandblock,
    .ss-footer-brandblock--stack {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .ss-footer-contact p {
        justify-content: center;
        text-align: center;
    }

    /* Keep quick links in 2 columns for wider unfolded screens */
    .ss-footer-links {
        grid-template-columns: 1fr 1fr;
        justify-items: center;
        text-align: center;
        gap: 1rem 2rem;
    }

    .ss-footer-links ul {
        text-align: center;
    }

    .ss-footer-cta {
        text-align: center;
    }

    .ss-footer-cta .ss-footer-btn {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ============ BREAKPOINTS (start scaling UP at 430px) ============ */
@media (min-width:430px){
    .section-title {
        font-size: 32px;
    }

    .rs-hero__title {
        font-size: 36px;
    }

    .stats__title {
        font-size: 30px;
    }

    .stat__num {
        font-size: 42px;
    }

    .faq-q {
        font-size: 17px;
    }
}

/* 2-column resources on tablet, 3-column on desktop + 3-column stats */
@media (min-width:768px){
    .hr-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .stats__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }

    .rs-hero__inner {
        padding: 60px 0;
    }
}

/* Desktop */
@media (min-width:1024px){
    .hr-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }

    .rs-hero__title {
        font-size: 46px;
    }

    .section-title {
        font-size: 34px;
    }

    .stats__title {
        font-size: 34px;
    }
}

/* =====================
   FORCE BUTTON STYLES
===================== */
.ss-btn-accent {
    background-color: #F79320 !important;
    border-color: #F79320 !important;
    color: #fff !important;
}

.ss-btn-primary {
    background-color: #054A8A !important;
    border-color: #054A8A !important;
    color: #fff !important;
}

.ss-btn-accent:hover {
    background-color: #054A8A !important;
    border-color: ##054A8A !important;
}

.ss-btn-primary:hover {
    background-color: #054A8A !important;
    border-color: #054A8A !important;
}