* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --main: #071C34;
    --main-2: #0B2244;
    --light: #F5F7FA;
    --white: #FFFFFF;
    --dark: #C7A25A;
    --shadow: rgba(199, 162, 90, 0.35);
    --header-border: rgba(255, 255, 255, 0.12);
}

body {
    font-family: "Inter";
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    background: #FFFFFF;
}

img {
    width: 100%;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
}

/* ================================
   AP MØLLER CAPITAL HEADER
================================ */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    background: rgba(7, 28, 52, 0.92);
    border-bottom: 1px solid var(--header-border);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.header-inner {
    min-height: 78px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.site-logo img {
    width: 118px;
    height: auto;
    display: block;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    flex: 1;
}

.site-nav a {
    position: relative;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--dark);
    border-radius: 10px;
    transition: width 0.25s ease;
}

.site-nav a:hover {
    color: var(--white);
}

.site-nav a:hover::after {
    width: 100%;
}

.language-switch {
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 8px;
    background: var(--white);
    color: var(--main);
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.language-switch:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-1px);
}


@media(max-width: 959px) {
    .site-header {
        background: rgba(7, 28, 52, 0.96);
    }

    .header-inner {
        min-height: 72px;
        flex-wrap: wrap;
        gap: 12px 16px;
        padding: 12px 16px;
    }

    .site-logo img {
        width: 104px;
    }

    .site-nav {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        gap: 22px;
        overflow-x: auto;
        padding: 4px 0 2px;
        scrollbar-width: none;
    }

    .site-nav::-webkit-scrollbar {
        display: none;
    }

    .site-nav a {
        font-size: 14px;
    }

    .language-switch {
        margin-left: auto;
    }
}

@media(min-width: 960px) and (max-width: 1180px) {
    .site-nav {
        gap: 20px;
    }

    .site-nav a {
        font-size: 14px;
    }
}


h2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 207px;
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    line-height: 28px;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 14px;
    gap: 6px;
}

h2 img {
    width: 10px;
}

.hero {
    background: url(../img/intro-bg.png) right/cover no-repeat;

    height: 100vh;
}

.hero .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 120px 16px 42px;
}

.hero .content {
    display: flex;
    flex-direction: column;
    gap: 41px;
}

.hero .content h1 {}

.hero h1 {
    color: #FFFFFF;
    font-weight: 700;
    font-style: Bold;
    font-size: 32px;
    line-height: 40px;
    background-color: #000e3367;
    border-radius: 16px;
    padding: 32px;
}

.main-btn {
    cursor: pointer;
    background: var(--dark);
    border-radius: 16px;
    padding: 8px;
    margin: 0 auto;
    width: 100%;
    max-width: 361px;
    font-family: "Raleway";
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    line-height: 32px;
    color: #FFFFFF;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px var(--shadow);
}

.main-btn:hover {
    background: #fff;
    color: var(--main);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px var(--shadow);
    border: 1px solid var(--main);
}

.main-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px var(--shadow);
}

@media(min-width:960px) {
    body {
        font-size: 18px;
    }

    h2 {
        gap: 13px;
        max-width: unset;
        font-size: 38px;
        line-height: 44px;
        margin-bottom: 32px;
        color: var(--dark);
    }

    h2 img {
        width: 10px;
    }


    .hero .container {
        padding: 120px 0px 170px;
    }

    .hero .content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: unset;
    }

    .hero h1 {
        font-size: 56px;
        line-height: 64px;
        max-width: 700px;
    }

    .main-btn {
        border-radius: 28px;
        padding: 20px;
        font-size: 24px;
    }
}

.about .container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 64px 16px 0px;
}

@media(min-width:960px) {
    .about .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 24px;
        padding: 128px 0px 0px 16px;
    }

    .about-text,
    .about-img {
        width: 48%;
    }

}

.platform .container {
    display: flex;
    flex-direction: column;
    padding: 64px 16px 64px;
}

