:root {
    --brand-primary: #0d698b;
    --brand-secondary: #1380a1;
    --brand-accent: #e0c350;
    --brand-ink: #173046;
    --brand-muted: #64748b;
    --brand-surface: #ffffff;
    --brand-surface-soft: #f5f8fb;
    --brand-line: #d8e3eb;
    --brand-success: #198754;
    --brand-shadow: 0 18px 40px rgba(13, 105, 139, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.site-body,
body {
    margin: 0;
    color: var(--brand-ink);
    background:
        radial-gradient(circle at top right, rgba(224, 195, 80, 0.18), transparent 22%),
        linear-gradient(180deg, #f8fbfd 0%, #edf5f8 100%);
    font-family: "Trebuchet MS", "Gill Sans", sans-serif;
}

a {
    color: var(--brand-primary);
    text-decoration: none;
}

a:hover {
    color: var(--brand-secondary);
}

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

.marketing-shell {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(216, 227, 235, 0.9);
    background: rgba(248, 251, 253, 0.95);
    backdrop-filter: blur(10px);
}

.site-header__inner {
    width: min(1160px, calc(100% - 32px));
    min-height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand img {
    width: 72px;
    height: auto;
}

.brand__eyebrow {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-secondary);
}

.brand__name {
    margin: 0;
    font-size: 24px;
    line-height: 1.1;
    color: var(--brand-ink);
}

.brand__tag {
    margin: 4px 0 0;
    font-size: 14px;
    color: var(--brand-muted);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}

.site-nav a {
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    color: var(--brand-ink);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
    background: rgba(19, 128, 161, 0.12);
    color: var(--brand-primary);
    transform: translateY(-1px);
}

.page-main {
    padding: 0px 0 56px;
}

.hero {
    padding: 48px 0 20px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.85fr);
    gap: 28px;
    align-items: stretch;
}

.hero-grid--showcase {
    grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.78fr);
}

.hero--fullbleed {
    padding: 0;
}

.hero--status {
    padding-top: 28px;
}

.hero-copy,
.login-panel,
.hero-slider,
.hero-spotlight,
.section-card,
.cta-banner,
.page-hero,
.content-surface,
.logo-strip,
.contact-panel,
.contact-card {
    background: var(--brand-surface);
    border: 1px solid rgba(216, 227, 235, 0.85);
    border-radius: 28px;
    box-shadow: var(--brand-shadow);
}

.hero-copy {
    position: relative;
    overflow: hidden;
    padding: 42px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 250, 0.95)),
        url("../Images/2.jpg") center center / cover no-repeat;
}

.hero-copy::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72));
}

.hero-copy > * {
    position: relative;
    z-index: 1;
}

.hero-copy--login {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 250, 0.95)),
        url("../Images/hospitalmanagement.jpeg") center center / cover no-repeat;
}

.hero-slider {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    isolation: isolate;
}

.hero-slider--full {
    width: 100vw;
    min-height: 620px;
    margin-left: calc(50% - 50vw);
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: end;
    padding: 48px max(32px, calc((100vw - 1160px) / 2 + 32px));
    background-position: center center;
    background-size: cover;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.75s ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(9, 33, 50, 0.14), rgba(8, 34, 53, 0.74)),
        linear-gradient(90deg, rgba(10, 49, 76, 0.78), rgba(10, 49, 76, 0.18));
}

.hero-slide__content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    color: #ffffff;
}

.hero-slide__content h1 {
    margin: 0 0 16px;
    font-size: clamp(26px, 3.1vw, 42px);
    line-height: 1.05;
}

.hero-slide__content p {
    margin: 0;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
}

.hero-slide__points {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.hero-slide__points li {
    position: relative;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.65;
}

.hero-slide__points li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-accent);
}

