@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

body {
    font-family: "Plus Jakarta Sans", sans-serif;
}

.page-shell {
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 24%),
        linear-gradient(180deg, #4e4e52 0%, #696b70 18%, #f8fafc 18%, #ffffff 100%);
}

.coming-soon-glow {
    background:
        radial-gradient(circle at 18% 40%, rgba(251, 191, 36, 0.2), transparent 24%),
        radial-gradient(circle at 78% 28%, rgba(15, 23, 42, 0.12), transparent 26%);
    pointer-events: none;
}

.site-header {
    position: relative;
    z-index: 30;
}

.header-float {
    position: relative;
    z-index: 31;
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
}

.header-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.header-brand {
    flex-shrink: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
    width: 100%;
    margin-left: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2.25rem;
    font-size: 1rem;
    font-weight: 500;
    color: #94a3b8;
}

.header-consultation {
    flex-shrink: 0;
}

.header-menu-toggle,
.mobile-header-close {
    display: none;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.header-menu-toggle {
    flex-direction: column;
    gap: 0.28rem;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 9999px;
    background: #f3f4f6;
}

.header-menu-toggle span {
    display: block;
    width: 1.15rem;
    height: 2px;
    background: #1f2937;
}

.mobile-header-overlay {
    position: fixed;
    inset: 0;
    z-index: 39;
    background: rgba(15, 23, 42, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
}

.mobile-header-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 40;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: min(86vw, 22rem);
    height: 100vh;
    padding: 1.5rem 1.25rem 1.75rem;
    background: #ffffff;
    box-shadow: -18px 0 38px rgba(15, 23, 42, 0.16);
    transform: translateX(100%);
    transition: transform 220ms ease;
}

.mobile-header-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mobile-header-logo {
    width: 7.25rem;
    height: auto;
    object-fit: contain;
}

.mobile-header-close {
    position: relative;
    display: inline-flex;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background: #f3f4f6;
}

.mobile-header-close span {
    position: absolute;
    width: 1rem;
    height: 2px;
    background: #1f2937;
}

.mobile-header-close span:first-child {
    transform: rotate(45deg);
}

.mobile-header-close span:last-child {
    transform: rotate(-45deg);
}

.mobile-header-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-header-nav a {
    font-size: 1.05rem;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
}

.mobile-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: auto;
    background: #1fa1e8;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
}

body.mobile-menu-open {
    overflow: hidden;
}

body.mobile-menu-open .mobile-header-overlay {
    opacity: 1;
    pointer-events: auto;
}

body.mobile-menu-open .mobile-header-panel {
    transform: translateX(0);
}

.hero-section {
    margin-top: -7.75rem;
    width: 100%;
}

.hero-stage {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-surface {
    position: relative;
    min-height: 42rem;
    padding: 16.5rem clamp(1.5rem, 6vw, 3.5rem) 4.5rem;
    background:
        linear-gradient(180deg, rgba(17, 19, 23, 0.22), rgba(17, 19, 23, 0.42)),
        linear-gradient(90deg, rgba(17, 24, 39, 0.38) 0%, rgba(17, 24, 39, 0.12) 28%, rgba(17, 24, 39, 0.04) 52%, rgba(17, 24, 39, 0.22) 100%),
        url("../img/SMM%20Logistics%20hero.svg");
    background-position: center, center, center;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: cover, cover, cover;
}

.hero-surface::before,
.hero-surface::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-surface::before {
    background:
        radial-gradient(circle at 9% 88%, rgba(255, 255, 255, 0.1), transparent 18%),
        radial-gradient(circle at 82% 82%, rgba(0, 0, 0, 0.18), transparent 16%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 28%);
}

.hero-surface::after {
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.4) 0%, rgba(17, 24, 39, 0.08) 26%, transparent 58%);
}

.hero-copy {
    position: relative;
    z-index: 1;
    width: min(100%, 80rem);
    margin: 0 auto;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    max-width: 32rem;
    font-size: clamp(3.5rem, 7vw, 5.25rem);
    font-weight: 300;
    line-height: 0.96;
    letter-spacing: -0.07em;
    color: #ffffff;
}

.hero-title-accent {
    color: #1698dc;
}

.hero-cta {
    display: inline-flex;
    margin-top: 2.4rem;
    align-items: center;
    justify-content: center;
    background: #1fa1e8;
    padding: 1.35rem 1.8rem;
    min-width: 16.1rem;
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 160ms ease, transform 160ms ease;
}

