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

:root {
    --green: #00c896;
    --green-dark: #00a87e;
    --navy: #0d1f2d;
    --text: #2c3e35;
    --muted: #7a9189;
    --border: #e4ece9;
    --bg: #ffffff;
    --soft: #f5faf8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: #0f172a;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img,
svg,
video {
    max-width: 100%;
    height: auto;
}

/* LOGO */
.logo-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.logo-wrap .s-country {
    font-size: 10px;
    color: #7b858d;
}

.logo {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--navy);
    text-decoration: none;
    letter-spacing: -1px;
    white-space: nowrap;
    margin-bottom: -5px;
}

.logo span,
.logo em {
    color: var(--green);
    font-style: normal;
}

.logo-slogan {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
}



.logo-slogan .s-reviewed {
    color: var(--navy);
}

.logo-slogan .s-challenged {
    color: var(--green-dark);
    display: inline-block;
    transform: skewX(-6deg);
}

.logo-slogan .s-repaired {
    color: #00c896;
}

.logo-slogan .s-stop {
    color: #000000;
}

/* NAV */
.site-nav {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    width: calc(100% - 48px);
    max-width: 1100px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 10px 24px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    font-size: 0.8rem;
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
}

.portal-link {
    color: #10b981 !important;
    font-weight: 700 !important;
    border: 1px solid #6ee7b7;
    padding: 6px 14px;
    border-radius: 6px;
}

.nav-btn {
    background: #10b981;
    color: black !important;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 700 !important;
}

.nav-toggle {
    display: none;
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    color: #0f172a;
    font-size: 22px;
    width: 42px;
    height: 38px;
    border-radius: 8px;
    cursor: pointer;
}

/* Mobile collapsible */
@media (max-width: 768px) {
    .site-nav {
        width: calc(100% - 20px);
        top: 10px;
        padding: 10px;
        display: block;
    }

    .nav-top {
        width: 100%;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .logo {
        font-size: 1.15rem;
    }

    .logo-wrap .s-country {
        font-size: 8px;

    }

    .logo-slogan {
        display: none;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding-top: 12px;
    }

    .site-nav.open .nav-links {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 11px 12px;
        border-radius: 8px;
        background: #f8fafc;
    }

    .portal-link {
        padding: 11px 12px !important;
    }

    .nav-btn {
        padding: 12px !important;
    }
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 48px 100px;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    max-width: 1060px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 1;
    text-align: left;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    color: #059669;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero h1 {
    font-size: 4.4em;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
    color: #0f172a;
    margin-bottom: 20px;
}

.hero h1 em {
    font-style: normal;
    color: #10b981;
}

.hero-sub {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 36px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
}

.btn-primary {
    background: #10b981;
    color: white;
    padding: 16px 32px;
    gap: 8px;
}

.btn-primary:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(22, 163, 74, 0.25);
}

.btn-secondary {
    background: #f1f5f9;
    color: #0f172a;
    padding: 16px 24px;
}

.btn-secondary:hover {
    background: #e2e8f0;
}

/* HERO CARD */
.card-stack {
    position: relative;
    height: 360px;
    width: 100%;
}

.main-card {
    position: absolute;
    inset: 0;
    background: white;
    border-radius: 22px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.09);
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bg-card {
    position: absolute;
    bottom: -18px;
    left: 18px;
    right: 18px;
    height: 100%;
    background: #ecfdf5;
    border-radius: 22px;
    border: 1px solid #6ee7b7;
    z-index: -1;
}

.card-label {
    font-size: 0.68rem;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.card-status {
    background: #ecfdf5;
    color: #10b981;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid #6ee7b7;
}

.b-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.b-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: #0f172a;
    width: 64px;
    flex-shrink: 0;
}

.b-bar {
    flex: 1;
    height: 8px;
    background: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
}

.b-fill {
    height: 100%;
    border-radius: 4px;
}

.b-fill-eq {
    background: linear-gradient(90deg, #ef4444, #f87171);
    width: 55%;
}

.b-fill-il {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    width: 70%;
}

.b-fill-ex {
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
    width: 83%;
}

.b-score {
    font-size: 0.8rem;
    font-weight: 700;
    color: #0f172a;
    width: 30px;
    text-align: right;
    flex-shrink: 0;
}

.card-stats {
    display: flex;
    gap: 10px;
}

.cs {
    flex: 1;
    background: #f8fafc;
    border-radius: 8px;
    padding: 10px;
    border: 1px solid #f1f5f9;
}

.cs-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 3px;
}

