/* ==================================================================
   Royal CRM - Public website
   Blue and teal on deep navy, soft glass cards, motion on scroll.
   ================================================================== */

.site-body {
    --navy: #0A1730;
    --navy-2: #0F2246;
    --navy-3: #16305E;

    --blue: #2E6BFF;
    --blue-600: #1E56E6;
    --blue-soft: #EAF0FF;
    --teal: #0FB5A5;
    --teal-soft: #E1F7F4;
    --amber: #F5A524;

    --ink: #0E1A2E;
    --ink-soft: #45536B;
    --muted: #7A8798;
    --line: #E6ECF5;
    --line-soft: #F0F4FA;
    --bg: #FFFFFF;
    --bg-alt: #F5F8FD;

    --r: 14px;
    --r-lg: 20px;
    --r-xl: 28px;

    /* Signature corner: sharp on one diagonal, deep on the other. */
    --corner: 5px 46px;
    --corner-sm: 5px 30px;
    --corner-lg: 6px 60px;

    --shadow-sm: 0 2px 8px -4px rgba(14, 26, 46, .12);
    --shadow: 0 12px 34px -18px rgba(14, 26, 46, .3);
    --shadow-lg: 0 34px 70px -34px rgba(14, 26, 46, .45);
    --card-shadow: 0 2px 4px rgba(14, 26, 46, .04), 0 14px 32px -18px rgba(14, 26, 46, .28);
    --card-shadow-hover: 0 6px 12px rgba(14, 26, 46, .06), 0 26px 52px -22px rgba(14, 26, 46, .42);
    --glow: 0 18px 40px -20px rgba(46, 107, 255, .75);

    --font: 'Plus Jakarta Sans', 'Segoe UI', Helvetica, Arial, sans-serif;

    --gutter: clamp(1.15rem, 4vw, 3rem);
    --section-y: clamp(3.75rem, 8vw, 7rem);

    background: var(--bg);
    color: var(--ink);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.site-body h1, .site-body h2, .site-body h3, .site-body h4 {
    font-family: var(--font);
    font-weight: 800;
    letter-spacing: -0.032em;
    line-height: 1.14;
    color: var(--navy);
    margin: 0 0 .65rem;
}

.site-body h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); }
.site-body h2 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); }
.site-body h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
.site-body p { margin: 0 0 1rem; }
.site-body a { color: var(--blue); text-decoration: none; transition: color .18s ease; }
.site-body a:hover { color: var(--blue-600); }

.shell { width: 100%; max-width: 1220px; margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section-tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section-alt { background: var(--bg-alt); }

/* Tinted band with a faint grid, used for the process strip */
.section-tint {
    position: relative;
    background:
        linear-gradient(180deg, #EAF1FF 0%, #F4F9FF 46%, #FFFFFF 100%);
    overflow: hidden;
}

.section-tint::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(46, 107, 255, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46, 107, 255, .07) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 78%);
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 78%);
    pointer-events: none;
}

.section-tint > * { position: relative; z-index: 2; }
.lead { font-size: clamp(1rem, 1.5vw, 1.14rem); color: var(--ink-soft); line-height: 1.75; max-width: 62ch; }
.measure { max-width: 68ch; }
.text-muted-2 { color: var(--muted); }
.num { font-variant-numeric: tabular-nums; }

.site-body :focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 6px; }

/* ------------------------------------------------------------------ */
/* Page loader                                                         */
/* ------------------------------------------------------------------ */
.loader {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    background: var(--navy);
    background-image:
        radial-gradient(circle at 30% 25%, rgba(46, 107, 255, .35), transparent 55%),
        radial-gradient(circle at 72% 78%, rgba(15, 181, 165, .28), transparent 55%);
    /* Safety net: even with JavaScript off the loader clears itself. */
    animation: loaderSafety .6s ease 3.5s forwards;
}

.loader.is-done { animation: loaderOut .55s ease forwards; }

@keyframes loaderOut {
    to { opacity: 0; visibility: hidden; }
}

@keyframes loaderSafety {
    to { opacity: 0; visibility: hidden; }
}

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

.loader-mark {
    width: 76px;
    height: 76px;
    margin: 0 auto 1.35rem;
    border-radius: 22px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    position: relative;
    animation: markPulse 1.8s ease-in-out infinite;
}

.loader-mark img { width: 46px; height: 46px; }

@keyframes markPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(46, 107, 255, .45); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 18px rgba(46, 107, 255, 0); }
}

.loader-name {
    font-size: 1.12rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: .3rem;
}

.loader-sub { font-size: .82rem; color: rgba(255, 255, 255, .55); margin-bottom: 1.4rem; }