.hero-cta:hover {
    background: #178fce;
    transform: translateY(-1px);
}

.hero-vehicle {
    display: none;
}

.hero-vehicle::before {
    content: none;
}

.intro-band {
    width: 100%;
    background: #ffffff;
    padding: 2.4rem 1.5rem 2.7rem;
}

.intro-band-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 2rem;
    width: min(100%, 80rem);
    margin: 0 auto;
}

.intro-band-image {
    display: block;
    width: 4.9rem;
    height: auto;
    object-fit: contain;
}

.intro-band-text {
    max-width: none;
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.25rem);
    font-weight: 300;
    line-height: 1.02;
    letter-spacing: -0.05em;
    color: #a6a8b5;
}

.intro-band-text-accent {
    color: #2ea4ec;
}

.solutions-section {
    width: 100%;
    background: #ffffff;
    padding: 2.2rem 1.5rem 0;
}

.solutions-shell {
    width: min(100%, 80rem);
    margin: 0 auto;
}

.solutions-heading-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
}

.solutions-heading {
    padding-top: 0.2rem;
}

.solutions-title {
    margin: 0;
    display: flex;
    flex-direction: column;
    font-size: clamp(2.25rem, 4vw, 3.45rem);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: -0.06em;
    color: #aaaaaf;
}

.solutions-title-accent {
    color: #2798df;
    font-weight: 700;
}

.solutions-graphic {
    display: block;
    flex: 0 0 18rem;
    width: 18rem;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 3.2rem;
}

.solution-card {
    min-height: 17rem;
    padding: 3rem 2.35rem 2.5rem;
}

.solution-card h3 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
}

.solution-card p {
    max-width: 16.5rem;
    margin: 2.5rem 0 0;
    font-size: 0.95rem;
    line-height: 1.55;
}

.solution-card-light {
    background: #f2fdff;
}

.solution-card-light h3,
.solution-card-light p,
.solution-card-soft h3,
.solution-card-soft p {
    color: #2197df;
}

.solution-card-soft {
    background: #d7f7ff;
}

.solution-card-strong {
    background: #39a3e7;
}

.solution-card-strong h3,
.solution-card-strong p {
    color: #ffffff;
}

.solution-card-plain {
    background: #f6f6f6;
}

.solution-card-mist {
    background: #ececec;
}

.solution-card-plain h3,
.solution-card-plain p,
.solution-card-mist h3,
.solution-card-mist p {
    color: #4f5363;
}

.solution-card-stone {
    background: #a4a4a4;
}

.solution-card-stone h3,
.solution-card-stone p {
    color: #ffffff;
}

.advantage-section {
    width: 100%;
    background: #ffffff;
    padding: 2.5rem 1.5rem 3rem;
}

.advantage-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 1.5rem;
    width: min(100%, 80rem);
    margin: 0 auto;
}

.advantage-copy {
    max-width: 35rem;
}

.advantage-title {
    margin: 0;
    display: flex;
    flex-direction: column;
    font-size: clamp(2.35rem, 4vw, 3.6rem);
    font-weight: 300;
    line-height: 0.96;
    letter-spacing: -0.06em;
    color: #afafb4;
}

.advantage-title-accent {
    color: #2798df;
    font-weight: 700;
}

.advantage-title-top {
    white-space: nowrap;
}

.advantage-text {
    max-width: 34rem;
    margin: 9rem 0 0;
    font-size: 0.95rem;
    line-height: 1.9;
    color: #2798df;
}

.advantage-image {
    display: block;
    width: 100%;
    max-width: 29rem;
    margin-left: auto;
    height: auto;
    object-fit: contain;
}

.header-logo-image {
    display: block;
    width: 10.5rem;
    height: auto;
    flex-shrink: 0;
    object-fit: contain;
}

.team-section {
    width: 100%;
    padding: 0 0 3rem;
}

.team-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: stretch;
    width: 100%;
    background: #2aa0df;
    overflow: hidden;
}

.team-image {
    display: block;
    width: 100%;
    max-width: 34rem;
    height: auto;
    object-fit: contain;
}

.team-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.3rem 3.2rem 3rem;
    color: #ffffff;
}

