/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* VARIABLES */
:root {
    --blue-main: #124774;
    --blue-dark: #0b3d68;
    --blue-light: #4d7fa9;
    --text-main: #1a1a1a;
    --text-soft: #555;
    --border: #dcdcdc;
}

/* BASE */
body {
    font-family: Arial, sans-serif;
    color: var(--text-main);
    background: #ffffff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* HEADER */
.header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    height: 75px;
}

.logo {
    margin-right: auto;
}

.logo img {
    height: 70px;
    display: block;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.nav a {
    position: relative;
    padding: 0 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--blue-light);
    text-decoration: none;
    display: inline-block;
    transition: transform 0.25s ease, color 0.25s ease;
    transform-origin: center;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.nav a:hover {
    color: var(--blue-dark);
    transform: scale(1.08);
}
.nav a.active {
    color: var(--blue-dark);
    transform: scale(1.05);
}




.nav a:not(:first-child)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 14px;
    width: 1px;
    background: var(--border);
}

.nav a:hover,
.nav a.active {
    color: var(--blue-dark);
}

/* LANGUAGE DROPDOWN */
.lang-dropdown {
    position: relative;
    margin-left: 20px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.75);
    border: 1px solid #e5e5e5;
    padding: 6px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    backdrop-filter: blur(10px);
    transition: background 0.2s ease;
}

.lang-btn:hover {
    background: rgba(255,255,255,0.95);
}

.lang-btn img,
.lang-menu img {
    width: 18px;
    height: 12px;
    display: block;
}

.lang-menu {
    position: absolute;
    right: 0;
    top: 100%;
    padding-top: 6px;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.25s ease;
}

.lang-menu::before {
    content: "";
    display: block;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    position: absolute;
    inset: 6px 0 0 0;
    z-index: -1;
}

.lang-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    text-decoration: none;
    font-size: 13px;
    color: #333;
    border-radius: 6px;
}

.lang-menu a:hover {
    background: #f3f6f9;
}

.lang-dropdown:hover .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* MAIN */
.main {
    min-height: 70vh;
    padding: 0px 0;
}

/* FOOTER */
.footer {
    background: #f4f6f8;
    margin-top: 80px;
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#dfe6ed 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 0;
    position: relative;
    z-index: 2;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-left {
    max-width: 260px;
}

.footer-logo {
    width: 250px;
    height: auto;
    max-width: 100%;
    display: block;
    margin-bottom: 14px;
}

.footer-left {
    max-width: 300px;
}

.footer-col-last {
    padding-top: 0;
}


.footer-slogan {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.footer-divider {
    width: 1px;
    background: #dcdcdc;
    height: 140px;
}

.footer h4 {
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--blue-dark);
}

.footer a {
    font-size: 13px;
    color: #444;
    text-decoration: none;
}

.footer a:hover {
    color: var(--blue-main);
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding: 25px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    font-size: 13px;
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 12px;
    color: #666;
}

.rights {
    font-size: 12px;
    color: #888;
}

/* REVEAL ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* MOBILE BASIC */
@media (max-width: 900px) {
    .header-inner {
        height: auto;
        padding: 14px 0;
        flex-wrap: wrap;
        gap: 15px;
    }

    .logo img {
        height: 56px;
    }

    .nav {
        width: 100%;
        order: 3;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 6px;
    }

    .nav a {
        padding: 0 12px;
    }

    .footer-inner {
        flex-direction: column;
    }

    .footer-divider {
        width: 100%;
        height: 1px;
    }
}
.footer-trust {
    margin-top: 14px;
    display: inline-flex; /* BITNO */
    align-items: center;
    gap: 10px;

    padding: 10px 14px;
    border-radius: 16px;

    background: #f1f3f6;
    border: 1px solid #dcdcdc;

    box-shadow: 0 4px 12px rgba(0,0,0,0.05);

    text-decoration: none;
    transition: all 0.25s ease;
}

.footer-trust:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.footer-trust-img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    flex: 0 0 auto;
}