.loader-bar {
    width: 172px;
    height: 3px;
    margin: 0 auto;
    border-radius: 100px;
    background: rgba(255, 255, 255, .14);
    overflow: hidden;
}

.loader-bar span {
    display: block;
    height: 100%;
    width: 40%;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--blue), var(--teal));
    animation: loaderSlide 1.1s ease-in-out infinite;
}

@keyframes loaderSlide {
    0% { transform: translateX(-110%); }
    100% { transform: translateX(320%); }
}

body.is-loading { overflow: hidden; }

/* ------------------------------------------------------------------ */
/* Scroll reveal                                                       */
/* ------------------------------------------------------------------ */
.js [data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s cubic-bezier(.22, .8, .3, 1), transform .7s cubic-bezier(.22, .8, .3, 1);
    will-change: opacity, transform;
}

.js [data-reveal="left"] { transform: translateX(-30px); }
.js [data-reveal="right"] { transform: translateX(30px); }
.js [data-reveal="zoom"] { transform: scale(.94); }

.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    .js [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
    .loader { animation-delay: .1s; }
    *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ------------------------------------------------------------------ */
/* Buttons                                                             */
/* ------------------------------------------------------------------ */
.site-body .btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    font-family: var(--font);
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.2;
    padding: .88rem 1.7rem;
    border-radius: var(--corner);
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    transition: transform .2s cubic-bezier(.22, .8, .3, 1), box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.site-body .btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 45%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .32), transparent);
    transform: skewX(-18deg);
    transition: left .55s ease;
}

.site-body .btn:hover::after { left: 130%; }
.site-body .btn:hover { transform: translateY(-2px); }
.site-body .btn:active { transform: translateY(0); }