.hero-slide__content .eyebrow {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.hero-slider__controls {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    display: flex;
    gap: 10px;
}

.hero-slider__dot {
    width: 13px;
    height: 13px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.36);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.hero-slider__dot.is-active,
.hero-slider__dot:hover {
    background: #ffffff;
    transform: scale(1.08);
}

.hero-login-panel {
    display: none;
    position: absolute;
    top: 28px;
    right: max(32px, calc((100vw - 1160px) / 2 + 32px));
    z-index: 3;
    width: min(360px, calc(100vw - 40px));
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    background: rgba(10, 33, 50, 0.62);
    box-shadow: 0 18px 36px rgba(3, 19, 31, 0.28);
    backdrop-filter: blur(10px);
    color: #ffffff;
    transform: scale(1);
    opacity: 0.8;
}

.hero-login-panel.is-visible {
    display: block;
}

.hero-login-panel__eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-login-panel h2 {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.1;
    color: #ffffff;
}

.hero-login-panel p {
    margin: 0 0 18px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.84);
}

.hero-login-panel .button-link {
    width: 100%;
}

.hero-spotlight {
    padding: 34px 30px;
    background:
        radial-gradient(circle at top right, rgba(224, 195, 80, 0.18), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 249, 252, 0.98));
}

.hero-spotlight__eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand-secondary);
}

.hero-spotlight h2 {
    margin: 0 0 14px;
    color: var(--brand-primary);
    font-size: 32px;
    line-height: 1.15;
}

.hero-spotlight p {
    margin: 0;
    line-height: 1.75;
    color: #4a6378;
}

.hero-spotlight__list {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.hero-spotlight__list li {
    position: relative;
    padding-left: 18px;
    line-height: 1.65;
    color: var(--brand-ink);
}

.hero-spotlight__list li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-accent);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(224, 195, 80, 0.2);
    color: #7a5b00;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1 {
    margin: 0 0 16px;
    /*font-size: clamp(30px, 3.5vw, 48px);*/
    font-size: clamp(26px, 3.1vw, 42px);
    line-height: 1.04;
    color: var(--brand-primary);
}

.hero-copy p,
.page-hero p,
.section-lead {
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    color: #3b556c;
}

.hero-points {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.hero-points li,
.feature-list li,
.simple-list li {
    position: relative;
    padding-left: 18px;
    line-height: 1.6;
    color: var(--brand-ink);
}

.hero-points li::before,
.feature-list li::before,
.simple-list li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-accent);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.button-link,
.button-link--secondary,
.hero-login-panel .login-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button-link,
.hero-login-panel .login-button {
    background: linear-gradient(135deg, var(--brand-secondary), var(--brand-primary));
    color: #ffffff;
    border: none;
    box-shadow: 0 16px 30px rgba(13, 105, 139, 0.18);
}

    .button-link:hover,
    .hero-login-panel .login-button:hover {
        color: #ffffff;
        transform: translateY(-1px);
        cursor:pointer;
    }

.button-link--secondary {
    border: 1px solid var(--brand-line);
    background: #ffffff;
    color: var(--brand-primary);
}

.button-link--secondary:hover {
    background: rgba(19, 128, 161, 0.08);
    color: var(--brand-primary);
    transform: translateY(-1px);
}

.login-panel {
    padding: 34px 30px;
}

.login-panel--page {
    align-self: center;
}

.login-modal-open {
    overflow: hidden;
}

.login-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(10, 33, 50, 0.56);
    backdrop-filter: blur(8px);
}

.login-modal.is-open {
    display: flex;
}

.login-modal__panel {
    position: relative;
    width: min(100%, 460px);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
}

.login-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border: 1px solid var(--brand-line);
    border-radius: 999px;
    background: #ffffff;
    color: var(--brand-primary);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.login-modal__close:hover {
    background: rgba(19, 128, 161, 0.08);
    transform: translateY(-1px);
}

.login-panel h2 {
    margin: 0 0 12px;
    color: var(--brand-primary);
}

.login-panel p {
    margin: 0 0 20px;
    line-height: 1.6;
    color: #496176;
}

.message-banner {
    min-height: 22px;
    margin-bottom: 14px;
    font-weight: 700;
}

.message-banner--marketing {
    min-height: 0;
    margin-top: 22px;
    margin-bottom: 0;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(220, 53, 69, 0.08);
    border: 1px solid rgba(220, 53, 69, 0.18);
    color: #b42318;
    line-height: 1.6;
}

.message-banner--marketing:empty {
    display: none;
}

.message-banner--stacked {
    margin-top: 0;
    margin-bottom: 22px;
}

.field-group {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
    opacity:1;
}