.footer-trust-content {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-trust-line {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-stars {
    color: #ffd34d;
    font-size: 17px;
    letter-spacing: 2px;
}

.footer-score {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.footer-trust-sub {
    color: rgba(255,255,255,0.84);
    font-size: 12px;
}

@media (max-width: 900px) {
    .footer-trust {
        max-width: 100%;
    }
}
.footer-score {
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 600;
}

.footer-trust-sub {
    color: #666;
    font-size: 12px;
}
.footer-stars {
    color: #f5b400; /* gold */
    font-size: 14px;
    letter-spacing: 2px;
}

.footer-efib {
    margin-top: 14px;
    display: inline-block;
}

.footer-efib img {
    width: 150px;
    height: auto; /* bitno da ne deformiše */
    transition: transform 0.25s ease;
}

.footer-efib:hover img {
    transform: scale(1.05);
}
/* HOME HERO */
.home-hero {
    height: 450px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    margin-top: 0;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5,22,43,.78), rgba(18,71,116,.45), rgba(255,255,255,.05));
}

.home-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: px;
}

.eyebrow,
.section-kicker {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--blue-light);
    font-weight: 600;
    margin-bottom: 14px;
}

.eyebrow {
    color: #d9ecff;
}

.home-hero h1 {
    font-size: 48px;
    line-height: 1.08;
    font-weight: 600;
    margin-bottom: 18px;
}

.hero-lead {
    font-size: 18px;
    line-height: 1.7;
    max-width: 720px;
    color: rgba(255,255,255,.92);
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 28px;
}

.btn-main,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    transition: all .25s ease;
}

.btn-main {
    background: var(--blue-main);
    color: #fff;
}

.btn-main:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
}

.btn-ghost {
    border: 1px solid rgba(255,255,255,.65);
    color: #fff;
    background: rgba(255,255,255,.08);
}

.btn-ghost:hover {
    background: rgba(255,255,255,.18);
    transform: translateY(-2px);
}

/* SECTIONS */
.section {
    padding: 80px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.3fr;
    gap: 70px;
    align-items: start;
}

.intro-grid h2,
.section-head h2,
.home-banner h2,
.final-cta h2 {
    font-size: 34px;
    line-height: 1.2;
    color: var(--blue-dark);
    font-weight: 500;
}

.intro-grid p,
.section-head p,
.client-item p,
.cap-card p,
.home-banner p,
.final-cta p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 14px;
}

.section-head {
    max-width: 760px;
    margin-bottom: 34px;
}

/* CAPABILITIES */
.capabilities-section {
    background: #f7f9fb;
}

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

.cap-card {
    background: #fff;
    border: 1px solid #e2e7ec;
    padding: 30px;
    border-radius: 18px;
    transition: all .25s ease;
}

.cap-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(11,61,104,.1);
}

.cap-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: #eef5fa;
    color: var(--blue-main);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.cap-icon svg {
    width: 25px;
    height: 25px;
}

.cap-card h3,
.client-item h3 {
    color: var(--blue-dark);
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 12px;
}

/* BANNER */
.home-banner {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-main));
    padding: 70px 0;
    color: #fff;
}

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

.home-banner h2 {
    color: #fff;
}

.home-banner p {
    color: rgba(255,255,255,.85);
    font-size: 16px;
    line-height: 1.8;
}

.section-kicker.light {
    color: #b9d8f0;
}

/* CLIENTS */
.client-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #dce3ea;
    border-bottom: 1px solid #dce3ea;
}

.client-item {
    padding: 32px;
    border-right: 1px solid #dce3ea;
}

.client-item:last-child {
    border-right: none;
}

/* CTA */
.final-cta {
    padding-top: 20px;
}

.final-cta-box {
    background: #f4f6f8;
    border: 1px solid #dfe6ed;
    border-radius: 22px;
    padding: 45px;
    text-align: center;
}

.final-cta-box p {
    max-width: 680px;
    margin: 14px auto 24px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .home-hero {
        height: auto;
        min-height: 520px;
        padding: 80px 0;
    }

    .home-hero h1 {
        font-size: 36px;
    }

    .intro-grid,
    .banner-inner,
    .capability-grid,
    .client-grid {
        grid-template-columns: 1fr;
    }

    .client-item {
        border-right: none;
        border-bottom: 1px solid #dce3ea;
    }

    .client-item:last-child {
        border-bottom: none;
    }
}
/* INNER HERO */
.inner-hero {
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.inner-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5,22,43,.8), rgba(18,71,116,.4));
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 700px;
}