.platform-content {
    display: flex;
    flex-direction: column-reverse;
    gap: 64px;
}

.platform-description {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.platform-items {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 0 16px;
}

.platform-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
}

.platform-item.reverse {
    flex-direction: row-reverse;
}

.platform-item img {
    height: 72px;
    width: auto;
    margin: 0 auto;
}

.platform-item h3 {
    font-family: "Raleway";
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 10px;
}

@media(min-width:960px) {
    .platform .container {
        padding: 128px 0px 0px;
    }

    .platform-content {
        flex-direction: column;
        gap: 52px;
    }

    .platform-description {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
    }

    .platform-description img {
        width: 50%;
    }

    .platform-description-text {
        width: 65%;
    }

    .platform-items {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 19px;
    }

    .platform-item {
        flex-direction: column;
        gap: 24px;
        width: 24%;
    }

    .platform-item.reverse {
        flex-direction: column;
    }

    .platform-item h3 {
        font-size: 20px;
        margin-bottom: 16px;
    }
}

.cta {
    display: none;
}

.cta .main-btn {
    background: var(--main);
}

.cta .main-btn:hover {
    background: var(--dark);
    color: #fff;
    border: 1px solid var(--dark);
}

.footer {
    background: #051763;
}

.footer .container {
    padding: 62px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.footer img {
    width: 200px;
    margin-bottom: 26px;
}

.footer p {
    font-size: 12px;
    line-height: 18px;
    text-align: center;

}

@media(min-width:960px) {
    .cta {
        display: block;
    }

    .cta .container {
        padding: 132px 0px 134px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer .container {
        padding: 45px 0px;
    }

    .footer img {
        width: 250px;
    }

    .footer p {
        font-size: 16px;
        line-height: 26px;

    }
}

.modals {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    padding: 35px 16px 28px;
    height: 100%;
    min-height: 100vh;
    overflow-y: scroll;
}

.modals .logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modals .logo img {
    width: 86px;
}

.quiz-start,
.actual-country,
.live-country,
.legal,
.loading,
.result,
.final {
    display: none;
    width: 100%;
    max-width: 420px;
    margin: auto;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.quiz-card {
    margin-top: 65px;
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    text-align: center;
}

.quiz-card-inner {
    border: 1px solid var(--shadow);
    padding: 32px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 4px;
    min-height: 70vh;
}

.quiz-card h2 {
    display: block;
    max-width: unset;
    font-family: "Raleway";
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    margin-bottom: 16px;
    text-transform: unset;
    color: var(--main);
}

.quiz-card p {
    font-family: "Raleway";
    margin-bottom: 32px;
}

.quiz-card .inputs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 52px;
}

.quiz-card .input {
    width: 100%;
    padding: 11px 24px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #000;
    font-family: "Lato";
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
}

.quiz-card .input::placeholder {
    color: #969696;
}

/*.error {
    color: #ff4d4f;
    font-size: 12px;
    margin-top: 4px;
    text-align: left;
}

.input-error {
    border: 1px solid #ff4d4f !important;
}*/

.countries {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 13px;
    max-width: 360px;
    margin: 0 auto;
}

.countries .countries-col,
.answers-mobile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 50%;
}

.answers-mobile {
    width: 100%;
}

.countries label,
.answers-mobile label {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    white-space: nowrap;
}

.input[type="radio"] {
    appearance: none;
    accent-color: var(--dark);
    -webkit-appearance: radio;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 50%;
    position: relative;
    padding: 0 !important;
}

.input[type="radio"]:checked {
    border-color: var(--main);
}

.input[type="radio"]:checked::after {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--dark);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}













.step-error {
    margin-top: 12px;
    color: #d93025;
    font-size: 14px;
    text-align: center;
}

.quiz-progress {
    margin: 20px 0 10px;
    text-align: center;
}

.quiz-progress-text {
    font-size: 14px;
    color: #444;
    margin-bottom: 8px;
}