.cs-val {
    font-size: 1.05rem;
    font-weight: 900;
    color: #0f172a;
}

.cs-val.green {
    color: #10b981;
}

.card-btn {
    background: #0f172a;
    color: white;
    border-radius: 9px;
    padding: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s;
}

.card-btn:hover {
    background: #10b981;
}

/* MESH */
.mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.mesh::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(ellipse, #6ee7b7 0%, transparent 60%);
    top: -200px;
    right: -200px;
    opacity: 0.45;
    animation: mA 18s ease-in-out infinite;
}

.mesh::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse, #a5f3fc 0%, transparent 60%);
    bottom: -150px;
    left: -100px;
    opacity: 0.3;
    animation: mB 22s ease-in-out infinite;
}

@keyframes mA {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-50px, 40px);
    }
}

@keyframes mB {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(40px, -40px);
    }
}

/* STATS */
.stats {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 36px 24px;
}

.stats-inner {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.stat {
    padding: 0 24px;
    border-right: 1px solid #e2e8f0;
}

.stat:last-child {
    border-right: none;
}

.stat-num {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: #0f172a;
}

.stat-num span {
    color: #10b981;
}

.stat-label {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 4px;
}

/* SECTIONS */
.section {
    padding: 80px 24px;
}

.section-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.tag {
    font-size: 0.68rem;
    font-weight: 800;
    color: #10b981;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 12px;
}

.section h2 em {
    font-style: normal;
    color: #10b981;
}

.section p.lead {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 48px;
}

/* CARDS */
.fix-grid,
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.fix-card,
.t-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 26px;
}

.fix-card {
    transition: all 0.2s;
}

.fix-card:hover {
    border-color: #6ee7b7;
    background: #ecfdf5;
    transform: translateY(-3px);
}