.inner-hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.inner-hero p {
    font-size: 16px;
    opacity: 0.9;
}
.about-intro-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: stretch;
}

.about-intro-image {
    min-height: 420px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #dfe6ed;
    box-shadow: 0 18px 45px rgba(11,61,104,.10);
}

.about-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-intro-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-intro-text h2 {
    font-size: 36px;
    line-height: 1.18;
    color: var(--blue-dark);
    font-weight: 500;
    margin-bottom: 22px;
}

.about-intro-text p {
    font-size: 16px;
    line-height: 1.85;
    color: #555;
    margin-bottom: 16px;
}

@media (max-width: 900px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
    }

    .about-intro-image {
        min-height: 300px;
    }
}
.hero-eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.95);
}

.hero-text {
    font-size: 15px;
    line-height: 1.8;
    max-width: 720px;
    color: rgba(255,255,255,0.85);
}
.services-process {
    background: #ffffff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #dce3ea;
    border-bottom: 1px solid #dce3ea;
}

.process-item {
    padding: 34px;
    border-right: 1px solid #dce3ea;
}

.process-item:last-child {
    border-right: none;
}

.process-item span {
    display: block;
    font-size: 13px;
    color: var(--blue-light);
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.process-item h3 {
    font-size: 20px;
    color: var(--blue-dark);
    font-weight: 500;
    margin-bottom: 12px;
}

.process-item p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

@media (max-width: 900px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-item {
        border-right: none;
        border-bottom: 1px solid #dce3ea;
    }

    .process-item:last-child {
        border-bottom: none;
    }
}
.partner-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: stretch;
}

.partner-intro-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.partner-intro-text h2 {
    font-size: 36px;
    line-height: 1.18;
    color: var(--blue-dark);
    font-weight: 500;
    margin-bottom: 22px;
}

.partner-intro-text p {
    font-size: 16px;
    line-height: 1.85;
    color: #555;
    margin-bottom: 16px;
}

.partner-intro-image {
    min-height: 100%;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #dfe6ed;
    box-shadow: 0 18px 45px rgba(11,61,104,.10);
}

.partner-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.partner-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: stretch;
}

.partner-intro-image {
    min-height: 100%;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #dfe6ed;
    box-shadow: 0 18px 45px rgba(11,61,104,.10);
}

@media (max-width: 900px) {
    .partner-intro-grid {
        grid-template-columns: 1fr;
    }

    .partner-intro-image {
        min-height: 300px;
    }
}

/* FAQ piano accordion */
.faq-section {
    background: #ffffff;
}

.faq-accordion {
    border-top: 1px solid #dce3ea;
    border-bottom: 1px solid #dce3ea;
}

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

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

.faq-question {
    width: 100%;
    border: none;
    background: #f7f9fb;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    cursor: pointer;
    text-align: left;
    color: var(--blue-dark);
}

.faq-item:nth-child(even) .faq-question {
    background: #eef3f7;
}

.faq-question span {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
}

.faq-question strong {
    width: 30px;
    height: 30px;
    border: 1px solid #cdd8e2;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-main);
    font-size: 20px;
    font-weight: 400;
    flex: 0 0 auto;
    transition: transform .25s ease, background .25s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #ffffff;
    transition: max-height .45s ease;
}

.faq-answer p {
    padding: 0 28px 26px;
    font-size: 15px;
    line-height: 1.85;
    color: #555;
    max-width: 900px;
}

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

.faq-item.active .faq-question strong {
    transform: rotate(45deg);
    background: #eef5fa;
}
/* TRANSFER STATS */
.transfer-stats {
    background: #ffffff;
    padding-top: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #dce3ea;
    border-bottom: 1px solid #dce3ea;
}

.stat-box {
    padding: 34px 24px;
    border-right: 1px solid #dce3ea;
    text-align: center;
}

.stat-box:last-child {
    border-right: none;
}

.stat-box span.counter {
    font-size: 44px;
    line-height: 1;
    color: var(--blue-dark);
    font-weight: 500;
}

.stat-box small {
    font-size: 26px;
    color: var(--blue-light);
    font-weight: 500;
}