.site-body .btn-primary {
    background: linear-gradient(135deg, var(--blue) 0%, #4C86FF 55%, var(--teal) 160%);
    color: #fff;
    box-shadow: var(--glow);
}

.site-body .btn-primary:hover { color: #fff; box-shadow: 0 22px 46px -18px rgba(46, 107, 255, .85); }

.site-body .btn-navy { background: var(--navy); color: #fff; }
.site-body .btn-navy:hover { background: var(--navy-2); color: #fff; }

.site-body .btn-outline { background: #fff; color: var(--navy); border-color: var(--line); box-shadow: var(--shadow-sm); }
.site-body .btn-outline:hover { border-color: var(--blue); color: var(--blue); }

.site-body .btn-ghost-light {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border-color: rgba(255, 255, 255, .28);
    backdrop-filter: blur(8px);
}

.site-body .btn-ghost-light:hover { background: rgba(255, 255, 255, .2); color: #fff; border-color: rgba(255, 255, 255, .5); }

.site-body .btn-sm { padding: .58rem 1.25rem; font-size: .87rem; border-radius: var(--corner-sm); }
.site-body .btn-lg { padding: 1.02rem 2.1rem; font-size: 1.02rem; }
.site-body .btn-block { width: 100%; }

/* ------------------------------------------------------------------ */
/* Header                                                              */
/* ------------------------------------------------------------------ */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 90;
    transition: background .3s ease, box-shadow .3s ease, border-color .3s ease, backdrop-filter .3s ease;
    border-bottom: 1px solid transparent;
}

.header-strip {
    background: rgba(255, 255, 255, .07);
    border-bottom: 1px solid rgba(255, 255, 255, .09);
    font-size: .82rem;
    transition: opacity .3s ease, max-height .3s ease;
    max-height: 44px;
    overflow: hidden;
}

.header-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    height: 42px;
    color: rgba(255, 255, 255, .72);
    flex-wrap: nowrap;
}

.header-strip a { color: rgba(255, 255, 255, .82); display: inline-flex; align-items: center; gap: .4rem; }
.header-strip a:hover { color: #fff; }
.header-strip .strip-left { display: flex; gap: 1.5rem; align-items: center; min-width: 0; flex-wrap: nowrap; }
.header-strip .strip-right { display: flex; gap: .9rem; align-items: center; margin-left: auto; }

.strip-social { display: inline-flex; gap: .3rem; align-items: center; }

.strip-social a {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .8);
    font-size: .85rem;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.strip-social a:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
.strip-social a.wa:hover { background: #25D366; }

.is-solid .header-strip { max-height: 0; opacity: 0; border-color: transparent; }

@media (max-width: 860px) { .header-strip { display: none; } }

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    height: 78px;
    transition: height .3s ease;
}

.is-solid {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(16px);
    border-bottom-color: var(--line);
    box-shadow: 0 10px 34px -26px rgba(14, 26, 46, .8);
}

.is-solid .site-header-inner { height: 70px; }

.brand { display: inline-flex; align-items: center; gap: .8rem; }
.brand img { height: 46px; width: 46px; border-radius: 14px; display: block; transition: transform .3s ease; }
.brand:hover img { transform: rotate(-6deg) scale(1.04); }
.brand-text { display: flex; flex-direction: column; line-height: 1.18; }

.brand-name {
    font-weight: 800;
    font-size: 1.08rem;
    letter-spacing: -0.03em;
    color: #fff;
    transition: color .3s ease;
}

.brand-sub { font-size: .72rem; color: rgba(255, 255, 255, .6); letter-spacing: .02em; transition: color .3s ease; }
.is-solid .brand-name { color: var(--navy); }
.is-solid .brand-sub { color: var(--muted); }

.site-nav { display: flex; align-items: center; gap: 2rem; list-style: none; margin: 0; padding: 0; }

.site-nav a {
    position: relative;
    font-size: .94rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .84);
    padding: .35rem 0;
    transition: color .2s ease;
}

.site-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -2px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--blue), var(--teal));
    transition: right .28s cubic-bezier(.22, .8, .3, 1);
}

.site-nav a:hover, .site-nav a.current { color: #fff; }
.site-nav a:hover::after, .site-nav a.current::after { right: 0; }
.is-solid .site-nav a { color: var(--ink-soft); }
.is-solid .site-nav a:hover, .is-solid .site-nav a.current { color: var(--navy); }

.header-actions { display: flex; align-items: center; gap: .6rem; }
.is-solid .btn-ghost-light { background: #fff; color: var(--navy); border-color: var(--line); }
.is-solid .btn-ghost-light:hover { border-color: var(--blue); color: var(--blue); background: #fff; }

.nav-toggle {
    display: none;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 1.3rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
}

.is-solid .nav-toggle { border-color: var(--line); color: var(--navy); background: #fff; }

@media (max-width: 991px) {
    .nav-toggle { display: inline-flex; }
    .site-nav, .header-actions .btn-desktop { display: none; }
}

/* Mobile drawer */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 110;
    background: var(--navy);
    background-image: radial-gradient(circle at 82% 12%, rgba(46, 107, 255, .32), transparent 55%);
    padding: 1.25rem var(--gutter) 2.5rem;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .34s cubic-bezier(.22, .8, .3, 1), visibility 0s linear .34s;
    overflow-y: auto;
}

.mobile-nav.open { transform: translateX(0); visibility: visible; transition: transform .34s cubic-bezier(.22, .8, .3, 1), visibility 0s; }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; height: 78px; margin-bottom: 1rem; }

.mobile-nav-close {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .28);
    color: #fff;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 1.4rem;
    cursor: pointer;
}

.mobile-nav ul { list-style: none; margin: 0 0 1.75rem; padding: 0; }
.mobile-nav li { border-bottom: 1px solid rgba(255, 255, 255, .08); }

.mobile-nav li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.05rem 0;
    color: #fff;
    font-size: 1.22rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.mobile-nav li a i { color: rgba(255, 255, 255, .4); font-size: .95rem; }
.mobile-nav .stack { display: grid; gap: .7rem; }

/* ------------------------------------------------------------------ */
/* Hero                                                                */
/* ------------------------------------------------------------------ */
.hero {
    position: relative;
    min-height: min(86vh, 800px);
    display: flex;
    align-items: flex-end;
    background: var(--navy);
    overflow: hidden;
}

.hero-slides { position: absolute; inset: 0; }

.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s ease; }
.hero-slide.active { opacity: 1; }

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.06);
    transition: transform 8s linear;
}

.hero-slide.active img { transform: scale(1.14); }

/* No colour wash over the slide. Only a soft neutral fade along the
   bottom edge so the buttons and the dots stay readable. */
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 14, 28, .55) 0%, rgba(6, 14, 28, .12) 34%, transparent 62%);
}

.hero-inner { position: relative; z-index: 3; width: 100%; padding-top: 146px; padding-bottom: clamp(7rem, 11vw, 9.5rem); }
.hero-copy { max-width: 620px; }

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: .8rem;
    font-weight: 700;
    color: #9DC0FF;
    background: rgba(46, 107, 255, .16);
    border: 1px solid rgba(46, 107, 255, .34);
    padding: .48rem .95rem;
    border-radius: 100px;
    margin-bottom: 1.2rem;
    backdrop-filter: blur(6px);
}

.hero-kicker .ping {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 0 rgba(15, 181, 165, .7);
    animation: ping 1.9s ease-out infinite;
}