.field-group label {
    font-weight: 700;
    font-size: 14px;
}

.field-input {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid var(--brand-line);
    border-radius: 14px;
    background: #fdfefe;
    font-size: 15px;
    color: var(--brand-ink);
}

.field-input:focus {
    outline: 2px solid rgba(19, 128, 161, 0.18);
    border-color: var(--brand-secondary);
}

.login-note {
    margin-top: 14px;
    font-size: 13px;
    color: var(--brand-muted);
}

.stats-grid,
.preview-grid,
.contact-grid,
.product-overview-grid,
.metrics-grid,
.testimonial-grid {
    display: grid;
    gap: 18px;
}

.stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 28px;
}

.stat-card {
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(13, 105, 139, 0.98), rgba(19, 128, 161, 0.94));
    color: #ffffff;
    box-shadow: var(--brand-shadow);
}

.stat-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 32px;
    line-height: 1;
}

.stat-card span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.84);
}

.section-block {
    margin-top: 28px;
}

.section-card {
    padding: 34px;
}

.section-header {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.section-header h2 {
    margin: 0 0 8px;
    color: var(--brand-primary);
    font-size: clamp(28px, 3vw, 40px);
}

.section-header p {
    margin: 0;
    max-width: 720px;
    line-height: 1.7;
    color: #4c667b;
}

.preview-grid,
.product-overview-grid,
.contact-grid,
.testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
    height: 100%;
    padding: 24px;
    border: 1px solid var(--brand-line);
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff, #f8fbfd);
}

.card h3 {
    margin: 18px 0 10px;
    color: var(--brand-primary);
    font-size: 24px;
}

.card p {
    margin: 0;
    line-height: 1.7;
    color: #526b80;
}

.card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 20px;
}

.mini-link {
    display: inline-block;
    margin-top: 16px;
    font-weight: 700;
}

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

.content-copy p {
    margin: 0 0 16px;
    line-height: 1.8;
    color: #4f687d;
}

.feature-list,
.simple-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature-list {
    display: grid;
    gap: 10px;
}

.image-panel {
    overflow: hidden;
    min-height: 100%;
    border-radius: 28px;
    border: 1px solid var(--brand-line);
    background: linear-gradient(180deg, #ffffff, #edf5f8);
}

.image-panel img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

.testimonial-grid {
    margin-top: 8px;
}

.quote-card {
    height: 100%;
    padding: 26px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(19, 128, 161, 0.07), rgba(13, 105, 139, 0.03));
    border: 1px solid rgba(216, 227, 235, 0.9);
}

.quote-card p {
    margin: 0 0 18px;
    line-height: 1.8;
    color: #426076;
}

.quote-card strong {
    display: block;
    color: var(--brand-primary);
}

.quote-card span {
    display: block;
    margin-top: 6px;
    color: var(--brand-muted);
    font-size: 14px;
}

.testimonial-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 8px;
}

.testimonial-track {
    display: flex;
    width: 100%;
    transition: transform 0.7s ease;
}

.testimonial-page {
    width: 100%;
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.quote-card--photo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.quote-card__photo {
    width: 72px;
    height: 72px;
    margin-bottom: 18px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(19, 128, 161, 0.15);
    background: #ffffff;
}

.testimonial-carousel__controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
}

.testimonial-carousel__dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(19, 128, 161, 0.25);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.testimonial-carousel__dot.is-active,
.testimonial-carousel__dot:hover {
    background: var(--brand-primary);
    transform: scale(1.08);
}

.cta-banner {
    margin-top: 28px;
    padding: 28px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background:
        linear-gradient(135deg, rgba(13, 105, 139, 0.96), rgba(25, 135, 84, 0.88));
    color: #ffffff;
}

.cta-banner h3,
.cta-banner p {
    margin: 0;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.cta-banner .button-link--secondary {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.page-hero {
    padding: 36px;
    margin-bottom: 28px;
}

.page-hero p {
    max-width: 840px;
}

.metrics-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
}

.product-hero {
    padding: 40px;
    background:
        radial-gradient(circle at top right, rgba(224, 195, 80, 0.18), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 250, 0.98));
}

.product-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.92fr);
    gap: 24px;
    align-items: start;
}