.stat-box p {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-box:nth-child(2) {
        border-right: none;
    }

    .stat-box {
        border-bottom: 1px solid #dce3ea;
    }

    .stat-box:nth-child(3),
    .stat-box:nth-child(4) {
        border-bottom: none;
    }
}
/* TRANSFERS INTRO */
.transfers-intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: stretch;
}

.transfers-intro-image {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #dfe6ed;
    box-shadow: 0 18px 45px rgba(11,61,104,.10);
}

.transfers-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.transfers-intro-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.transfers-intro-text h2 {
    font-size: 36px;
    line-height: 1.2;
    color: var(--blue-dark);
    margin-bottom: 20px;
}

.transfers-intro-text p {
    font-size: 16px;
    line-height: 1.85;
    color: #555;
    margin-bottom: 16px;
}

/* MOBILE */
@media (max-width: 900px) {
    .transfers-intro-grid {
        grid-template-columns: 1fr;
    }

    .transfers-intro-image {
        height: 280px;
    }
}
.transfers-intro-image {
    min-height: 100%;
}
/* CORPORATE INTRO */
.corporate-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: stretch;
}

.corporate-intro-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.corporate-intro-text h2 {
    font-size: 36px;
    line-height: 1.2;
    color: var(--blue-dark);
    margin-bottom: 20px;
}

.corporate-intro-text p {
    font-size: 16px;
    line-height: 1.85;
    color: #555;
    margin-bottom: 16px;
}

.corporate-intro-image {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #dfe6ed;
    box-shadow: 0 18px 45px rgba(11,61,104,.10);
}

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

/* MOBILE */
@media (max-width: 900px) {
    .corporate-intro-grid {
        grid-template-columns: 1fr;
    }

    .corporate-intro-image {
        height: 280px;
    }
}
.corporate-intro-image img {
    transition: transform .5s ease;
}

.corporate-intro-image:hover img {
    transform: scale(1.04);
}
/* PRIVATE INTRO */
.private-intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: stretch;
}

.private-intro-image {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #dfe6ed;
    box-shadow: 0 18px 45px rgba(11,61,104,.10);
}

.private-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.private-intro-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.private-intro-text h2 {
    font-size: 36px;
    line-height: 1.2;
    color: var(--blue-dark);
    margin-bottom: 20px;
}

.private-intro-text p {
    font-size: 16px;
    line-height: 1.85;
    color: #555;
    margin-bottom: 16px;
}

@media (max-width: 900px) {
    .private-intro-grid {
        grid-template-columns: 1fr;
    }

    .private-intro-image {
        height: 280px;
    }
}
/* RESOURCES INTRO */
.resources-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: stretch;
}

.resources-intro-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.resources-intro-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--blue-dark);
}

.resources-intro-text p {
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 16px;
    color: #555;
}

.resources-intro-image {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #dfe6ed;
    box-shadow: 0 18px 45px rgba(11,61,104,.10);
}

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

@media (max-width: 900px) {
    .resources-intro-grid {
        grid-template-columns: 1fr;
    }
}
.home-banner p {
    font-size: 17px;
    line-height: 1.9;
    max-width: 700px;
}
.banner-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.banner-text-grid p {
    font-size: 16.5px;
    line-height: 1.9;
    color: rgba(255,255,255,.9);
}

/* MOBILE */
@media (max-width: 900px) {
    .banner-text-grid {
        grid-template-columns: 1fr;
    }
}
.banner-text-grid {
    position: relative;
}

.banner-text-grid::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: rgba(255,255,255,.2);
}
.banner-actions {
    margin-top: 28px;
}

/* BROCHURE BUTTON */
.btn-brochure {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 22px;
    border-radius: 10px;

    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.35);

    color: #fff;
    text-decoration: none;
    font-size: 14px;

    backdrop-filter: blur(6px);

    transition: all .25s ease;
}

.btn-brochure svg {
    width: 18px;
    height: 18px;
}

.btn-brochure:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}
/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    font-size: 36px;
    line-height: 1.2;
    color: var(--blue-dark);
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.85;
    color: #555;
    margin-bottom: 22px;
}

.contact-card {
    background: #f4f6f8;
    border: 1px solid #dfe6ed;
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 24px;
}