.team-title {
    margin: 0;
    display: flex;
    flex-direction: column;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 300;
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.team-title-strong {
    font-weight: 700;
}

.team-highlight {
    max-width: 21rem;
    margin: 2.2rem 0 0;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
}

.team-text {
    max-width: 20rem;
    margin: 1.4rem 0 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.consult-section {
    width: 100%;
    padding: 0 0 3rem;
    background:
        linear-gradient(90deg, rgba(9, 29, 52, 0.1), rgba(9, 29, 52, 0.28)),
        url("../img/Form%20background%20created.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.consult-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 2rem;
    width: min(100%, 80rem);
    min-height: 48rem;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.consult-copy {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem 0 2rem;
    color: #ffffff;
}

.consult-title {
    margin: 0;
    display: flex;
    flex-direction: column;
    font-size: clamp(2.6rem, 5vw, 4.1rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.consult-title-light {
    font-weight: 300;
}

.consult-text {
    max-width: 24rem;
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.96);
}

.consult-card {
    width: 100%;
    max-width: 27rem;
    margin-left: auto;
    border-radius: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.98);
    padding: 1.25rem 1rem 0.7rem;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.16);
}

.consult-card h3 {
    margin: 0 0 1rem;
    font-size: 1.15rem;
    font-weight: 800;
    color: #23435c;
}

.consult-form {
    display: grid;
    gap: 0.85rem;
}

.consult-field {
    display: grid;
    gap: 0.35rem;
}

.consult-field span {
    font-size: 0.8rem;
    font-weight: 700;
    color: #23435c;
}

.consult-field input,
.consult-field textarea {
    width: 100%;
    border: 1px solid #99b0c4;
    border-radius: 0.25rem;
    background: #ffffff;
    padding: 0.7rem 0.8rem;
    font-size: 0.92rem;
    color: #1e293b;
    outline: none;
}

.consult-field input.is-invalid,
.consult-field textarea.is-invalid {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.consult-field textarea {
    resize: vertical;
    min-height: 6rem;
}

.consult-field-error {
    min-height: 1rem;
    font-size: 0.72rem;
    line-height: 1.35;
    color: #c81e1e;
}

.consult-form-status {
    min-height: 1.2rem;
    margin: -0.15rem 0 0;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.4;
}

.consult-form-status.is-success {
    color: #0f766e;
}

.consult-form-status.is-error {
    color: #c81e1e;
}

.consult-submit {
    border: 0;
    border-radius: 0.65rem;
    background: #23435c;
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffffff;
    cursor: pointer;
    transition: opacity 160ms ease, transform 160ms ease;
}

.consult-submit:disabled {
    opacity: 0.75;
    cursor: wait;
}

.consult-note {
    margin: -0.1rem 0 0;
    text-align: center;
    font-size: 0.55rem;
    line-height: 1.3;
    color: #8a9aab;
}

.quote-request-section {
    margin-top: -7.75rem;
    width: 100%;
}

.quote-request-surface {
    background: #ffffff;
    overflow: hidden;
}

.quote-request-top {
    padding: 11rem 1.5rem 2rem;
    background:
        linear-gradient(90deg, rgba(9, 16, 30, 0.96) 0%, rgba(30, 47, 72, 0.82) 38%, rgba(227, 235, 243, 0.68) 100%),
        url("../img/bg%20for%20request%20a%20quote.png");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: 6px solid #0ea5e9;
}

.quote-hero-shell {
    width: min(100%, 80rem);
    margin: 0 auto;
}

.quote-hero-copy {
    max-width: 34rem;
}

.quote-hero-title {
    margin: 0;
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 0.94;
    letter-spacing: -0.06em;
    white-space: nowrap;
    color: #ffffff;
}

.quote-hero-subtitle {
    margin: 0.9rem 0 0;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    color: #0ea5e9;
}

.quote-request-bottom {
    padding: 1.3rem 1.5rem 1.4rem;
    background: #ffffff;
}

.quote-options-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: start;
    gap: 2rem;
    width: min(100%, 80rem);
    margin: 0 auto;
}

.quote-options-copy {
    padding: 0.25rem 0 3.5rem;
}

.quote-options-intro {
    margin: 0 0 0.9rem;
    font-size: 1.1rem;
    font-weight: 300;
    color: #31a8ef;
}

.quote-option-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 1rem;
    max-width: 30rem;
}

.quote-option-card + .quote-option-card {
    margin-top: 2.2rem;
}

.quote-option-line {
    position: relative;
    width: 0.22rem;
    min-height: 8.2rem;
    background: #4b5563;
}

.quote-option-line::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0.95rem;
    background: #0ea5e9;
}

.quote-option-body h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 2.85rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.05em;
    color: #142c66;
}

.quote-option-body p {
    max-width: 18rem;
    margin: 1.1rem 0 0;
    font-size: 0.7rem;
    line-height: 1.7;
    color: #304e76;
}

