:root {
    --navy: #17254a;
    --blue: #2e7bc5;
    --blue-dark: #1f629f;
    --accent: #ef8d32;
    --border: #d9dfe8;
    --text: #27314a;
    --muted: #6b7280;
    --bg: #f6f8fc;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    color: var(--text);
    background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

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

.cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 8px;
    background: linear-gradient(180deg, #4190d6 0%, var(--blue) 100%);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(46, 123, 197, 0.2);
    transition: background 0.2s ease, transform 0.2s ease;
}

.cta-link:hover,
.cta-link:focus-visible {
    background: linear-gradient(180deg, #3584cb 0%, var(--blue-dark) 100%);
    transform: translateY(-1px);
}

main {
    display: block;
}

.hero {
    position: relative;
    overflow: hidden;
    background: #0d315f;
}

.hero-image {
    position: relative;
    z-index: 0;
    display: block;
    width: 100%;
    height: auto;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(8, 38, 90, 0.72) 0%, rgba(18, 64, 126, 0.34) 28%, rgba(16, 48, 102, 0.08) 100%),
        radial-gradient(circle at top center, rgba(255, 255, 255, 0.24), transparent 34%);
    pointer-events: none;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    z-index: 2;
    width: min(950px, calc(100% - 48px));
    margin: 0 auto;
    padding-top: 56px;
    text-align: center;
    color: var(--white);
    text-shadow: 0 2px 14px rgba(4, 17, 39, 0.45);
}

.hero h1 {
    max-width: 900px;
    margin: 0 auto 18px;
    font-size: clamp(34px, 4.4vw, 54px);
    line-height: 1.14;
    font-weight: 400;
    color: var(--white);
}

.hero p {
    max-width: 930px;
    margin: 0 auto;
    font-size: clamp(15px, 1.45vw, 21px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.96);
}

@media (max-width: 1250px) {
    .hero-content {
        width: min(820px, calc(100% - 48px));
        padding-top: 44px;
    }

    .hero h1 {
        max-width: 760px;
        margin-bottom: 14px;
    }

    .hero p {
        max-width: 740px;
        line-height: 1.55;
    }
}

@media (max-width: 900px) {
    .hero-content {
        width: min(680px, calc(100% - 40px));
        padding-top: 32px;
    }

    .hero h1 {
        font-size: clamp(28px, 5vw, 40px);
        line-height: 1.12;
    }

    .hero p {
        font-size: clamp(14px, 2.2vw, 18px);
        line-height: 1.5;
    }
    .about-feature-figure {
        display: none!important;
    }
}

.services-showcase {
    padding: 34px 24px 22px;
    background: #160738;
    scroll-margin-top: 110px;
}

.service-track {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.service-card {
    padding: 24px 30px 20px;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(7, 4, 20, 0.16);
}

.service-card + .service-card {
    margin-top: 26px;
}

.service-card--wide {
    width: min(946px, 100%);
}

.service-card--mid {
    width: min(946px, calc(100% - 96px));
    margin-left: auto;
    margin-right: auto;
}

.service-card--offset {
    width: min(946px, calc(100% - 192px));
    margin-left: auto;
}

.service-card h2 {
    margin: 0 0 6px;
    font-size: clamp(28px, 3.4vw, 54px);
    line-height: 1.08;
    font-weight: 400;
    color: #123c66;
}

.service-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
    color: #1f1f1f;
}

.about-feature {
    width: 100%;
    padding: 54px 26px 44px;
    scroll-margin-top: 110px;
    background: #ffffff;
}

.about-feature-inner {
    width: min(1240px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    align-items: center;
    gap: 30px;
}

.about-feature-figure {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.about-feature-figure img {
    width: min(100%, 210px);
    height: auto;
    display: block;
}

.about-feature-copy {
    text-align: center;
}

.about-feature-copy h2 {
    margin: 0 0 28px;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.08;
    font-weight: 400;
    color: #1e1a4f;
}

.about-feature-copy p {
    margin: 0 auto 22px;
    max-width: 920px;
    font-size: 18px;
    line-height: 1.75;
    text-align: justify;
    text-justify: inter-word;
    color: #232323;
}

.about-feature-copy .cta-link {
    margin-top: 6px;
    min-width: 148px;
}

.profile-feature {
    width: 100%;
    padding: 48px 24px 40px;
    background: #2f83c2;
}

.profile-feature-inner {
    width: min(1030px, 100%);
    margin: 0 auto;
}

.profile-feature-header {
    margin: 0 0 40px;
    text-align: center;
}

.profile-feature-header h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.08;
    font-weight: 400;
    color: #ffffff;
}

.profile-feature-top {
    display: grid;
    grid-template-columns: minmax(320px, 470px) minmax(0, 1fr);
    align-items: center;
    gap: 32px;
}

.profile-feature-media img {
    display: block;
    width: 100%;
    height: auto;
}

.profile-feature-name {
    margin: 0 0 10px;
    font-size: clamp(30px, 3.6vw, 50px);
    line-height: 1.12;
    font-weight: 400;
    white-space: nowrap;
    color: #ffffff;
    text-align: center;
}

.profile-feature-role {
    margin: 0;
    font-size: clamp(18px, 1.9vw, 24px);
    line-height: 1.35;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.96);
    text-align: center;
}

.profile-feature-bottom p {
    margin: 0;
    font-size: 18px;
    line-height: 1.42;
    text-align: justify;
    text-justify: inter-word;
    color: rgba(255, 255, 255, 0.96);
}

.profile-feature-bottom {
    margin-top: 30px;
}

.profile-feature-credentials {
    margin: 22px 0 26px;
    padding-left: 36px;
    color: rgba(255, 255, 255, 0.98);
}

.profile-feature-credentials li {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
}

.profile-feature-credentials li + li {
    margin-top: 14px;
}

.profile-feature-credentials strong {
    font-weight: 700;
}

.profile-feature-bottom p + p {
    margin-top: 20px;
}

.structured-feature {
    width: 100%;
    padding: 54px 24px 64px;
    background: #f2f2f2;
}

.structured-feature-inner {
    width: min(1320px, 100%);
    margin: 0 auto;
}

.structured-feature-header {
    width: min(1020px, 100%);
    margin: 0 auto 42px;
    text-align: center;
}

.structured-feature-header h2 {
    margin: 0 0 34px;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.08;
    font-weight: 400;
    color: #1e1a4f;
}

.structured-feature-header p {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.7;
    color: #201f3f;
    text-align: left;
}

.structured-feature-header p:last-child {
    margin-bottom: 0;
}

.structured-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.structured-card {
    min-height: 304px;
    padding: 26px 22px 22px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(18, 16, 53, 0.16);
    text-align: center;
}

.structured-card-icon {
    width: 122px;
    height: 122px;
    margin: 0 auto 18px;
}

.structured-card-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.structured-card h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.18;
    font-weight: 400;
    white-space: nowrap;
    color: #1e1a4f;
}