.contact-card strong {
    display: block;
    color: var(--blue-dark);
    font-size: 20px;
    margin-bottom: 8px;
}

.contact-card span {
    display: block;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

.contact-card a {
    color: var(--blue-main);
    text-decoration: none;
    font-weight: 600;
}

.contact-small-image {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #dfe6ed;
    height: 210px;
}

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

.contact-form-box {
    background: #ffffff;
    border: 1px solid #dfe6ed;
    border-radius: 22px;
    padding: 38px;
    box-shadow: 0 18px 45px rgba(11,61,104,.10);
}

.contact-form-box h3 {
    color: var(--blue-dark);
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-form-box p {
    color: #555;
    line-height: 1.75;
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #dce3ea;
    border-radius: 10px;
    padding: 14px 15px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--blue-main);
}

.form-alert {
    padding: 13px 15px;
    border-radius: 10px;
    margin-bottom: 18px;
    font-size: 14px;
}

.form-alert.success {
    background: #eef8f1;
    color: #276738;
    border: 1px solid #cfe8d5;
}

.form-alert.error {
    background: #fff1f1;
    color: #9a2d2d;
    border: 1px solid #f0cccc;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
/* HOME INTRO IMAGE + TEXT */
.home-intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: stretch;
}

.home-intro-image {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #dfe6ed;
    box-shadow: 0 18px 45px rgba(11,61,104,.10);
}

.home-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-intro-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-intro-text h2 {
    font-size: 36px;
    line-height: 1.2;
    color: var(--blue-dark);
    margin-bottom: 20px;
}

.home-intro-text p {
    font-size: 16px;
    line-height: 1.85;
    color: #555;
    margin-bottom: 16px;
}

/* MOBILE */
@media (max-width: 900px) {
    .home-intro-grid {
        grid-template-columns: 1fr;
    }

    .home-intro-image {
        height: 280px;
    }
}
/* LEGAL PAGES */
.legal-hero {
    height: 210px;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-main));
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.legal-hero-lines {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, transparent 0%, transparent 48%, rgba(255,255,255,.12) 49%, transparent 50%),
        linear-gradient(150deg, transparent 0%, transparent 55%, rgba(255,255,255,.08) 56%, transparent 57%);
    background-size: 180px 180px, 260px 260px;
    opacity: .8;
}

.legal-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.legal-hero h1 {
    font-size: 38px;
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 10px;
}

.legal-hero p {
    max-width: 720px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,.86);
}

.legal-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 70px;
    align-items: start;
}

.legal-sidebar {
    position: sticky;
    top: 105px;
    background: #f4f6f8;
    border: 1px solid #dfe6ed;
    border-radius: 18px;
    overflow: hidden;
}

.legal-sidebar h4 {
    padding: 18px 20px;
    color: var(--blue-dark);
    border-bottom: 1px solid #dfe6ed;
}

.legal-sidebar a {
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid #dfe6ed;
    text-decoration: none;
    color: #555;
    font-size: 14px;
    transition: all .25s ease;
}

.legal-sidebar a:last-child {
    border-bottom: none;
}

.legal-sidebar a:hover,
.legal-sidebar a.active {
    background: #ffffff;
    color: var(--blue-dark);
    padding-left: 26px;
}

.legal-content {
    max-width: 850px;
}

.legal-content h2 {
    font-size: 34px;
    color: var(--blue-dark);
    margin-bottom: 22px;
    font-weight: 500;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 18px;
}

.legal-info-box {
    background: #f7f9fb;
    border: 1px solid #dfe6ed;
    border-radius: 18px;
    padding: 28px;
    margin: 28px 0;
}

.legal-info-box p {
    margin-bottom: 12px;
}

.legal-banner {
    padding: 70px 0;
    background: #f4f6f8;
}

.legal-banner-inner {
    border-left: 4px solid var(--blue-main);
    padding-left: 34px;
}

.legal-banner h2 {
    color: var(--blue-dark);
    font-size: 30px;
    margin-bottom: 12px;
    font-weight: 500;
}

.legal-banner p {
    max-width: 780px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 22px;
}