.signal-grid,
.journey-grid,
.detail-list-grid {
    display: grid;
    gap: 18px;
}

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

.signal-card,
.journey-card,
.info-card {
    padding: 22px;
    border-radius: 24px;
    border: 1px solid var(--brand-line);
    background: linear-gradient(180deg, #ffffff, #f7fbfd);
}

.signal-card strong,
.journey-card strong,
.info-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--brand-primary);
    font-size: 19px;
}

.signal-card span,
.journey-card span,
.info-card span {
    color: #4d667b;
    line-height: 1.7;
}

.journey-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.detail-list-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
}

.module-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 0;
}

.module-badge {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(19, 128, 161, 0.1);
    color: var(--brand-primary);
    font-size: 13px;
    font-weight: 700;
}

.section-note {
    margin-top: 18px;
    padding: 16px 18px;
    border-left: 4px solid var(--brand-accent);
    border-radius: 16px;
    background: rgba(224, 195, 80, 0.08);
    color: #4b667b;
    line-height: 1.7;
}

.metric {
    padding: 22px;
    border-radius: 22px;
    background: rgba(13, 105, 139, 0.05);
}

.metric strong {
    display: block;
    margin-bottom: 8px;
    color: var(--brand-primary);
    font-size: 26px;
}

.metric span {
    color: #4f687d;
    line-height: 1.6;
}

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

.side-nav {
    position: sticky;
    top: 108px;
    padding: 22px;
    border-radius: 24px;
    background: var(--brand-surface);
    border: 1px solid var(--brand-line);
    box-shadow: var(--brand-shadow);
}

.side-nav h3 {
    margin: 0 0 14px;
    color: var(--brand-primary);
}

.side-nav a {
    display: block;
    padding: 10px 12px;
    margin-bottom: 8px;
    border-radius: 14px;
    color: #446178;
    font-weight: 700;
}

.side-nav a:hover {
    background: rgba(19, 128, 161, 0.08);
}

.content-surface {
    padding: 28px;
}

.detail-section + .detail-section {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--brand-line);
}

.detail-section h2,
.detail-section h3 {
    margin: 0 0 14px;
    color: var(--brand-primary);
}

.detail-section p {
    margin: 0 0 14px;
    line-height: 1.8;
    color: #4b667b;
}

.detail-section img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid var(--brand-line);
    background: #ffffff;
}

.detail-head {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.detail-head__copy {
    min-width: 0;
}

.feature-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}

.feature-table td,
.feature-table th {
    padding: 12px 14px;
    border: 1px solid var(--brand-line);
    vertical-align: top;
    line-height: 1.6;
}

.feature-table th {
    background: rgba(19, 128, 161, 0.08);
    color: var(--brand-primary);
    text-align: left;
}

.logo-strip {
    padding: 28px;
}

.logo-strip h2 {
    margin: 0 0 10px;
    color: var(--brand-primary);
}

.logo-strip p {
    margin: 0 0 24px;
    line-height: 1.7;
    color: #4c667b;
}

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

.client-logo-grid img {
    width: 100%;
    height: 94px;
    object-fit: contain;
    padding: 16px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid var(--brand-line);
}

.contact-grid {
    align-items: stretch;
}

.contact-card {
    padding: 26px;
}

.contact-card h3 {
    margin: 0 0 12px;
    color: var(--brand-primary);
}

.contact-card p,
.contact-card li {
    margin: 0;
    line-height: 1.8;
    color: #4e677c;
}

.contact-card ul {
    margin: 12px 0 0;
    padding-left: 18px;
}

.contact-card ul.simple-list {
    padding-left: 0;
    list-style: none;
}

