/* ---------- Base ---------- */
:root {
    --red: #E63946;
    --red-hover: #c9202d;
    --navy: #1e3a5f;
    --navy-2: #0f2545;
    --ink: #2b2b2b;
    --muted: #6b7280;
    --line: #e5e7eb;
    --bg: #ffffff;
    --gray: #f5f6f8;
    --shadow-sm: 0 2px 6px rgba(15, 23, 42, .06);
    --shadow: 0 6px 24px -6px rgba(15, 23, 42, .12);
    --shadow-lg: 0 20px 40px -12px rgba(15, 23, 42, .18);
    --radius: 10px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.6;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', 'Roboto', sans-serif;
    color: var(--navy);
    line-height: 1.15;
    font-weight: 700;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 26px;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .3px;
    cursor: pointer;
    border: none;
    transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn-primary {
    background: var(--red);
    color: #fff;
}
.btn-primary:hover {
    background: var(--red-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 16px -6px rgba(230, 57, 70, .5);
}
.btn-lg { padding: 12px 40px; font-size: 16px; }
.btn-sm { padding: 8px 20px; font-size: 14px; }

/* ---------- Header ---------- */
.header {
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 40;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.logo-mark { width: 44px; height: 44px; }
.logo-text {
    font-family: 'Poppins', sans-serif;
    color: var(--navy);
    font-weight: 500;
    font-size: 13px;
    line-height: 1.05;
    letter-spacing: .3px;
    text-align: left;
}
.logo-text strong {
    font-weight: 700;
    font-size: 15px;
    display: block;
}
.header-right {
    display: flex;
    align-items: center;
    gap: 22px;
}
.lang {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 13px;
    color: var(--navy);
    cursor: pointer;
    background: #fff;
    font-weight: 500;
}
.lang .flag { font-size: 16px; line-height: 1; }
.lang .caret { font-size: 10px; opacity: .55; margin-left: 2px; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 420px;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 90px 0;
    overflow: hidden;
}
.hero-img {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(15, 37, 69, .78) 0%, rgba(15, 37, 69, .55) 50%, rgba(15, 37, 69, .25) 100%),
        url('https://images.unsplash.com/photo-1569949381669-ecf31ae8e613?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    z-index: -1;
}
.hero-inner {
    position: relative;
    max-width: 700px;
}
.hero h1 {
    color: #fff;
    font-size: clamp(38px, 5.5vw, 62px);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 22px;
    letter-spacing: -1px;
}
.hero p {
    color: rgba(255, 255, 255, .92);
    font-size: 15.5px;
    line-height: 1.65;
    max-width: 560px;
    margin-bottom: 28px;
}
.hero .btn { padding: 11px 36px; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 380px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 12px 40px -12px rgba(0, 0, 0, .25);
    padding: 18px 20px;
    z-index: 60;
    font-size: 12.5px;
    line-height: 1.5;
    color: #4b5563;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cookie-banner.hide { display: none; }
.cookie-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.cookie-link {
    color: var(--navy);
    font-weight: 500;
    text-decoration: underline;
    font-size: 13px;
}
.cookie-links {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
}
.cookie-links a { color: var(--navy); }

/* ---------- Sections ---------- */
section { padding: 90px 0; }

.section-head {
    text-align: center;
    margin-bottom: 60px;
}
.eyebrow {
    color: var(--red);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}
.section-head h2 {
    font-size: clamp(30px, 3.5vw, 44px);
    color: var(--navy);
    letter-spacing: -.5px;
}

/* ---------- How it works ---------- */
.how { background: #fff; }
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    max-width: 1080px;
    margin: 0 auto;
}
.step {
    background: #fff;
    border-radius: 14px;
    padding: 40px 30px 32px;
    text-align: center;
    box-shadow: 0 6px 24px -12px rgba(15, 23, 42, .12);
    border: 1px solid #f0f2f5;
    transition: transform .3s ease, box-shadow .3s ease;
}
.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 30px -14px rgba(15, 23, 42, .18);
}
.step-icon {
    width: 70px;
    height: 70px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #fff;
}
.step-icon svg { width: 30px; height: 30px; }
.step-icon i { font-size: 26px; color: #fff; }
.step-num {
    display: block;
    color: var(--red);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 10px;
}
.step h3 {
    color: var(--navy);
    font-size: 20px;
    margin-bottom: 14px;
    font-weight: 700;
    line-height: 1.3;
}
.step p {
    color: #6b7280;
    font-size: 14.5px;
    line-height: 1.6;
}

/* ---------- Why choose us ---------- */
.why { background: #fff; padding-top: 40px; }
.why-inner {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 70px;
    align-items: center;
}
.why-image { position: relative; }
.why-img {
    width: 100%;
    aspect-ratio: 4 / 5;
    max-width: 460px;
    border-radius: 6px;
    background-image: url('https://images.unsplash.com/photo-1531384441138-2736e62e0919?auto=format&fit=crop&w=900&q=80');
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 40px -20px rgba(15, 23, 42, .3);
}
.why-text .eyebrow { margin-bottom: 14px; }
.why-text h2 {
    font-size: clamp(28px, 3.2vw, 40px);
    color: var(--navy);
    margin-bottom: 22px;
    letter-spacing: -.5px;
    line-height: 1.2;
}
.why-text p {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* ---------- FAQ ---------- */
.faq { background: #fff; padding-top: 60px; }
.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq details {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px -8px rgba(15, 23, 42, .12);
    border: 1px solid #f0f2f5;
    overflow: hidden;
    transition: box-shadow .2s ease;
}
.faq details[open] {
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, .18);
}
.faq summary {
    cursor: pointer;
    list-style: none;
    padding: 20px 24px;
    font-weight: 600;
    font-size: 15.5px;
    color: var(--navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: color .2s ease;
}
.faq details[open] summary { color: var(--red); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: '';
    width: 12px;
    height: 12px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform .3s ease;
    flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq-body {
    padding: 0 24px 22px;
    color: #4b5563;
    font-size: 14.5px;
    line-height: 1.7;
    border-top: 1px solid #f0f2f5;
    padding-top: 16px;
}

/* ---------- Disclaimer ---------- */
.disclaimer {
    padding: 60px 0 40px;
    background: #fff;
}
.disclaimer p {
    color: #6b7280;
    font-size: 12.5px;
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 1100px;
}
.disclaimer p:last-child { margin-bottom: 0; }

/* ---------- Footer ---------- */
.footer {
    background: #fff;
    border-top: 1px solid #f0f0f0;
    padding: 50px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 1.3fr 1fr 1.1fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-col h4 {
    color: var(--navy);
    font-size: 18px;
    margin-bottom: 18px;
    font-weight: 700;
    position: relative;
    padding-bottom: 8px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--red);
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col li {
    padding: 3px 0;
}
.footer-col li::before {
    content: '›';
    color: var(--red);
    margin-right: 6px;
}
.footer-col a {
    color: #4b5563;
    font-size: 14px;
    transition: color .18s ease;
}
.footer-col a:hover { color: var(--red); }
.footer-col p {
    color: #4b5563;
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.55;
}
.footer-col p strong { color: var(--red); font-weight: 600; }
.footer-tag {
    color: #6b7280;
    font-size: 13.5px;
    line-height: 1.6;
    margin-top: 16px;
    max-width: 240px;
}
.footer .logo-text { color: var(--navy); }

/* Footer badges column */
.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
}
.badge-box {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 16px;
    width: 100%;
    max-width: 260px;
    display: flex;
    align-items: center;
}
.payment-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 14px 12px;
}
.badge-label {
    font-size: 10px;
    color: #6b7280;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}
.pay-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.pay-icons i {
    font-size: 30px;
    line-height: 1;
}
.pay-maestro {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: #6c6bbd;
    letter-spacing: .5px;
    font-style: italic;
}
.ssl-box {
    gap: 12px;
}
.ssl-lock {
    background: linear-gradient(180deg, #f5f5f5, #d4d4d4);
    color: #16a34a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: inset 0 -2px 4px rgba(0,0,0,.08);
}
.ssl-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.ssl-text strong {
    color: #16a34a;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
}
.ssl-text span { color: #4b5563; font-size: 11px; }

.trustpilot-box {
    gap: 8px;
    background: #fff;
    border-color: #f0f0f0;
}
.tp-star {
    background: #00b67a;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    font-size: 14px;
    border-radius: 3px;
}
.tp-star i { line-height: 1; }
.tp-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #191919;
    font-size: 15px;
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid #f0f0f0;
    padding: 18px 0;
    background: #fff;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.socials { display: flex; gap: 14px; }
.socials a {
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: background .18s ease, color .18s ease;
}
.socials a:hover { background: var(--red); color: #fff; }
.footer-bottom p {
    font-size: 13px;
    color: #6b7280;
}
.footer-bottom strong { color: var(--navy); font-weight: 700; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .why-inner { grid-template-columns: 1fr; }
    .why-image { display: flex; justify-content: center; }
}

@media (max-width: 768px) {
    section { padding: 60px 0; }
    .hero { padding: 60px 0; min-height: 340px; }
    .hero h1 { font-size: 40px; }
    .steps { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
    }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 34px; }
    .header-right { gap: 12px; }
    .lang { padding: 5px 8px; font-size: 12px; }
}