@media (max-width: 900px) {
    .legal-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .legal-sidebar {
        position: relative;
        top: auto;
    }

    .legal-hero h1 {
        font-size: 32px;
    }
}
/* COOKIE POPUP */
.cookie-box {
    position: fixed;
    bottom: 25px;
    left: 25px;
    max-width: 360px;

    background: #ffffff;
    border: 1px solid #dfe6ed;
    border-radius: 18px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.12);

    padding: 20px 22px;

    display: flex;
    gap: 14px;

    z-index: 9999;

    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: all .4s ease;
}

.cookie-box.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-icon {
    font-size: 26px;
    flex: 0 0 auto;
}

.cookie-content p {
    font-size: 13px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 12px;
}

.cookie-btn {
    background: var(--blue-main);
    color: #fff;
    border: none;
    padding: 10px 16px;
    font-size: 13px;
    border-radius: 8px;
    cursor: pointer;
    transition: all .25s ease;
}

.cookie-btn:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
}
/* PRO COOKIE CONSENT */
.cookie-consent {
    position: fixed;
    left: 26px;
    bottom: 26px;
    width: min(440px, calc(100% - 52px));
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(14px);
    border: 1px solid #dfe6ed;
    border-radius: 22px;
    box-shadow: 0 22px 55px rgba(11,61,104,.18);
    padding: 20px;
    display: flex;
    gap: 15px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: all .35s ease;
}

.cookie-consent.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-consent-icon {
    width: 44px;
    height: 44px;
    background: #eef5fa;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex: 0 0 auto;
}

.cookie-consent h4 {
    color: var(--blue-dark);
    font-size: 17px;
    margin-bottom: 8px;
}

.cookie-consent p,
.cookie-modal p {
    color: #555;
    font-size: 13px;
    line-height: 1.65;
}

.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 14px;
}

.cookie-btn {
    border: none;
    border-radius: 9px;
    padding: 10px 14px;
    font-size: 13px;
    cursor: pointer;
    transition: all .25s ease;
}

.cookie-btn.primary {
    background: var(--blue-main);
    color: #fff;
}

.cookie-btn.secondary {
    background: #eef3f7;
    color: var(--blue-dark);
}

.cookie-btn.link {
    background: transparent;
    color: var(--blue-main);
    padding-left: 4px;
}

.cookie-btn:hover {
    transform: translateY(-1px);
}

.cookie-policy-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 12px;
    color: var(--blue-main);
    text-decoration: none;
}

/* MODAL */
.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(5,22,43,.38);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.cookie-modal.active {
    display: flex;
}

.cookie-modal-box {
    width: min(620px, 100%);
    background: #fff;
    border-radius: 24px;
    border: 1px solid #dfe6ed;
    box-shadow: 0 25px 70px rgba(0,0,0,.22);
    padding: 34px;
    position: relative;
}

.cookie-modal-close {
    position: absolute;
    right: 18px;
    top: 14px;
    border: none;
    background: transparent;
    font-size: 30px;
    color: #667;
    cursor: pointer;
}

.cookie-modal h3 {
    color: var(--blue-dark);
    font-size: 28px;
    margin-bottom: 10px;
}

.cookie-option {
    margin-top: 18px;
    padding: 18px;
    border: 1px solid #dfe6ed;
    border-radius: 16px;
    background: #f7f9fb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-option strong {
    display: block;
    color: var(--blue-dark);
    margin-bottom: 6px;
}

.cookie-option span {
    display: block;
    color: #555;
    font-size: 13px;
    line-height: 1.55;
}

.cookie-option input {
    width: 20px;
    height: 20px;
}

.cookie-pill {
    background: #e6eef5;
    color: var(--blue-main) !important;
    padding: 7px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

.cookie-modal-actions {
    margin-top: 24px;
    text-align: right;
}

@media (max-width: 600px) {
    .cookie-consent {
        left: 14px;
        bottom: 14px;
        width: calc(100% - 28px);
    }

    .cookie-modal-box {
        padding: 26px 20px;
    }

    .cookie-option {
        align-items: flex-start;
        flex-direction: column;
    }
}
/* CTA BADGE */
.cta-badge {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 1.6px;
    text-transform: uppercase;

    color: var(--blue-main);
    background: #eef5fa;

    padding: 6px 10px;
    border-radius: 999px;

    margin-bottom: 14px;

    border: 1px solid #dce6f0;
}
