/* Fonts */
@font-face {
    font-family: 'Satoshi';
    src: url('fonts/satoshi-400-subset.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('fonts/satoshi-500-subset.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('fonts/satoshi-700-subset.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/poppins-400-subset.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/poppins-400i-subset.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/poppins-500-subset.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/poppins-600-subset.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/poppins-700-subset.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/poppins-700i-subset.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-yellow: #FFC207;
    --black: #000000;
    --white: #ffffff;
    --gray-text: #555555;
    --gray-light: #888888;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #5C5C5C;
    line-height: 1.6;
    letter-spacing: -0.5px;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1 {
    font-family: 'Satoshi', sans-serif;
    font-size: 44px;
    font-weight: 400;
    line-height: 56px;
    letter-spacing: -1px;
    color: var(--black);
}

h2, h3 {
    font-family: 'Satoshi', sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: auto;
    letter-spacing: -0.8px;
    color: var(--black);
}

h1 em, h1 strong, h2 em {
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn img,
.btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.btn-primary {
   background-color: var(--primary-yellow);
    color: var(--black);
    padding: 20px 24px;
}

.btn-primary:hover {
    background-color: #e6ae00;
}

.btn-outline {
    background-color: transparent;
    color: var(--black);
    border: 1px solid var(--black);
}

.btn-outline:hover {
    background-color: var(--black);
    color: var(--white);
}

/* Header */
.header {
    padding: 20px 0;
    background-color: var(--black);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    width: 100px;
    height: 100%;
}

.logo span {
    font-family: 'Satoshi', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
}

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

.nav-link {
    font-size: 14px;
    color: var(--gray-light);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link.active {
    color: var(--white);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--primary-yellow);
}

/* Hamburger & Mobile Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--black);
    z-index: 999;
    padding: 100px 40px 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-link {
    font-family: 'Satoshi', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--gray-light);
    padding: 16px 0;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--white);
}

.mobile-nav-link.active {
    color: var(--primary-yellow);
    position: relative;
}

.mobile-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--primary-yellow);
}

body.menu-open {
    overflow: hidden;
}

.btn-header {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--primary-yellow);
}

.btn-header:hover {
    background-color: var(--primary-yellow);
    color: var(--black);
}

.btn-header img {
    filter: invert(0);
}

.btn-header:hover img {
    filter: invert(0);
}

/* Hero Section */
.hero {
    padding: 60px 0 40px;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    max-width: 800px;
    margin: 0 auto 24px;
}

.hero-description {
    font-size: 14px;
    color: var(--gray-text);
    max-width: 680px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

/* Checker Section */
.checker-section {
    background-color: var(--black);
    padding: 80px 0;
}

.checker-card {
    background-color: var(--white);
    border-radius: 100px;
       padding: 50px;
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.inputs-container {
    flex: 1;
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 12px;
    padding: 8px 0;
        border: 1px solid #E4E4E4;
}

.input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
}

.input-wrapper:first-child {
    border-right: 1px solid #e0e0e0;
}

.input {
    width: 100%;
    padding: 12px 24px;
    border: none;
    background-color: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--black);
    outline: none;
}

.input::placeholder {
    color: var(--gray-light);
}

.checker-card .btn {
    white-space: nowrap;
    margin-left: 20px;
    padding: 20px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
}

/* How To Section */
.how-to-section {
    padding: 80px 0;
}

.how-to-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.how-to-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.how-to-content {
    padding-top: 20px;
}

.how-to-title {
    font-size: 40px;
    margin-bottom: 24px;
}

.how-to-intro {
    font-size: 14px;
    color: var(--gray-text);
    margin-bottom: 32px;
    line-height: 1.8;
}

.steps-list {
    list-style: none;
    margin-bottom: 32px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.step-icon {
    flex-shrink: 0;
}

.step-icon svg {
    width: 28px;
    height: 28px;
}

.step-text {
    font-size: 14px;
    font-weight: 400;
    color: var(--black);
    padding-top: 4px;
}

.how-to-description {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.9;
}

.how-to-footer {
    font-size: 14px;
    color: var(--gray-text);
    text-align: center;
    max-width: 900px;
    margin: 60px auto 0;
    line-height: 1.8;
}

/* Other Ways Section */
.other-ways-section {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 14px;
    color: var(--gray-text);
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.8;
}

.ways-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.way-card {
    background-color: #FBFBFB;
    border-radius: 4px;
    padding: 40px;
    border: 1px solid #F2F2F2;

}

.way-icon {
    margin-bottom: 24px;
}

.way-icon svg {
    width: 48px;
    height: 48px;
}

.way-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
}

.way-intro {
    font-size: 14px;
    color: var(--gray-text);
    margin-bottom: 24px;
    line-height: 1.8;
}

.way-list {
    list-style: none;
    margin-bottom: 24px;
}

.way-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.6;
}

.way-list li:last-child {
    margin-bottom: 0;
}

.way-list li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.way-list li span {
    color: var(--gray-text);
}

.way-list li strong {
    color: var(--black);
    font-weight: 600;
}

.way-list li a {
    color: var(--primary-yellow);
    text-decoration: underline;
}

.way-list li a:hover {
    color: #e6ae00;
}

.way-footer {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.8;
}

/* Status Meaning Section */
.status-meaning-section {
    padding: 80px 0;
    background-color: var(--white);
}

.status-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    margin-bottom: 40px;
}

.status-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.status-row:last-of-type .status-image img {
    border-radius: 8px;
}

.status-content {
    display: flex;
    flex-direction: column;
}

.status-content-card {
    border-radius: 8px;
    padding: 32px;
    height: 100%;
}
.status-content-card .status-item-featured {
    background-color: #F9F9F9;
}
.status-icon-box {
    width: 56px;
    height: 56px;
    background-color: var(--primary-yellow);
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-icon-box svg {
    width: 22px;
    height: 23px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid #e5e5e5;
}

.status-item:last-child {
    border-bottom: 1px solid #e5e5e5;
}

.status-item-featured {
    flex-direction: column;
    align-items: flex-start;
    background-color: var(--black);
    color: var(--white);
    padding: 32px;
    border-bottom: none;
    gap: 0;
}

.status-item-featured .status-icon-box {
    margin-bottom: 24px;
}

.status-item-featured .status-name {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 16px;
}

.status-item-featured .status-description {
    font-size: 14px;
    color: #999;
    line-height: 1.8;
}

.status-item-light {
    background-color: var(--white);
    color: var(--black);
    margin-bottom: 0;
}

.status-item-light .status-name {
    color: var(--black);
}

.status-item-light .status-description {
    color: var(--gray-text);
}

.status-content-card .status-item {
    padding: 28px 0;
}

.status-content-card .status-item:last-child {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 28px;
}

.status-content-card .status-item-featured {
    padding: 32px;
    margin-bottom: 0;
}

.status-name {
    font-family: 'Satoshi', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
}

.status-item-toggle {
    flex-direction: column;
    align-items: stretch;
    cursor: pointer;
}

.status-item-header {
    display: flex;
    align-items: center;
    gap: 24px;
}

.status-toggle-icon {
    margin-left: auto;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.status-item-toggle.active .status-toggle-icon {
    transform: rotate(180deg);
}

.status-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.status-item-toggle.active .status-item-body {
    max-height: 200px;
}

.status-item-body .status-description {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.8;
    padding-top: 16px;
    padding-left: 46px;
}

.status-cta {
    text-align: center;
    margin-top: 60px;
}

.btn-dark {
    background-color: var(--black);
    color: var(--white);
    padding: 16px 28px;
}

.btn-dark:hover {
    background-color: #333;
}

.btn-dark svg path {
    fill: white;
}

/* Duration Section */
.duration-section {
    background-color: var(--black);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.duration-images {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.duration-img {
    position: absolute;
    width: 180px;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.duration-img-1 {
    top: 30px;
    left: 40px;
    transform: rotate(-12deg);
}

.duration-img-2 {
    top: 20px;
    right: 60px;
    transform: rotate(12deg);
}

.duration-img-3 {
    bottom: 40px;
    left: 40px;
    transform: rotate(8deg);
}

.duration-img-4 {
    bottom: 30px;
    right: 60px;
    transform: rotate(-8deg);
}

.duration-content {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.duration-title {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 32px;
}

.duration-title em {
    color: var(--primary-yellow);
}

.duration-text {
    font-size: 14px;
    color: #999;
    line-height: 1.9;
    margin-bottom: 24px;
}

.btn-white {
    background-color: var(--white);
    color: var(--black);
    padding: 16px 28px;
}

.btn-white:hover {
    background-color: #f0f0f0;
}

/* Find Out Section */
.findout-section {
    padding: 100px 0;
    background-color: var(--white);
}

.findout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.findout-content {
    text-align: center;
}

.findout-title {
    font-size: 40px;
    color: var(--black);
    margin-bottom: 32px;
    line-height: 1.3;
}

.findout-title em {
    font-weight: 700;
}

.findout-text {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.9;
    margin-bottom: 40px;
}

.findout-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Payment Schedule Section */
.schedule-section {
    padding: 80px 0;
    background-color: var(--white);
}

.schedule-table-wrapper {
    background-color: #F3F3F3;
    border-radius: 20px;
    padding: 16px;
    margin-bottom: 40px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Custom Scrollbar - Webkit (Chrome, Safari, Edge) */
.schedule-table-wrapper::-webkit-scrollbar {
    height: 8px;
    display: block;
}

.schedule-table-wrapper::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 10px;
    margin: 0 10px;
}

.schedule-table-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary-yellow);
    border-radius: 10px;
}

.schedule-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #e6ae00;
}

/* Custom Scrollbar - Firefox */
.schedule-table-wrapper {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-yellow) #e0e0e0;
}

.schedule-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 8px 0;
    min-width: 700px;
}

.schedule-table thead th {
    background-color: #ffffff;
    padding: 16px 8px;
    text-align: center;
    border-bottom: 1px solid #eaeaea;
    border-radius: 30px 30px 0 0;
}

.schedule-table thead th:first-child {
    border-radius: 30px 30px 0 0;
}

.schedule-table thead th:last-child {
    border-radius: 30 30px 0 0;
}

.schedule-table thead th span {
    display: block;
    background-color: var(--black);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 20px 32px;
    border-radius: 30px;
}

.schedule-table tbody tr:nth-child(odd) td {
    background-color: #ffffff;
}

.schedule-table tbody tr:nth-child(even) td {
    background-color: #FBFBFB;
}

.schedule-table tbody td {
    font-size: 14px;
    color: var(--black);
    padding: 20px 16px;
    text-align: center;
    border-bottom: 1px solid #eaeaea;
}

.schedule-table tbody td:not(:first-child) {
    border-left: 1px solid #eaeaea;
    
}

.schedule-table tbody tr:last-child td {
    border-bottom: none;
        border-radius: 0 0 30px 30px;


}

.schedule-table tbody tr:last-child td:first-child {
    border-radius: 0 0 30px 30px;
}

.schedule-table tbody tr:last-child td:last-child {
    border-radius: 0 0 30px 30px;
}

.schedule-footer {
    font-size: 14px;
    color: var(--gray-text);
    text-align: center;
    line-height: 1.8;
}

/* Receive Cash Section */
.receive-section {
    padding: 80px 0;
    background-color: var(--white);
}

.receive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.receive-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.receive-card {
    background-color: #F9F9F9;
    border-radius: 8px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.receive-card-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 22px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 16px;
}

.receive-card-text {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.8;
}

.receive-checklist {
    list-style: none;
}

.receive-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.6;
}

.receive-checklist li:last-child {
    margin-bottom: 0;
}

.receive-checklist li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.receive-checklist li span {
    color: var(--black);
    font-weight: 400;
}

/* SRD Balance Section */
.balance-section {
    padding: 80px 0;
    background-color: var(--white);
}

.balance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.balance-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.balance-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 28px;
}

.balance-title em {
    font-weight: 700;
    font-style: italic;
}

.balance-intro {
    font-size: 16px;
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 28px;
}

.balance-intro strong em {
    color: var(--black);
}

.balance-checklist {
    list-style: none;
    margin-bottom: 28px;
}

.balance-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
}

