@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

*{box-sizing:border-box}

:root{
    --bg:#f3f7fb;
    --card:#ffffff;
    --text:#102033;
    --muted:#64748b;
    --blue:#2563eb;
    --blue-dark:#1d4ed8;
    --green:#16a34a;
    --orange:#f97316;
    --border:#e2e8f0;
    --soft:#f8fafc;
    --shadow:0 18px 45px rgba(15,23,42,.08);
}

body{
    margin:0;
    font-family:'Inter', Arial, sans-serif;
    background:
        radial-gradient(circle at top left, #dbeafe 0, transparent 35%),
        radial-gradient(circle at top right, #dcfce7 0, transparent 30%),
        var(--bg);
    color:var(--text);
    line-height:1.65;
}

a{color:inherit}

.container{
    max-width:1180px;
    margin:0 auto;
    padding:0 18px;
}

/* HEADER */

.site-header{
    position:sticky;
    top:0;
    z-index:30;
    background:rgba(255,255,255,.86);
    backdrop-filter:blur(16px);
    border-bottom:1px solid rgba(226,232,240,.8);
}

.header-inner{
    min-height:74px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.logo-text{
    font-size:24px;
    font-weight:800;
    color:var(--blue);
    text-decoration:none;
    letter-spacing:-.03em;
}

.logo-text:before{
    content:"✓";
    display:inline-flex;
    width:30px;
    height:30px;
    align-items:center;
    justify-content:center;
    margin-right:8px;
    border-radius:10px;
    background:linear-gradient(135deg,#2563eb,#16a34a);
    color:#fff;
    font-size:17px;
}

.site-header nav{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.site-header nav a{
    text-decoration:none;
    padding:9px 14px;
    border-radius:999px;
    color:#334155;
    font-weight:700;
    font-size:14px;
    background:#f8fafc;
    border:1px solid #e2e8f0;
}

.site-header nav a:hover{
    background:#eff6ff;
    color:var(--blue);
    border-color:#bfdbfe;
}

/* HERO */

.hero{
    margin-top:28px;
    padding:46px;
    border-radius:30px;
    background:
        linear-gradient(135deg,rgba(37,99,235,.96),rgba(22,163,74,.88)),
        url('/images/hero-bg.webp');
    background-size:cover;
    background-position:center;
    color:#fff;
    box-shadow:var(--shadow);
    overflow:hidden;
    position:relative;
}

.hero:after{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(255,255,255,.13);
    right:-90px;
    top:-90px;
}

.label{
    display:inline-flex;
    align-items:center;
    gap:7px;
    background:rgba(255,255,255,.18);
    color:#fff;
    padding:8px 14px;
    border-radius:999px;
    font-size:14px;
    font-weight:800;
    backdrop-filter:blur(10px);
    margin-bottom:16px;
}

.label:before{
    content:"●";
    font-size:10px;
    color:#bbf7d0;
}

h1{
    max-width:850px;
    font-size:48px;
    line-height:1.08;
    margin:0 0 18px;
    letter-spacing:-.045em;
}

h2{
    font-size:30px;
    margin:0 0 18px;
    letter-spacing:-.03em;
}

h3{
    margin-top:0;
    letter-spacing:-.02em;
}

.hero .seo-content{
    color:#eaf2ff;
    font-size:18px;
    max-width:850px;
}

.hero .seo-content p{
    margin:0 0 14px;
}

.disclaimer{
    position:relative;
    z-index:2;
    max-width:920px;
    margin-top:22px;
    padding:15px 17px;
    border-radius:18px;
    background:rgba(15,23,42,.22);
    border:1px solid rgba(255,255,255,.25);
    color:#fff;
    backdrop-filter:blur(10px);
    font-size:14px;
}

/* CONTENT */

.seo-content{
    color:#334155;
    font-size:17px;
}

.offers-section{
    margin:34px 0;
}

.offers-section h2{
    display:flex;
    align-items:center;
    gap:10px;
}

.offers-section h2:before{
    content:"";
    width:8px;
    height:30px;
    border-radius:99px;
    background:linear-gradient(180deg,var(--blue),var(--green));
}

/* TABLE */

.table-wrap{
    background:var(--card);
    border-radius:24px;
    box-shadow:var(--shadow);
    overflow:hidden;
    border:1px solid rgba(226,232,240,.9);
}

.offer-table{
    width:100%;
    border-collapse:collapse;
}

.offer-table th{
    background:#f8fafc;
    color:#475569;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:.04em;
    text-align:left;
    padding:15px;
    border-bottom:1px solid var(--border);
}

.offer-table td{
    padding:18px 15px;
    border-bottom:1px solid #eef2f7;
    vertical-align:middle;
}

.offer-table tbody tr:hover:not(.details-row){
    background:#f8fbff;
}

.offer-table tr.featured{
    background:linear-gradient(90deg,#fff7ed,#ffffff);
}

.company-cell{
    display:flex;
    align-items:center;
    gap:15px;
}

.company-link{
    text-decoration:none;
    color:inherit;
}

.company-link:hover strong{
    color:var(--blue);
}

.company-link:hover .offer-logo{
    transform:scale(1.04);
}

.offer-logo{
    width:120px;
    max-height:100px;
    object-fit:contain;
    flex:0 0 auto;
    padding:7px;
    background:#fff;
    border:1px solid #eef2f7;
    border-radius:14px;
    transition:.2s;
}

.company-cell strong{
    display:block;
    font-size:17px;
    color:#0f172a;
    font-weight:800;
}

.company-cell small{
    display:block;
    color:var(--muted);
    margin-top:4px;
    font-size:13px;
}

.badge{
    display:inline-flex;
    align-items:center;
    gap:5px;
    background:linear-gradient(135deg,#fb923c,#f97316);
    color:#fff;
    padding:4px 9px;
    border-radius:999px;
    font-size:12px;
    font-weight:800;
    margin-bottom:6px;
    box-shadow:0 6px 16px rgba(249,115,22,.25);
}

.action-buttons{
    display:flex;
    gap:9px;
    flex-wrap:wrap;
}

.details-btn,
.go-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:42px;
    padding:10px 15px;
    border-radius:13px;
    border:0;
    cursor:pointer;
    text-decoration:none;
    font-weight:800;
    font-size:14px;
    transition:.18s;
}

.details-btn{
    background:#eef2f7;
    color:#334155;
}

.details-btn:hover{
    background:#e2e8f0;
    transform:translateY(-1px);
}

.go-btn{
    background:linear-gradient(135deg,#25d4eb,#1d4ed8);
    color:#fff;
    box-shadow:0 10px 20px rgba(37,99,235,.25);
}

.go-btn:hover{
    transform:translateY(-1px);
    box-shadow:0 14px 24px rgba(37,99,235,.32);
}

/* DETAILS */

.details-row{
    display:none;
}

.details-row.open{
    display:table-row;
}

.details-box{
    background:#f8fafc;
    border-radius:18px;
    padding:22px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    border:1px solid #e2e8f0;
}

.details-box h3{
    color:#0f172a;
    margin-bottom:10px;
}

.details-box p{
    margin:0 0 10px;
    color:#475569;
}

.full-details{
    grid-column:1/-1;
}

.doc-link{
    display:block;
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:13px;
    padding:11px 13px;
    margin-bottom:8px;
    text-decoration:none;
    color:var(--blue);
    font-weight:800;
}

.doc-link:hover{
    background:#eff6ff;
    border-color:#bfdbfe;
}

/* FAQ / FOOTER */

.faq-section{
    margin:34px 0;
    background:#fff;
    padding:28px;
    border-radius:24px;
    border:1px solid #e2e8f0;
    box-shadow:var(--shadow);
}

.site-footer{
    margin-top:50px;
    background:#0f172a;
    color:#cbd5e1;
    padding:32px 0;
    font-size:14px;
}

.site-footer p{
    margin:5px 0;
}

/* MOBILE */

@media(max-width:760px){

    .header-inner{
        flex-direction:column;
        align-items:flex-start;
        padding-top:15px;
        padding-bottom:15px;
    }

    .site-header nav{
        width:100%;
        display:grid;
        grid-template-columns:repeat(3,1fr);
    }

    .site-header nav a{
        text-align:center;
        padding:9px 8px;
    }

    .hero{
        margin-top:18px;
        padding:28px 20px;
        border-radius:24px;
    }

    h1{
        font-size:32px;
    }

    h2{
        font-size:25px;
    }

    .hero .seo-content{
        font-size:16px;
    }

    .table-wrap{
        background:transparent;
        box-shadow:none;
        border:0;
        overflow:visible;
    }

    .offer-table,
    .offer-table thead,
    .offer-table tbody,
    .offer-table tr,
    .offer-table th,
    .offer-table td{
        display:block;
        width:100%;
    }

    .offer-table thead{
        display:none;
    }

    .offer-table tr{
        background:#fff;
        margin-bottom:16px;
        border:1px solid #e2e8f0;
        border-radius:22px;
        overflow:hidden;
        box-shadow:0 12px 30px rgba(15,23,42,.08);
    }

    .offer-table tr.featured{
        border-color:#fdba74;
        background:#fffaf0;
    }

    .offer-table td{
        border-bottom:1px solid #eef2f7;
        padding:14px 16px;
    }

    .offer-table td:before{
        content:attr(data-label);
        display:block;
        color:#64748b;
        font-size:12px;
        text-transform:uppercase;
        letter-spacing:.04em;
        font-weight:800;
        margin-bottom:5px;
    }

    .company-cell{
        align-items:flex-start;
    }

    .offer-logo{
        width:140px;
    }

    .action-buttons{
        display:grid;
        grid-template-columns:1fr 1fr;
    }

    .details-row{
        display:none!important;
    }

    .details-row.open{
        display:block!important;
    }

    .details-row td:before{
        display:none;
    }

    .details-box{
        grid-template-columns:1fr;
        border-radius:0;
        border:0;
    }
}

@media(max-width:420px){

    .container{
        padding:0 12px;
    }

    .site-header nav{
        grid-template-columns:1fr;
    }

    .action-buttons{
        grid-template-columns:1fr;
    }

    .details-btn,
    .go-btn{
        width:100%;
    }

    h1{
        font-size:29px;
    }
}

.country-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.country-card{
    display:block;
    text-decoration:none;
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:24px;
    padding:26px;
    box-shadow:0 12px 30px rgba(15,23,42,.07);
    transition:.2s;
}

.country-card:hover{
    transform:translateY(-3px);
    border-color:#bfdbfe;
    box-shadow:0 18px 40px rgba(37,99,235,.13);
}

.country-card span{
    font-size:42px;
    display:block;
    margin-bottom:12px;
}

.country-card strong{
    display:block;
    font-size:22px;
    margin-bottom:5px;
}

.country-card small{
    color:#64748b;
}

.home-offer-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.home-offer-card{
    position:relative;
    display:block;
    text-decoration:none;
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:24px;
    padding:22px;
    box-shadow:0 12px 30px rgba(15,23,42,.07);
    transition:.2s;
}

.home-offer-card:hover{
    transform:translateY(-3px);
    border-color:#bfdbfe;
    box-shadow:0 18px 40px rgba(37,99,235,.13);
}

.home-offer-card img{
    width:110px;
    height:52px;
    object-fit:contain;
    display:block;
    margin-bottom:14px;
}

.home-offer-card strong{
    display:block;
    font-size:18px;
    margin-top:8px;
}

.home-offer-card small{
    color:#64748b;
}

@media(max-width:760px){
    .country-grid,
    .home-offer-grid{
        grid-template-columns:1fr;
    }
}