:root {
    --navy: #161a38;
    --navy-light: #22274d;
    --brand: #48449d;
    --brand-dark: #39367f;
    --yellow: #ffca2f;
    --white: #ffffff;
    --surface: #f5f6f8;
    --surface-warm: #faf9f5;
    --text: #171a2f;
    --muted: #62677a;
    --border: #dfe2e8;
    --success: #1f9c75;
    --site-width: 1240px;
    --shadow-sm: 0 10px 30px rgba(22, 26, 56, 0.08);
    --shadow-lg: 0 28px 70px rgba(22, 26, 56, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background: var(--white);
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
        sans-serif;
    line-height: 1.6;
}

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

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 3px;
}

.site-container {
    width: min(var(--site-width), calc(100% - 48px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: -60px;
    left: 16px;
    z-index: 200;
    padding: 10px 16px;
    color: var(--navy);
    background: var(--yellow);
    font-weight: 700;
}

.skip-link:focus {
    top: 12px;
}

.announcement-bar {
    color: var(--white);
    background: var(--brand);
}

.announcement-inner {
    display: flex;
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.topbar-contact,
.topbar-actions,
.language-switcher,
.topbar-socials,
.topbar-contact a {
    display: flex;
    align-items: center;
}

.topbar-contact {
    gap: 27px;
}

.topbar-contact a {
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
}

.topbar-contact svg {
    width: 23px;
    height: 23px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.topbar-actions {
    gap: 34px;
}

.language-switcher {
    gap: 7px;
}

.language-switcher button {
    display: grid;
    width: 34px;
    height: 28px;
    place-items: center;
    border: 1px solid transparent;
    border-radius: 3px;
    padding: 0;
    background: transparent;
    font-size: 23px;
    line-height: 1;
    cursor: pointer;
}

.language-switcher button:hover,
.language-switcher button:focus-visible,
.language-switcher button.active {
    border-color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.1);
}

.topbar-socials {
    gap: 8px;
}

.topbar-socials a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    color: #242533;
    background: var(--white);
    transition:
        color 0.18s ease,
        background 0.18s ease,
        transform 0.18s ease;
}

.topbar-socials svg {
    width: 19px;
    height: 19px;
}

.topbar-socials a:first-child svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.topbar-socials a:nth-child(2) svg,
.topbar-socials a:nth-child(3) svg {
    fill: currentColor;
    stroke: none;
}

.topbar-contact a:hover {
    color: var(--yellow);
}

.topbar-socials a:hover {
    color: var(--navy);
    background: var(--yellow);
    transform: translateY(-1px);
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 80;
    border-bottom: 1px solid rgba(223, 226, 232, 0.9);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    transition: box-shadow 0.2s ease;
}

.main-header.scrolled {
    box-shadow: 0 8px 25px rgba(22, 26, 56, 0.08);
}

.navigation-row {
    display: flex;
    min-height: 82px;
    align-items: center;
    gap: 32px;
}

.site-logo {
    flex: 0 0 auto;
}

.site-logo img {
    width: 66px;
    height: 66px;
    object-fit: contain;
}

.site-menu {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: clamp(17px, 2.4vw, 34px);
}

.site-menu a,
.account-link {
    color: #3c4053;
    font-size: 13px;
    font-weight: 650;
    white-space: nowrap;
}

.site-menu a {
    position: relative;
    padding-block: 8px;
}

.site-menu a::after {
    position: absolute;
    right: 0;
    bottom: 1px;
    left: 0;
    height: 2px;
    background: var(--brand);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.site-menu a:hover::after,
.site-menu a:focus-visible::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.account-link:hover {
    color: var(--brand);
}

.menu-toggle {
    display: none;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 7px;
    padding: 13px 23px;
    font-size: 13px;
    font-weight: 750;
    cursor: pointer;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease;
}

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

.button-primary {
    color: var(--navy);
    background: var(--yellow);
    box-shadow: 0 8px 22px rgba(255, 202, 47, 0.22);
}

.button-primary:hover {
    background: #ffd34f;
    box-shadow: 0 12px 28px rgba(255, 202, 47, 0.3);
}

.button-secondary {
    color: var(--navy);
    border-color: #c9ccd5;
    background: var(--white);
}

.button-secondary:hover {
    border-color: var(--navy);
}

.button-dark {
    color: var(--white);
    background: var(--navy);
}

.button-dark:hover {
    background: var(--navy-light);
}

.button-small {
    min-height: 42px;
    padding: 10px 17px;
    font-size: 12px;
}

.full-button {
    width: 100%;
}

.eyebrow,
.product-label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow {
    margin-bottom: 18px;
    color: var(--brand);
}

.product-label {
    margin-bottom: 32px;
    color: var(--muted);
}

.product-label.light {
    color: rgba(255, 255, 255, 0.55);
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 88px 0 96px;
    background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.38;
    background-image:
        linear-gradient(rgba(72, 68, 157, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(72, 68, 157, 0.055) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(90deg, #000, transparent 80%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 570px;
    align-items: center;
    grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1.12fr);
    gap: clamp(60px, 7vw, 100px);
}

.hero-section.hero-photo-banner {
    isolation: isolate;
    min-height: clamp(660px, 76vh, 790px);
    padding: 0;
    background: var(--navy);
}

.hero-slideshow,
.hero-slide,
.hero-photo-overlay {
    position: absolute;
    inset: 0;
}

.hero-slideshow {
    z-index: 0;
    overflow: hidden;
    background: var(--navy);
}

.hero-slide {
    opacity: 0;
    background-position: center center;
    background-size: cover;
    transform: scale(1.02);
    transition: opacity 0.9s ease;
}

.hero-slide.is-active {
    z-index: 1;
    opacity: 1;
    animation: hero-photo-ken-burns-out 6s linear forwards;
}

@keyframes hero-photo-ken-burns-out {
    from {
        transform: scale(1.15);
    }

    to {
        transform: scale(1.02);
    }
}

.hero-photo-overlay {
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(14, 17, 40, 0.94) 0%,
            rgba(14, 17, 40, 0.78) 43%,
            rgba(14, 17, 40, 0.28) 78%,
            rgba(14, 17, 40, 0.16) 100%
        ),
        linear-gradient(
            180deg,
            rgba(14, 17, 40, 0.08) 40%,
            rgba(14, 17, 40, 0.48) 100%
        );
}

.hero-photo-banner .hero-grid-pattern {
    z-index: 2;
    opacity: 0.14;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.hero-photo-banner .hero-grid {
    z-index: 3;
    display: flex;
    min-height: clamp(660px, 76vh, 790px);
    align-items: center;
    padding: 82px 0 116px;
}

.hero-banner-content {
    width: min(720px, 64%);
}

.hero-banner-content .eyebrow {
    color: var(--yellow);
}

.hero-photo-banner .hero-banner-content h1 {
    color: var(--white);
    text-shadow: 0 3px 26px rgba(0, 0, 0, 0.2);
}

.hero-photo-banner .hero-banner-content > p {
    color: rgba(255, 255, 255, 0.8);
}

.hero-banner-content .button-secondary {
    border-color: rgba(255, 255, 255, 0.52);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.hero-banner-content .button-secondary:hover {
    border-color: var(--white);
    color: var(--navy);
    background: var(--white);
}

.hero-banner-content .hero-assurance span {
    border-color: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.64);
}

.hero-banner-content .hero-assurance strong {
    color: var(--white);
}

.hero-slideshow-controls {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 38px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-slide-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-slide-dots button {
    width: 9px;
    height: 9px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 99px;
    padding: 0;
    background: transparent;
    cursor: pointer;
    transition:
        width 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.hero-slide-dots button.is-active {
    width: 34px;
    border-color: var(--yellow);
    background: var(--yellow);
}

.hero-slideshow-toggle {
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 99px;
    padding: 8px 13px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(14, 17, 40, 0.24);
    font: inherit;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    backdrop-filter: blur(8px);
}

.hero-content h1 {
    max-width: 690px;
    margin: 0;
    color: var(--navy);
    font-size: clamp(52px, 5.2vw, 74px);
    font-weight: 760;
    letter-spacing: -0.052em;
    line-height: 1.04;
}

.hero-content > p {
    max-width: 630px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 36px;
}

.hero-assurance {
    display: grid;
    margin-top: 58px;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.hero-assurance span {
    border-left: 1px solid var(--border);
    padding-left: 18px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.45;
    text-transform: uppercase;
}

.hero-assurance strong {
    display: block;
    margin-bottom: 5px;
    color: var(--navy);
    font-size: 16px;
    text-transform: none;
}

.platform-preview-stage {
    position: relative;
    min-width: 0;
}

.platform-preview {
    position: relative;
    min-width: 0;
    border: 1px solid #d8dbe3;
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform-origin: center center;
    will-change: transform;
}

.platform-preview-stage.is-visible .platform-preview {
    animation: hero-ken-burns-continuous 8s ease-in-out 0.2s infinite alternate
        both;
}

@keyframes hero-ken-burns-continuous {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1);
    }
}

.preview-toolbar {
    display: grid;
    min-height: 47px;
    align-items: center;
    border-bottom: 1px solid var(--border);
    padding: 0 17px;
    color: var(--muted);
    grid-template-columns: 1fr 1fr 1fr;
    font-size: 9px;
}

.preview-toolbar > div {
    display: flex;
    gap: 5px;
}

.preview-toolbar i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d8dae1;
}

.preview-toolbar i:first-child {
    background: #f4b6ac;
}

.preview-toolbar i:nth-child(2) {
    background: #f7d982;
}

.preview-toolbar i:nth-child(3) {
    background: #9edac5;
}

.preview-toolbar span {
    color: var(--text);
    font-weight: 700;
    text-align: center;
}

.preview-toolbar small {
    text-align: right;
}

.preview-body {
    display: grid;
    min-height: 470px;
    grid-template-columns: 63px 1fr;
}

.preview-sidebar {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    border-right: 1px solid var(--border);
    padding-top: 22px;
    background: #fafbfc;
}

.preview-sidebar img {
    width: 31px;
    height: 31px;
    margin-bottom: 18px;
    object-fit: contain;
}

.preview-sidebar span {
    width: 20px;
    height: 7px;
    border-radius: 3px;
    background: #d9dce5;
}

.preview-sidebar span.active {
    width: 30px;
    height: 30px;
    background: var(--brand);
}

.preview-dashboard {
    min-width: 0;
    padding: 25px;
}

.preview-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.preview-heading small,
.preview-heading strong {
    display: block;
}

.preview-heading small {
    color: var(--muted);
    font-size: 8px;
}

.preview-heading strong {
    margin-top: 3px;
    font-size: 14px;
}

.preview-heading > span {
    border-radius: 4px;
    padding: 6px 8px;
    color: #14785c;
    background: #e2f4ed;
    font-size: 7px;
    font-weight: 700;
}

.preview-metrics {
    display: grid;
    margin-top: 22px;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.preview-metrics article {
    min-height: 90px;
    border: 1px solid var(--border);
    border-radius: 7px;
    padding: 12px;
}

.preview-metrics small,
.preview-metrics strong,
.preview-metrics span {
    display: block;
}

.preview-metrics small {
    color: var(--muted);
    font-size: 7px;
}

.preview-metrics strong {
    margin: 7px 0 4px;
    color: var(--navy);
    font-size: 23px;
    line-height: 1;
}

.preview-metrics span {
    color: var(--success);
    font-size: 6px;
}

.preview-chart {
    margin-top: 11px;
    border: 1px solid var(--border);
    border-radius: 7px;
    padding: 13px;
}

.chart-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chart-title strong {
    font-size: 9px;
}

.chart-title small {
    color: var(--muted);
    font-size: 7px;
}

.chart-bars {
    display: flex;
    height: 105px;
    align-items: end;
    justify-content: space-around;
    gap: 9px;
    margin-top: 13px;
    border-bottom: 1px solid var(--border);
    background: repeating-linear-gradient(
        to top,
        #edf0f4 0,
        #edf0f4 1px,
        transparent 1px,
        transparent 27px
    );
}

.chart-bars span {
    width: 18px;
    height: var(--bar);
    border-radius: 3px 3px 0 0;
    background: var(--brand);
}

.chart-bars span:nth-child(6) {
    background: var(--yellow);
}

.preview-events {
    margin-top: 11px;
    border: 1px solid var(--border);
    border-radius: 7px;
}

.preview-events > div {
    display: grid;
    min-height: 42px;
    align-items: center;
    border-bottom: 1px solid var(--border);
    padding: 6px 10px;
    grid-template-columns: auto 1fr auto;
    gap: 8px;
}

.preview-events > div:last-child {
    border-bottom: 0;
}

.preview-events i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--success);
}

.preview-events strong,
.preview-events small {
    display: block;
}

.preview-events strong {
    font-size: 7px;
}

.preview-events small,
.preview-events b {
    color: var(--muted);
    font-size: 6px;
    font-weight: 500;
}

.preview-phone {
    position: absolute;
    right: -33px;
    bottom: -46px;
    width: 178px;
    min-height: 344px;
    border: 7px solid var(--navy);
    border-radius: 25px;
    padding: 26px 14px 16px;
    color: var(--text);
    background: #f8f9fb;
    box-shadow: 0 22px 45px rgba(22, 26, 56, 0.25);
}

.phone-notch {
    position: absolute;
    top: 7px;
    left: 50%;
    width: 54px;
    height: 5px;
    border-radius: 99px;
    background: var(--navy);
    transform: translateX(-50%);
}

.phone-logo {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    padding-bottom: 11px;
    color: var(--brand);
    font-size: 12px;
    font-weight: 850;
}

.phone-logo > span {
    color: #d9a800;
}

.phone-logo small {
    color: var(--muted);
    font-size: 5px;
    font-weight: 500;
}

.preview-phone > small {
    display: block;
    margin-top: 18px;
    color: var(--muted);
    font-size: 7px;
}

.preview-phone > strong {
    display: block;
    margin: 7px 0 12px;
    color: var(--navy);
    font-size: 25px;
    letter-spacing: -0.04em;
}

.phone-status {
    border-radius: 4px;
    padding: 7px;
    color: #13755a;
    background: #dff4ec;
    font-size: 7px;
    font-weight: 700;
}

.phone-stats {
    display: grid;
    margin-top: 9px;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
}

.phone-stats > span {
    border: 1px solid var(--border);
    border-radius: 5px;
    padding: 8px;
    font-size: 10px;
    font-weight: 750;
}

.phone-stats small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 5px;
    font-weight: 500;
}

.preview-phone button {
    width: 100%;
    margin-top: 10px;
    border: 0;
    border-radius: 4px;
    padding: 8px;
    color: var(--navy);
    background: var(--yellow);
    font-size: 6px;
    font-weight: 800;
}

.credibility-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--white);
}

.credibility-bar .site-container {
    display: flex;
    min-height: 84px;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.credibility-bar span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 650;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.credibility-bar div {
    display: flex;
    align-items: center;
    gap: clamp(28px, 5vw, 70px);
}

.credibility-bar strong {
    color: #9a9ead;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.section {
    padding: 112px 0;
}

.section-heading {
    display: grid;
    align-items: end;
    margin-bottom: 58px;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 90px;
}

.section-heading h2,
.product-copy h2,
.pricing-copy h2,
.service-copy h2,
.insurance-content h2,
.testimonials-heading h2,
.contact-copy h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(40px, 4.8vw, 62px);
    font-weight: 730;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.section-heading > p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

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

.solution-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.solution-card {
    position: relative;
    display: grid;
    min-height: 260px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 33px;
    background: var(--white);
    grid-template-columns: 48px 1fr auto;
    gap: 25px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.solution-card:hover {
    border-color: #b9b6dc;
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.solution-card-featured {
    color: var(--white);
    border-color: var(--navy);
    background: var(--navy);
}

.solution-index {
    position: absolute;
    top: 19px;
    right: 21px;
    color: #a2a6b4;
    font-size: 10px;
    font-weight: 800;
}

.solution-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 7px;
    color: var(--brand);
    background: #efeff8;
}

.solution-card-featured .solution-icon {
    color: var(--navy);
    background: var(--yellow);
}

.solution-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.solution-card small {
    display: block;
    margin: 5px 0 12px;
    color: var(--brand);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.solution-card-featured small {
    color: var(--yellow);
}

.solution-card h3 {
    max-width: 460px;
    margin: 0;
    color: var(--navy);
    font-size: 24px;
    line-height: 1.25;
}

.solution-card-featured h3 {
    color: var(--white);
}

.solution-card p {
    max-width: 480px;
    margin: 15px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.solution-card-featured p {
    color: rgba(255, 255, 255, 0.65);
}

.card-arrow {
    align-self: end;
    color: var(--brand);
    font-size: 20px;
}

.solution-card-featured .card-arrow {
    color: var(--yellow);
}

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

.product-intro-grid {
    display: grid;
    align-items: start;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(70px, 10vw, 145px);
}

.section-app .product-copy h2 {
    color: var(--white);
}

.section-app .eyebrow {
    color: var(--yellow);
}

.product-copy > p {
    margin: 25px 0 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 16px;
    line-height: 1.75;
}

.language-list {
    display: flex;
    gap: 8px;
    margin-top: 30px;
}

.language-list span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
    font-weight: 700;
}

.language-list span:first-child {
    color: var(--navy);
    border-color: var(--yellow);
    background: var(--yellow);
}

.app-feature-list {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.app-feature-list article {
    display: grid;
    min-height: 126px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    padding: 27px 0;
    grid-template-columns: 48px 1fr;
    gap: 16px;
}

.app-feature-list > article > span {
    color: var(--yellow);
    font-size: 11px;
    font-weight: 800;
}

.app-feature-list h3,
.app-feature-list p {
    margin: 0;
}

.app-feature-list h3 {
    color: var(--white);
    font-size: 20px;
}

.app-feature-list p {
    max-width: 580px;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
}

.compliance-note {
    margin-top: 35px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 10px;
    text-align: center;
}

.section-pricing {
    background: var(--surface-warm);
}

.pricing-grid {
    display: grid;
    align-items: center;
    grid-template-columns: 0.9fr 0.72fr;
    gap: clamp(70px, 11vw, 160px);
}

.pricing-copy > p {
    max-width: 620px;
    margin: 27px 0 0;
    color: var(--muted);
    font-size: 16px;
}

.pricing-policies {
    display: grid;
    margin-top: 42px;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.pricing-policies span {
    border-left: 2px solid var(--yellow);
    padding-left: 16px;
    color: var(--muted);
    font-size: 11px;
}

.pricing-policies strong {
    display: block;
    margin-bottom: 4px;
    color: var(--navy);
    font-size: 13px;
}

.professional-price-card {
    overflow: hidden;
    border: 1px solid #d7d9e1;
    border-top: 4px solid var(--brand);
    border-radius: 10px;
    padding: 32px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.price-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    padding-bottom: 19px;
}

.price-card-header span {
    color: var(--navy);
    font-size: 15px;
    font-weight: 750;
}

.price-card-header small {
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.price-value {
    display: flex;
    align-items: flex-start;
    padding: 30px 0 22px;
}

.price-value sup {
    margin-top: 12px;
    color: var(--navy);
    font-size: 23px;
    font-weight: 750;
}

.price-value strong {
    color: var(--navy);
    font-size: clamp(68px, 7vw, 88px);
    letter-spacing: -0.08em;
    line-height: 0.9;
}

.price-value > span {
    margin: 13px 0 0 18px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
}

.trial-highlight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 6px;
    padding: 13px 15px;
    color: var(--navy);
    background: #fff5d3;
}

.trial-highlight strong {
    font-size: 14px;
}

.trial-highlight span {
    color: #796830;
    font-size: 9px;
}

.professional-price-card ul {
    display: grid;
    margin: 25px 0;
    padding: 0;
    gap: 11px;
    list-style: none;
}

.professional-price-card li {
    position: relative;
    padding-left: 23px;
    color: #44485c;
    font-size: 13px;
}

.professional-price-card li::before {
    position: absolute;
    top: 0.25em;
    left: 0;
    color: var(--brand);
    content: "✓";
    font-weight: 800;
}

.price-note {
    display: block;
    margin-top: 11px;
    color: var(--muted);
    font-size: 9px;
    text-align: center;
}

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

.section-training {
    background: var(--surface);
}

.service-grid {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 0.92fr;
    gap: clamp(60px, 8vw, 110px);
}

.service-grid-reverse {
    grid-template-columns: 0.92fr 1fr;
}

.service-image {
    position: relative;
}

.service-image > img {
    width: 100%;
    aspect-ratio: 1.12;
    border-radius: 9px;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.image-caption {
    position: absolute;
    right: 20px;
    bottom: 20px;
    min-width: 235px;
    border-left: 4px solid var(--yellow);
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-sm);
}

.image-caption strong,
.image-caption span {
    display: block;
}

.image-caption strong {
    color: var(--navy);
    font-size: 14px;
}

.image-caption span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 10px;
}

.service-copy > p {
    margin: 25px 0 0;
    color: var(--muted);
    font-size: 16px;
}

.professional-list {
    display: grid;
    margin: 35px 0;
    padding: 0;
    grid-template-columns: 1fr 1fr;
    gap: 0 25px;
    list-style: none;
}

.professional-list li {
    position: relative;
    min-height: 62px;
    border-top: 1px solid var(--border);
    padding: 17px 0 13px 23px;
    color: #44485b;
    font-size: 12px;
}

.professional-list li::before {
    position: absolute;
    top: 16px;
    left: 0;
    color: var(--brand);
    content: "✓";
    font-weight: 850;
}

.course-facts {
    display: grid;
    margin-top: 34px;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.course-facts span {
    border: 1px solid var(--border);
    border-radius: 7px;
    padding: 17px;
    color: var(--muted);
    font-size: 10px;
}

.course-facts strong {
    display: block;
    margin-bottom: 3px;
    color: var(--navy);
    font-size: 13px;
}

.training-support {
    display: grid;
    margin: 22px 0 32px;
    gap: 9px;
}

.training-support span {
    position: relative;
    padding-left: 22px;
    color: #44485b;
    font-size: 12px;
}

.training-support span::before {
    position: absolute;
    left: 0;
    color: var(--brand);
    content: "✓";
    font-weight: 800;
}

.training-modules {
    display: grid;
    margin-top: 65px;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
    grid-template-columns: repeat(3, 1fr);
}

.training-modules span {
    min-height: 82px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 22px;
    color: #3f4356;
    background: var(--white);
    font-size: 12px;
    font-weight: 650;
}

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

.insurance-panel {
    position: relative;
    min-height: 660px;
    overflow: hidden;
    border-radius: 10px;
    background: var(--navy);
}

.insurance-panel > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.insurance-panel::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(22, 26, 56, 0.04) 10%,
        rgba(22, 26, 56, 0.85) 68%,
        rgba(22, 26, 56, 0.97)
    );
    content: "";
}

.insurance-content {
    position: absolute;
    top: 50%;
    right: 62px;
    z-index: 2;
    width: min(500px, calc(100% - 124px));
    color: var(--white);
    transform: translateY(-50%);
}

.insurance-content h2 {
    color: var(--white);
}

.insurance-content .eyebrow {
    color: var(--yellow);
}

.insurance-content > p {
    margin: 25px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
}

.insurance-benefits {
    display: grid;
    margin: 30px 0 35px;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
}

.insurance-benefits span {
    position: relative;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 11px;
}

.insurance-benefits span::before {
    position: absolute;
    left: 0;
    color: var(--yellow);
    content: "✓";
    font-weight: 800;
}

.section-testimonials {
    overflow: hidden;
    background: var(--surface);
}

.testimonials-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 50px;
}

.testimonials-heading h2 {
    max-width: 800px;
}

.testimonial-navigation {
    display: flex;
    gap: 8px;
}

.carousel-button {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid #bfc3cd;
    border-radius: 6px;
    color: var(--navy);
    background: var(--white);
    font-size: 18px;
    cursor: pointer;
}

.carousel-button:hover {
    color: var(--white);
    border-color: var(--navy);
    background: var(--navy);
}

.testimonial-track {
    display: grid;
    overflow-x: auto;
    padding-bottom: 18px;
    grid-auto-columns: minmax(350px, 1fr);
    grid-auto-flow: column;
    gap: 16px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.testimonial-card {
    display: flex;
    min-height: 350px;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--border);
    border-radius: 9px;
    padding: 30px;
    background: var(--white);
    scroll-snap-align: start;
}

.testimonial-card blockquote {
    margin: 0;
    color: #333749;
    font-size: 14px;
    line-height: 1.75;
}

.testimonial-card > div {
    display: flex;
    align-items: center;
    gap: 13px;
    border-top: 1px solid var(--border);
    padding-top: 19px;
}

.testimonial-card img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card strong,
.testimonial-card small {
    display: block;
}

.testimonial-card strong {
    color: var(--navy);
    font-size: 13px;
}

.testimonial-card small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 9px;
    text-transform: uppercase;
}

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

.contact-grid {
    display: grid;
    align-items: start;
    grid-template-columns: 0.78fr 1.22fr;
    gap: clamp(70px, 9vw, 130px);
}

.contact-copy h2 {
    color: var(--white);
}

.contact-copy .eyebrow {
    color: var(--yellow);
}

.contact-copy > p {
    margin: 25px 0 42px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 15px;
}

.contact-copy dl {
    margin: 0;
}

.contact-copy dl > div {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 18px 0;
}

.contact-copy dt {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-copy dd {
    margin: 0;
    color: var(--white);
    font-size: 13px;
}

.contact-copy a:hover {
    color: var(--yellow);
}

.contact-form-panel {
    border-radius: 10px;
    padding: 38px;
    color: var(--text);
    background: var(--white);
}

.form-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    padding-bottom: 21px;
}

.form-heading h3,
.form-heading p {
    margin: 0;
}

.form-heading h3 {
    color: var(--navy);
    font-size: 21px;
}

.form-heading p {
    color: var(--muted);
    font-size: 10px;
}

.contact-form {
    display: grid;
    margin-top: 25px;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form label {
    display: grid;
    min-width: 0;
    gap: 6px;
    color: #44485b;
    font-size: 10px;
    font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid #cfd2da;
    border-radius: 6px;
    padding: 12px 13px;
    color: var(--text);
    background: var(--white);
    font-size: 13px;
}

.contact-form input,
.contact-form select {
    min-height: 47px;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--brand);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(72, 68, 157, 0.1);
}

.website-field {
    position: absolute;
    left: -9999px;
}

.form-message {
    margin-top: 18px;
    border-radius: 6px;
    padding: 12px 14px;
    font-size: 12px;
}

.form-message.success {
    color: #166147;
    background: #e2f4ed;
}

.form-message.error {
    color: #8b2d25;
    background: #fde7e4;
}

.site-footer {
    padding: 78px 0 26px;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #0e1128;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.35fr 0.95fr 0.85fr 1.1fr;
    gap: 55px;
}

.footer-brand img {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--white);
    object-fit: contain;
}

.footer-brand > p {
    max-width: 300px;
    margin: 20px 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 12px;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-socials a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
}

.site-footer h3 {
    margin: 0 0 22px;
    color: var(--white);
    font-size: 12px;
}

.site-footer ul {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 11px;
    list-style: none;
}

.site-footer li,
.footer-contact a,
.footer-contact p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
}