.balance-checklist li:last-child {
    margin-bottom: 0;
}

.balance-checklist li svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.balance-checklist li span {
    color: var(--black);
    font-weight: 500;
}

.balance-checklist li strong {
    font-weight: 700;
}

.balance-text {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 36px;
}

/* Application Declined Section */
.declined-section {
    background-color: var(--black);
    padding: 100px 0;
    text-align: center;
}

.declined-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 42px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.declined-title em {
    font-weight: 700;
    font-style: italic;
    color: var(--primary-yellow);
    font-size: 72px;
}

.declined-subtitle {
    font-size: 14px;
    color: #999;
    line-height: 1.8;
    margin-bottom: 48px;
}

.declined-heading {
    font-family: 'Satoshi', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 32px;
}

.appeal-steps {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.appeal-step {
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 12px;
    padding: 22px 28px;
    text-align: left;
}

.appeal-step svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.appeal-step span {
    font-size: 14px;
    color: var(--white);
    line-height: 1.6;
}

.declined-cta {
    margin-top: 48px;
}

/* Long Pending Status Section */
.pending-section {
    padding: 80px 0 0;
    background-color: var(--white);
}

.pending-image-area {
    position: relative;
    max-width: 1440px;
    margin: 40px auto 0;
    padding: 0 40px;
}

.pending-image-area img {
    border-radius: 16px;
}

.pending-bg-img {
    width: 100%;
    height: auto;
    display: block;
}

.pending-tags {
    position: absolute;
    bottom: 30px;
    left: 60px;
    right: 60px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pending-tags-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.pending-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 20px 24px;
}

.pending-tag svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.pending-tag span {
    font-size: 13px;
    font-weight: 500;
    color: var(--black);
    white-space: nowrap;
}

/* Bank Details Section */
.bank-section {
    padding: 100px 0;
    background-color: var(--white);
}

.bank-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bank-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 32px;
}

