/* @keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    50% { transform: translateX(3px); }
    75% { transform: translateX(-3px); }
    100% { transform: translateX(0); }
}

.btn-hover-shake:hover {
    animation: shake 0.3s ease-in-out;
} */

:root {
    --navy: #1b3a8c;
    --navy-dark: #1e3fa0;
    --navy-mid: #114f9f;
    --navy-glass: rgba(27, 58, 140, 0.08);
    --gold: #ffc107;
    --gold-dark: #ffc107;
    --gold-pale: #fffbeb;
    --white: #ffffff;
    --off: #f8faff;
    --gray: #f1f4fd;
    --border: #e4eaf8;
    --text: #114f9f;
    --muted: #64748b;
    --green: #10b981;
    --red: #ef4444;
}

.group:hover .group-hover\:block {
    display: block;
}

#feedback-carousel::-webkit-scrollbar {
    display: none;
}

.nav-center {
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-center a {
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--muted);
    padding: 6px 14px;
    border-radius: 8px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-center a:hover,
.nav-center a.active {
    color: var(--navy);
    background: var(--navy-glass);
}

.nav-center a i {
    font-size: 11px;
}

/* ── HERO ── */
.hero {
    background: linear-gradient(
        135deg,
        var(--navy-dark) 0%,
        var(--navy) 55%,
        #2a4db8 100%
    );
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding: 100px 5%;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    right: -5%;
    top: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 192, 0, 0.06) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 192, 0, 0.12);
    border: 1px solid rgba(255, 192, 0, 0.25);
    color: var(--gold);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.hero h1 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(40px, 4.5vw, 43px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero h1 .gold {
    color: var(--gold);
}

.hero-sub {
    font-size: 16.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-btn-primary {
    background: var(--gold);
    color: var(--navy);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 14.5px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: "Inter", sans-serif;
}

.hero-btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 192, 0, 0.3);
}

.hero-btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14.5px;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.hero-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-trust {
    display: flex;
    gap: 28px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-trust-item {
    display: flex;
    flex-direction: column;
}

.trust-num {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--gold);
}

.trust-label {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 2px;
    letter-spacing: 0.3px;
}

/* HERO RIGHT — DASHBOARD CARD */
.hero-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(10px);
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.hero-card-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
}

.hero-card-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.mini-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.mini-stat {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 14px 16px;
}

.mini-stat-n {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 19px;
    font-weight: 800;
    color: var(--gold);
}

.mini-stat-l {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

.app-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 8px;
}

.app-row:last-child {
    margin-bottom: 0;
}

.app-avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--navy-mid), #4a6fd4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

.app-info {
    flex: 1;
}

.app-name {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--white);
}

.app-uni {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
}

.app-status {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
}

.status-offer {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-review {
    background: rgba(255, 192, 0, 0.15);
    color: var(--gold);
    border: 1px solid rgba(255, 192, 0, 0.3);
}

.status-docs {
    background: rgba(99, 102, 241, 0.15);
    color: #a5b4fc;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

/* ── Section Basics ── */

section {
    padding: 40px 0%;
}

.max {
    max-width: 1000px;
    margin: 0 auto;
}

.eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 10px;
}

.sec-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(40px, 4.5vw, 43px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.18;
    letter-spacing: -0.3px;
    margin-bottom: 14px;
}

.sec-sub {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75;
    max-width: 560px;
}

.sec-head {
    margin-bottom: 56px;
}

.sec-head.center {
    text-align: center;
}

.sec-head.center .sec-sub {
    margin: 0 auto;
}

.rule {
    width: 40px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin: 14px 0 20px;
}

.rule.center {
    margin: 14px auto 20px;
}

/* ── FOR WHOM TABS ── */
.for-whom {
    background: var(--navy-dark);
}

.for-whom .eyebrow {
    color: var(--gold);
}

.for-whom .sec-title {
    color: var(--white);
}

.tabs {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 48px;
    width: fit-content;
}

.tab {
    padding: 10px 24px;
    border-radius: 9px;
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    background: none;
    font-family: "Inter", sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab.active {
    background: var(--gold);
    color: var(--navy);
}

.tab i {
    font-size: 12px;
}

.for-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.for-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.for-item {
    display: flex;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 20px 22px;
    transition: all 0.3s;
}

.for-item:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 192, 0, 0.25);
}

.for-item-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: rgba(255, 192, 0, 0.12);
    border: 1px solid rgba(255, 192, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
}

.for-item h4 {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.for-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.for-visual {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px;
    height: 100%;
}

.for-visual-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.for-visual-title i {
    color: var(--gold);
}

.pipeline-step {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.pipe-num {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--gold);
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pipe-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}

.pipe-arrow {
    color: rgba(255, 255, 255, 0.2);
    font-size: 12px;
    margin-left: auto;
}

.pipe-connector {
    width: 2px;
    height: 12px;
    background: rgba(255, 255, 255, 0.08);
    margin-left: 14px;
    margin-bottom: 2px;
}

/* ── Schools ── */
#university-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
}

.university-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: 0.3s;
    cursor: pointer;
    overflow: hidden;
}

.university-card:hover {
    transform: translateY(-6px);
    border-color: var(--navy);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}


.university-card-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 13px;
}

.university-icon {
    width: 45px;
    height: 45px;
    border-radius: 14px;
    background: rgba(255, 192, 0, 0.12);
    border: 1px solid rgba(255, 192, 0, 0.25);

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--gold);
    font-size: 22px;
    flex-shrink: 0;
}

.university-content {
    flex: 1;
}