.quote-option-card-company {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
}

.quote-option-card-company .quote-option-line {
    min-height: 6.2rem;
}

.quote-option-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.65rem;
    height: 2.65rem;
    margin-left: 0.75rem;
    background: #1698dc;
    text-decoration: none;
}

.quote-option-arrow span {
    font-size: 1.5rem;
    line-height: 1;
    color: #ffffff;
}

.quote-options-visual {
    position: relative;
    min-height: 23rem;
    margin-top: 1rem;
    overflow: hidden;
}

.quote-options-photo {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(15, 23, 42, 0.08)),
        linear-gradient(135deg, rgba(9, 29, 52, 0.32), rgba(49, 168, 239, 0.08)),
        url("../img/3.png");
    background-position: center;
    background-size: cover;
    filter: saturate(0.75) brightness(1.12);
}

.quote-options-shape {
    position: absolute;
    right: 0;
    bottom: 0;
}

.quote-options-shape-a {
    width: 8rem;
    height: 8rem;
    background: #f3f4f6;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.quote-options-shape-b {
    right: 3.4rem;
    width: 6rem;
    height: 6rem;
    background: #ffffff;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.quote-options-shape-c {
    right: 0;
    width: 4.4rem;
    height: 4.4rem;
    background: #31a8ef;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.quote-options-circle {
    position: absolute;
    right: 5.8rem;
    bottom: 2.3rem;
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background: #31a8ef;
}

.quote-request-footer-band {
    height: 4rem;
    background: url("../img/bg%20for%20request%20a%20quote.png");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    border-top: 1px solid rgba(174, 196, 219, 0.55);
}

.quote-services-grid-wrap {
    padding-top: 1.3rem;
}

.quote-services-grid-shell {
    width: min(100%, 88rem);
    margin: 0 auto;
    padding-bottom: 2rem;
    text-align: center;
}

.quote-services-grid-title {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.65rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.05em;
    color: #31a8ef;
}

.quote-services-grid-note {
    max-width: 36rem;
    margin: 0.6rem auto 0;
    font-size: 0.52rem;
    line-height: 1.5;
    color: #51627d;
}

.quote-services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
    max-width: 44.5rem;
    margin: 2rem auto 0;
}

.quote-service-card {
    position: relative;
    display: grid;
    place-items: center;
    gap: 1rem;
    min-height: 8rem;
    padding: 1.25rem 1rem 1rem;
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
    border: 1px solid #eef2f7;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: background-color 160ms ease, background-image 160ms ease, color 160ms ease, transform 160ms ease;
}

.quote-service-card:hover {
    background: linear-gradient(180deg, #213f86 0%, #284c98 100%);
    transform: translateY(-1px);
}

.quote-service-plus {
    position: absolute;
    top: 0.5rem;
    right: 0.7rem;
    font-size: 1.7rem;
    font-weight: 300;
    line-height: 1;
    color: rgba(255, 255, 255, 0.72);
}

.quote-service-card .quote-service-plus {
    color: #ffffff;
}

.quote-service-icon {
    display: grid;
    place-items: center;
    width: 2.4rem;
    height: 2.4rem;
    border: 2px solid currentColor;
    border-radius: 0.4rem;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
}

.quote-service-icon-stack {
    position: relative;
    display: block;
    width: 2.9rem;
    height: 2.9rem;
}

.quote-service-icon-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 160ms ease;
}

.quote-service-icon-image-hover {
    opacity: 0;
}

.quote-service-card .quote-service-icon,
.quote-service-card h3 {
    color: #17316a;
}

.quote-service-card h3 {
    margin: 0;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.25;
}

.quote-service-card:hover .quote-service-icon,
.quote-service-card:hover h3 {
    color: #ffffff;
}

.quote-service-card:hover .quote-service-icon-image-default {
    opacity: 0;
}

.quote-service-card:hover .quote-service-icon-image-hover {
    opacity: 1;
}

.quote-request-form-wrap {
    padding-top: 1.2rem;
}

.quote-request-form-shell {
    width: min(100%, 58rem);
    margin: 0 auto;
    padding-bottom: 3rem;
    text-align: center;
}

.quote-request-form {
    width: min(100%, 27rem);
    margin: 2rem auto 0;
    text-align: left;
}

.quote-request-form-intro {
    margin: 0 0 1.2rem;
    text-align: center;
    font-size: 1rem;
    line-height: 1.35;
    color: #1688d9;
}