.bank-title em {
    font-weight: 700;
    font-style: italic;
}

.bank-text {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 24px;
}

.bank-text:last-child {
    margin-bottom: 0;
}

.bank-image-area {
    position: relative;
}

.bank-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

.bank-tags {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-end;
}

.bank-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    padding: 16px 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.bank-tag svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.bank-tag span {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    white-space: nowrap;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--white);
}

.faq-list {
    max-width: 900px;
    margin: 60px auto 0;
    background-color: #F5F5F5;
    border-radius: 16px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #E8E8E8;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 32px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Satoshi', sans-serif;
    text-align: left;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-question span {
    font-size: 15px;
    font-weight: 400;
    color: var(--black);
    transition: color 0.3s ease;
}

.faq-icon-close {
    display: none;
}

.faq-icon-plus,
.faq-icon-close {
    flex-shrink: 0;
}

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

.faq-answer p {
    padding: 0 32px 28px;
    font-size: 14px;
    color: #999;
    line-height: 1.8;
}

/* Active/Open State */
.faq-item.active {
    background-color: var(--black);
    border-left: 3px solid var(--primary-yellow);
}

.faq-item.active .faq-question span {
    color: var(--white);
}

.faq-item.active .faq-icon-plus {
    display: none;
}

.faq-item.active .faq-icon-close {
    display: block;
}

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

/* Footer */
.footer {
    background-color: var(--black);
}

.footer-top {
    padding: 60px 0;
}

.footer-disclaimer {
    font-size: 15px;
    color: #999;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.footer-disclaimer strong em {
    color: var(--white);
    font-size: 16px;
}

.footer-middle {
    border-top: 1px solid #333;
    padding: 40px 0;
}

.footer-middle-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo img {
    width: 80px;
    height: auto;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.footer-nav a {
    font-size: 14px;
    color: var(--white);
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary-yellow);
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease;
}

.social-icon:hover {
    border-color: var(--primary-yellow);
}

.social-icon svg {
    width: 14px;
    height: 14px;
}

.footer-bottom {
    background-color: var(--primary-yellow);
    padding: 20px 0;
    text-align: center;
}

.footer-copyright {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
}

/* Blog Page */
.blog-hero {
    background-color: var(--black);
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.03) 10px,
        rgba(255, 255, 255, 0.03) 11px
    );
    padding: 80px 0;
    text-align: center;
}