.site-footer a:hover {
    color: var(--yellow);
}

.footer-contact {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
}

.footer-contact p {
    margin-top: 12px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 62px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 22px;
    color: rgba(255, 255, 255, 0.36);
    font-size: 9px;
    text-transform: uppercase;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 70;
    display: grid;
    min-width: 54px;
    height: 42px;
    place-items: center;
    border-radius: 7px;
    padding: 0 12px;
    color: var(--white);
    background: #179d69;
    box-shadow: 0 10px 25px rgba(22, 26, 56, 0.18);
    font-size: 9px;
    font-weight: 800;
}

.narrow-page {
    width: min(800px, calc(100% - 40px));
    min-height: 62vh;
    margin: 0 auto;
    padding: 100px 0;
}

.narrow-page h1 {
    margin: 0 0 22px;
    color: var(--navy);
    font-size: clamp(42px, 6vw, 66px);
    letter-spacing: -0.045em;
    line-height: 1.05;
}

.narrow-page p {
    color: var(--muted);
    font-size: 16px;
}

.notice {
    margin: 25px 0;
    border-left: 3px solid var(--yellow);
    padding: 15px;
    background: #fff5d3;
}

.text-link {
    color: var(--brand);
    font-weight: 700;
}

.reveal {
    transition:
        opacity 0.55s ease,
        transform 0.55s ease;
}