@keyframes ping {
    70% { box-shadow: 0 0 0 9px rgba(15, 181, 165, 0); }
    100% { box-shadow: 0 0 0 0 rgba(15, 181, 165, 0); }
}

.hero h1 { color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.4rem); margin-bottom: 1rem; }
.hero h1 .grad {
    background: linear-gradient(100deg, #6FA0FF, #4FE0D0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-sub { color: rgba(255, 255, 255, .8); font-size: clamp(.98rem, 1.5vw, 1.1rem); line-height: 1.7; margin-bottom: 1.7rem; max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 0; }

.hero-trust { display: flex; align-items: center; gap: 1.1rem 1.75rem; flex-wrap: wrap; color: rgba(255, 255, 255, .62); font-size: .86rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: .45rem; }
.hero-trust i { color: var(--teal); font-size: 1rem; }

/* Floating cards on the hero */
.hero-float { position: absolute; right: var(--gutter); top: 46%; transform: translateY(-50%); z-index: 4; display: grid; gap: 1rem; width: 290px; }
@media (max-width: 1150px) { .hero-float { display: none; } }

.float-card {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--r-lg);
    padding: 1.05rem 1.15rem;
    backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    gap: .85rem;
    color: #fff;
    animation: floaty 5.5s ease-in-out infinite;
}

.float-card:nth-child(2) { animation-delay: .9s; margin-left: 2.4rem; }
.float-card:nth-child(3) { animation-delay: 1.8s; }

@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-11px); }
}

.float-card i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    font-size: 1.15rem;
    flex-shrink: 0;
    background: rgba(255, 255, 255, .14);
    color: #8FE3DA;
}

.float-card strong { display: block; font-size: 1.15rem; font-weight: 800; letter-spacing: -0.02em; }
.float-card span { font-size: .78rem; color: rgba(255, 255, 255, .66); }

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .3);
    background: rgba(10, 23, 48, .35);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 1.35rem;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.hero-arrow:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    transform: translateY(-50%) scale(1.06);
}

.hero-arrow.prev { left: clamp(.75rem, 2vw, 1.75rem); }
.hero-arrow.next { right: clamp(.75rem, 2vw, 1.75rem); }

@media (max-width: 640px) {
    .hero-arrow { width: 42px; height: 42px; font-size: 1.1rem; }
}

.hero-dots { position: absolute; left: var(--gutter); bottom: 2rem; display: flex; gap: .5rem; z-index: 5; }

.hero-dot {
    width: 30px;
    height: 4px;
    border-radius: 100px;
    border: 0;
    padding: 0;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: width .3s ease, background .3s ease;
}

.hero-dot.active { background: linear-gradient(90deg, var(--blue), var(--teal)); width: 54px; }

.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 1.6rem;
    transform: translateX(-50%);
    z-index: 5;
    color: rgba(255, 255, 255, .45);
    font-size: 1.5rem;
    animation: bob 2.2s ease-in-out infinite;
}

@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 9px); } }
@media (max-width: 767px) { .hero-scroll { display: none; } }

/* ------------------------------------------------------------------ */
/* Eligibility dock                                                    */
/* ------------------------------------------------------------------ */
.eligibility-dock { position: relative; z-index: 10; margin-top: -68px; }

.eligibility-bar {
    background: #fff;
    border-radius: var(--r-xl);
    padding: 1.5rem 1.6rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

.eligibility-bar::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--teal));
}

.eligibility-title { display: flex; align-items: center; gap: .6rem; font-size: .88rem; font-weight: 700; color: var(--navy); margin-bottom: 1.05rem; }
.eligibility-title i { color: var(--blue); font-size: 1.05rem; }

.eligibility-bar form { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)) auto; gap: .8rem; align-items: end; }
.eligibility-bar label { display: block; font-size: .76rem; font-weight: 700; color: var(--muted); margin-bottom: .38rem; letter-spacing: .01em; }

@media (max-width: 991px) {
    .eligibility-bar form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .eligibility-bar .btn { grid-column: 1 / -1; }
}

@media (max-width: 575px) {
    .eligibility-bar form { grid-template-columns: 1fr; }
    .eligibility-dock { margin-top: -34px; }
}

