/* =========================
   VARIABLES
========================= */
:root {
    --primary: #1e88e5;
    --primary-dark: #1565c0;
    --bg: #f5f5f5;
    --text: #222;
    --text-muted: #555;
    --radius: 12px;
    --shadow-sm: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 14px 36px rgba(0,0,0,0.12);
}

/* =========================
   BASE
========================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
}

/* =========================
   OFFERS CONTAINER
========================= */
.container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    padding: 48px 20px;
}

/* =========================
   CARD
========================= */
.card {
    width: 280px;
    padding: 26px 22px;
    text-align: center;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* =========================
   LOGO
========================= */
.bank-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 12px;
    object-fit: contain;
}

/* =========================
   TEXT
========================= */
.card h2 {
    margin: 8px 0;
    font-size: 20px;
}

.card p {
    margin: 10px 0;
    font-size: 15px;
    line-height: 1.45;
    color: var(--text-muted);
}

.percent {
    display: block;
    margin: 12px 0;
    font-weight: bold;
    color: var(--primary);
}

/* =========================
   ⭐ RATING
========================= */
.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 6px 0 14px;
    font-size: 14px;
}

.rating .stars {
    color: #f9a825;
    letter-spacing: 1px;
    font-size: 15px;
}

/* =========================
   PRIMARY BUTTON
========================= */
.btn {
    display: inline-block;
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    text-decoration: none;
    text-align: center;
    color: #fff;
    background: var(--primary);
    border-radius: 8px;
    transition: background 0.2s ease, transform 0.15s ease;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* =========================
   SECONDARY BUTTON (DETAILS)
========================= */
.btn-details {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 12px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: var(--primary-dark);
    background: #fff;
    border: 2px solid var(--primary-dark);
    border-radius: 8px;
    transition: all 0.25s ease;
}

.btn-details::after {
	content: "→";
    transition: transform 0.25s ease;
}

.btn-details:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 6px 16px rgba(30, 136, 229, 0.35);
    transform: translateY(-2px);
}

.btn-details:hover::after {
    transform: translateX(4px);
}

/* =========================
   SEO TEXT
========================= */
.seo-text {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.seo-text h2 {
    text-align: center;
    margin-bottom: 20px;
}

.seo-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #444;
}

/* =========================
   VIDEO SECTION
========================= */
.video-section {
    margin-top: 60px;
    padding: 60px 20px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-wrapper {
    width: 420px;
    max-width: 100%;
}

.video-wrapper video {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

/* =========================
   🛡 TRUST BLOCK
========================= */
.trust-block {
    background: #f9fbff;
    padding: 60px 20px;
}

.trust-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.trust-container h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.trust-subtitle {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.trust-item {
    background: #fff;
    padding: 26px 22px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.trust-icon {
    font-size: 34px;
    display: block;
    margin-bottom: 10px;
}

.trust-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

.trust-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.45;
}

.trust-note {
    margin-top: 30px;
    font-size: 13px;
    color: var(--text-muted);
}

/* =========================
   FOOTER
========================= */
footer {
    padding: 22px 15px;
    text-align: center;
    font-size: 14px;
    color: #555;
    background: #eee;
}

/* =========================
   📱 MOBILE
========================= */
@media (max-width: 768px) {

    .container {
        padding: 30px 15px;
    }

    .card {
        width: 100%;
        max-width: 360px;
    }

    .bank-logo {
        width: 64px;
        height: 64px;
    }

    .video-section {
        padding: 40px 15px;
    }

    .video-wrapper {
        max-width: 340px;
    }
}
.seo-main-links {
    background: #f5f7fa;
    padding: 40px 20px;
    margin-top: 40px;
    border-radius: 12px;
}

.seo-main-links h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.seo-main-links p {
    color: #555;
    max-width: 700px;
    margin-bottom: 20px;
}

.seo-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seo-links-list li {
    margin-bottom: 12px;
}

.seo-links-list a {
    color: #0a58ca;
    text-decoration: none;
    font-weight: 500;
}

.seo-links-list a:hover {
    text-decoration: underline;
}
/* =========================
   SITE HEADER (KredVibe)
========================= */
.site-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 18px 20px 24px;
    color: #fff;
}

.site-header .container {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;

    text-align: center;
}

/* LOGO */
.site-header .logo {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1;
}

.site-header .logo:hover {
    opacity: 0.9;
}

/* TITLE */
.site-header h1 {
    margin: 4px 0 2px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

/* SUBTITLE */
.site-header p {
    margin: 0;
    font-size: 15px;
    opacity: 0.95;
    max-width: 720px;
}

/* =========================
   📱 MOBILE
========================= */
@media (max-width: 768px) {
    .site-header {
        padding: 14px 16px 18px;
    }

    .site-header h1 {
        font-size: 22px;
    }

    .site-header p {
        font-size: 14px;
    }
}