.quiz-progress-bar {
    width: 100%;
    max-width: 260px;
    height: 6px;
    background: #ddd;
    border-radius: 10px;
    margin: 0 auto 16px;
    overflow: hidden;
}

.quiz-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--dark);
    border-radius: 10px;
    transition: width 0.4s ease;
}

.answers-desktop {
    display: none;
}

.option {
    background: #eee;
    border-radius: 10px;
    padding: 14px;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}

.option.active {
    background: var(--shadow);
    color: #fff;
}

.step-error {
    margin-top: 10px;
    color: #d93025;
    font-size: 14px;
    text-align: center;
}

.analize-elements {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.analize-elements .element p {
    margin-bottom: 0;
}

.analize-elements .element {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: #f3f3f3;
    padding: 10px 12px;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(10px);
    font-family: "Lato";
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;

}

.analize-elements .element img {
    width: 15px;
}

.analize-elements .element.show {
    opacity: 1;
    transform: translateY(0);
    transition: 0.3s;
}

.analize-elements img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

@media(min-width:960px) {
    .modals {
        padding: 35px 0px 28px;
    }

    .modals .logo img {
        width: 115px;
    }

    .quiz-start,
    .actual-country,
    .live-country,
    .legal,
    .loading,
    .result,
    .final {
        max-width: unset;

    }

    .quiz-card {
        margin: 127px auto 0px;
        width: 100%;
        max-width: 720px;
    }

    .quiz-card-inner {
        padding: 48px 32px;
        min-height: 60vh;
    }

    .quiz-card h2 {
        font-size: 32px;
        line-height: 40px;
        text-align: center;
        margin-bottom: 40px;
    }

    .quiz-card p {
        margin-bottom: 40px;
    }

    .quiz-card .inputs {
        margin: 0 auto;
        align-items: center;
        max-width: 273px;
        width: 100%;
    }

    .quiz-card .input {
        padding: 14px 24px;
    }

    .answers-mobile {
        display: none;
    }

    .answers-desktop {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

}

.phone-alert p {
    display: none !important;
}

.iti__selected-flag {
    border-radius: 16px 0 0 16px !important;
}

.iti__country-list {
    min-width: 300px !important;
}

body.modal-open {
    overflow: hidden;
}

.main.blurred {
    filter: blur(6px);
    pointer-events: none;
    user-select: none;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    display: none;
}

/* ================================
   AP MØLLER CAPITAL HERO
================================ */
.hero {
    position: relative;
    min-height: 100vh;
    height: auto;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(7, 28, 52, 0.40) 0%, rgba(7, 28, 52, 0.47) 42%, rgba(7, 28, 52, 0.12) 100%),
        linear-gradient(180deg, rgba(7, 28, 52, 0.25) 0%, rgba(7, 28, 52, 0.48) 100%),
        url(../img/intro-bg.png) center/cover no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 88% 74%, rgba(199, 162, 90, 0.45), transparent 32%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    height: auto !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: center;
    gap: 76px;
    padding: 132px 16px 72px !important;
}

.hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0 !important;
    max-width: 720px;
}

.hero h1 {
    max-width: 720px !important;
    margin: 0 0 32px;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--white);
    font-family: "Inter", sans-serif;
    font-size: clamp(34px, 3.15vw, 48px) !important;
    line-height: 1.14 !important;
    font-weight: 600;
    text-shadow: 0 5px 26px rgba(0, 0, 0, 0.45);
}

.hero-subtitle {
    max-width: 560px;
    margin: 0 0 66px;
    color: rgba(255, 255, 255, 0.94);
    font-family: "Inter", sans-serif;
    font-size: 20px;
    line-height: 1.55;
    font-weight: 500;
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.42);
}

.hero-benefits {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, max-content);
    align-items: center;
    gap: 44px;
}

.hero-benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
}

.hero-benefit-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
}