.reveal.is-entering {
    opacity: 0;
    transform: translateY(18px);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .site-container {
        width: min(var(--site-width), calc(100% - 40px));
    }

    .site-menu {
        gap: 16px;
    }

    .site-menu a {
        font-size: 11px;
    }

    .account-link {
        display: none;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 0.83fr) minmax(500px, 1.17fr);
        gap: 50px;
    }

    .preview-phone {
        right: -15px;
    }

    .professional-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    html {
        scroll-padding-top: 74px;
    }

    .announcement-inner {
        min-height: 60px;
        gap: 15px;
    }

    .topbar-contact {
        gap: 15px;
    }

    .topbar-contact a {
        gap: 7px;
        font-size: 12px;
    }

    .topbar-contact svg {
        width: 19px;
        height: 19px;
    }

    .topbar-actions {
        gap: 14px;
    }

    .language-switcher {
        gap: 3px;
    }

    .language-switcher button {
        width: 27px;
        height: 24px;
        font-size: 19px;
    }

    .topbar-socials a {
        width: 31px;
        height: 31px;
    }

    .topbar-socials svg {
        width: 16px;
        height: 16px;
    }

    .navigation-row {
        min-height: 72px;
    }

    .site-logo img {
        width: 58px;
        height: 58px;
    }

    .header-actions {
        display: none;
    }

    .menu-toggle {
        display: flex;
        width: 48px;
        align-items: center;
        flex-direction: column;
        gap: 4px;
        margin-left: auto;
        border: 0;
        padding: 7px;
        color: var(--navy);
        background: transparent;
    }

    .menu-toggle span {
        width: 22px;
        height: 2px;
        background: currentColor;
    }

    .menu-toggle strong {
        margin-top: 2px;
        font-size: 8px;
        text-transform: uppercase;
    }

    .site-menu {
        position: absolute;
        top: 72px;
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid var(--border);
        padding: 8px 20px 20px;
        background: var(--white);
        box-shadow: 0 18px 35px rgba(22, 26, 56, 0.12);
    }

    .site-menu.open {
        display: flex;
    }

    .site-menu a {
        border-bottom: 1px solid var(--border);
        padding: 13px 2px;
        font-size: 12px;
    }

    .hero-section {
        padding-top: 70px;
    }

    .hero-grid,
    .section-heading,
    .product-intro-grid,
    .pricing-grid,
    .service-grid,
    .service-grid-reverse,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 80px;
    }

    .platform-preview {
        width: calc(100% - 25px);
    }

    .credibility-bar .site-container {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 16px;
        padding-block: 20px;
    }

    .section {
        padding: 90px 0;
    }

    .section-heading {
        align-items: start;
        gap: 26px;
    }

    .section-heading > p {
        max-width: 700px;
    }

    .product-intro-grid,
    .pricing-grid,
    .service-grid {
        gap: 60px;
    }

    .professional-price-card {
        width: min(100%, 600px);
    }

    .service-grid-reverse .service-copy {
        order: 2;
    }

    .service-grid-reverse .service-image {
        order: 1;
    }

    .service-image > img {
        aspect-ratio: 1.5;
    }

    .training-modules {
        grid-template-columns: repeat(2, 1fr);
    }

    .insurance-panel {
        min-height: 800px;
    }

    .insurance-panel::after {
        background: linear-gradient(
            180deg,
            rgba(22, 26, 56, 0.02) 12%,
            rgba(22, 26, 56, 0.88) 62%,
            rgba(22, 26, 56, 0.98)
        );
    }

    .insurance-panel > img {
        object-position: 36% center;
    }

    .insurance-content {
        top: auto;
        right: 35px;
        bottom: 42px;
        left: 35px;
        width: auto;
        transform: none;
    }

    .testimonial-track {
        grid-auto-columns: minmax(330px, 70%);
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 620px) {
    .site-container {
        width: min(var(--site-width), calc(100% - 30px));
    }

    .announcement-inner {
        min-height: 0;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        padding-block: 10px;
    }

    .topbar-contact,
    .topbar-actions {
        width: 100%;
        justify-content: center;
    }

    .topbar-contact {
        gap: 12px;
    }

    .topbar-contact a {
        font-size: 10px;
    }

    .topbar-contact svg {
        width: 17px;
        height: 17px;
    }

    .topbar-socials a {
        width: 29px;
        height: 29px;
    }

    .hero-section {
        padding: 58px 0 76px;
    }

    .hero-grid-pattern {
        background-size: 32px 32px;
    }

    .hero-content h1 {
        font-size: 45px;
    }

    .hero-content > p {
        font-size: 16px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-assurance {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 42px;
    }

    .hero-assurance span {
        min-height: 42px;
    }

    .platform-preview {
        width: calc(100% - 12px);
    }

    .preview-toolbar {
        grid-template-columns: 1fr 1fr;
    }

    .preview-toolbar small {
        display: none;
    }

    .preview-toolbar span {
        text-align: right;
    }

    .preview-body {
        min-height: 410px;
        grid-template-columns: 45px 1fr;
    }

    .preview-sidebar {
        gap: 15px;
    }

    .preview-sidebar img {
        width: 27px;
        height: 27px;
    }

    .preview-dashboard {
        padding: 15px;
    }

    .preview-heading > span,
    .preview-metrics article:nth-child(3),
    .preview-events {
        display: none;
    }

    .preview-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .chart-bars span {
        width: 13px;
    }

    .preview-phone {
        right: -12px;
        bottom: -56px;
        width: 150px;
        min-height: 300px;
        padding: 24px 11px 13px;
    }

    .preview-phone > strong {
        font-size: 21px;
    }

    .credibility-bar div {
        display: grid;
        width: 100%;
        grid-template-columns: 1fr 1fr;
        gap: 8px 25px;
    }

    .section {
        padding: 72px 0;
    }

    .section-heading h2,
    .product-copy h2,
    .pricing-copy h2,
    .service-copy h2,
    .insurance-content h2,
    .testimonials-heading h2,
    .contact-copy h2 {
        font-size: 39px;
    }

    .solution-cards {
        grid-template-columns: 1fr;
    }

    .solution-card {
        min-height: 250px;
        padding: 27px;
        grid-template-columns: 43px 1fr;
        gap: 18px;
    }

    .solution-icon {
        width: 43px;
        height: 43px;
    }

    .card-arrow {
        display: none;
    }

    .solution-card h3 {
        font-size: 21px;
    }

    .app-feature-list article {
        grid-template-columns: 36px 1fr;
    }

    .pricing-policies,
    .professional-list,
    .course-facts,
    .insurance-benefits,
    .form-row {
        grid-template-columns: 1fr;
    }

    .professional-price-card {
        padding: 24px;
    }

    .price-value strong {
        font-size: 67px;
    }

    .trial-highlight {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    .service-image > img {
        aspect-ratio: 1.08;
    }

    .image-caption {
        right: 12px;
        bottom: 12px;
        left: 12px;
        min-width: 0;
    }

    .training-modules {
        grid-template-columns: 1fr;
    }

    .training-modules span {
        min-height: 67px;
    }

    .insurance-panel {
        min-height: 900px;
    }

    .insurance-content {
        right: 22px;
        bottom: 28px;
        left: 22px;
    }

    .testimonial-track {
        grid-auto-columns: 88%;
    }

    .testimonial-card {
        min-height: 390px;
        padding: 24px;
    }

    .testimonials-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-form-panel {
        padding: 26px 21px;
    }

    .form-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .whatsapp-float {
        right: 12px;
        bottom: 12px;
    }
}

@media (max-width: 900px) {
    .hero-section.hero-photo-banner,
    .hero-photo-banner .hero-grid {
        min-height: 720px;
    }

    .hero-photo-banner .hero-grid {
        padding: 72px 0 112px;
    }

    .hero-banner-content {
        width: min(760px, 88%);
    }

    .hero-photo-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(14, 17, 40, 0.94) 0%,
                rgba(14, 17, 40, 0.76) 62%,
                rgba(14, 17, 40, 0.38) 100%
            ),
            linear-gradient(
                180deg,
                rgba(14, 17, 40, 0.12) 35%,
                rgba(14, 17, 40, 0.58) 100%
            );
    }
}

@media (max-width: 620px) {
    .hero-section.hero-photo-banner,
    .hero-photo-banner .hero-grid {
        min-height: 740px;
    }

    .hero-photo-banner .hero-grid {
        padding: 62px 0 105px;
    }

    .hero-banner-content {
        width: 100%;
    }

    .hero-banner-content h1 {
        font-size: clamp(42px, 13vw, 54px);
    }

    .hero-banner-content .hero-assurance {
        gap: 11px;
        margin-top: 34px;
    }

    .hero-banner-content .hero-assurance span {
        min-height: 0;
    }

    .hero-slideshow-controls {
        bottom: 24px;
    }

    .hero-slide {
        background-position: 62% center;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .platform-preview-stage .platform-preview {
        animation: none !important;
        transform: none !important;
    }

    .hero-slide {
        transition-duration: 0.9s !important;
    }

    .hero-slide.is-active {
        animation: hero-photo-ken-burns-out 6s linear forwards !important;
    }
}
