/* ===== header section ===== */
.page-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #0a2e5c;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-header h1 i {
    color: #ca8409;
    font-size: 2.2rem;
}

.trust-badge {
    background: white;
    padding: 0.6rem 1.5rem;
    border-radius: 40px;
    box-shadow: 0 4px 16px rgba(0, 40, 100, 0.08);
    font-weight: 500;
    color: #0a2e5c;
    border: 1px solid rgba(42, 125, 225, 0.2);
}

.trust-badge i {
    color: #27ae60;
    margin-right: 8px;
}

/* ===== hero section ===== */
.hero-card {
    background: linear-gradient(145deg, #ffffff 0%, #f9fcff 100%);
    border-radius: 32px;
    box-shadow: 0 24px 48px -16px rgba(0, 45, 90, 0.2);
    padding: 2.5rem 3rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(42, 125, 225, 0.15);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2.5rem;
}

.hero-content {
    flex: 2 1 350px;
    background: url('../img/page-bg.png');
}

.img-box img {
    width: 20%;
    height: 130px;
}

.cert-card img {
    width: 100%;
}

.img-box {
    padding-bottom: 20px;
}

.cert-card a {
    text-decoration: none;
}

.hero-tag {

    color: #ca8409;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.4rem 1.2rem;
    border-radius: 2px;
    display: inline-block;
    margin-bottom: 1.2rem;
    border: 1px solid rgb(237 185 102);
}

.img-box {
    display: flex;
}

.hero-content h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #0a2e5c;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.hero-content h2 span {
    color: #ca8409;
    border-bottom: 4px solid #ca8409;
    padding-bottom: 6px;
}

.hero-desc {
    color: #2c405e;
    font-size: 1.2rem;
    margin: 1.5rem 0 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    background: #ca8409;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 10px 18px -8px #ca8409;
}

.stat-text h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a2e5c;
}

.stat-text p {
    color: #4a5e7a;
    font-size: 0.95rem;
}

.hero-image {
    flex: 1 1 250px;
    background: #e9f0fa;
    border-radius: 30px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid white;
}

.hero-image i {
    font-size: 7rem;
    color: #ca8409;
    opacity: 0.9;
}

.hero-image p {
    font-weight: 600;
    color: #0a2e5c;
    margin-top: 0.8rem;
    font-size: 1.1rem;
}

/* ===== section title ===== */
.section-title {
    font-size: 1.9rem;
    font-weight: 600;
    color: #0a2e5c;
    margin: 2.8rem 0 1.8rem;
    display: flex;
    align-items: center;
    gap: 14px;
}

.section-title i {
    color: #ca8409;
    font-size: 2.2rem;
}

/* ===== certificate grid ===== */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-bottom: 2.5rem;
}

.cert-card {
    background: white;
    border-radius: 26px;
    padding: 2rem 1.8rem;
    box-shadow: 0 14px 32px -12px rgba(10, 46, 92, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s;
    border: 1px solid #eef2f8;
}

.cert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 44px -16px rgba(42, 125, 225, 0.25);
    border-color: #ca840940;
}

.cert-icon {
    background: #e5effc;
    width: 70px;
    height: 70px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.6rem;
}

.cert-icon i {
    font-size: 2.5rem;
    color: #ca8409;
}

.cert-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0a2e5c;
    margin-bottom: 0.7rem;
}

.cert-card p {
    color: #4d627a;
    line-height: 1.5;
    margin-bottom: 1.4rem;
}

.cert-badge {
    background: #f0f5fd;
    color: #ca8409;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    display: inline-block;
}

/* ===== how it works ===== */
.steps-panel {
    background: white;
    border-radius: 36px;
    padding: 2.8rem 2.5rem;
    box-shadow: 0 24px 48px -18px #0a2e5c1a;
    margin: 2.8rem 0;
    border: 1px solid #d9e8ff;
}

.steps-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.2rem;
    margin: 2rem 0 0.5rem;
}

.step {
    flex: 1 1 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number {
    width: 64px;
    height: 64px;
    background: #ca8409;
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    box-shadow: 0 12px 20px -10px #ca8409;
}

.step h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0a2e5c;
    margin-bottom: 0.3rem;
}

.step p {
    color: #527296;
    font-size: 0.95rem;
}

/* ===== CTA section ===== */
.cta-section {
    background: linear-gradient(115deg, #0a2e5c 0%, #1b4380 100%);
    border-radius: 44px;
    padding: 3.2rem 3.5rem;
    color: white;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 3.5rem 0 2.5rem;
    box-shadow: 0 32px 48px -20px #0a2e5c;
}

.cta-text h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.cta-text p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.cta-button {
    background: white;
    border: none;
    padding: 1.1rem 2.8rem;
    border-radius: 60px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #0a2e5c;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 16px 24px -10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: 0.2s;
    border: 2px solid transparent;
}

.cta-button i {
    color: #ca8409;
    font-size: 1.2rem;
}

.cta-button:hover {
    background: #f0f8ff;
    transform: scale(1.02);
    border-color: #ffffff;
}

/* ===== buyer leads table (like go2exportmart) ===== */
.leads-wrapper {
    background: white;
    border-radius: 36px;
    padding: 2.2rem 2rem;
    box-shadow: 0 24px 40px -18px rgba(10, 46, 92, 0.12);
    margin-top: 2rem;
}

.leads-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.8rem;
}

.leads-header h3 {
    color: #0a2e5c;
    font-size: 1.8rem;
    font-weight: 600;
}

.leads-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
}

.leads-table th {
    text-align: left;
    padding: 0.9rem 1.2rem;
    background: #e5effc;
    color: #0a2e5c;
    font-weight: 600;
    border-radius: 20px 20px 10px 10px;
}

.leads-table td {
    background: #f8fbfe;
    padding: 1.1rem 1.2rem;
    border-radius: 18px;
    color: #1e3a5f;
}

.status-active {
    background: #dff0d8;
    color: #1e6f2f;
    font-weight: 600;
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    font-size: 0.85rem;
    display: inline-block;
}

.action-btn {
    border: 1.8px solid #ca8409;
    background: transparent;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    color: #ca8409;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.2s;
}

.action-btn:hover {
    background: #ca8409;
    color: white;
}

footer {
    text-align: center;
    margin-top: 3.5rem;
    color: #5f7a9a;
}

hr {
    border: 1px solid #d2e2f5;
    margin: 2.5rem 0 1.5rem;
}