.hero-benefit-icon svg,
.secure-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-form {
    width: 100%;
    max-width: 380px;
    padding: 30px 28px 28px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(18, 24, 31, 0.74), rgba(14, 14, 14, 0.58));
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.hero-form h2 {
    display: block;
    max-width: none;
    margin: 0 0 24px;
    color: var(--white);
    font-family: "Inter", sans-serif;
    font-size: 22px;
    line-height: 1.34;
    font-weight: 800;
    text-align: center;
    text-transform: none;
    letter-spacing: -0.015em;
}

.hero-form-fields {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 16px;
}

.hero-form input {
    width: 100%;
    height: 54px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 500;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.hero-form input::placeholder {
    color: rgba(255, 255, 255, 0.54);
}

.hero-form input:focus {
    border-color: rgba(199, 162, 90, 0.75);
    background: rgba(255, 255, 255, 0.20);
    box-shadow: 0 0 0 3px rgba(199, 162, 90, 0.14);
}

.gold-btn {
    width: 100%;
    min-height: 64px;
    padding: 14px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    background: linear-gradient(180deg, #DAB866 0%, #C7A25A 100%);
    box-shadow: 0 14px 30px rgba(199, 162, 90, 0.27), inset 0 1px 0 rgba(255, 255, 255, 0.22);
    color: var(--white);
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 900;
    text-transform: uppercase;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.gold-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow: 0 18px 38px rgba(199, 162, 90, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.gold-btn:active {
    transform: translateY(0);
}

.hero-form-secure {
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.74);
}

.secure-icon {
    width: 31px;
    height: 31px;
    display: inline-flex;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.82);
}

.hero-form-secure p {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 500;
}

@media (max-width: 959px) {
    .hero {
        background:
            linear-gradient(180deg, rgba(7, 28, 52, 0.46) 0%, rgba(7, 28, 52, 0.42) 46%, rgba(7, 28, 52, 0.48) 100%),
            url(../img/intro-bg.png) center/cover no-repeat;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 164px 16px 46px !important;
    }

    .hero h1 {
        margin-bottom: 22px;
        font-size: clamp(34px, 5vw, 46px) !important;
        line-height: 1.12 !important;
    }

    .hero-subtitle {
        margin-bottom: 34px;
        font-size: 17px;
        line-height: 1.5;
    }

    .hero-subtitle br {
        display: none;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .hero-benefit {
        font-size: 15px;
    }

    .hero-benefit-icon {
        width: 44px;
        height: 44px;
    }

    .hero-form {
        max-width: 100%;
        padding: 26px 18px 24px;
    }
}

@media (min-width: 960px) and (max-width: 1180px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr) 350px;
        gap: 44px;
    }

    .hero-benefits {
        gap: 24px;
    }

    .hero-benefit {
        font-size: 14px;
    }
}

.form-secure {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    line-height: 1.45;
}

.form-secure-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C7A25A;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.form-secure-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.form-secure p {
    margin: 0;
}

/* HERO TITLE SIZE FIX */
@media (min-width: 960px) {
    .hero h1 {
        max-width: 720px !important;
        width: 100%;
        font-size: clamp(38px, 3.15vw, 48px) !important;
        line-height: 1.14 !important;
        letter-spacing: 0.8px;
    }
}

@media (max-width: 959px) {
    .hero h1 {
        font-size: clamp(30px, 9vw, 38px) !important;
        line-height: 1.15 !important;
    }
}

/* ================================
   CAPITAL PROTECTION SECTION
================================ */
.capital-protection {
    background: #ffffff;
    padding: 90px 0 96px;
}

.section-title.center {
    max-width: none;
    justify-content: center;
    text-align: center;
    margin: 0 auto 52px;
    color: #0B1528;
    font-family: "Inter", sans-serif;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 800;
    text-transform: none;
}

.capital-protection-layout {
    display: grid;
    grid-template-columns: 1fr 360px 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 44px;
    row-gap: 26px;
    align-items: center;
}

.protection-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 345px;
}

