:root {
    --f-navy: #060b16;
    --f-navy-2: #0a1120;
    --f-navy-card: #0d1526;
    --f-navy-border: rgba(255, 255, 255, 0.07);
    --f-orange: #ff7a1a;
    --f-orange-2: #ff9a4d;
    --f-text: #f4f6fb;
    --f-text-muted: #8a93a6;
    --f-radius: 16px;
    --f-shadow-glow: 0 0 0 1px rgba(255, 122, 26, 0.15), 0 8px 30px rgba(255, 122, 26, 0.08);
}

/* ---------- Shared ---------- */
.f-ico {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.f-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    white-space: nowrap;
}

.f-btn:hover {
    transform: translateY(-2px);
}

.f-btn-primary {
    background: linear-gradient(135deg, var(--f-orange), #ff5f2e);
    color: #0a0a0a;
    box-shadow: 0 6px 24px rgba(255, 122, 26, 0.35);
}

.f-btn-primary:hover {
    box-shadow: 0 10px 32px rgba(255, 122, 26, 0.5);
}

.f-btn-outline {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--f-text);
}

.f-btn-outline:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Ripple */
.f-btn .f-ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: rgba(255, 255, 255, 0.35);
    pointer-events: none;
    animation: f-ripple-anim .6s ease-out forwards;
}

@keyframes f-ripple-anim {
    to {
        transform: scale(3);
        opacity: 0;
    }
}

/* ---------- Section 1: CTA Banner ---------- */
.f-cta-wrap {
    background: radial-gradient(ellipse 80% 100% at 10% 0%, rgba(255, 122, 26, 0.12), transparent 60%), var(--f-navy);
    padding: 56px 32px;
}

.f-cta {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, rgba(255, 122, 26, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 122, 26, 0.25);
    border-left: 3px solid var(--f-orange);
    border-radius: 20px;
    padding: 36px 40px;
    box-shadow: var(--f-shadow-glow);
}

.f-cta-left {
    flex: 1 1 420px;
}

.f-cta-headline {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: var(--f-text);
    margin: 0 0 10px;
    letter-spacing: -0.02em;
}

.f-cta-headline span {
    color: var(--f-orange);
}

.f-cta-desc {
    color: var(--f-text-muted);
    font-size: 15px;
    max-width: 520px;
    margin: 0 0 22px;
    line-height: 1.6;
}

.f-cta-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.f-cta-right {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.f-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 120px;
}

.f-badge-ico {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(255, 122, 26, 0.4);
    color: var(--f-orange);
    margin-bottom: 10px;
    transition: box-shadow .3s ease, transform .3s ease;
}

.f-badge:hover .f-badge-ico {
    box-shadow: 0 0 18px rgba(255, 122, 26, 0.4);
    transform: translateY(-3px);
}

.f-badge-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--f-text);
}

.f-badge-sub {
    font-size: 11px;
    color: var(--f-text-muted);
    margin-top: 2px;
}

/* ---------- Section 2: Main footer grid ---------- */
.fi2 {
    background: var(--f-navy-2);
    padding: 64px 32px 0;
    width: 100%;
    margin: auto;
}

.f-g5 {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr;
    gap: 32px;
    padding-bottom: 48px;
}

.f-col-brand .ftagline {
    max-width: 340px;
}

.f-social-row {
    display: flex;
    gap: 10px;
    margin: 18px 0 26px;
}

.f-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--f-navy-border);
    color: var(--f-text);
    transition: all .25s ease;
}

.f-social-btn:hover {
    background: var(--f-orange);
    border-color: var(--f-orange);
    color: #0a0a0a;
    transform: translateY(-3px);
}

.f-newsletter {
    border-top: 1px solid var(--f-navy-border);
    padding-top: 20px;
}

.f-newsletter-text {
    font-size: 13px;
    color: var(--f-text-muted);
    margin: 6px 0 14px;
}

.f-newsletter-form {
    display: flex;
    gap: 8px;
}

.f-newsletter-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--f-navy-border);
    border-radius: 10px;
    padding: 12px 14px;
    color: var(--f-text);
    font-size: 13px;
    outline: none;
    transition: border-color .25s ease;
}

.f-newsletter-input:focus {
    border-color: var(--f-orange);
}

.f-newsletter-btn {
    width: 44px;
    border: none;
    border-radius: 10px;
    background: var(--f-orange);
    color: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform .2s ease;
}

.f-newsletter-btn:hover {
    transform: translateY(-2px);
}

.fct {
    color: var(--f-text);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .03em;
    margin-bottom: 16px;
    text-transform: uppercase;
    position: relative;
}

.fct::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--f-orange);
    margin-top: 8px;
    border-radius: 2px;
}

.fls {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fls a {
    color: var(--f-text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color .2s ease, padding-left .2s ease;
}

.fls a::before {
    content: '›';
    color: var(--f-orange);
    margin-right: 6px;
    opacity: 0;
    transition: opacity .2s ease;
}

.fls a:hover {
    color: var(--f-text);
    padding-left: 2px;
}

.fls a:hover::before {
    opacity: 1;
}

.f-contact-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--f-navy-border);
    margin-bottom: 12px;
    text-decoration: none;
    transition: border-color .25s ease, transform .25s ease;
}

a.f-contact-card:hover {
    border-color: rgba(255, 122, 26, 0.4);
    transform: translateX(2px);
}

.f-contact-ico {
    color: var(--f-orange);
    margin-top: 2px;
}

.f-contact-title {
    color: var(--f-text);
    font-size: 13.5px;
    font-weight: 600;
}

.f-contact-sub {
    color: var(--f-text-muted);
    font-size: 12px;
    margin-top: 2px;
}

/* ---------- Section 3: Stats ---------- */
.f-stats {
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid var(--f-navy-border);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--f-navy-border);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 48px;
}