.structured-card-rule {
    display: block;
    width: 82px;
    height: 2px;
    margin: 12px auto 18px;
    background: #6ca8de;
}

.structured-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.35;
    color: #232323;
}

.services-copy {
    width: 100%;
    padding: 48px 24px 60px;
    background: #f2f2f2;
}

.services-copy-inner {
    width: min(1240px, 100%);
    margin: 0 auto;
}

.services-copy h2 {
    margin: 0 0 42px;
    font-size: clamp(34px, 3.8vw, 52px);
    line-height: 1.08;
    font-weight: 400;
    color: #1e1a4f;
    text-align: center;
}

.services-copy p {
    margin: 0 0 22px;
    font-size: 16px;
    line-height: 1.7;
    color: #201f3f;
    text-align: left;
}

.services-copy p:last-child {
    margin-bottom: 0;
}

.trader-feature,
.law-feature {
    width: 100%;
    padding: 54px 24px 68px;
    background: #ffffff;
}

.trader-feature-inner,
.law-feature-inner {
    width: min(1240px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: start;
    gap: 24px;
}

.trader-feature-media img,
.law-feature-media img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.trader-feature-copy h2,
.law-feature-copy h2 {
    margin: 0 0 22px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2b2958;
    font-size: clamp(32px, 3.4vw, 48px);
    line-height: 1.08;
    font-weight: 400;
    color: #1e1a4f;
}

.trader-feature-copy p,
.law-feature-copy p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #232323;
}

.flag-feature {
    width: 100%;
    padding: 54px 24px 58px;
    background: #160738;
}