.protection-left-top {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
}

.protection-left-bottom {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
}

.protection-right-top {
    grid-column: 3;
    grid-row: 1;
    justify-self: start;
}

.protection-right-bottom {
    grid-column: 3;
    grid-row: 2;
    justify-self: start;
}

.protection-bottom-center {
    grid-column: 2;
    grid-row: 3;
    justify-self: center;
    margin-top: 6px;
    max-width: 360px;
}

.protection-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    color: #213B5A;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.protection-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.protection-text h3 {
    margin: 0 0 8px;
    color: #0F1A2D;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
}

.protection-text p {
    margin: 0;
    color: #2E3C52;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 400;
}

.protection-center {
    grid-column: 2;
    grid-row: 1 / span 2;
    justify-self: center;
    align-self: center;
}


@media (max-width: 1199px) {
    .capital-protection-layout {
        grid-template-columns: 1fr 320px 1fr;
        column-gap: 26px;
    }

    .protection-wheel {
        width: 290px;
        height: 290px;
    }

    .protection-wheel-inner {
        inset: 72px;
    }

    .protection-wheel-inner span {
        font-size: 24px;
    }

    .protection-item {
        max-width: 300px;
    }
}

@media (max-width: 959px) {
    .capital-protection {
        padding: 64px 0 70px;
    }

    .section-title.center {
        margin-bottom: 34px;
        font-size: 24px;
        line-height: 1.3;
        padding: 0 16px;
    }

    .capital-protection-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        row-gap: 24px;
    }

    .protection-center,
    .protection-left-top,
    .protection-left-bottom,
    .protection-right-top,
    .protection-right-bottom,
    .protection-bottom-center {
        grid-column: auto;
        grid-row: auto;
        justify-self: center;
    }

    .protection-center {
        order: 1;
        margin-bottom: 10px;
    }

    .protection-left-top {
        order: 2;
    }

    .protection-right-top {
        order: 3;
    }

    .protection-left-bottom {
        order: 4;
    }

    .protection-right-bottom {
        order: 5;
    }

    .protection-bottom-center {
        order: 6;
    }

    .protection-wheel {
        width: 260px;
        height: 260px;
    }

    .protection-wheel-inner {
        inset: 64px;
    }

    .protection-wheel-inner span {
        font-size: 22px;
    }

    .protection-item {
        max-width: 100%;
        padding: 0 16px;
    }

    .protection-text h3 {
        font-size: 17px;
    }

    .protection-text p {
        font-size: 14px;
    }
}

.protection-center {
    grid-column: 2;
    grid-row: 1 / span 2;
    justify-self: center;
    align-self: center;
}

.protection-diagram {
    width: 320px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.protection-diagram img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 1199px) {
    .protection-diagram {
        width: 290px;
    }
}

@media (max-width: 959px) {
    .protection-diagram {
        width: 260px;
    }
}

/* ================================
   PORTFOLIO SECTION
================================ */
.portfolio-section {
    padding: 88px 0 92px;
    background: #ffffff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 42px;
}

.portfolio-card {
    background: #ffffff;
    border: 1px solid #E3E8EF;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(11, 34, 68, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(11, 34, 68, 0.10);
}

.portfolio-card-image {
    height: 210px;
    overflow: hidden;
}

.portfolio-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portfolio-card-body {
    padding: 18px 18px 20px;
}

.portfolio-card-body h3 {
    margin: 0 0 10px;
    color: #101A2E;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 800;
}

.portfolio-card-body p {
    margin: 0 0 16px;
    color: #3F4D63;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    min-height: 48px;
}

.portfolio-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 10px;
    background: #EEF3FB;
    color: #4A6FA8;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
}