.f-stat {
    background: var(--f-navy-card);
    padding: 32px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s ease, transform .6s ease;
}

.f-stat.f-in-view {
    opacity: 1;
    transform: translateY(0);
}

.f-stat-ico {
    color: var(--f-orange);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 122, 26, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.f-stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--f-text);
}

.f-stat-suffix {
    font-size: 16px;
    color: var(--f-text-muted);
    font-weight: 600;
}

.f-stat-label {
    font-size: 14px;
    color: var(--f-text);
    font-weight: 600;
    margin-top: 4px;
}

.f-stat-sub {
    font-size: 12px;
    color: var(--f-text-muted);
    margin-top: 2px;
}

/* ---------- Section 4: Trust logos ---------- */
.f-trust-wrap {
    border-top: 1px solid var(--f-navy-border);
    padding: 32px 0;
}

.f-trust {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
    opacity: .75;
}

.f-trust-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    filter: grayscale(1);
    transition: filter .3s ease, opacity .3s ease;
}

.f-trust-logo:hover {
    filter: none;
    opacity: 1;
}

.f-trust-logo img {
    height: 28px;
    width: auto;
}

.f-trust-name {
    color: var(--f-text);
    font-weight: 700;
    font-size: 16px;
}

.f-trust-sub {
    color: var(--f-text-muted);
    font-size: 11px;
}

.f-trust-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--f-orange);
    font-size: 12px;
    font-weight: 600;
}

/* ---------- Section 5: Bottom bar ---------- */
.fbot {
    border-top: 1px solid var(--f-navy-border);
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    padding: 24px 0 32px;
    font-size: 13px;
    color: var(--f-text-muted);
}

.f-brand-accent {
    color: var(--f-orange);
    font-weight: 600;
}

.f-bot-links {
    display: flex;
    gap: 20px;
}

.f-bot-links a {
    color: var(--f-text-muted);
    text-decoration: none;
}

.f-bot-links a:hover {
    color: var(--f-text);
}

.fmade {
    display: flex;
    align-items: center;
    gap: 6px;
}

.fmade .f-ico {
    width: 14px;
    height: 14px;
    color: var(--f-orange);
    fill: var(--f-orange);
}

/* ---------- Accordion (desktop = always open) ---------- */
.f-acc-btn {
    display: none;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
}

.f-acc-btn .f-ico {
    transition: transform .3s ease;
}

.flogo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: .75rem;
  color: var(--text);
  text-decoration: none;
  display: block
}
.flogo span {
  color: var(--orange)
}

.ftagline {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 1rem
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

/* Large desktop refinement */
@media (max-width:1600px) {
    .f-g5 {
        grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
    }
}

/* Tablet (1024 / 992) */
@media (max-width:1024px) {
    .f-g5 {
        grid-template-columns: 1fr 1fr;
        gap: 32px 24px;
    }

    .f-col-brand {
        grid-column: 1 / -1;
    }

    .f-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .f-cta {
        padding: 28px;
    }
}

/* Small tablet (768) */
@media (max-width:768px) {
    .f-cta-wrap {
        padding: 40px 20px;
    }

    .f-cta {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 28px 20px;
    }

    .f-cta-btns {
        flex-direction: column;
    }

    .f-cta-btns .f-btn {
        width: 100%;
        justify-content: center;
    }

    .f-cta-right {
        justify-content: center;
    }

    .fi2 {
        padding: 48px 20px 0;
    }

    .f-g5 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .f-col-brand {
        padding-bottom: 24px;
        border-bottom: 1px solid var(--f-navy-border);
        margin-bottom: 8px;
    }

    .f-social-row {
        justify-content: center;
    }

    .f-col-brand .ftagline {
        max-width: none;
        text-align: center;
    }

    .f-col-brand>.flogo {
        display: block;
        text-align: center;
    }

    .f-newsletter-form {
        flex-direction: row;
    }

    /* Accordion nav on mobile */
    .f-acc-btn {
        display: flex;
    }

    .f-acc {
        border-bottom: 1px solid var(--f-navy-border);
        padding: 18px 0;
    }

    .f-acc .fct::after {
        display: none;
    }

    .f-acc-body {
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease;
        padding-top: 0;
    }

    .f-acc.f-acc-open .f-acc-body {
        max-height: 400px;
        padding-top: 14px;
    }

    .f-acc.f-acc-open .f-acc-btn .f-ico {
        transform: rotate(90deg);
    }

    .f-col-contact {
        padding-top: 8px;
    }

    .f-stats {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 12px;
    }

    .f-stat {
        padding: 24px 12px;
    }

    .f-trust-wrap {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .f-trust-wrap::-webkit-scrollbar {
        display: none;
    }

    .f-trust {
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding: 0 20px;
    }

    .f-trust-logo {
        flex: 0 0 auto;
    }

    .fbot {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .f-bot-links {
        order: 2;
        flex-wrap: wrap;
        justify-content: center;
    }
    .f-cta-left {
    flex: 1 1 240px;
    }
}

/* Small phones (390 / 375 / 360 / 320) */
@media (max-width:400px) {
    .f-cta-headline {
        font-size: 22px;
    }

    .f-badge {
        width: 100%;
    }

    .f-cta-right {
        flex-direction: column;
        align-items: center;
    }

    .f-cta-left {
    flex: 1 1 240px;
    }
}

/* Motion accessibility */
@media (prefers-reduced-motion: reduce) {

    .f-btn,
    .f-badge-ico,
    .f-social-btn,
    .f-stat,
    a.f-contact-card,
    .f-acc-body,
    .f-acc-btn .f-ico {
        transition: none !important;
        animation: none !important;
    }

    .f-stat {
        opacity: 1;
        transform: none;
    }
}