/* ------------------------------------------------------------------ */
/* Forms                                                               */
/* ------------------------------------------------------------------ */
.site-body .field { margin-bottom: 1.15rem; }
.site-body .field label, .site-body .form-label { display: block; font-size: .85rem; font-weight: 700; color: var(--ink-soft); margin-bottom: .42rem; }
.site-body .field .req { color: #EF4B4B; }

.site-body .input {
    width: 100%;
    font-family: var(--font);
    font-size: .95rem;
    color: var(--ink);
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: .82rem .95rem;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
    appearance: none;
}

.site-body textarea.input { min-height: 118px; resize: vertical; }
.site-body .input:focus { background: #fff; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(46, 107, 255, .14); outline: none; }
.site-body .input::placeholder { color: #9AA7B8; }
.site-body .input.is-invalid { border-color: #EF4B4B; }

.site-body select.input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237A8798' d='M1.4 0 6 4.6 10.6 0 12 1.4 6 7.4 0 1.4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.field-error { display: block; font-size: .82rem; color: #EF4B4B; margin-top: .35rem; }
.field-hint { display: block; font-size: .82rem; color: var(--muted); margin-top: .35rem; }
.input-with-icon { position: relative; }
.input-with-icon .input { padding-left: 2.75rem; }
.input-with-icon > i { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 1.1rem; }
.form-grid .span-2 { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } .form-grid .span-2 { grid-column: auto; } }

/* ------------------------------------------------------------------ */
/* Section heading                                                     */
/* ------------------------------------------------------------------ */
.section-head { margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head h1 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); }
.section-head.center { text-align: center; }
.section-head.center .lead { margin-inline: auto; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--blue-soft);
    border-radius: 100px;
    padding: .42rem .9rem;
    margin-bottom: 1.05rem;
}

.eyebrow.teal { color: var(--teal); background: var(--teal-soft); }
.section-head p { margin-bottom: 0; }

/* ------------------------------------------------------------------ */
/* Stats                                                               */
/* ------------------------------------------------------------------ */
.stat-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.stat-cell {
    background: linear-gradient(158deg, #F5F8FF 0%, #FFFFFF 60%);
    border: 1px solid #E1EAFB;
    border-radius: var(--corner);
    box-shadow: var(--card-shadow);
    padding: 1.7rem 1.6rem;
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.stat-cell:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); border-color: transparent; }

.stat-cell::before {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}

.stat-cell:hover::before { transform: scaleX(1); }

.stat-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--blue-soft);
    color: var(--blue);
    font-size: 1.05rem;
    margin-bottom: .9rem;
}

.stat-value { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800; color: var(--navy); font-variant-numeric: tabular-nums; letter-spacing: -0.04em; line-height: 1.05; }
.stat-label { font-size: .88rem; color: var(--muted); margin-top: .3rem; }

@media (max-width: 767px) { .stat-row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ------------------------------------------------------------------ */
/* Cards                                                               */
/* ------------------------------------------------------------------ */
.loan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(318px, 1fr)); gap: 1.4rem; }

.loan-card, .tile {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    padding: 2rem 1.9rem;
    background: linear-gradient(158deg, #F3F7FF 0%, #FFFFFF 62%);
    border: 1px solid #DFE9FF;
    border-radius: var(--corner);
    box-shadow: var(--card-shadow);
    height: 100%;
    overflow: hidden;
    transition: transform .3s cubic-bezier(.22, .8, .3, 1), box-shadow .3s ease, border-color .3s ease;
}

.loan-card::after, .tile::after {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(46, 107, 255, .1), rgba(15, 181, 165, .08));
    opacity: 0;
    transition: opacity .35s ease, transform .45s ease;
}

.loan-card:hover, .tile:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-hover); border-color: transparent; }
.loan-card:hover::after, .tile:hover::after { opacity: 1; transform: scale(1.15); }