.portfolio-action {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.portfolio-btn {
    min-width: 270px;
    height: 54px;
    padding: 0 28px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: linear-gradient(180deg, #144A98 0%, #0D3776 100%);
    box-shadow: 0 12px 28px rgba(13, 55, 118, 0.22);
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.portfolio-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
    box-shadow: 0 16px 34px rgba(13, 55, 118, 0.28);
}

.portfolio-btn:active {
    transform: translateY(0);
}

@media (max-width: 1199px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .portfolio-section {
        padding: 64px 0 70px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 30px;
    }

    .portfolio-card-image {
        height: 220px;
    }

    .portfolio-card-body {
        padding: 16px;
    }

    .portfolio-card-body h3 {
        font-size: 17px;
    }

    .portfolio-card-body p {
        font-size: 14px;
        min-height: auto;
    }

    .portfolio-btn {
        width: 100%;
        max-width: 320px;
        min-width: unset;
    }
}

/* ================================
   REGISTRATION CTA SECTION
================================ */
.registration-cta {
    position: relative;
    padding: 88px 0 92px;
    background:
        linear-gradient(90deg, rgba(7, 28, 52, 0.76) 0%, rgba(7, 28, 52, 0.44) 45%, rgba(7, 28, 52, 0.62) 100%),
        url(../img/cta-terminal-bg.png) center/cover no-repeat;
    overflow: hidden;
}

.registration-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 28, 52, 0.08) 0%, rgba(7, 28, 52, 0.22) 100%);
    pointer-events: none;
}

.registration-cta .container {
    position: relative;
    z-index: 2;
}

.registration-cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) 320px;
    gap: 32px;
    align-items: stretch;
}

.registration-form-box,
.registration-benefits-box {
    border-radius: 14px;
    background: rgba(15, 26, 40, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.registration-form-box {
    padding: 28px 28px 24px;
}

.registration-form-box h2 {
    display: block;
    max-width: none;
    margin: 0 0 16px;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: none;
}

.registration-text {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.88);
    font-family: "Inter", sans-serif;
    font-size: 17px;
    line-height: 1.55;
}

.registration-places {
    margin: 0 0 20px;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 21px;
    line-height: 1.4;
    font-weight: 700;
}

.registration-places span {
    color: #FF5C45;
    font-weight: 800;
}

.registration-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 12px;
    align-items: center;
}