.contact-card ul.simple-list li {
    position: relative;
    padding-left: 18px;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.contact-follow {
    margin-top: 24px;
}

.contact-follow strong {
    display: block;
    color: var(--brand-primary);
    font-size: 15px;
}

.contact-detail {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 12px;
    line-height: 1.7;
    color: #4e677c;
}

.contact-detail strong {
    min-width: 82px;
    color: var(--brand-primary);
}

.contact-detail a {
    word-break: break-word;
}

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

.marketing-form-card {
    padding: 28px;
    border-radius: 24px;
    border: 1px solid var(--brand-line);
    background: linear-gradient(180deg, #ffffff, #f8fbfd);
    scroll-margin-top: 120px;
}

.marketing-form-card h3 {
    margin: 0 0 10px;
    color: var(--brand-primary);
    font-size: 26px;
}

.marketing-form-card p {
    margin: 0;
    line-height: 1.7;
    color: #50697e;
}

.marketing-form-card .field-group {
    margin-bottom: 0;
}

.marketing-form-card .field-group--wide {
    grid-column: 1 / -1;
}

.marketing-form-card .field-input,
.marketing-form-card select.field-input,
.marketing-form-card textarea.field-input {
    width: 100%;
}

.marketing-form-card textarea.field-input {
    min-height: 120px;
    padding-top: 14px;
    padding-bottom: 14px;
    resize: vertical;
    font-family: inherit;
}

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

.form-helper {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--brand-muted);
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
}

.form-submit {
    cursor: pointer;
}

.status-note {
    display: block;
    margin-top: 18px;
    padding: 13px 16px;
    border-radius: 16px;
    background: rgba(25, 135, 84, 0.12);
    border: 1px solid rgba(25, 135, 84, 0.24);
    color: #146c43;
    font-weight: 700;
    line-height: 1.6;
}

.status-note--error {
    background: rgba(220, 53, 69, 0.1);
    border-color: rgba(220, 53, 69, 0.22);
    color: #b42318;
}

.site-footer {
   /* margin-top: 10px;*/
    padding: 0px 0 38px;
}

.site-footer__inner {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
    padding: 24px 26px;
    border-radius: 24px;
    background: #173046;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.site-footer__links a {
    color: rgba(255, 255, 255, 0.85);
}

.muted {
    color: var(--brand-muted);
}

@media (max-width: 980px) {
    .hero-grid,
    .split-layout,
    .side-layout,
    .product-hero__grid,
    .preview-grid,
    .product-overview-grid,
    .dual-form-grid,
    .contact-grid,
    .testimonial-grid,
    .testimonial-page,
    .signal-grid,
    .journey-grid,
    .detail-list-grid,
    .metrics-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .client-logo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .site-header__inner,
    .brand,
    .site-nav {
        align-items: flex-start;
    }

    .site-header__inner {
        padding: 16px 0;
        flex-direction: column;
    }

    .side-nav {
        position: static;
    }

    .hero-slider {
        min-height: 460px;
    }

    .hero-slider--full {
        min-height: 620px;
    }

    .hero-login-panel {
        top: 24px;
        right: 20px;
    }
}

@media (max-width: 640px) {
    .marketing-shell,
    .site-header__inner,
    .site-footer__inner {
        width: min(100% - 20px, 1160px);
    }

    .hero-copy,
    .login-panel,
    .section-card,
    .page-hero,
    .content-surface,
    .logo-strip,
    .contact-card {
        padding: 22px;
        border-radius: 22px;
    }

    .hero-points {
        grid-template-columns: 1fr;
    }

    .hero-slide {
        min-height: 420px;
        padding: 24px 20px;
        align-items: end;
    }

    .hero-slide__content h1 {
        /*font-size: 30px;*/
        font-size: 26px;
    }

    .hero-slide__points {
        grid-template-columns: 1fr;
    }

    .hero-slider__controls {
        left: 24px;
        right: auto;
        bottom: 20px;
    }

    .hero-slider--full {
        min-height: 700px;
    }

    .hero-login-panel {
        top: 18px;
        right: 10px;
        left: 10px;
        width: auto;
        padding: 20px;
        border-radius: 20px;
    }

    .hero-login-panel h2 {
        font-size: 24px;
    }

    .login-modal {
        padding: 16px;
    }

    .login-modal__panel {
        width: 100%;
        max-height: calc(100vh - 32px);
    }

    .login-modal__close {
        top: 14px;
        right: 14px;
    }

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

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

    .detail-head {
        flex-direction: column;
    }

    .detail-section img {
        width: 100%;
        height: auto;
        max-width: 260px;
    }

    .cta-banner {
        padding: 22px;
        flex-direction: column;
        align-items: flex-start;
    }
}