.flag-feature-inner {
    width: min(1240px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: start;
    gap: 36px;
}

.flag-feature-copy {
    color: #ffffff;
}

.flag-feature-copy h2 {
    margin: 0 0 22px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.82);
    font-size: clamp(32px, 3.4vw, 48px);
    line-height: 1.08;
    font-weight: 400;
    color: #ffffff;
}

.flag-feature-copy p {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.94);
}

.flag-feature-media img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.books-feature {
    width: 100%;
    padding: 54px 24px 58px;
    background: #160738;
}

.books-feature-inner {
    width: min(1240px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: start;
    gap: 36px;
}

.books-feature-copy {
    color: #ffffff;
}

.books-feature-copy h2 {
    margin: 0 0 22px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.82);
    font-size: clamp(32px, 3.4vw, 48px);
    line-height: 1.08;
    font-weight: 400;
    color: #ffffff;
}

.books-feature-copy p {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.94);
}

.books-feature-media img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.execution-feature {
    width: 100%;
    padding: 56px 24px 74px;
    background: #ffffff;
    scroll-margin-top: 110px;
}

.execution-feature-inner {
    width: min(1280px, 100%);
    margin: 0 auto;
}

.execution-feature-header {
    margin: 0 auto 66px;
}

.execution-feature-header h2 {
    margin: 0 0 34px;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.08;
    font-weight: 400;
    text-align: center;
    color: #1e1a4f;
}

.execution-feature-header p {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.7;
    color: #262548;
    text-align: left;
}

.execution-feature-label {
    margin-bottom: 0;
}

.execution-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(240px, 1fr));
    gap: 84px;
}

.execution-card {
    text-align: center;
    color: #1e1a4f;
    min-width: 0;
    max-width: 280px;
    margin: 0 auto;
}

.execution-card-icon {
    width: 108px;
    height: 108px;
    margin: 0 auto 22px;
}

.execution-card-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.execution-card h3 {
    margin: 0 0 14px;
    font-size: clamp(20px, 1.9vw, 26px);
    line-height: 1.18;
    font-weight: 400;
    white-space: nowrap;
    color: #1e1a4f;
}

.execution-card p {
    margin: 0 auto;
    max-width: 280px;
    font-size: 15px;
    line-height: 1.45;
    color: #232323;
}

@media (max-width: 1250px) {
    .execution-feature-inner {
        width: min(1060px, 100%);
    }

    .execution-grid {
        grid-template-columns: repeat(2, minmax(260px, 1fr));
        gap: 52px 32px;
    }

    .execution-card {
        max-width: 100%;
    }

    .execution-card h3 {
        white-space: normal;
    }
}

.trust-feature {
    width: 100%;
    padding: 54px 24px 34px;
    background: #f1f1f1;
}

.trust-feature-inner {
    width: min(1040px, 100%);
    margin: 0 auto;
}

.trust-feature-header {
    margin: 0 auto 30px;
}

.trust-feature-header h2 {
    margin: 0 0 34px;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.08;
    font-weight: 400;
    text-align: center;
    color: #1e1a4f;
}

.trust-feature-header p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #262548;
    text-align: left;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.trust-item {
    text-align: center;
}

.trust-card {
    min-height: 308px;
    padding: 30px 20px 20px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(18, 16, 53, 0.14);
    text-align: center;
}

.trust-card img {
    display: block;
    width: min(170px, 100%);
    height: auto;
    margin: 0 auto 14px;
}

.trust-card h3 {
    margin: 0;
    font-size: clamp(23px, 2.5vw, 28px);
    line-height: 1.15;
    font-weight: 400;
    color: #1e1a4f;
    display: block;
    padding-bottom: 14px;
}

.trust-card h3::after {
    content: "";
    display: block;
    width: 82px;
    height: 2px;
    margin: 12px auto 0;
    background: #6ca8de;
}

.trust-card-subtitle {
    margin: 0;
    font-size: clamp(15px, 1.45vw, 16px);
    line-height: 1.15;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: -0.01em;
    color: #1e1a4f;
}

.trust-meta {
    margin-top: 40px;
}

.trust-meta p {
    margin: 0;
    font-size: 16px;
    line-height: 1.35;
    color: #232323;
}

.trust-meta p + p {
    margin-top: 2px;
}

.faq-section {
    width: 100%;
    padding: 52px 24px 66px;
    background: #2280C5;
    scroll-margin-top: 110px;
}