.registration-form input {
    width: 100%;
    height: 54px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.registration-form input::placeholder {
    color: rgba(255, 255, 255, 0.58);
}

.registration-form input:focus {
    border-color: rgba(199, 162, 90, 0.80);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 0 0 3px rgba(199, 162, 90, 0.16);
}

.registration-form button {
    height: 54px;
    padding: 0 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    background: linear-gradient(180deg, #DAB866 0%, #C7A25A 100%);
    box-shadow: 0 14px 30px rgba(199, 162, 90, 0.28);
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.registration-form button:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
    box-shadow: 0 18px 34px rgba(199, 162, 90, 0.34);
}

.registration-benefits-box {
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
}

.registration-benefit {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 500;
}

.registration-check {
    width: 24px;
    height: 24px;
    min-width: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-top: 1px;
}

.registration-check svg {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 1199px) {
    .registration-cta-inner {
        grid-template-columns: 1fr;
    }

    .registration-form-grid {
        grid-template-columns: 1fr 1fr;
    }

    .registration-form button {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .registration-cta {
        padding: 64px 0 70px;
    }

    .registration-form-box,
    .registration-benefits-box {
        padding: 22px 18px;
    }

    .registration-form-box h2 {
        font-size: 26px;
        line-height: 1.22;
    }

    .registration-text {
        font-size: 15px;
    }

    .registration-places {
        font-size: 18px;
    }

    .registration-form-grid {
        grid-template-columns: 1fr;
    }

    .registration-form button {
        width: 100%;
    }

    .registration-benefit {
        font-size: 15px;
    }
}

.registration-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 310px;
    height: 54px;
    padding: 0 28px;
    margin: 4px auto;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: linear-gradient(180deg, #DAB866 0%, #C7A25A 100%);
    box-shadow: 0 14px 30px rgba(199, 162, 90, 0.28);
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.registration-cta-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow: 0 18px 34px rgba(199, 162, 90, 0.34);
}

.registration-cta-btn:active {
    transform: translateY(0);
}

@media (max-width: 767px) {
    .registration-cta-btn {
        width: 100%;
        min-width: unset;
    }
}

.registration-action {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.registration-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 310px;
    height: 54px;
    padding: 0 28px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: linear-gradient(180deg, #DAB866 0%, #C7A25A 100%);
    box-shadow: 0 14px 30px rgba(199, 162, 90, 0.28);
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .registration-cta-btn {
        width: 100%;
        min-width: unset;
    }
}

/* ================================
   SCALE SECTION
================================ */
.scale-section {
    position: relative;
    padding: 34px 0 36px;
    background:
        linear-gradient(90deg, rgba(7, 28, 52, 0.98) 0%, rgba(8, 38, 73, 0.96) 50%, rgba(7, 28, 52, 0.98) 100%);
    overflow: hidden;
}

.scale-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 100%, rgba(24, 90, 145, 0.28), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
    pointer-events: none;
}

.scale-section .container {
    position: relative;
    z-index: 2;
}

.scale-title {
    display: block;
    max-width: none;
    margin: 0 0 28px;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 800;
    text-align: center;
    text-transform: none;
}

.scale-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: stretch;
}

.scale-item {
    position: relative;
    padding: 0 28px;
    text-align: center;
    color: #ffffff;
}

.scale-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 5px;
    right: 0;
    width: 1px;
    height: calc(100% - 10px);
    background: rgba(255, 255, 255, 0.22);
}

.scale-icon {
    width: 42px;
    height: 42px;
    margin: 0 auto 14px;
    color: rgba(255, 255, 255, 0.96);
}

.scale-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.scale-number {
    margin-bottom: 8px;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.scale-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
}

@media (max-width: 1199px) {
    .scale-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 34px 0;
    }

    .scale-item:nth-child(3)::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .scale-section {
        padding: 48px 0 52px;
    }

    .scale-title {
        font-size: 24px;
        padding: 0 16px;
        margin-bottom: 34px;
    }

    .scale-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .scale-item {
        padding: 0 16px 28px;
    }

    .scale-item:not(:last-child)::after {
        top: auto;
        right: 50%;
        bottom: 0;
        width: 72px;
        height: 1px;
        transform: translateX(50%);
        background: rgba(255, 255, 255, 0.2);
    }

    .scale-number {
        font-size: 28px;
    }

    .scale-item p {
        font-size: 14px;
    }
}

/* ================================
   FOOTER
================================ */
.site-footer {
    background:
        linear-gradient(90deg, #041C36 0%, #072A4B 48%, #041C36 100%);
    color: #ffffff;
    padding: 34px 0 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
    display: grid;
    grid-template-columns: 260px 320px 1fr;
    gap: 34px;
    align-items: start;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo img {
    width: 210px;
    max-width: 100%;
    height: auto;
    display: block;
}

.footer-contacts h3 {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.92);
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-contacts p,
.footer-contacts a {
    display: block;
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.86);
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-contacts a:hover {
    color: #ffffff;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 34px;
    padding-top: 8px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.9);
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.footer-nav a:hover {
    color: #C7A25A;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 16px;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.66);
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.4;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 34px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.66);
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

@media (max-width: 1199px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-nav {
        grid-column: 1 / -1;
        padding-top: 0;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding: 28px 0 16px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-bottom: 22px;
    }

    .footer-logo img {
        width: 180px;
    }

    .footer-nav {
        gap: 12px 20px;
    }

    .footer-nav a,
    .footer-contacts p,
    .footer-contacts a {
        font-size: 14px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-links {
        gap: 14px 22px;
        flex-direction: column;
        align-items: flex-start;
    }
}