.quote-request-field + .quote-request-field {
    margin-top: 0.35rem;
}

.quote-request-field label {
    display: block;
    margin-bottom: 0.18rem;
    font-size: 0.74rem;
    font-weight: 500;
    line-height: 1.35;
    color: #36455e;
}

.quote-request-field input,
.quote-request-field select {
    width: 100%;
    height: 2.35rem;
    border: 1px solid #c8d0db;
    background: #ffffff;
    padding: 0 0.8rem;
    font-size: 0.82rem;
    color: #1f2f4a;
}

.quote-request-field input:focus,
.quote-request-field select:focus {
    outline: none;
    border-color: #31a8ef;
    box-shadow: 0 0 0 2px rgba(49, 168, 239, 0.12);
}

.quote-request-field input.is-invalid {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.quote-request-field input[readonly] {
    background: #f7f9fc;
    color: #17316a;
    cursor: default;
}

.quote-request-field-error {
    display: block;
    min-height: 0.7rem;
    margin-top: 0.12rem;
    font-size: 0.66rem;
    line-height: 1.35;
    color: #c81e1e;
}

.quote-request-check {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 0.5rem;
    margin-top: 0.7rem;
    font-size: 0.62rem;
    line-height: 1.45;
    color: #6c7687;
}

.quote-request-check input {
    margin: 0.14rem 0 0;
}

.quote-request-check.is-invalid {
    color: #9f1239;
}

.quote-request-check-error {
    margin-top: 0.2rem;
}

.quote-request-form-status {
    min-height: 1.25rem;
    margin: 0.15rem 0 0;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.45;
}

.quote-request-form-status.is-success {
    color: #0f766e;
}

.quote-request-form-status.is-error {
    color: #c81e1e;
}

.quote-request-submit {
    display: block;
    min-width: 6.4rem;
    margin: 0.8rem auto 0;
    padding: 0.7rem 1.2rem;
    border: 0;
    background: #102e66;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #ffffff;
    cursor: pointer;
}

.quote-request-submit:disabled {
    opacity: 0.75;
    cursor: wait;
}

.footer-shell {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0 55%, rgba(226, 239, 249, 0.75) 55% 72%, rgba(255, 255, 255, 0.94) 72% 100%),
        linear-gradient(45deg, transparent 0 62%, rgba(226, 239, 249, 0.45) 62% 78%, transparent 78% 100%),
        #fffefa;
}

.footer-logo-image {
    display: block;
    width: min(100%, 13rem);
    height: auto;
    object-fit: contain;
}

.footer-orb {
    position: absolute;
    left: 3.5rem;
    top: 3.5rem;
    height: 13rem;
    width: 13rem;
    border-radius: 9999px;
    background: rgba(203, 228, 247, 0.55);
    filter: blur(1px);
}

@media (max-width: 1023px) {
    .header-float {
        gap: 1.25rem;
    }

    .header-actions {
        gap: 1.25rem;
    }

    .header-nav {
        gap: 1.5rem;
        font-size: 0.95rem;
    }

    .hero-section {
        margin-top: -10.5rem;
    }

    .hero-surface {
        min-height: 36rem;
        padding: 14rem 2.2rem 3.5rem;
    }

    .footer-orb {
        left: 0;
        top: 2.75rem;
        height: 9rem;
        width: 9rem;
    }

    .intro-band {
        padding-top: 2.2rem;
        padding-bottom: 2.4rem;
    }

    .intro-band-inner {
        gap: 1.5rem;
    }

    .solutions-heading-row {
        gap: 1.5rem;
    }

    .solutions-graphic {
        flex-basis: 14rem;
        width: 14rem;
    }

    .solutions-grid {
        margin-top: 2.5rem;
    }

    .solution-card {
        min-height: 15.5rem;
        padding: 2.4rem 1.75rem 2.1rem;
    }

    .advantage-shell {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 2rem;
    }

    .advantage-text {
        margin-top: 6rem;
    }

    .advantage-image {
        max-width: 24rem;
    }

    .team-shell {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .team-image {
        max-width: 28rem;
    }

    .team-copy {
        padding: 2.5rem 2.2rem;
    }

    .consult-shell {
        grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
        min-height: 42rem;
        padding-inline: 1.25rem;
    }

    .consult-card {
        max-width: 25rem;
    }

    .quote-request-section {
        margin-top: -10.5rem;
    }

    .quote-request-top {
        padding-top: 13.5rem;
    }

    .quote-options-shell {
        grid-template-columns: 1fr;
    }

    .quote-options-visual {
        max-width: 28rem;
        width: 100%;
        justify-self: end;
    }

    .quote-services-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        max-width: 42rem;
    }

    .quote-request-form-shell {
        width: min(100%, 60rem);
    }
}