.faq-inner {
    width: min(1240px, 100%);
    margin: 0 auto;
}

.faq-section h2 {
    margin: 0 0 42px;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.08;
    font-weight: 400;
    text-align: center;
    color: #ffffff;
}

.faq-list {
    width: min(950px, 100%);
    margin: 0 auto;
}

.faq-item {
    border-radius: 7px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(10, 5, 26, 0.16);
}

.faq-item + .faq-item {
    margin-top: 16px;
}

.faq-item summary {
    position: relative;
    padding: 18px 54px 18px 22px;
    list-style: none;
    cursor: pointer;
    font-size: 18px;
    line-height: 1.4;
    color: #143963;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 24px;
    line-height: 1;
    color: #143963;
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-answer {
    padding: 0 22px 18px;
    border-top: 1px solid #e6e8ee;
}

.faq-answer p {
    margin: 14px 0 0;
    font-size: 18px;
    line-height: 1.7;
    text-align: justify;
    text-justify: inter-word;
    color: #232323;
}

.contact-form-section {
    width: 100%;
    padding: 46px 24px 64px;
    background: #ffffff;
    scroll-margin-top: 110px;
}

.contact-form-inner {
    width: min(1240px, 100%);
    margin: 0 auto;
}

.contact-form-header {
    max-width: 980px;
    margin: 0 auto 28px;
    text-align: center;
}

.contact-form-header h2 {
    margin: 0 0 32px;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.08;
    font-weight: 400;
    color: #1e1a4f;
}

.contact-form-header p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #262548;
}

.contact-form {
    margin: 0 auto;
}

.contact-feedback {
    margin: 0 0 18px;
    padding: 14px 16px;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.6;
}

.contact-feedback--success {
    border: 1px solid #c8decf;
    background: #eff8f1;
    color: #215c32;
}

.contact-feedback--error {
    border: 1px solid #e6caca;
    background: #fdf2f2;
    color: #8f1d1d;
}

.contact-options {
    margin: 0 0 28px;
    padding: 0;
    border: 0;
}

.contact-options legend {
    width: 100%;
    margin: 0 0 14px;
    padding: 0;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    color: #1f2145;
}

.contact-option-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 20px 22px;
    border: 1px solid #d9dee8;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(10, 5, 26, 0.1);
    cursor: pointer;
}

.contact-option-card + .contact-option-card {
    margin-top: 14px;
}

.contact-option-card input[type="radio"] {
    width: 22px;
    height: 22px;
    margin: 4px 0 0;
    accent-color: #2280c5;
}

.contact-option-copy {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-option-title {
    font-size: 18px;
    line-height: 1.3;
    color: #143963;
}

.contact-option-description {
    font-size: 18px;
    line-height: 1.7;
    color: #232323;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
    margin-bottom: 16px;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-field--full {
    grid-column: 1 / -1;
}

.contact-field label,
.contact-message label,
.contact-upload label {
    font-size: 18px;
    line-height: 1.4;
    color: #1f2145;
}

.contact-field input,
.contact-message textarea {
    width: 100%;
    border: 1px solid #7785a1;
    border-radius: 3px;
    background: #ffffff;
    font: inherit;
    color: #1f2145;
}

.contact-field input {
    height: 52px;
    padding: 8px 12px;
}

.contact-message {
    margin-bottom: 16px;
}

.contact-message textarea {
    min-height: 180px;
    padding: 12px;
    resize: vertical;
}

.contact-upload {
    margin-bottom: 16px;
}

.contact-upload-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 8px;
}

.contact-upload-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 146px;
    min-height: 40px;
    padding: 10px 18px;
    border-radius: 6px;
    background: linear-gradient(180deg, #2c8fd7 0%, #1d72b4 100%);
    box-shadow: 0 3px 8px rgba(20, 57, 99, 0.18);
    font-size: 15px;
    line-height: 1.2;
    font-weight: 600;
    color: #ffffff!important;
    cursor: pointer;
}

.contact-upload-controls input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.contact-upload-meta,
.contact-upload-filename {
    font-size: 14px;
    line-height: 1.6;
    color: #4a5170;
}

.contact-upload-filename:empty {
    display: none;
}

.contact-error {
    margin: 2px 0 0;
    font-size: 13px;
    line-height: 1.5;
    color: #b42318;
}

.contact-recaptcha {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 22px;
}

.contact-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 22px;
    font-size: 13px;
    line-height: 1.5;
}