.fix-icon {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.fix-card h3 {
    font-size: 0.92rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.fix-card p {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.65;
}

.t-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.t-stars {
    color: #fbbf24;
    font-size: 0.78rem;
    letter-spacing: 2px;
}

.t-text {
    font-size: 0.86rem;
    color: #475569;
    line-height: 1.75;
    font-style: italic;
    flex: 1;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}

.t-av {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

.av-a {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.av-b {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.av-c {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.t-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: #0f172a;
}

.t-loc {
    font-size: 0.7rem;
    color: #94a3b8;
}

.t-result {
    margin-left: auto;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    background: #d1fae5;
    color: #059669;
    flex-shrink: 0;
}

/* CTA */
.call-cta {
    background: #f8fafc;
    padding: 72px 24px;
    text-align: center;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.call-cta-inner {
    max-width: 520px;
    margin: 0 auto;
}

.call-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.05em;
    line-height: 1.05;
    margin-bottom: 14px;
}

.call-cta h2 em {
    font-style: normal;
    color: #10b981;
}

.call-cta p {
    font-size: 0.92rem;
    color: #64748b;
    margin-bottom: 32px;
    line-height: 1.7;
}

.call-cta .btn-primary {
    font-size: 1rem;
    padding: 16px 36px;
}

/* FOOTER */
footer {
    background: rgba(22, 163, 74, 0.07);
    border-top: 1px solid rgba(22, 163, 74, 0.15);
    padding: 64px 48px 32px;
}

.ft-inner,
.ft-bottom {
    max-width: 1060px;
    margin: 0 auto;
}

.ft-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.ft-logo {
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: #0f172a;
    margin-bottom: 10px;
    text-decoration: none;
    display: block;
}

.ft-logo em {
    font-style: normal;
    color: #10b981;
}

.ft-desc {
    font-size: 0.78rem;
    color: #475569;
    line-height: 1.7;
    max-width: 210px;
    margin-bottom: 16px;
}

.ft-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ft-chip {
    font-size: 0.62rem;
    font-weight: 600;
    color: #334155;
    border: 1px solid rgba(22, 163, 74, 0.2);
    padding: 3px 9px;
    border-radius: 4px;
}

.ft-col h4 {
    font-size: 0.62rem;
    font-weight: 800;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 14px;
}

.ft-col a {
    display: block;
    color: #64748b;
    text-decoration: none;
    font-size: 0.78rem;
    margin-bottom: 10px;
    transition: color 0.15s;
}

.ft-col a:hover {
    color: #10b981;
}

.ft-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(22, 163, 74, 0.15);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.ft-bottom span {
    font-size: 0.72rem;
    color: #64748b;
}

/* STICKY BAR */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 300;
    background: #10b981;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.sticky-bar.show {
    transform: translateY(0);
}

.sticky-bar span {
    font-size: 0.88rem;
    font-weight: 600;
    color: white;
}

.sticky-bar a {
    background: white;
    color: #059669;
    padding: 8px 20px;
    border-radius: 7px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.sticky-bar button {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
}

.afca-logo {
    width: 200px;
}

/* TABLET */
@media (max-width: 900px) {
    nav {
        width: calc(100% - 32px);
        padding: 0 20px;
    }

    .hero {
        padding: 110px 28px 80px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns,
    .badge {
        justify-content: center;
    }

    .card-stack {
        max-width: 520px;
        height: 360px;
        margin: 0 auto;
    }

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

    .ft-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    nav {
        top: 10px;
        width: calc(100% - 24px);
        height: auto;
        min-height: 58px;
        padding: 10px 14px;
        border-radius: 12px;
    }

    .logo {
        font-size: 1.15rem;
    }

    .logo-wrap .s-country {
        font-size: 8px;

    }

    .logo-slogan {
        font-size: 8px;
    }

    .nav-btn {
        padding: 8px 12px;
        font-size: 0.72rem;
    }

    .hero {
        min-height: auto;
        padding: 105px 20px 64px;
    }

    .hero-inner {
        gap: 38px;
    }

    .hero h1 {
        font-size: clamp(2.25rem, 13vw, 3.4rem);
    }

    .hero-sub {
        font-size: 0.96rem;
        line-height: 1.65;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 15px 20px;
    }

    .card-stack {
        height: auto;
        min-height: 335px;
    }

    .main-card {
        position: relative;
        padding: 20px;
    }

    .bg-card {
        display: none;
    }

    .card-stats {
        flex-direction: column;
    }

    .stats-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        padding: 0 0 16px;
    }

    .stat:last-child {
        border-bottom: none;
    }

    .section {
        padding: 60px 20px;
    }

    .section p.lead {
        margin-bottom: 32px;
    }

    .fix-grid,
    .testi-grid {
        grid-template-columns: 1fr;
    }

    .fix-card,
    .t-card {
        padding: 22px;
    }

    .t-author {
        flex-wrap: wrap;
    }

    .t-result {
        margin-left: 42px;
    }

    .call-cta {
        padding: 60px 20px;
    }

    footer {
        padding: 48px 20px 28px;
    }

    .ft-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .ft-desc {
        max-width: 100%;
    }

    .ft-bottom {
        flex-direction: column;
    }

    .sticky-bar {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
        padding: 12px 16px;
        text-align: center;
    }

    .sticky-bar a {
        width: 100%;
    }

    .sticky-bar button {
        position: absolute;
        top: 8px;
        right: 10px;
    }
}

/* SMALL PHONES */
@media (max-width: 480px) {
    nav {
        width: calc(100% - 16px);
        padding: 9px 10px;
    }

    .logo {
        font-size: 1rem;
    }

    .logo-wrap .s-country {
        font-size: 8px;

    }

    .logo-slogan {
        display: none;
    }

    .nav-btn {
        font-size: 0.68rem;
        padding: 7px 10px;
    }

    .hero {
        padding: 92px 16px 54px;
    }

    .badge {
        font-size: 0.62rem;
        padding: 6px 10px;
        margin-bottom: 20px;
    }

    .hero h1 {
        letter-spacing: -0.04em;
    }

    .hero-sub {
        font-size: 0.9rem;
    }

    .main-card {
        padding: 16px;
        border-radius: 18px;
    }

    .b-row {
        gap: 8px;
    }

    .b-name {
        width: 54px;
        font-size: 0.74rem;
    }

    .b-score {
        font-size: 0.74rem;
    }

    .section {
        padding: 50px 16px;
    }

    .section h2,
    .call-cta h2 {
        font-size: 2rem;
    }

    .stats {
        padding: 30px 16px;
    }

    .stat-num {
        font-size: 2rem;
    }

    .afca-logo {
        width: 160px;
    }
}

/* SLOGAN SECTION */
.slogan-section {
    background: linear-gradient(135deg, #f5fdfb 0%, #e8f8f2 100%);
    border-top: 1px solid #d4ede6;
    padding: 72px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slogan-text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    text-align: center;
}

.slogan-logo,
.slogan-text span {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(26px, 4vw, 46px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.slogan-logo {
    color: var(--navy);
    text-decoration: none;
    padding: 0 20px 0 0;
    border-right: 2px solid var(--border);
}

.slogan-logo span {
    color: var(--green) !important;
    padding: 0 !important;
    border: none !important;
}

.slogan-text>span {
    color: var(--navy);
    padding: 0 20px;
    border-right: 2px solid var(--border);
}

.slogan-text span.challenged {
    color: var(--green-dark);
    display: inline-block;
    transform: skewX(-4deg);
}

.slogan-text span.repaired {
    border-right: none;
    color: #00c896;
}

.slogan-text .black-dot {
    color: #000 !important;
    padding: 0 !important;
    border: none !important;
    font-size: inherit;
    font-weight: inherit;
}

/* Tablet */
@media (max-width: 768px) {
    .slogan-section {
        padding: 52px 20px;
    }

    .slogan-text {
        row-gap: 14px;
    }

    .slogan-logo,
    .slogan-text>span {
        font-size: clamp(24px, 7vw, 36px);
        padding: 0 14px;
    }

    .slogan-logo {
        padding-left: 0;
    }
}

/* Mobile */
@media (max-width: 560px) {
    .slogan-section {
        padding: 44px 16px;
    }

    .slogan-text {
        flex-direction: column;
        gap: 10px;
    }

    .slogan-logo,
    .slogan-text>span {
        width: 100%;
        padding: 0;
        border-right: none;
        letter-spacing: -1px;
    }

    .slogan-logo {
        margin-bottom: 8px;
    }

    .slogan-text span.challenged {
        transform: skewX(-4deg);
    }
}

/* FOOTER */
footer {
    border-top: 2px solid #b3ddd1;
    background: white;
    padding: 48px 60px 24px;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--green-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--muted);
}

/* ===== TABLET ===== */
@media (max-width: 1024px) {
    .footer-nav {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    footer {
        padding: 44px 30px 24px;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    footer {
        padding: 40px 20px 24px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
    }
}

/* ===== SMALL PHONES ===== */
@media (max-width: 480px) {
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-col {
        align-items: center;
        text-align: center;
    }

    .footer-col-title {
        margin-bottom: 6px;
    }
}

/* FINAL RESPONSIVE OVERRIDES */

@media (max-width: 900px) {
    .hero {
        padding: 110px 20px 60px !important;
        min-height: auto !important;
    }

    .hero-inner {
        display: flex !important;
        flex-direction: column !important;
        gap: 36px !important;
        text-align: center !important;
    }

    .hero-sub {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-btns {
        justify-content: center !important;
    }

    .card-stack {
        width: 100% !important;
        max-width: 460px !important;
        height: auto !important;
        min-height: unset !important;
        margin: 0 auto !important;
    }

    .main-card {
        position: relative !important;
        inset: auto !important;
        width: 100% !important;
    }

    .bg-card {
        display: none !important;
    }
}

@media (max-width: 768px) {
    nav {
        position: absolute !important;
        top: 10px !important;
        width: calc(100% - 20px) !important;
        height: auto !important;
        min-height: 56px !important;
        padding: 10px 12px !important;
        gap: 10px !important;
    }

    .logo {
        font-size: 18px !important;
        margin-bottom: -5px;
    }

    .logo-wrap .s-country {
        font-size: 8px;

    }

    .logo-slogan {
        display: none !important;
    }

    .nav-btn {
        font-size: 12px !important;
        padding: 8px 10px !important;
    }

    .hero {
        padding: 92px 16px 50px !important;
    }

    .hero h1 {
        font-size: 42px !important;
        line-height: 1.05 !important;
    }

    .hero-sub {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }

    .hero-btns {
        flex-direction: column !important;
        width: 100% !important;
    }

    .btn-primary,
    .btn-secondary {
        width: 100% !important;
    }

    .card-stats {
        flex-direction: column !important;
    }

    .stats-inner,
    .fix-grid,
    .testi-grid,
    .ft-top {
        grid-template-columns: 1fr !important;
    }

    .stat {
        border-right: none !important;
        border-bottom: 1px solid #e2e8f0 !important;
        padding-bottom: 18px !important;
    }

    .stat:last-child {
        border-bottom: none !important;
    }

    .section,
    .call-cta {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    footer {
        padding: 44px 16px 28px !important;
    }

    .sticky-bar {
        flex-direction: column !important;
        align-items: stretch !important;
        text-align: center !important;
    }

    .sticky-bar a {
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    body {
        width: 100% !important;
        overflow-x: hidden !important;
    }

    nav {
        width: calc(100% - 12px) !important;
        padding: 8px 10px !important;
    }

    .hero h1 {
        font-size: 34px !important;
    }

    .badge {
        font-size: 10px !important;
        padding: 6px 9px !important;
    }

    .main-card {
        padding: 14px !important;
        border-radius: 16px !important;
    }

    .b-name {
        width: 48px !important;
        font-size: 11px !important;
    }

    .b-score {
        width: 24px !important;
        font-size: 11px !important;
    }

    .fix-card,
    .t-card {
        padding: 18px !important;
    }

    .section h2,
    .call-cta h2 {
        font-size: 30px !important;
    }
}



/* TRUST */
.trust {
    background: linear-gradient(135deg, #f0fdf8 0%, #e0f9f2 100%);
    border-bottom: 1px solid #c8f0e4;
    padding: 16px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
}

.trust-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
}

/* MAIN */
.main-wrap {
    max-width: 1060px;
    margin: 0 auto;
    padding: 64px 40px 80px;
    display: grid;
    grid-template-columns: 1fr 268px;
    gap: 60px;
    align-items: start;
}

/* ARTICLE */
article h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(20px, 2.8vw, 28px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 14px;
}

article .opening {
    font-size: 17px;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 22px;
    font-weight: 500;
}

article p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 18px;
}

.gap {
    margin-top: 44px;
}

.pull {
    margin: 32px 0;
    padding: 20px 26px;
    border-left: 3px solid var(--green);
    background: linear-gradient(135deg, #f0fdf8 0%, #e0f9f2 100%);
    border-radius: 0 10px 10px 0;
}

.pull p {
    font-size: 16px;
    font-style: italic;
    color: var(--navy);
    line-height: 1.65;
    margin: 0;
    font-weight: 500;
}

.checklist {
    list-style: none;
    margin: 14px 0 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
}

.checklist li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    background: var(--green);
    color: white;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.rule {
    border: none;
    border-top: 1px solid var(--border);
    margin: 44px 0;
}

/* SIDEBAR */
.sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-card {
    background: var(--navy);
    border-radius: 14px;
    padding: 24px;
}

.cta-card h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: white;
    line-height: 1.3;
    margin-bottom: 10px;
}

.cta-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 18px;
}

.cta-card a {
    display: block;
    background: var(--green);
    color: var(--navy);
    font-size: 14px;
    font-weight: 700;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s;
}

.cta-card a:hover {
    background: var(--green-dark);
}

.cta-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-top: 10px;
}

.info-card {
    background: var(--soft);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
}

.ic-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
}

.ic-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}

.ic-row:last-child {
    border-bottom: none;
}

.ic-key {
    color: var(--muted);
}

.ic-val {
    font-weight: 700;
    color: var(--navy);
}

.reg-card {
    background: var(--soft);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
}

.rc-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
}

.reg-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reg-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
}

.reg-list li::before {
    content: '✓';
    width: 18px;
    height: 18px;
    background: var(--green);
    color: white;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reg-summary {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.7;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.reg-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 9px;
    margin-bottom: 10px;
}

.reg-badge:last-child {
    margin-bottom: 0;
}

.afca-ico {
    width: 38px;
    height: 38px;
    background: #003087;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.3px;
    flex-shrink: 0;
}

.privacy-ico {
    width: 38px;
    height: 38px;
    background: #e6faf5;
    border: 1px solid #b3f0e0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.rb-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}

.rb-text span {
    display: block;
    font-size: 11px;
    color: var(--muted);
    margin-top: 1px;
}

/* FAQ */
.faq-wrap {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 40px 80px;
}

.faq-wrap h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
}

.faq-wrap>p {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 28px;
}

.faq-item {
    border-top: 1px solid var(--border);
}

.faq-item:last-child {
    border-bottom: 1px solid var(--border);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    user-select: none;
}

.faq-q:hover {
    color: var(--navy);
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--soft);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--muted);
    flex-shrink: 0;
    transition: all 0.25s;
}

.faq-item.open .faq-icon {
    background: #e6faf5;
    border-color: #b3f0e0;
    color: var(--green-dark);
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-a {
    max-height: 160px;
}

.faq-a-inner {
    padding: 0 4px 18px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-a {
    max-height: 300px;
}

.faq-icon {
    transition: transform 0.25s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}