@media (max-width: 767px) {
    .header-float {
        align-items: stretch;
        padding-inline: 1rem;
    }

    .header-actions {
        display: none;
    }

    .header-menu-toggle {
        display: inline-flex;
    }

    .hero-section {
        margin-top: -13.5rem;
    }

    .hero-surface {
        min-height: 31rem;
        padding: 14.5rem 1.5rem 2.5rem;
    }

    .hero-title {
        font-size: clamp(2.8rem, 14vw, 4rem);
        line-height: 0.98;
    }

    .hero-cta {
        width: 100%;
        max-width: 18rem;
        padding-inline: 1.5rem;
    }

    .intro-band {
        padding: 2rem 1.25rem 2.2rem;
    }

    .intro-band-inner {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .intro-band-image {
        width: 4rem;
    }

    .intro-band-text {
        font-size: clamp(1.5rem, 7vw, 2rem);
        line-height: 1.06;
    }

    .header-logo-image {
        width: 8rem;
    }

    .footer-logo-image {
        width: min(100%, 10rem);
    }

    .solutions-section {
        padding: 2rem 1.25rem 0;
    }

    .solutions-heading-row {
        flex-direction: column;
        gap: 1.25rem;
    }

    .solutions-graphic {
        width: 100%;
        flex-basis: auto;
        max-width: 14rem;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        margin-top: 2rem;
    }

    .solution-card {
        min-height: auto;
        padding: 2.2rem 1.5rem 2rem;
    }

    .solution-card p {
        max-width: none;
        margin-top: 1.5rem;
    }

    .advantage-section {
        padding: 2rem 1.25rem 2.4rem;
    }

    .advantage-shell {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .advantage-copy {
        max-width: none;
    }

    .advantage-text {
        max-width: none;
        margin-top: 2rem;
        line-height: 1.8;
    }

    .advantage-image {
        max-width: 100%;
        margin-left: 0;
    }

    .team-section {
        padding: 0 0 2.4rem;
    }

    .team-shell {
        grid-template-columns: 1fr;
    }

    .team-image {
        max-width: 100%;
        max-height: 17rem;
    }

    .team-copy {
        padding: 2rem 1.5rem 2.2rem;
    }

    .team-highlight,
    .team-text {
        max-width: none;
    }

    .consult-section {
        padding-bottom: 2.4rem;
    }

    .consult-shell {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 1.5rem;
        padding: 2rem 1.25rem;
    }

    .consult-copy {
        gap: 1.75rem;
        padding: 0;
    }

    .consult-text {
        max-width: none;
    }

    .consult-card {
        max-width: 100%;
        margin-left: 0;
    }

    .quote-hero-section {
        margin-top: -13.5rem;
    }

    .quote-hero-surface {
        min-height: 13rem;
        padding: 13.5rem 1.25rem 1.8rem;
    }

    .quote-hero-title {
        font-size: clamp(2.1rem, 10vw, 3rem);
    }

    .quote-hero-subtitle {
        font-size: 0.95rem;
    }

    .quote-request-section {
        margin-top: -13.5rem;
    }

    .quote-request-top {
        padding: 13.5rem 1.25rem 1.6rem;
    }

    .quote-request-bottom {
        padding: 1rem 1.25rem 1rem;
    }

    .quote-option-card,
    .quote-option-card-company {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 0.8rem;
    }

    .quote-option-card-company .quote-option-line {
        min-height: 5.6rem;
    }

    .quote-option-body h2 {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
    }

    .quote-option-body p {
        max-width: none;
    }

    .quote-option-arrow {
        grid-column: 2;
        margin-left: 0;
        margin-top: 0.8rem;
    }

    .quote-options-visual {
        min-height: 17rem;
        max-width: 100%;
        justify-self: stretch;
    }

    .quote-request-footer-band {
        height: 3rem;
    }

    .quote-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 100%;
    }

    .quote-service-card {
        min-height: 7rem;
        padding: 1rem 0.85rem 0.9rem;
    }

    .quote-request-form {
        width: min(100%, 100%);
    }

    .quote-request-field input,
    .quote-request-field select {
        height: 1.8rem;
        font-size: 0.68rem;
    }
}