.university-content h4 {
    margin: 0;
    color: #114f9f;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}

/* ── FEATURES ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--gold));
    opacity: 0;
    transition: opacity 0.3s;
}

.feat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(27, 58, 140, 0.1);
    border-color: rgba(27, 58, 140, 0.2);
}

.feat-card:hover::before {
    opacity: 1;
}

.feat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--navy-glass);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 20px;
    margin-bottom: 20px;
}

.feat-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.feat-card p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.65;
}

.feat-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 16px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--gold-dark);
    background: var(--gold-pale);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 192, 0, 0.2);
}

/* ── HOW IT WORKS ── */
.how-bg {
    background: var(--off);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.steps-grid::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--navy), var(--gold));
    z-index: 0;
}

.step-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.step-card:hover {
    box-shadow: 0 12px 32px rgba(27, 58, 140, 0.1);
    transform: translateY(-4px);
}

.step-num {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--navy);
    color: var(--white);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.step-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

/* ── AGENT SECTION ── */
.agent-section {
    background: var(--navy);
}

.agent-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.agent-text .eyebrow {
    color: var(--gold);
}

.agent-text .sec-title {
    color: var(--white);
}

.agent-text .sec-sub {
    color: rgba(255, 255, 255, 0.6);
    max-width: 100%;
    margin-bottom: 28px;
}

.agent-perks {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.perk {
    display: flex;
    align-items: center;
    gap: 14px;
}

.perk-check {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 192, 0, 0.15);
    border: 1px solid rgba(255, 192, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 12px;
    flex-shrink: 0;
}

.perk span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

.agent-visual {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px;
}

/* Heading */
.process-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
}

.process-title i {
    color: var(--gold);
}

/* Card */
.process-box {
    /* background: rgba(255, 255, 255, .04);
                border: 1px solid rgba(255, 255, 255, .08); */
    /* border-radius: 18px; */
    padding: 20px 20px;
}

/* Step */
.process-step {
    display: flex;
    align-items: center;
    gap: 16px;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 192, 0, 0.12);
    border: 1px solid rgba(255, 192, 0, 0.3);

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--gold);
    font-size: 16px;
    flex-shrink: 0;
}

.step-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Connecting line */
.step-line {
    width: 2px;
    height: 15px;
    background: rgba(255, 192, 0, 0.25);
    margin: 6px 0 6px 20px;
    position: relative;
}

.step-line::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(255, 192, 0, 0.5);
    border-bottom: 2px solid rgba(255, 192, 0, 0.5);
    transform: translateX(-50%) rotate(45deg);
}

/* ── PARTNERS ── */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.country-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 12px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.country-card:hover {
    border-color: var(--navy);
    box-shadow: 0 8px 24px rgba(27, 58, 140, 0.1);
    transform: translateY(-3px);
} 

.country-card.active {
    background: var(--navy);
    border-color: var(--navy);
    box-shadow: 0 15px 35px rgba(255, 192, 0, 0.18);
}

.c-flag {
    font-size: 30px;
    margin-bottom: 8px;
}

.c-name {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--navy);
}

.country-card.active .c-name {
    color: var(--white);
}

.c-count {
    font-size: 11px;
    color: var(--gold-dark);
    margin-top: 3px;
    font-weight: 600;
}

.country-card.active .c-count {
    color: var(--gold);
}

/* ── FOOTER ── */
footer {
    background: #0f2461;
    padding: 64px 5% 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr 1.4fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand img {
    width: 110px;
    height: auto;
}

.footer-brand h5 {
    color: white;
    font-weight: 600;
    margin-left: 36px;
}

.footer-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    max-width: 260px;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-name {
    border-left: 3px solid white;
    padding-left: 10px;
}

.footer-logo-name span {
    color: white;
    display: block;
    font-size: 20px;
    font-weight: 600;
}

.footer-offices {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.office-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.office-addr {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.55;
}

.footer-col h5 {
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    margin-bottom: 9px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-socials {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.f-social {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
}

.f-social:hover {
    background: var(--gold);
    color: var(--navy);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
}

.footer-bottom span {
    color: var(--gold);
}

.footer-badges {
    display: flex;
    gap: 10px;
}

.f-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 10.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

/* .feedback-card {
            flex: 0 0 auto;
        } */

html.zoom-active *,
html.zoom-active *::before,
html.zoom-active *::after {
    animation: none !important;
    transition: none !important;
}

html.zoom-active [data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

@media (max-width: 639px) {
    section {
        padding: 64px 5%;
    }

    .hero {
        min-height: auto;
        padding: 112px 5% 72px;
        margin-top: 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-sub {
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 24px;
    }

    .hero-card {
        padding: 20px;
    }

    .mini-stat-grid,
    .for-grid,
    .agent-grid,
    .features-grid,
    .steps-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid::before {
        display: none;
    }

    .hero-trust {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        padding-top: 22px;
    }

    .countries-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-brand h5 {
        margin-left: 0;
    }

    .footer-logo-name span {
        font-size: 20px;
    }

    .tabs {
        width: 100%;
        overflow-x: auto;
    }

    .tab {
        white-space: nowrap;
    }

    .agent-visual {
        padding: 20px;
    }

    .comm-rate {
        font-size: 16px;
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    .hero-grid,
    .for-grid,
    .agent-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .steps-grid::before {
        display: none;
    }

    .countries-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
    }

    .agent-grid {
        gap: 40px;
    }
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .for-grid {
        grid-template-columns: 1fr 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .steps-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .steps-grid::before {
        display: block;
    }

    .countries-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}