/* Card colour families */
.loan-card.t-teal, .tile.t-teal { background: linear-gradient(158deg, #EAFAF7 0%, #FFFFFF 62%); border-color: #C9EFE9; }
.loan-card.t-violet, .tile.t-violet { background: linear-gradient(158deg, #F3F0FF 0%, #FFFFFF 62%); border-color: #DED5FF; }
.loan-card.t-amber, .tile.t-amber { background: linear-gradient(158deg, #FFF7EA 0%, #FFFFFF 62%); border-color: #F6E2C2; }
.loan-card.t-navy, .tile.t-navy {
    background: linear-gradient(158deg, var(--navy) 0%, var(--navy-3) 100%);
    border-color: transparent;
}
.loan-card.t-navy h3, .tile.t-navy h3 { color: #fff; }
.loan-card.t-navy p, .tile.t-navy p { color: rgba(255, 255, 255, .74); }
.loan-card.t-navy .card-link { color: #7FE3D8; }

.card-icon, .tile-icon, .loan-card > i {
    position: relative;
    z-index: 2;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    font-size: 1.4rem;
    margin-bottom: .85rem;
    background: linear-gradient(135deg, var(--blue), #4C86FF);
    color: #fff;
    box-shadow: 0 12px 24px -14px rgba(46, 107, 255, .9);
    transition: transform .3s ease;
}

.loan-card:hover .card-icon, .tile:hover .tile-icon, .loan-card:hover > i { transform: scale(1.08) rotate(-5deg); }

.card-icon.teal, .tile-icon.teal { background: linear-gradient(135deg, var(--teal), #4FE0D0); box-shadow: 0 12px 24px -14px rgba(15, 181, 165, .9); }
.card-icon.amber, .tile-icon.amber { background: linear-gradient(135deg, #F5A524, #FFC85C); box-shadow: 0 12px 24px -14px rgba(245, 165, 36, .9); }
.card-icon.violet, .tile-icon.violet { background: linear-gradient(135deg, #7A5CFF, #A08BFF); box-shadow: 0 12px 24px -14px rgba(122, 92, 255, .9); }

.loan-card h3, .tile h3 { position: relative; z-index: 2; font-size: 1.14rem; margin: 0; }
.loan-card p, .tile p { position: relative; z-index: 2; font-size: .93rem; color: var(--ink-soft); margin: 0; line-height: 1.7; }

.card-link {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding-top: 1rem;
    font-size: .87rem;
    font-weight: 700;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.card-link i { transition: transform .25s ease; }
.loan-card:hover .card-link i, .tile:hover .card-link i { transform: translateX(4px); }

/* ------------------------------------------------------------------ */
/* Process                                                             */
/* ------------------------------------------------------------------ */
.process { display: grid; grid-template-columns: repeat(auto-fit, minmax(196px, 1fr)); gap: 2rem 1.75rem; counter-reset: step; }

.process-step { position: relative; padding-top: 4.5rem; }

.process-step::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    position: absolute;
    top: 0;
    left: 0;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: linear-gradient(135deg, var(--navy), var(--navy-3));
    color: #7FE3D8;
    font-weight: 800;
    font-size: 1.02rem;
    box-shadow: 0 14px 26px -16px rgba(10, 23, 48, .95);
    transition: transform .3s ease;
}

.process-step:hover::before { transform: translateY(-4px) scale(1.05); }

.process-step::after {
    content: '';
    position: absolute;
    top: 26px;
    left: 64px;
    right: -1.75rem;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--line) 0 7px, transparent 7px 14px);
}

.process-step:nth-child(2)::before { background: linear-gradient(135deg, var(--blue), #4C86FF); color: #fff; }
.process-step:nth-child(3)::before { background: linear-gradient(135deg, var(--teal), #4FE0D0); color: #063C37; }
.process-step:nth-child(4)::before { background: linear-gradient(135deg, #7A5CFF, #A08BFF); color: #fff; }
.process-step:nth-child(5)::before { background: linear-gradient(135deg, #F5A524, #FFC85C); color: #4A2E00; }
.process-step::after { top: 28px; left: 68px; }
.process-step:last-child::after { display: none; }
.process-step h3 { font-size: 1.06rem; margin-bottom: .4rem; }
.process-step p { font-size: .92rem; color: var(--ink-soft); margin: 0; }

@media (max-width: 767px) { .process-step::after { display: none; } }

/* ------------------------------------------------------------------ */
/* Lender marquee                                                      */
/* ------------------------------------------------------------------ */
.marquee { overflow: hidden; position: relative; padding-block: .5rem; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 1rem; width: max-content; animation: slide 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }

@keyframes slide { to { transform: translateX(-50%); } }

.lender-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(196px, 1fr)); gap: .85rem; }

.lender-plate {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: 1.1rem 1.3rem;
    background: linear-gradient(158deg, #F5F8FF 0%, #FFFFFF 60%);
    border: 1px solid #E1EAFB;
    border-radius: var(--corner);
    box-shadow: var(--card-shadow);
    font-weight: 700;
    font-size: .9rem;
    line-height: 1.4;
    color: var(--navy);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.lender-plate:hover { transform: translateY(-3px); box-shadow: var(--card-shadow-hover); border-color: transparent; }

.lender-plate span {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--navy), var(--navy-3));
    color: #7FE3D8;
    font-size: .74rem;
    font-weight: 800;
    flex-shrink: 0;
}

/* ------------------------------------------------------------------ */
/* Split                                                               */
/* ------------------------------------------------------------------ */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

.split-media { position: relative; }
.split-media img { width: 100%; height: auto; display: block; border-radius: var(--r-xl); box-shadow: var(--shadow-lg); }

.split-media::before {
    content: '';
    position: absolute;
    inset: -18px -18px 22px 22px;
    border-radius: var(--r-xl);
    background: linear-gradient(135deg, rgba(46, 107, 255, .14), rgba(15, 181, 165, .12));
    z-index: -1;
}

.media-badge {
    position: absolute;
    left: -22px;
    bottom: -22px;
    background: #fff;
    border-radius: var(--r-lg);
    padding: 1rem 1.2rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: .8rem;
    animation: floaty 5s ease-in-out infinite;
}

.media-badge i { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: var(--teal-soft); color: var(--teal); font-size: 1.2rem; }
.media-badge strong { display: block; font-size: 1.05rem; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.media-badge span { font-size: .78rem; color: var(--muted); }

@media (max-width: 560px) { .media-badge { left: 8px; bottom: -16px; } }

.check-list { list-style: none; margin: 0; padding: 0; }

.check-list li {
    display: flex;
    gap: .85rem;
    padding: .85rem 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: .96rem;
    color: var(--ink-soft);
    align-items: flex-start;
}

.check-list li:last-child { border-bottom: 0; }

.check-list i {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--teal-soft);
    color: var(--teal);
    font-size: .85rem;
    margin-top: .12rem;
}

/* ------------------------------------------------------------------ */
/* Testimonials                                                        */
/* ------------------------------------------------------------------ */
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.25rem; }

.quote-card {
    background: linear-gradient(158deg, #F5F8FF 0%, #FFFFFF 60%);
    border: 1px solid #E1EAFB;
    border-radius: var(--corner);
    box-shadow: var(--card-shadow);
    padding: 1.95rem 1.8rem;
    position: relative;
    transition: transform .3s ease, box-shadow .3s ease;
}

.quote-card:hover { transform: translateY(-5px); box-shadow: var(--card-shadow-hover); }
.quote-card .stars { color: #F5A524; font-size: .92rem; margin-bottom: .9rem; letter-spacing: .1em; }
.quote-card p { font-size: .96rem; color: var(--ink-soft); line-height: 1.75; margin-bottom: 1.35rem; }
.quote-who { display: flex; align-items: center; gap: .8rem; }

.quote-who .avatar {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--navy), var(--navy-3));
    color: #7FE3D8;
    font-weight: 800;
    font-size: .88rem;
}

.quote-who strong { display: block; font-size: .93rem; color: var(--navy); }
.quote-who span { font-size: .8rem; color: var(--muted); }

/* ------------------------------------------------------------------ */
/* FAQ                                                                 */
/* ------------------------------------------------------------------ */
.faq { display: grid; gap: .8rem; max-width: 820px; margin-inline: auto; }

.faq details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 0 1.35rem;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.faq details[open] { border-color: var(--blue); box-shadow: var(--shadow); }

.faq summary {
    list-style: none;
    cursor: pointer;
    padding: 1.2rem 0;
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '\F4FE'; font-family: 'bootstrap-icons'; color: var(--blue); font-size: 1.1rem; transition: transform .25s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { padding-bottom: 1.25rem; margin: 0; font-size: .95rem; color: var(--ink-soft); }

/* ------------------------------------------------------------------ */
/* CTA band                                                            */
/* ------------------------------------------------------------------ */
.cta-band {
    position: relative;
    background: var(--navy);
    background-image:
        radial-gradient(circle at 86% 16%, rgba(46, 107, 255, .5), transparent 52%),
        radial-gradient(circle at 10% 92%, rgba(15, 181, 165, .34), transparent 48%);
    color: #fff;
    border-radius: var(--r-xl);
    padding: clamp(2.5rem, 5vw, 4rem);
    display: grid;
    grid-template-columns: 1.4fr auto;
    gap: 2rem;
    align-items: center;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta-band h2 { color: #fff; margin-bottom: .6rem; }
.cta-band p { color: rgba(255, 255, 255, .78); margin: 0; max-width: 52ch; }
@media (max-width: 767px) { .cta-band { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------ */
/* Inner page header                                                   */
/* ------------------------------------------------------------------ */
.page-head {
    position: relative;
    background: var(--navy);
    background-image:
        radial-gradient(circle at 84% 20%, rgba(46, 107, 255, .42), transparent 54%),
        radial-gradient(circle at 8% 88%, rgba(15, 181, 165, .26), transparent 46%);
    padding: calc(78px + clamp(3.5rem, 7vw, 6rem)) 0 clamp(3.5rem, 7vw, 6rem);
    color: #fff;
    overflow: hidden;
}

.page-head::after {
    content: '';
    position: absolute;
    right: -140px;
    bottom: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .07);
}

.page-head h1 { color: #fff; margin-bottom: .75rem; position: relative; z-index: 2; }
.page-head p { color: rgba(255, 255, 255, .78); margin: 0; max-width: 62ch; position: relative; z-index: 2; font-size: 1.05rem; }

.crumb { display: flex; gap: .55rem; align-items: center; font-size: .86rem; color: rgba(255, 255, 255, .55); margin-bottom: 1.1rem; position: relative; z-index: 2; }
.crumb a { color: #7FE3D8; }

/* ------------------------------------------------------------------ */
/* Contact                                                             */
/* ------------------------------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(1.75rem, 4vw, 3.25rem); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-line { display: flex; gap: 1rem; padding: 1.15rem 0; border-bottom: 1px solid var(--line-soft); }
.contact-line:last-child { border-bottom: 0; }

.contact-line i {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--blue-soft);
    color: var(--blue);
    font-size: 1.15rem;
}

.contact-line strong { display: block; font-size: .95rem; color: var(--navy); font-weight: 700; }
.contact-line span { font-size: .93rem; color: var(--ink-soft); }

.card-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--shadow); overflow: hidden; }
.card-panel-body { padding: clamp(1.4rem, 3vw, 2.1rem); }
.card-panel-head { padding: 1.25rem 1.6rem; border-bottom: 1px solid var(--line-soft); }

.alert-note { display: flex; align-items: flex-start; gap: .8rem; padding: .95rem 1.15rem; border-radius: var(--r); font-size: .93rem; margin-bottom: 1.15rem; border: 1px solid var(--line); background: #fff; }
.alert-note i { font-size: 1.1rem; flex-shrink: 0; }
.alert-note.success { background: #E6F6EC; border-color: transparent; color: #16A34A; }
.alert-note.error { background: #FDECEC; border-color: transparent; color: #EF4B4B; }
.alert-note.warning { background: #FDF2E1; border-color: transparent; color: #C77D0F; }
.alert-note.info { background: var(--blue-soft); border-color: transparent; color: var(--blue); }

.hr-soft { height: 1px; background: var(--line-soft); border: 0; margin: 1.75rem 0; }

/* ------------------------------------------------------------------ */
/* Footer                                                              */
/* ------------------------------------------------------------------ */
.site-footer {
    position: relative;
    background: var(--navy);
    background-image: radial-gradient(circle at 88% 8%, rgba(46, 107, 255, .22), transparent 46%);
    color: rgba(255, 255, 255, .7);
    padding-top: clamp(3.5rem, 7vw, 5.5rem);
    font-size: .94rem;
    overflow: hidden;
}

.site-footer::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--teal), var(--blue)); }

.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.1rem; }
.footer-brand img { width: 48px; height: 48px; border-radius: 15px; }
.footer-brand-name { font-size: 1.16rem; font-weight: 800; color: #fff; letter-spacing: -0.03em; }
.footer-brand-sub { font-size: .78rem; color: rgba(255, 255, 255, .5); }

.site-footer h4 { color: #fff; font-size: .95rem; font-weight: 700; margin-bottom: 1.15rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .7rem; }
.site-footer a { color: rgba(255, 255, 255, .7); display: inline-flex; align-items: center; gap: .5rem; transition: color .2s ease, transform .2s ease; }
.site-footer a:hover { color: #7FE3D8; transform: translateX(3px); }

.social-row { display: flex; gap: .55rem; margin-top: 1.25rem; }

.social-row a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 1rem;
    transition: all .2s ease;
}

.social-row a:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-3px); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 1.6rem 0;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: .87rem;
    color: rgba(255, 255, 255, .5);
}

.footer-bottom a { color: rgba(255, 255, 255, .6); }
.footer-bottom a:hover { color: #7FE3D8; }

/* ------------------------------------------------------------------ */
/* Floating actions                                                    */
/* ------------------------------------------------------------------ */
.float-actions { position: fixed; right: 1.15rem; bottom: 1.15rem; z-index: 80; display: grid; gap: .6rem; }

.float-btn {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 1.3rem;
    color: #fff;
    border: 0;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: transform .25s ease, opacity .25s ease, visibility .25s ease;
}

.float-btn:hover { transform: translateY(-3px) scale(1.05); color: #fff; }
.float-btn.wa { background: #25D366; }
.float-btn.top { background: var(--navy); opacity: 0; visibility: hidden; }
.float-btn.top.show { opacity: 1; visibility: visible; }

/* ------------------------------------------------------------------ */
/* Skip link                                                           */
/* ------------------------------------------------------------------ */
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--navy); color: #fff; padding: .8rem 1.3rem; z-index: 300; border-radius: 0 0 var(--r) 0; }
.skip-link:focus { left: 0; color: #fff; }

/* Hero copy blocks swapped by the carousel */
.hero-text { display: block; }
.hero-text.is-hidden { display: none; }

/* Kept in the markup for search engines, never shown on screen. */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
