.page-hero {
    background: #EFF2FF;
    color: #333;
    padding: 72px 20px 58px;
}

.page-hero .section-inner {
    width: min(1200px, calc(100% - 40px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    gap: 30px;
    align-items: center;
}

.page-hero h1 {
    color: #1E2345;
    font-size: 38px;
    font-weight: bold;
    line-height: 1.2;
    max-width: 760px;
    margin: 8px 0 18px;
}

.page-hero p {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    max-width: 780px;
}

.page-hero .eyebrow {
    color: #FF6F5A;
    font-size: 0.9rem;
}

.hero-panel {
    background: white;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.hero-panel strong {
    display: block;
    color: #1E2345;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.hero-panel ul {
    display: grid;
    gap: 8px;
    color: #555;
    list-style: none;
}

.hero-panel li {
    position: relative;
    padding-left: 22px;
}

.hero-panel li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FF6F5A;
}

.section-block {
    background: #F4F6F8;
    padding: 52px 20px;
}

.section-white {
    background: var(--color-white);
}

.section-block .section-inner {
    width: min(1200px, calc(100% - 40px));
}

.section-block h2 {
    color: #1E2345;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-lead {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    max-width: 780px;
    margin-bottom: 26px;
}

.grid-3,
.grid-2,
.service-detail-grid,
.process-row,
.package-grid,
.feature-tile-grid {
    display: grid;
    gap: 20px;
}

.grid-3,
.package-grid,
.feature-tile-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2,
.service-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.process-row {
    counter-reset: step;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.process-step {
    background: white;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 24px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover,
.process-step:hover {
    border-color: #FF6F5A;
    transform: translateY(-4px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.info-card h3,
.process-step h3 {
    color: #1E2345;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.info-card p,
.info-card li,
.process-step p {
    color: #555;
    line-height: 1.5;
}

.text-link {
    color: #FF6F5A;
    display: inline-flex;
    font-weight: 700;
    margin-top: 14px;
    text-decoration: none;
}

.text-link:hover {
    color: #1E2345;
}

.form-privacy-note {
    color: #555;
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 14px 0 0;
}

.form-privacy-note a {
    color: #FF6F5A;
    font-weight: 700;
    text-decoration: none;
}

.form-privacy-note a:hover {
    color: #1E2345;
}

.feature-list {
    display: grid;
    gap: 10px;
    margin-top: 16px;
    padding-left: 0;
}

.feature-list li {
    list-style: none;
    position: relative;
    padding-left: 24px;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #FF6F5A;
}

.process-step::before {
    counter-increment: step;
    content: counter(step);
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #FF6F5A;
    color: white;
    font-weight: 800;
    margin-bottom: 14px;
}

.package-card {
    align-content: start;
    display: grid;
}

.featured-package {
    border-color: #FF6F5A;
}

.feature-tile {
    background: white;
    border: 2px solid transparent;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 22px 20px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-tile:hover {
    border-color: #FF6F5A;
    transform: translateY(-4px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.feature-tile i,
.route-card i {
    color: #FF6F5A;
    display: inline-flex;
    font-size: 1.5rem;
    margin-bottom: 14px;
}

.feature-tile h3 {
    color: #1E2345;
    font-size: 1.08rem;
    margin-bottom: 8px;
}

.feature-tile p {
    color: #555;
    line-height: 1.5;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    background: white;
    border: 1px solid #e6e9f2;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
    padding: 0 20px;
}

.faq-item summary {
    color: #1E2345;
    cursor: pointer;
    font-weight: 700;
    list-style: none;
    padding: 18px 0;
}

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

.faq-item summary::after {
    color: #FF6F5A;
    content: "+";
    float: right;
    font-size: 1.3rem;
    line-height: 1;
}

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

.faq-item p {
    color: #555;
    line-height: 1.6;
    padding-bottom: 18px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 24px;
}

.contact-stack {
    display: grid;
    gap: 16px;
}

.contact-method {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-method i {
    width: 34px;
    min-width: 34px;
    color: #1E2345;
    font-size: 1.7rem;
    line-height: 1.2;
    text-align: center;
}

.action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.contact-form-card {
    scroll-margin-top: 24px;
}

.contact-form {
    display: grid;
    gap: 16px;
}

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

.contact-form label {
    display: grid;
    gap: 7px;
}

.contact-form label span {
    color: #1E2345;
    font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: #F4F6F8;
    border: 1px solid #dfe4ee;
    border-radius: 8px;
    color: #1E2345;
    font: inherit;
    min-height: 48px;
    padding: 12px 14px;
    width: 100%;
}

.contact-form textarea {
    min-height: 142px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    background: #fff;
    border-color: #FF6F5A;
    box-shadow: 0 0 0 3px rgba(255, 111, 90, 0.14);
    outline: none;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.website-field {
    height: 0;
    left: -9999px;
    overflow: hidden;
    position: absolute;
    width: 1px;
}

.form-alert {
    border-radius: 8px;
    display: none;
    font-weight: 700;
    line-height: 1.45;
    margin: 0 0 18px;
    padding: 14px 16px;
}

.form-alert.is-visible {
    display: block;
}

.form-alert-success {
    background: #edf8f0;
    border: 1px solid #bfe8c8;
    color: #235d31;
}

.form-alert-error {
    background: #fff0ed;
    border: 1px solid #ffc9bf;
    color: #8f2e20;
}

.route-card {
    align-content: start;
    display: grid;
}

.collaboration-card {
    align-items: flex-start;
    display: flex;
    gap: 16px;
}

.collaboration-card i {
    color: #1E2345;
    font-size: 1.55rem;
    line-height: 1.2;
    margin-top: 2px;
    min-width: 32px;
    text-align: center;
}

.article-card,
.role-card {
    display: grid;
    gap: 10px;
}

.article-card {
    color: inherit;
    min-height: 220px;
    text-decoration: none;
}

.article-card .article-meta {
    color: #FF6F5A;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
}

.role-meta {
    color: #555;
    font-size: 0.92rem;
}

.topic-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.topic-row a {
    background: #EFF2FF;
    border: 1px solid #dfe4ee;
    border-radius: 8px;
    color: #1E2345;
    font-weight: 700;
    padding: 10px 14px;
    text-decoration: none;
}

.topic-row a:hover {
    border-color: #FF6F5A;
    color: #FF6F5A;
}

.article-hero {
    background: #EFF2FF;
    padding: 62px 20px 50px;
}

.article-hero .section-inner {
    width: min(980px, calc(100% - 40px));
}

.article-hero h1 {
    color: #1E2345;
    font-size: 40px;
    line-height: 1.18;
    margin: 10px 0 18px;
}

.article-hero p {
    color: #333;
    font-size: 17px;
    line-height: 1.65;
    max-width: 820px;
}

.back-link {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(30, 35, 69, 0.16);
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(30, 35, 69, 0.08);
    color: #1E2345;
    display: inline-flex;
    font-weight: 800;
    margin-bottom: 24px;
    padding: 10px 14px;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.back-link:hover {
    border-color: #FF6F5A;
    box-shadow: 0 10px 24px rgba(30, 35, 69, 0.12);
    color: #FF6F5A;
    transform: translateX(-2px);
}

.article-meta-line {
    color: #555;
    display: flex;
    flex-wrap: wrap;
    font-size: 0.92rem;
    gap: 10px;
    margin-top: 18px;
}

.article-meta-line span {
    background: white;
    border-radius: 8px;
    padding: 7px 10px;
}

.article-section {
    background: #F4F6F8;
}

.article-layout {
    align-items: start;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
}

.article-content {
    padding: 34px;
}

.article-content .article-intro {
    color: #1E2345;
    font-size: 1.08rem;
    line-height: 1.7;
}

.article-content h2 {
    color: #1E2345;
    font-size: 1.55rem;
    line-height: 1.25;
    margin: 30px 0 10px;
}

.article-content p,
.article-content li {
    color: #555;
    line-height: 1.75;
}

.article-content ul {
    display: grid;
    gap: 8px;
    margin: 14px 0 0;
    padding-left: 20px;
}

.legal-document {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 34px;
}

.legal-document h2 {
    color: #1E2345;
    font-size: 1.55rem;
    line-height: 1.25;
    margin: 30px 0 10px;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document h3 {
    color: #1E2345;
    font-size: 1.12rem;
    margin: 20px 0 8px;
}

.legal-document p,
.legal-document li,
.legal-document dd {
    color: #555;
    line-height: 1.75;
}

.legal-document ul {
    display: grid;
    gap: 8px;
    margin: 14px 0 0;
    padding-left: 20px;
}

.legal-document dl {
    display: grid;
    gap: 12px;
    margin: 16px 0;
}

.legal-document dt {
    color: #1E2345;
    font-weight: 800;
}

.legal-document dd {
    margin: 4px 0 0;
}

.pull-note {
    background: #EFF2FF;
    border-left: 4px solid #FF6F5A;
    border-radius: 8px;
    margin: 26px 0;
    padding: 18px 20px;
}

.pull-note strong {
    color: #1E2345;
    display: block;
    margin-bottom: 6px;
}

.article-sidebar {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 20px;
}

.article-sidebar .btn-primary {
    margin-top: 18px;
    width: 100%;
}

.legal-note {
    background: #EFF2FF;
    border: 1px solid #dbe2ff;
    border-radius: 10px;
    padding: 16px;
    color: #555;
}

.company-info-grid {
    align-items: stretch;
}

.company-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.company-card-heading {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding-bottom: 18px;
    border-bottom: 1px solid #e6e9f2;
}

.company-card-heading i {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #EFF2FF;
    color: #1E2345;
    font-size: 1.25rem;
}

.company-card-heading h3 {
    margin-bottom: 4px;
}

.legal-details {
    display: grid;
    gap: 10px;
}

.legal-details div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 14px;
    border-radius: 8px;
    background: #F4F6F8;
}

.legal-details dt {
    color: #1E2345;
    font-weight: 700;
}

.legal-details dd {
    color: #555;
    text-align: right;
    margin: 0;
}

.company-address {
    color: #555;
    font-style: normal;
    line-height: 1.65;
    padding: 14px 16px;
    border-left: 4px solid #FF6F5A;
    background: #F4F6F8;
    border-radius: 8px;
}

.cta-band {
    background: white;
    padding: 42px 20px;
    border: 0;
}

.cta-band .section-inner {
    width: min(1200px, calc(100% - 40px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-band h2 {
    color: #1E2345;
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.cta-band p {
    color: #555;
    max-width: 680px;
}

@media (max-width: 960px) {
    .page-hero .section-inner,
    .grid-3,
    .grid-2,
    .service-detail-grid,
    .process-row,
    .contact-grid,
    .package-grid,
    .feature-tile-grid,
    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
    }

    .page-hero {
        padding: 42px 20px;
    }

    .cta-band .section-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .page-hero,
    .section-block,
    .cta-band {
        padding-left: 14px;
        padding-right: 14px;
    }

    .page-hero .section-inner,
    .section-block .section-inner,
    .cta-band .section-inner {
        width: min(100% - 28px, 1200px);
    }

    .page-hero h1 {
        font-size: 31px;
    }

    .hero-panel {
        padding: 20px;
    }

    .section-block h2 {
        font-size: 28px;
    }

    .article-hero {
        padding: 44px 14px;
    }

    .article-hero .section-inner {
        width: min(100% - 28px, 980px);
    }

    .article-hero h1 {
        font-size: 32px;
    }

    .article-content {
        padding: 24px 20px;
    }

    .collaboration-card {
        display: grid;
    }

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

    .form-actions {
        display: grid;
    }

    .legal-details div {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .legal-details dd {
        text-align: left;
    }
}