.contact-consent input {
    width: 15px;
    height: 15px;
    margin: 0;
}

.contact-actions {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-submit {
    min-width: 160px;
    border: 0;
    cursor: pointer;
}

.content-section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 32px;
    padding: 88px 32px;
    scroll-margin-top: 110px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 40px rgba(23, 37, 74, 0.06);
}

.content-section h2 {
    margin: 0 0 16px;
    font-size: clamp(30px, 5vw, 44px);
    color: var(--navy);
}

.content-section p {
    max-width: 760px;
    margin: 0;
    font-size: 17px;
    line-height: 1.75;
    color: var(--muted);
}

@media (max-width: 900px) {
    .services-showcase {
        padding-left: 18px;
        padding-right: 18px;
    }

    .service-card,
    .service-card--wide,
    .service-card--mid,
    .service-card--offset {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .about-feature {
        padding: 40px 22px 34px;
    }

    .about-feature-inner {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-feature-figure img {
        width: min(100%, 180px);
    }

    .profile-feature {
        padding: 42px 22px 48px;
    }

    .profile-feature-header {
        margin-bottom: 24px;
    }

    .profile-feature-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .profile-feature-media {
        max-width: 520px;
        justify-self: center;
    }

    .structured-feature {
        padding: 42px 22px 48px;
    }

    .structured-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .services-copy {
        padding: 38px 22px 48px;
    }

    .trader-feature,
    .law-feature {
        padding: 42px 22px 52px;
    }

    .trader-feature-inner,
    .law-feature-inner {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .trader-feature-media,
    .law-feature-media {
        max-width: 360px;
    }

    .flag-feature {
        padding: 42px 22px 48px;
    }

    .flag-feature-inner {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .flag-feature-media {
        max-width: 360px;
        justify-self: center;
    }

    .books-feature {
        padding: 42px 22px 48px;
    }

    .books-feature-inner {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .books-feature-media {
        max-width: 360px;
        justify-self: center;
    }

    .execution-feature {
        padding: 42px 22px 48px;
    }

    .execution-feature-header {
        margin-bottom: 40px;
    }

    .execution-grid {
        grid-template-columns: repeat(2, minmax(240px, 1fr));
        gap: 48px 44px;
    }

    .trust-feature {
        padding: 42px 22px 48px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .faq-section {
        padding: 42px 22px 48px;
    }

    .contact-form-section {
        padding: 38px 22px 48px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-option-card {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-option-card input[type="radio"] {
        margin-top: 0;
    }

    .content-section {
        padding: 64px 24px;
    }
}

@media (max-width: 680px) {
    .execution-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 520px) {
    .cta-link {
        font-size: 13px;
    }

    .hero h1 {
        margin-bottom: 14px;
    }

    .hero p {
        line-height: 1.6;
    }

    .services-showcase {
        padding-top: 22px;
        padding-bottom: 14px;
    }

    .service-card {
        padding: 20px 18px 18px;
    }

    .service-card h2 {
        margin-bottom: 8px;
        font-size: 22px;
    }

    .service-card p {
        font-size: 15px;
    }

    .about-feature {
        width: 100%;
        padding: 30px 14px 26px;
    }

    .about-feature-copy h2 {
        margin-bottom: 16px;
        font-size: 28px;
    }

    .about-feature-copy p {
        margin-bottom: 18px;
        font-size: 16px;
        line-height: 1.65;
    }

    .profile-feature {
        padding: 30px 14px 36px;
    }

    .profile-feature-header h2 {
        font-size: 28px;
    }

    .profile-feature-name {
        margin-bottom: 10px;
        font-size: 24px;
    }

    .profile-feature-bottom p {
        font-size: 16px;
        line-height: 1.65;
    }

    .profile-feature-credentials {
        margin: 20px 0 22px;
        padding-left: 26px;
    }

    .profile-feature-credentials li {
        font-size: 15px;
        line-height: 1.4;
    }

    .profile-feature-role {
        font-size: 18px;
        line-height: 1.4;
    }

    .profile-feature-bottom p + p {
        margin-top: 18px;
    }

    .structured-feature {
        padding: 30px 14px 36px;
    }

    .structured-feature-header {
        margin-bottom: 28px;
    }

    .structured-feature-header h2 {
        margin-bottom: 16px;
        font-size: 30px;
    }

    .structured-feature-header p,
    .structured-card p {
        font-size: 15px;
        line-height: 1.65;
    }

    .structured-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .structured-card {
        min-height: 0;
        padding: 24px 18px 20px;
        border-radius: 18px;
    }

    .structured-card-icon {
        width: 96px;
        height: 96px;
        margin-bottom: 18px;
    }

    .structured-card h3 {
        font-size: 21px;
        white-space: normal;
    }

    .services-copy {
        padding: 30px 14px 36px;
    }

    .services-copy h2 {
        margin-bottom: 22px;
        font-size: 28px;
    }

    .services-copy p {
        margin-bottom: 18px;
        font-size: 15px;
        line-height: 1.65;
    }

    .trader-feature,
    .law-feature {
        padding: 30px 14px 36px;
    }

    .trader-feature-copy h2,
    .law-feature-copy h2 {
        margin-bottom: 12px;
        padding-bottom: 8px;
        font-size: 28px;
    }

    .trader-feature-copy p,
    .law-feature-copy p {
        font-size: 15px;
        line-height: 1.65;
    }

    .flag-feature {
        padding: 30px 14px 36px;
    }

    .flag-feature-copy h2 {
        margin-bottom: 12px;
        padding-bottom: 8px;
        font-size: 28px;
    }

    .flag-feature-copy p {
        font-size: 15px;
        line-height: 1.65;
    }

    .books-feature {
        padding: 30px 14px 36px;
    }

    .books-feature-copy h2 {
        margin-bottom: 12px;
        padding-bottom: 8px;
        font-size: 28px;
    }

    .books-feature-copy p {
        font-size: 15px;
        line-height: 1.65;
    }

    .execution-feature {
        padding: 30px 14px 36px;
    }

    .execution-feature-header {
        margin-bottom: 30px;
    }

    .execution-feature-header h2 {
        margin-bottom: 16px;
        font-size: 30px;
    }

    .execution-feature-header p,
    .execution-card p {
        font-size: 15px;
        line-height: 1.65;
    }

    .execution-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .execution-card-icon {
        width: 92px;
        height: 92px;
        margin-bottom: 18px;
    }

    .execution-card h3 {
        margin-bottom: 12px;
        font-size: 26px;
    }

    .trust-feature {
        padding: 30px 14px 36px;
    }

    .trust-feature-header {
        margin-bottom: 24px;
    }

    .trust-feature-header h2 {
        margin-bottom: 16px;
        font-size: 28px;
    }

    .trust-feature-header p,
    .trust-meta p {
        font-size: 15px;
        line-height: 1.65;
    }

    .trust-card {
        min-height: 0;
        padding: 26px 18px 20px;
        border-radius: 18px;
    }

    .trust-card h3 {
        font-size: 24px;
    }

    .trust-card-subtitle {
        font-size: 17px;
    }

    .trust-meta {
        margin-top: 26px;
    }

    .faq-section {
        padding: 30px 14px 36px;
    }

    .faq-section h2 {
        margin-bottom: 24px;
        font-size: 28px;
    }

    .faq-item + .faq-item {
        margin-top: 14px;
    }

    .faq-item summary {
        padding: 16px 48px 16px 18px;
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 18px 16px;
    }

    .faq-answer p {
        font-size: 16px;
        line-height: 1.65;
    }

    .contact-form-section {
        padding: 30px 14px 36px;
    }

    .contact-form-header {
        margin-bottom: 22px;
    }

    .contact-form-header h2 {
        margin-bottom: 16px;
        font-size: 30px;
    }

    .contact-form-header p,
    .contact-field label,
    .contact-message label,
    .contact-upload label,
    .contact-options legend {
        font-size: 15px;
    }

    .contact-consent {
        align-items: flex-start;
        font-size: 12px;
    }

    .contact-option-card {
        padding: 16px;
    }

    .contact-option-title {
        font-size: 16px;
    }

    .contact-option-description,
    .contact-upload-meta,
    .contact-upload-filename {
        font-size: 14px;
    }

    .hero-content {
        left: 18px;
        right: 18px;
        width: calc(100% - 36px);
        padding-top: 36px;
    }
}

@media (max-width: 450px) {
    .hero {
        min-height: 430px;
    }

    .hero-image {
        height: 430px;
        object-fit: cover;
        object-position: center;
    }
}