.blog-hero-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 42px;
    font-weight: 400;
    color: var(--white);
}

.blog-hero-title em {
    color: var(--primary-yellow);
    font-style: italic;
    font-weight: 700;
}

.blog-section {
    padding: 80px 0;
}

.blog-section-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 40px;
}

.blog-section-title em {
    font-weight: 700;
    font-style: italic;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
}

.blog-card-featured {
    grid-row: 1 / 3;
}

.blog-card-featured .blog-card-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 8px;
}

.blog-card-horizontal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.blog-card-horizontal .blog-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
}

.blog-card-image {
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

.blog-card-content {
    padding-top: 16px;
}

.blog-card-horizontal .blog-card-content {
    padding-top: 0;
}

.blog-card-date {
    font-size: 13px;
    color: var(--gray-light);
    display: block;
    margin-bottom: 8px;
}

.blog-card-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--black);
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--primary-yellow);
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-yellow);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.blog-read-more svg {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
}

/* Blog List Section */
.blog-list-section {
    padding: 0 0 80px;
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blog-list-card {
    display: grid;
    grid-template-columns: 340px 1fr;
    border-radius: 8px;
    overflow: hidden;
        background: #F9F9F9;
}

.blog-list-image {
    display: block;
    overflow: hidden;
}

.blog-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-list-content {
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-read-more-dark {
    color: var(--black);
    text-decoration-color: var(--black);
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 60px;
}

.pagination-arrow {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pagination-prev:hover {
    border-color: #999;
}

.pagination-next {
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
}

.pagination-next:hover {
    background-color: #e6ae00;
    border-color: #e6ae00;
}

.pagination-num {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: #999;
    transition: all 0.3s ease;
}

.pagination-num:hover {
    color: var(--black);
}

.pagination-num.active {
    border: 1px solid var(--black);
    color: var(--black);
}

.pagination-dots {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #999;
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav {
        display: none;
    }

    .btn-header {
        display: none;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .mobile-menu {
        display: block;
    }

    .hero-title {
        font-size: 36px;
    }

    .how-to-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .how-to-image {
        order: -1;
    }

    .ways-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 32px;
    }

    .status-row {
        grid-template-columns: 1fr;
    }

    .status-row .status-image {
        order: -1;
    }

    .duration-img {
        width: 140px;
        height: 170px;
    }

    .duration-img-1,
    .duration-img-3 {
        left: 20px;
    }

    .duration-img-2,
    .duration-img-4 {
        right: 20px;
    }

    .receive-grid {
        grid-template-columns: 1fr;
    }

    .receive-img-1 { order: 1; }
    .receive-card-ussd { order: 2; }
    .receive-img-3 { order: 3; }
    .receive-card-smart { order: 4; }
    .receive-img-2 { order: 5; }
    .receive-card-cash { order: 6; }

    .balance-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .balance-images {
        order: 2;
    }

    .balance-content {
        order: 1;
    }

    .balance-title {
        font-size: 32px;
    }

    .declined-title {
        font-size: 32px;
    }

    .declined-title em {
        font-size: 48px;
    }

    .pending-section .section-title {
        text-align: left;
    }

    .pending-section .section-subtitle {
        text-align: left;
    }

    .pending-section .section-subtitle br {
        display: none;
    }

    .pending-image-area {
        padding: 0;
    }

    .pending-image-area img {
        border-radius: 0;
    }

    .pending-bg-img {
        min-height: 580px;
        object-fit: cover;
    }

    .pending-tags {
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 40px 20px;
        justify-content: center;
        align-items: flex-start;
        gap: 12px;
    }

    .pending-tags-row {
        display: contents;
    }

    .pending-tag {
        padding: 16px 22px;
        max-width: max-content;
        border-radius: 12px;
    }

    /* Reorder: DHA(1-1), NSFAS(2-1), DSD(2-2), Fraud(2-3), SARS(1-2), UIF(1-3) */
    .pending-tags-row:first-child .pending-tag:nth-child(1) {
        order: 1;
        align-self: flex-end;
    }

    .pending-tags-row:first-child .pending-tag:nth-child(2) {
        order: 5;
        align-self: flex-start;
    }

    .pending-tags-row:first-child .pending-tag:nth-child(3) {
        order: 6;
        align-self: flex-end;
    }

    .pending-tags-row:last-child .pending-tag:nth-child(1) {
        order: 2;
        align-self: flex-start;
    }

    .pending-tags-row:last-child .pending-tag:nth-child(2) {
        order: 3;
        align-self: flex-end;
    }

    .pending-tags-row:last-child .pending-tag:nth-child(3) {
        order: 4;
        align-self: center;
    }

    .pending-tag span {
        white-space: normal;
        font-size: 14px;
        font-weight: 500;
    }

    .bank-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bank-title {
        font-size: 36px;
    }

    .bank-image-area {
        order: 2;
    }

    .footer-middle-inner {
        flex-wrap: wrap;
        gap: 32px;
    }

    .footer-nav {
        order: 1;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
    }

    .footer-socials {
        order: 0;
    }

    .footer-logo {
        order: 2;
        margin-left: auto;
    }

    .footer-disclaimer {
        text-align: left;
    }

    .bank-tags {
        position: absolute;
        right: auto;
        left: 16px;
        right: 16px;
        top: auto;
        bottom: 20px;
        transform: none;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: stretch;
        gap: 12px;
    }

    .bank-tag {
        flex: 1 1 calc(50% - 6px);
        justify-content: center;
        padding: 18px 20px;
    }

    .bank-tag span {
        font-size: 15px;
    }

    .findout-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .findout-title {
        font-size: 30px;
    }

    .schedule-table-wrapper {
        padding: 16px;
    }

    .schedule-table {
        border-spacing: 4px 0;
    }

    .schedule-table thead th {
        padding: 14px 4px;
        font-size: 13px;
        min-width: 160px;
    }

    .schedule-table thead th span {
        padding-left: 16px;
        padding-right: 16px;
    }

    .schedule-table tbody td {
        padding: 16px;
        font-size: 13px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .blog-card-featured {
        grid-row: auto;
    }

    .blog-card-horizontal {
        grid-template-columns: 1fr;
    }

    .blog-card-horizontal .blog-card-image img {
        height: 280px;
    }

    .blog-card-horizontal .blog-card-content {
        padding-top: 16px;
    }

    .blog-list-card {
        grid-template-columns: 1fr;
    }

    .blog-list-image img {
        height: 280px;
    }

    .blog-list-content {
        padding: 24px 20px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
        line-height: 30px;
    }

    .how-to-title {
        font-size: 28px;
    }

    .checker-section {
        padding: 60px 20px;
    }

    .checker-card {
        flex-direction: column;
        border-radius: 24px;
        padding: 16px;
        gap: 12px;
    }

    .inputs-container {
        width: 100%;
        flex-direction: column;
        padding: 8px;
    }

    .input-wrapper {
        width: 100%;
        border-right: none !important;
        border-bottom: 1px solid #e0e0e0;
    }

    .input-wrapper:last-of-type {
        border-bottom: none;
    }

    .input {
        padding: 12px 16px;
    }

    .checker-card .btn {
        width: 100%;
        justify-content: center;
        margin-left: 0;
    }

    .way-card {
        padding: 24px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle br {
        display: none;
    }

    .status-item-featured {
        padding: 24px;
    }

    .status-icon-box {
        width: 48px;
        height: 48px;
    }

    .status-name {
        font-size: 16px;
    }

    .status-content-card {
        padding: 20px;
    }

    .duration-img {
        width: 100px;
        height: 120px;
    }

    .duration-img-1 {
        top: 20px;
        left: 10px;
    }

    .duration-img-2 {
        top: 10px;
        right: 10px;
    }

    .duration-img-3 {
        bottom: 20px;
        left: 10px;
    }

    .duration-img-4 {
        bottom: 20px;
        right: 10px;
    }

    .duration-title {
        font-size: 28px;
    }

    .duration-section {
        padding: 80px 0;
    }

    .findout-title {
        font-size: 24px;
    }

    .findout-title br {
        display: none;
    }

    .receive-item img {
        height: auto;
        border-radius: 8px;
    }

    .balance-title {
        font-size: 28px;
    }

    .declined-title {
        font-size: 26px;
    }

    .declined-title em {
        font-size: 36px;
    }

    .declined-subtitle br {
        display: none;
    }

    .appeal-step {
        padding: 20px;
    }

    .pending-section .section-title br {
        display: none;
    }

    .bank-title {
        font-size: 28px;
    }

    .schedule-footer br {
        display: none;
    }

    .blog-hero {
        padding: 50px 0;
    }

    .blog-hero-title {
        font-size: 32px;
    }

    .blog-section {
        padding: 50px 0;
    }

    .blog-section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .blog-card-featured .blog-card-image img {
        height: 300px;
    }

    .blog-card-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
                line-height: 30px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 13px;
    }
}
