:root {
    --ink: #102522;
    --muted: #5f7470;
    --line: rgba(36, 168, 144, 0.18);
    --paper: #f3fbf8;
    --white: #ffffff;
    --brand: #30c0a8;
    --brand-bright: #30ccb4;
    --brand-deep: #249084;
    --brand-dark: #0c6f66;
    --brand-soft: #e7fbf6;
    --brand-red: #e61f2a;
    --brand-red-soft: #fff1ef;
    --gold: #c89b3c;
    --shadow: 0 32px 90px rgba(12, 111, 102, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(180deg, rgba(48, 192, 168, 0.1), transparent 420px),
        var(--paper);
    font-family: "Manrope", "Noto Sans TC", sans-serif;
    letter-spacing: 0;
}

body.nav-open {
    overflow: hidden;
}

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

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

.site-header {
    position: fixed;
    top: 18px;
    left: 50%;
    z-index: 50;
    width: min(1180px, calc(100% - 32px));
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 12px 14px 12px 20px;
    border: 1px solid rgba(48, 192, 168, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 18px 60px rgba(12, 111, 102, 0.1);
    backdrop-filter: blur(22px);
}

.brand img {
    width: 132px;
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: clamp(16px, 2vw, 30px);
    color: rgba(16, 37, 34, 0.72);
    font-size: 14px;
    font-weight: 700;
}

.site-nav a {
    transition: color 0.2s ease;
}

.site-nav a:hover {
    color: var(--brand-deep);
}

.language-switch {
    display: flex;
    gap: 4px;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
}

.language-switch button,
.nav-toggle {
    border: 0;
    font: inherit;
    cursor: pointer;
}

.language-switch button {
    min-width: 48px;
    min-height: 34px;
    border-radius: 999px;
    color: var(--muted);
    background: transparent;
    font-size: 13px;
    font-weight: 800;
}

.language-switch button.is-active {
    color: var(--white);
    background: linear-gradient(135deg, var(--brand-deep), var(--brand));
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-deep), var(--brand));
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    border-radius: 99px;
    background: var(--white);
}

main {
    overflow: hidden;
}

.hero {
    min-height: 92vh;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.74fr);
    align-items: center;
    gap: clamp(32px, 6vw, 96px);
    padding: 150px max(24px, calc((100vw - 1180px) / 2)) 56px;
    background:
        radial-gradient(circle at 82% 18%, rgba(48, 204, 180, 0.34), transparent 34%),
        radial-gradient(circle at 14% 72%, rgba(230, 31, 42, 0.1), transparent 28%),
        linear-gradient(150deg, #ffffff 0%, #f3fbf8 48%, #dff7f1 100%);
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--brand-deep);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.hero h1,
.section-heading h2,
.story h2,
.platform-hero h1,
.platform-preview h2,
.product-copy h2,
.team-copy h2,
.leadership h2,
.news-feature h2,
.news-timeline h2,
.article-main h2,
.security h2,
.contact-cta h2 {
    margin: 0;
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 760px;
    font-size: clamp(48px, 7.2vw, 104px);
}

.hero-lead {
    max-width: 620px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: clamp(18px, 2.2vw, 25px);
    line-height: 1.65;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

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

.button-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--brand-deep), var(--brand-bright));
    box-shadow: 0 18px 42px rgba(36, 168, 144, 0.3);
}

.button-secondary {
    color: var(--brand-dark);
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(48, 192, 168, 0.32);
}

.hero-device {
    position: relative;
    min-height: 620px;
}

.hero-ecosystem-frame {
    position: absolute;
    inset: -18px 0 auto auto;
    width: min(460px, 100%);
    height: 660px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(48, 192, 168, 0.28);
    border-radius: 46px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow);
}

.hero-ecosystem-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.26), transparent 26%),
        radial-gradient(circle at 80% 12%, rgba(230, 31, 42, 0.12), transparent 24%);
    pointer-events: none;
}

.hero-ecosystem-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.device-shell {
    position: absolute;
    inset: 0 0 auto auto;
    width: min(410px, 100%);
    min-height: 590px;
    padding: 24px 24px 0;
    border-radius: 52px;
    background: linear-gradient(155deg, #123532, #071f1d 48%, #1f766d);
    box-shadow: var(--shadow);
}

.device-logo {
    width: 64px;
    margin: 0 auto 18px;
}

.device-screen {
    width: 100%;
    max-height: 480px;
    object-fit: contain;
    filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.32));
}

.signal-card {
    position: absolute;
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 0 18px;
    border: 1px solid rgba(48, 192, 168, 0.28);
    border-radius: 18px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 20px 56px rgba(12, 111, 102, 0.16);
    backdrop-filter: blur(16px);
    font-weight: 900;
}

.signal-card::before {
    content: "";
    width: 10px;
    height: 10px;
    margin-right: 10px;
    border-radius: 50%;
    background: var(--brand-red);
    box-shadow: 0 0 0 6px rgba(230, 31, 42, 0.12);
}

.signal-card-top {
    top: 112px;
    left: 0;
}

.signal-card-bottom {
    right: 0;
    bottom: 88px;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: min(1180px, calc(100% - 40px));
    margin: -20px auto 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 24px 70px rgba(12, 111, 102, 0.1);
}

.metrics article {
    min-height: 148px;
    padding: 30px;
    border-right: 1px solid var(--line);
}

.metrics article:last-child {
    border-right: 0;
}

.metrics strong {
    display: block;
    color: var(--brand-deep);
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1;
}

.metrics article:nth-child(2) strong {
    color: var(--brand-red);
}

.metrics span {
    display: block;
    margin-top: 14px;
    color: var(--muted);
    font-weight: 800;
}

.story,
.services,
.platform-surfaces,
.platform-workflow,
.platform-usecases,
.platform-preview,
.product-showcase,
.team-section,
.leadership,
.news-list,
.news-feature,
.news-timeline,
.article-shell,
.journey,
.security,
.media,
.partners,
.contact-cta {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(84px, 11vw, 146px) 0;
}

.story {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.68fr);
    gap: clamp(28px, 6vw, 82px);
    align-items: end;
}

.story h2,
.section-heading h2,
.platform-preview h2,
.product-copy h2,
.team-copy h2,
.leadership h2,
.news-feature h2,
.news-timeline h2,
.article-main h2,
.security h2,
.contact-cta h2 {
    font-size: clamp(34px, 5.2vw, 72px);
}

.team-copy h2 {
    font-size: clamp(34px, 4.2vw, 58px);
}

.story > p,
.platform-hero-lead,
.platform-preview p:not(.eyebrow),
.product-copy > p,
.team-copy > p:not(.eyebrow),
.leadership-intro > p:not(.eyebrow),
.news-feature-copy > p:not(.eyebrow),
.security p,
.section-heading p:not(.eyebrow) {
    margin: 0;
    color: var(--muted);
    font-size: clamp(17px, 1.8vw, 21px);
    line-height: 1.8;
}

.center {
    max-width: 820px;
    margin: 0 auto 54px;
    text-align: center;
}

.metrics,
.services,
.platform-surfaces,
.platform-workflow,
.platform-usecases,
.platform-preview,
.product-showcase,
.team-section,
.leadership,
.news-list,
.news-feature,
.news-timeline,
.article-shell,
.media,
.contact-cta {
    scroll-margin-top: 120px;
}

.platform-hero {
    min-height: 94vh;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.56fr);
    align-items: center;
    gap: clamp(34px, 6vw, 92px);
    padding: 150px max(24px, calc((100vw - 1180px) / 2)) 70px;
    background:
        radial-gradient(circle at 84% 16%, rgba(48, 204, 180, 0.34), transparent 34%),
        radial-gradient(circle at 22% 86%, rgba(230, 31, 42, 0.12), transparent 30%),
        linear-gradient(150deg, #ffffff 0%, #f3fbf8 48%, #dff7f1 100%);
}

.platform-hero h1 {
    max-width: 880px;
    font-size: clamp(46px, 6.8vw, 100px);
    letter-spacing: -0.055em;
}

.platform-hero-lead {
    max-width: 720px;
    margin: 28px 0 0;
}

.platform-action-panel {
    display: grid;
    grid-template-columns: minmax(240px, 0.82fr) minmax(260px, 1fr);
    gap: 14px;
    max-width: 760px;
    margin-top: 34px;
}

.platform-action-block {
    padding: 18px;
    border: 1px solid rgba(48, 192, 168, 0.24);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 48px rgba(12, 111, 102, 0.1);
    backdrop-filter: blur(18px);
}

.platform-action-block > p {
    margin: 0 0 14px;
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.store-buttons,
.portal-buttons {
    display: grid;
    gap: 10px;
}

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

.store-badge {
    display: flex;
    align-items: center;
    min-height: 56px;
    padding: 8px 10px;
    border: 1px solid rgba(48, 192, 168, 0.24);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.78);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.store-badge:hover,
.portal-link:not(.is-placeholder):hover {
    transform: translateY(-2px);
    border-color: rgba(48, 192, 168, 0.44);
    box-shadow: 0 18px 38px rgba(12, 111, 102, 0.14);
}

.store-badge img {
    width: 100%;
    max-height: 40px;
    object-fit: contain;
}

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

.portal-link {
    min-height: 58px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 14px 18px;
    border: 1px solid rgba(48, 192, 168, 0.24);
    border-radius: 16px;
    color: var(--brand-dark);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.6)),
        linear-gradient(135deg, rgba(48, 204, 180, 0.12), rgba(230, 31, 42, 0.06));
    font-weight: 900;
    text-align: center;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, opacity 0.22s ease;
}

.portal-link small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
}

.portal-link.is-placeholder {
    cursor: not-allowed;
    opacity: 0.68;
}

.platform-hero-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 620px;
}

.platform-hero-visual::before {
    content: "";
    position: absolute;
    inset: 10% -12% 4% 8%;
    border-radius: 8px;
    background:
        radial-gradient(circle at 70% 22%, rgba(230, 31, 42, 0.18), transparent 32%),
        linear-gradient(145deg, rgba(48, 204, 180, 0.38), rgba(255, 255, 255, 0));
    filter: blur(22px);
}

.hero-phone-frame {
    position: relative;
    width: min(340px, 100%);
    margin: 0;
    padding: 10px;
    border: 1px solid rgba(48, 192, 168, 0.34);
    border-radius: 48px;
    background: linear-gradient(155deg, #123532, #071f1d 48%, #1f766d);
    box-shadow: var(--shadow);
}

.hero-phone-frame::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 50%;
    z-index: 2;
    width: 96px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
    transform: translateX(-50%);
}

.hero-phone-frame img {
    width: 100%;
    max-height: min(72vh, 720px);
    object-fit: cover;
    border-radius: 38px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.asset-placeholder {
    position: relative;
    isolation: isolate;
    min-height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid rgba(48, 192, 168, 0.26);
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.62)),
        radial-gradient(circle at 18% 20%, rgba(48, 204, 180, 0.22), transparent 34%),
        radial-gradient(circle at 84% 12%, rgba(230, 31, 42, 0.12), transparent 30%);
    box-shadow: 0 28px 84px rgba(12, 111, 102, 0.15);
}

.asset-placeholder::before {
    content: "";
    position: absolute;
    inset: 18px;
    z-index: -1;
    border: 1px dashed rgba(48, 192, 168, 0.3);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(48, 192, 168, 0.1) 0 25%, transparent 25% 50%, rgba(48, 192, 168, 0.1) 50% 75%, transparent 75%),
        rgba(255, 255, 255, 0.28);
    background-size: 24px 24px;
    opacity: 0.7;
}

.asset-placeholder::after {
    content: attr(data-asset);
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--brand-dark);
    background: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.03em;
}

.asset-placeholder span {
    width: fit-content;
    margin-bottom: 14px;
    color: var(--brand-red);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.13em;
}

.asset-placeholder strong {
    max-width: 420px;
    color: var(--ink);
    font-size: clamp(26px, 3.4vw, 44px);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.asset-placeholder p {
    max-width: 430px;
    margin: 16px 0 0;
    color: var(--muted);
    font-weight: 800;
    line-height: 1.65;
}

.asset-placeholder-phone {
    width: min(370px, 100%);
    min-height: 640px;
    border-radius: 46px;
}

.asset-placeholder-phone::before {
    border-radius: 34px;
}

.asset-placeholder-small {
    min-height: 230px;
    margin-top: 28px;
}

.asset-placeholder-small strong {
    font-size: clamp(22px, 2vw, 30px);
}

.surface-grid,
.workflow-grid,
.usecase-grid {
    display: grid;
    gap: 16px;
}

.surface-grid {
    grid-template-columns: repeat(3, 1fr);
}

.surface-card,
.workflow-card,
.usecase-card,
.preview-card {
    border: 1px solid rgba(48, 192, 168, 0.2);
    border-radius: 8px;
    box-shadow: 0 22px 70px rgba(12, 111, 102, 0.09);
}

.surface-card {
    min-height: 620px;
    padding: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.66)),
        linear-gradient(135deg, rgba(48, 204, 180, 0.12), rgba(230, 31, 42, 0.06));
}

.surface-card-dark {
    color: var(--white);
    background:
        radial-gradient(circle at 88% 12%, rgba(48, 204, 180, 0.3), transparent 38%),
        linear-gradient(145deg, #0b2e2a, #123f39);
}

.surface-card-topline,
.workflow-card span {
    color: var(--brand-red);
    font-weight: 900;
}

.surface-card-dark .surface-card-topline,
.surface-card-dark .asset-placeholder span {
    color: var(--gold);
}

.surface-card h3 {
    margin: 18px 0 14px;
    font-size: clamp(30px, 3.6vw, 46px);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.surface-card > p {
    margin: 0;
    color: currentColor;
    opacity: 0.68;
    line-height: 1.75;
}

.surface-card-dark .asset-placeholder {
    border-color: rgba(255, 255, 255, 0.22);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08)),
        radial-gradient(circle at 18% 20%, rgba(48, 204, 180, 0.24), transparent 34%);
    box-shadow: none;
}

.surface-card-dark .asset-placeholder strong,
.surface-card-dark .asset-placeholder p,
.surface-card-dark .asset-placeholder::after {
    color: var(--white);
}

.surface-card-dark .asset-placeholder::after {
    background: rgba(255, 255, 255, 0.16);
}

.surface-phone-preview {
    width: min(220px, 100%);
    margin: 28px auto 0;
    padding: 8px;
    border: 1px solid rgba(48, 192, 168, 0.26);
    border-radius: 34px;
    background: linear-gradient(155deg, #123532, #071f1d 48%, #1f766d);
    box-shadow: 0 22px 58px rgba(12, 111, 102, 0.18);
}

.surface-phone-preview img {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    border-radius: 26px;
}

.surface-web-preview {
    margin: 30px -10px 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.2);
}

.surface-card:not(.surface-card-dark) .surface-web-preview {
    border-color: rgba(48, 192, 168, 0.22);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 22px 58px rgba(12, 111, 102, 0.12);
}

.surface-web-preview img {
    width: 100%;
    aspect-ratio: 1.6 / 1;
    object-fit: cover;
}

.workflow-grid {
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--line);
    gap: 1px;
}

.workflow-card {
    min-height: 300px;
    padding: 32px;
    border: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: none;
}

.workflow-card h3,
.usecase-card h3 {
    margin: 24px 0 12px;
    font-size: 24px;
    line-height: 1.25;
}

.workflow-card p,
.usecase-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

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

.usecase-card {
    min-height: 270px;
    padding: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.64)),
        linear-gradient(135deg, rgba(48, 204, 180, 0.1), rgba(230, 31, 42, 0.05));
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.usecase-card:hover {
    transform: translateY(-5px);
    border-color: rgba(48, 192, 168, 0.42);
    box-shadow: 0 28px 80px rgba(12, 111, 102, 0.16);
}

.platform-preview {
    display: grid;
    grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
    border-top: 1px solid var(--line);
}

.preview-copy {
    position: sticky;
    top: 128px;
}

.preview-copy p:not(.eyebrow) {
    margin: 24px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.preview-grid {
    display: grid;
    grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1fr);
    gap: 16px;
}

.preview-card {
    padding: 12px;
    background: rgba(255, 255, 255, 0.62);
}

.preview-card .asset-placeholder {
    min-height: 320px;
    box-shadow: none;
}

.preview-card-phone {
    grid-row: span 2;
}

.preview-card-phone .asset-placeholder {
    min-height: 690px;
}

.preview-phone-frame {
    width: min(280px, 100%);
    margin: 0 auto;
    padding: 9px;
    border: 1px solid rgba(48, 192, 168, 0.26);
    border-radius: 40px;
    background: linear-gradient(155deg, #123532, #071f1d 48%, #1f766d);
    box-shadow: 0 24px 70px rgba(12, 111, 102, 0.18);
}

.preview-phone-frame img {
    width: 100%;
    max-height: 690px;
    object-fit: cover;
    border-radius: 31px;
}

.preview-web-frame {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(48, 192, 168, 0.2);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 22px 60px rgba(12, 111, 102, 0.12);
}

.preview-web-frame img {
    width: 100%;
    aspect-ratio: 1.6 / 1;
    object-fit: cover;
}

.platform-security {
    border-top: 1px solid var(--line);
}

.boodion-hero {
    min-height: 94vh;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.58fr);
    align-items: center;
    gap: clamp(36px, 6vw, 92px);
    padding: 150px max(24px, calc((100vw - 1180px) / 2)) 72px;
    background:
        radial-gradient(circle at 80% 18%, rgba(48, 204, 180, 0.34), transparent 34%),
        radial-gradient(circle at 18% 78%, rgba(239, 106, 69, 0.16), transparent 30%),
        linear-gradient(150deg, #ffffff 0%, #f5fcf8 46%, #def7f1 100%);
}

.boodion-logo-mark {
    width: 86px;
    height: 86px;
    margin: 0 0 28px;
    border-radius: 26px;
    box-shadow: 0 24px 58px rgba(12, 111, 102, 0.16);
}

.boodion-hero h1,
.boodion-download h2,
.boodion-roles h2,
.boodion-features h2,
.boodion-flows h2,
.boodion-integration h2 {
    margin: 0;
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.boodion-hero h1 {
    max-width: 760px;
    font-size: clamp(44px, 5.6vw, 82px);
}

.boodion-hero-lead {
    max-width: 720px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: clamp(18px, 2.1vw, 25px);
    line-height: 1.65;
}

.boodion-hero-visual {
    position: relative;
    min-height: 650px;
    display: grid;
    place-items: center;
}

.boodion-hero-visual::before {
    content: "";
    position: absolute;
    inset: 5% -12% 4% 4%;
    border-radius: 8px;
    background:
        radial-gradient(circle at 72% 22%, rgba(239, 106, 69, 0.18), transparent 30%),
        linear-gradient(145deg, rgba(48, 204, 180, 0.38), rgba(255, 255, 255, 0));
    filter: blur(22px);
}

.boodion-phone-frame {
    position: relative;
    z-index: 1;
    width: min(340px, 100%);
    margin: 0;
    padding: 10px;
    border: 1px solid rgba(48, 192, 168, 0.34);
    border-radius: 50px;
    background: linear-gradient(155deg, #123532, #071f1d 48%, #1f766d);
    box-shadow: var(--shadow);
}

.boodion-phone-frame::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 50%;
    z-index: 2;
    width: 94px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
    transform: translateX(-50%);
}

.boodion-phone-frame img {
    width: 100%;
    max-height: min(72vh, 720px);
    object-fit: cover;
    border-radius: 39px;
}

.boodion-signal {
    position: absolute;
    z-index: 2;
    min-width: 150px;
    padding: 14px 18px;
    border: 1px solid rgba(48, 192, 168, 0.24);
    border-radius: 999px;
    color: var(--brand-dark);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 22px 56px rgba(12, 111, 102, 0.14);
    font-size: 14px;
    font-weight: 900;
    text-align: center;
    backdrop-filter: blur(18px);
}

.signal-a {
    top: 116px;
    left: -30px;
}

.signal-b {
    right: -28px;
    top: 45%;
}

.signal-c {
    left: -14px;
    bottom: 122px;
}

.boodion-download,
.boodion-roles,
.boodion-features,
.boodion-flows,
.boodion-integration {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(84px, 11vw, 146px) 0;
}

.boodion-download {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.48fr);
    gap: clamp(24px, 5vw, 72px);
    align-items: center;
    border-top: 1px solid var(--line);
}

.boodion-download h2,
.boodion-roles h2,
.boodion-features h2,
.boodion-flows h2,
.boodion-integration h2 {
    font-size: clamp(34px, 5.2vw, 72px);
}

.boodion-download p:not(.eyebrow),
.boodion-flows p:not(.eyebrow),
.boodion-integration p:not(.eyebrow) {
    margin: 22px 0 0;
    color: var(--muted);
    font-size: clamp(17px, 1.8vw, 21px);
    line-height: 1.8;
}

.boodion-store-panel {
    display: grid;
    gap: 14px;
    padding: 20px;
    border: 1px solid rgba(48, 192, 168, 0.24);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 22px 64px rgba(12, 111, 102, 0.12);
}

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

.boodion-role-card {
    min-height: 520px;
    padding: 34px;
    border: 1px solid rgba(48, 192, 168, 0.2);
    border-radius: 8px;
    background:
        radial-gradient(circle at 82% 12%, rgba(239, 106, 69, 0.1), transparent 26%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58)),
        linear-gradient(145deg, rgba(48, 204, 180, 0.14), rgba(230, 31, 42, 0.06));
    box-shadow: 0 22px 70px rgba(12, 111, 102, 0.1);
}

.boodion-role-card.role-card-dark {
    color: var(--white);
    background:
        radial-gradient(circle at 86% 12%, rgba(239, 106, 69, 0.2), transparent 28%),
        linear-gradient(145deg, #103a36, #071f1d);
}

.boodion-role-card img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin: 0 0 34px;
    border-radius: 42px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 20px 46px rgba(12, 111, 102, 0.12);
}

.boodion-role-card h3 {
    margin: 0 0 24px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
}

.boodion-role-card ul {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.boodion-role-card li {
    position: relative;
    padding-left: 24px;
    color: var(--muted);
    line-height: 1.75;
}

.boodion-role-card li::before {
    content: "";
    position: absolute;
    top: 0.82em;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--brand);
}

.role-card-dark .eyebrow {
    color: var(--brand-bright);
}

.role-card-dark li {
    color: rgba(255, 255, 255, 0.78);
}

.role-card-dark li::before {
    background: #ef6a45;
}

.boodion-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--line);
}

.boodion-feature-card {
    min-height: 270px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
}

.boodion-feature-card span {
    color: var(--brand-deep);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.boodion-feature-card h3 {
    margin: 28px 0 12px;
    font-size: 24px;
    line-height: 1.25;
}

.boodion-feature-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.boodion-flows {
    display: grid;
    grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
    border-top: 1px solid var(--line);
}

.boodion-flow-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.boodion-flow-card {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(48, 192, 168, 0.2);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 22px 60px rgba(12, 111, 102, 0.12);
}

.boodion-flow-card.flow-wide {
    grid-column: 1 / -1;
}

.boodion-flow-card img {
    width: 100%;
    aspect-ratio: 1.62 / 1;
    object-fit: cover;
}

.boodion-flow-card figcaption {
    padding: 16px 18px 18px;
    color: var(--brand-dark);
    font-weight: 900;
}

.boodion-system-frame {
    margin: 54px 0 0;
    padding: 18px;
    border: 1px solid rgba(48, 192, 168, 0.22);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.62)),
        radial-gradient(circle at 14% 18%, rgba(48, 204, 180, 0.18), transparent 28%),
        radial-gradient(circle at 84% 14%, rgba(239, 106, 69, 0.12), transparent 30%);
    box-shadow: 0 28px 84px rgba(12, 111, 102, 0.14);
}

.boodion-system-frame img {
    width: 100%;
    border-radius: 16px;
}

.news-hero {
    min-height: 78vh;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
    align-items: end;
    gap: clamp(30px, 6vw, 90px);
    padding: 150px max(24px, calc((100vw - 1180px) / 2)) 78px;
    background:
        radial-gradient(circle at 84% 18%, rgba(48, 204, 180, 0.32), transparent 34%),
        radial-gradient(circle at 18% 84%, rgba(230, 31, 42, 0.1), transparent 30%),
        linear-gradient(150deg, #ffffff 0%, #f3fbf8 52%, #dff7f1 100%);
}

.news-hero h1 {
    max-width: 840px;
    margin: 0;
    font-size: clamp(50px, 8vw, 112px);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.news-hero-copy > p:not(.eyebrow) {
    max-width: 720px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: clamp(18px, 2.1vw, 25px);
    line-height: 1.7;
}

.news-hero-panel {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    border: 1px solid rgba(48, 192, 168, 0.24);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.62)),
        linear-gradient(135deg, rgba(48, 204, 180, 0.16), rgba(230, 31, 42, 0.08));
    box-shadow: 0 28px 82px rgba(12, 111, 102, 0.14);
}

.news-hero-panel span,
.news-article-card span,
.news-timeline-item span {
    color: var(--brand-red);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.13em;
}

.news-hero-panel strong {
    display: block;
    margin-top: 20px;
    color: var(--brand-dark);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1;
}

.news-hero-panel p {
    margin: 22px 0 0;
    color: var(--muted);
    line-height: 1.75;
}

.news-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.news-article-card {
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    border: 1px solid rgba(48, 192, 168, 0.2);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.66)),
        linear-gradient(135deg, rgba(48, 204, 180, 0.12), rgba(230, 31, 42, 0.06));
    box-shadow: 0 22px 70px rgba(12, 111, 102, 0.09);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.news-article-card.is-featured {
    grid-column: span 2;
    color: var(--white);
    background:
        radial-gradient(circle at 88% 12%, rgba(48, 204, 180, 0.3), transparent 38%),
        linear-gradient(145deg, #0b2e2a, #123f39);
}

.news-article-card:hover {
    transform: translateY(-5px);
    border-color: rgba(48, 192, 168, 0.44);
    box-shadow: 0 30px 86px rgba(12, 111, 102, 0.18);
}

.news-article-card time {
    display: block;
    margin-top: 12px;
    color: currentColor;
    opacity: 0.66;
    font-size: 13px;
    font-weight: 900;
}

.news-article-card h3 {
    margin: 46px 0 0;
    font-size: clamp(24px, 2.8vw, 38px);
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.news-article-card p {
    margin: 24px 0 0;
    color: currentColor;
    opacity: 0.72;
    line-height: 1.75;
}

.news-feature {
    display: grid;
    grid-template-columns: minmax(280px, 0.66fr) minmax(0, 1fr);
    gap: clamp(30px, 6vw, 84px);
    align-items: center;
    border-top: 1px solid var(--line);
}

.news-feature-copy > p:not(.eyebrow) {
    margin-top: 24px;
}

.news-feature-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.news-feature-points span {
    padding: 10px 15px;
    border: 1px solid rgba(48, 192, 168, 0.22);
    border-radius: 12px;
    color: var(--brand-dark);
    background: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 900;
}

.news-visual-grid {
    display: grid;
    gap: 16px;
}

.news-visual-card {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(48, 192, 168, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 24px 74px rgba(12, 111, 102, 0.12);
}

.news-visual-card img {
    width: 100%;
    aspect-ratio: 1.78 / 1;
    object-fit: cover;
}

.news-visual-card figcaption {
    padding: 18px 22px 22px;
    color: var(--muted);
    font-weight: 800;
}

.news-timeline {
    display: grid;
    grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
    border-top: 1px solid var(--line);
}

.news-timeline-list {
    display: grid;
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--line);
}

.news-timeline-item {
    padding: 32px;
    background: rgba(255, 255, 255, 0.82);
}

.news-timeline-item h3 {
    margin: 14px 0 10px;
    font-size: 24px;
}

.news-timeline-item p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.article-hero {
    min-height: 78vh;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
    align-items: end;
    gap: clamp(30px, 6vw, 90px);
    padding: 150px max(24px, calc((100vw - 1180px) / 2)) 78px;
    background:
        radial-gradient(circle at 86% 20%, rgba(48, 204, 180, 0.32), transparent 34%),
        radial-gradient(circle at 16% 82%, rgba(230, 31, 42, 0.1), transparent 30%),
        linear-gradient(150deg, #ffffff 0%, #f3fbf8 52%, #dff7f1 100%);
}

.article-hero h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(46px, 7.4vw, 104px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.article-hero-copy > p:not(.eyebrow) {
    max-width: 760px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.75;
}

.article-hero-meta {
    min-height: 300px;
    display: grid;
    align-content: end;
    gap: 18px;
    padding: 30px;
    border: 1px solid rgba(48, 192, 168, 0.24);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.62)),
        linear-gradient(135deg, rgba(48, 204, 180, 0.16), rgba(230, 31, 42, 0.08));
    box-shadow: 0 28px 82px rgba(12, 111, 102, 0.14);
}

.article-hero-meta span,
.article-sidebar span,
.article-block-label {
    color: var(--brand-red);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.13em;
}

.article-hero-meta strong {
    display: block;
    margin-top: 8px;
    color: var(--brand-dark);
    font-size: clamp(28px, 3.4vw, 48px);
    line-height: 1;
}

.article-hero-meta p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
}

.article-sidebar {
    position: sticky;
    top: 120px;
    padding: 28px;
    border: 1px solid rgba(48, 192, 168, 0.2);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.66)),
        linear-gradient(135deg, rgba(48, 204, 180, 0.12), rgba(230, 31, 42, 0.06));
    box-shadow: 0 22px 70px rgba(12, 111, 102, 0.1);
}

.article-sidebar h2 {
    margin: 14px 0 0;
    font-size: 28px;
    line-height: 1.14;
}

.article-sidebar ul {
    display: grid;
    gap: 14px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.article-sidebar li {
    padding-left: 18px;
    border-left: 3px solid rgba(48, 192, 168, 0.32);
    color: var(--muted);
    font-weight: 800;
    line-height: 1.55;
}

.article-back-link {
    display: inline-flex;
    margin-top: 28px;
    color: var(--brand-deep);
    font-weight: 900;
}

.article-main {
    display: grid;
    gap: 22px;
}

.article-lede,
.article-block,
.article-callout,
.article-contact-card {
    padding: clamp(28px, 4vw, 44px);
    border: 1px solid rgba(48, 192, 168, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 22px 70px rgba(12, 111, 102, 0.09);
}

.article-lede {
    color: var(--ink);
    background:
        radial-gradient(circle at 88% 16%, rgba(48, 204, 180, 0.18), transparent 32%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(231, 251, 246, 0.78));
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 800;
    line-height: 1.75;
}

.article-block h2 {
    font-size: clamp(30px, 4vw, 54px);
}

.article-block p,
.article-callout p,
.article-contact-card p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.9;
}

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

.article-image-card {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(48, 192, 168, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 24px 74px rgba(12, 111, 102, 0.12);
}

.article-image-card.is-wide {
    grid-column: 1 / -1;
}

.article-image-card img {
    width: 100%;
    aspect-ratio: 1.78 / 1;
    object-fit: cover;
}

.article-image-card figcaption {
    padding: 18px 22px 22px;
    color: var(--muted);
    font-weight: 800;
}

.article-callout {
    color: var(--white);
    background:
        radial-gradient(circle at 88% 12%, rgba(48, 204, 180, 0.3), transparent 38%),
        linear-gradient(145deg, #0b2e2a, #123f39);
}

.article-callout h2,
.article-callout p {
    color: var(--white);
}

.article-callout p {
    opacity: 0.76;
}

.article-contact-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(231, 251, 246, 0.78)),
        linear-gradient(135deg, rgba(48, 204, 180, 0.12), rgba(230, 31, 42, 0.06));
}

.article-contact-card .button {
    width: auto;
    min-width: 156px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card {
    position: relative;
    min-height: 440px;
    padding: 28px;
    border: 1px solid rgba(48, 192, 168, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 22px 70px rgba(12, 111, 102, 0.1);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--brand-red));
}

.service-card img {
    width: 100%;
    aspect-ratio: 1.35 / 1;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.28s ease, filter 0.28s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(48, 192, 168, 0.42);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 30px 84px rgba(12, 111, 102, 0.2);
}

.service-card:hover img {
    transform: scale(1.03);
    filter: saturate(1.06);
}

.service-card:hover h3 {
    color: var(--brand-dark);
}

.service-card h3,
.journey-steps h3,
.media-card h3 {
    margin: 24px 0 12px;
    font-size: 24px;
    line-height: 1.25;
}

.service-card p,
.journey-steps p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.product-showcase {
    display: grid;
    grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
    gap: clamp(28px, 6vw, 84px);
    align-items: center;
}

.product-cards {
    display: grid;
    gap: 18px;
}

.product-card {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    min-height: 250px;
    padding: 30px;
    border: 1px solid rgba(48, 192, 168, 0.2);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58)),
        linear-gradient(145deg, rgba(48, 204, 180, 0.14), rgba(230, 31, 42, 0.08));
    box-shadow: 0 22px 70px rgba(12, 111, 102, 0.1);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(48, 192, 168, 0.42);
    box-shadow: 0 30px 84px rgba(12, 111, 102, 0.2);
}

.product-card img {
    width: 112px;
    height: 112px;
    object-fit: contain;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 42px rgba(12, 111, 102, 0.14);
}

.product-kicker {
    margin: 0 0 8px;
    color: var(--brand-deep);
    font-size: 13px;
    font-weight: 900;
}

.product-card h3 {
    margin: 0;
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.15;
}

.product-card p:not(.product-kicker) {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.75;
}

.product-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.product-pills span {
    padding: 8px 14px;
    border: 1px solid rgba(48, 192, 168, 0.22);
    border-radius: 12px;
    color: var(--brand-dark);
    background: rgba(48, 192, 168, 0.1);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    cursor: default;
}

.team-section {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
    gap: clamp(28px, 6vw, 84px);
    align-items: center;
    border-top: 1px solid var(--line);
}

.team-visual {
    position: relative;
}

.team-visual::before {
    content: "";
    position: absolute;
    inset: 8% -8% -8% 12%;
    z-index: -1;
    border-radius: 8px;
    background:
        radial-gradient(circle at 76% 12%, rgba(230, 31, 42, 0.18), transparent 32%),
        linear-gradient(145deg, rgba(48, 204, 180, 0.34), rgba(255, 255, 255, 0));
    filter: blur(18px);
}

.team-visual img {
    width: 100%;
    aspect-ratio: 1.18 / 1;
    object-fit: cover;
    border: 1px solid rgba(48, 192, 168, 0.22);
    border-radius: 8px;
    box-shadow: 0 30px 90px rgba(12, 111, 102, 0.18);
}

.team-copy > p:not(.eyebrow) {
    margin-top: 22px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 30px;
}

.team-card {
    min-height: 210px;
    padding: 22px;
    border: 1px solid rgba(48, 192, 168, 0.2);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.64)),
        linear-gradient(145deg, rgba(48, 204, 180, 0.1), rgba(230, 31, 42, 0.06));
    box-shadow: 0 20px 60px rgba(12, 111, 102, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: rgba(48, 192, 168, 0.4);
    box-shadow: 0 26px 72px rgba(12, 111, 102, 0.16);
}

.team-card span {
    color: var(--brand-red);
    font-weight: 900;
}

.team-card h3 {
    margin: 12px 0 8px;
    font-size: 20px;
    line-height: 1.28;
}

.team-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.leadership {
    position: relative;
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: stretch;
    overflow: hidden;
    padding: clamp(50px, 7vw, 82px);
    border: 1px solid rgba(48, 192, 168, 0.2);
    border-radius: 8px;
    background:
        radial-gradient(circle at 88% 18%, rgba(48, 204, 180, 0.24), transparent 34%),
        radial-gradient(circle at 10% 92%, rgba(230, 31, 42, 0.1), transparent 30%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(231, 251, 246, 0.72));
    box-shadow: 0 26px 86px rgba(12, 111, 102, 0.12);
}

.leadership::before {
    content: "EUCARE";
    position: absolute;
    right: -28px;
    bottom: -34px;
    color: rgba(48, 192, 168, 0.08);
    font-size: clamp(86px, 16vw, 210px);
    font-weight: 900;
    letter-spacing: -0.08em;
    line-height: 0.8;
}

.leadership-intro,
.leader-grid {
    position: relative;
    z-index: 1;
}

.leadership-intro {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 410px;
}

.leadership-intro h2 {
    font-size: clamp(34px, 4.4vw, 64px);
}

.leadership-intro > p:not(.eyebrow) {
    margin-top: 24px;
}

.leader-grid {
    display: grid;
    gap: 14px;
}

.leader-card {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 26px;
    min-height: 250px;
    padding: clamp(26px, 4vw, 40px);
    border: 1px solid rgba(48, 192, 168, 0.22);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.62)),
        linear-gradient(145deg, rgba(48, 204, 180, 0.12), rgba(230, 31, 42, 0.06));
    box-shadow: 0 22px 68px rgba(12, 111, 102, 0.1);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.leader-card:hover {
    transform: translateY(-5px);
    border-color: rgba(48, 192, 168, 0.44);
    box-shadow: 0 30px 82px rgba(12, 111, 102, 0.18);
}

.leader-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border: 1px solid rgba(230, 31, 42, 0.22);
    border-radius: 50%;
    color: var(--brand-red);
    background: var(--brand-red-soft);
    font-weight: 900;
}

.leader-role {
    margin: 0 0 10px;
    color: var(--brand-deep);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.leader-card h3 {
    margin: 0;
    font-size: clamp(42px, 5.4vw, 72px);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.leader-card p:not(.leader-role) {
    margin: 20px 0 0;
    color: var(--muted);
    line-height: 1.75;
}

.leader-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.leader-tags span {
    padding: 8px 13px;
    border: 1px solid rgba(48, 192, 168, 0.22);
    border-radius: 12px;
    color: var(--brand-dark);
    background: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    font-weight: 900;
}

.journey {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--line);
}

.journey-steps article {
    min-height: 280px;
    padding: 34px;
    background: rgba(255, 255, 255, 0.78);
}

.journey-steps span {
    color: var(--brand-red);
    font-weight: 900;
}

.security {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 40px;
    align-items: center;
}

.security img {
    justify-self: end;
    width: 100%;
    max-width: 340px;
}

.media-grid {
    display: grid;
    grid-template-columns: 1.18fr 0.91fr 0.91fr;
    gap: 16px;
}

.media-card {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    border-radius: 8px;
    color: var(--white);
    background:
        radial-gradient(circle at 88% 12%, rgba(48, 204, 180, 0.34), transparent 38%),
        linear-gradient(145deg, #0b2e2a, #123f39);
    box-shadow: 0 26px 80px rgba(12, 111, 102, 0.18);
    transition: transform 0.24s ease;
}

.media-card:nth-child(2) {
    color: var(--ink);
    background: linear-gradient(145deg, #ffffff, var(--brand-soft));
}

.media-card:nth-child(3) {
    color: var(--ink);
    background: linear-gradient(145deg, #ffffff, var(--brand-red-soft));
}

.media-card:hover {
    transform: translateY(-5px);
}

.media-card span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.media-card:nth-child(2) span,
.media-card:nth-child(3) span {
    color: var(--brand-deep);
}

.media-card p {
    margin: 28px 0 0;
    color: currentColor;
    opacity: 0.68;
    font-weight: 800;
}

.media-more-wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 14px;
}

.media-more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    color: var(--brand-deep);
    font-size: 14px;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.media-more-link::after {
    content: "→";
    font-size: 13px;
}

.media-more-link:hover {
    color: var(--brand-dark);
}

.partner-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--line);
}

.partner-item {
    margin: 0;
    min-height: 188px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.82);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.partner-item img {
    width: 100%;
    height: 124px;
    object-fit: contain;
    padding: 22px 22px 10px;
    transition: transform 0.22s ease;
}

.partner-item figcaption {
    min-height: 46px;
    padding: 0 16px 14px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
}

.partner-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(12, 111, 102, 0.14);
    background: var(--white);
}

.partner-item:hover img {
    transform: scale(1.04);
}

.contact-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 80px;
    padding: 54px;
    border-radius: 8px;
    color: var(--white);
    background:
        radial-gradient(circle at 88% 12%, rgba(48, 204, 180, 0.36), transparent 34%),
        linear-gradient(135deg, rgba(230, 31, 42, 0.18), transparent 42%),
        #0b2e2a;
}

.contact-cta .eyebrow {
    color: var(--brand-bright);
}

.contact-cta .button {
    flex-shrink: 0;
    min-width: 136px;
    white-space: nowrap;
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 28px;
    padding: 42px max(24px, calc((100vw - 1180px) / 2));
    color: var(--white);
    background: linear-gradient(145deg, #071f1d, #0b4f49);
}

.site-footer img {
    width: 132px;
}

.site-footer p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.68);
}

.footer-links {
    display: flex;
    gap: 18px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 800;
}

.section-reveal,
.reveal-unit {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(0, 34px, 0);
    transition:
        opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.78s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, filter, transform;
}

.section-reveal.is-visible,
.reveal-unit.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
}

.media-card.reveal-unit.is-visible:hover {
    transform: translate3d(0, -5px, 0);
}

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

    .section-reveal,
    .reveal-unit {
        opacity: 1;
        filter: none;
        transform: none;
        transition: none;
    }
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: auto auto auto;
        justify-content: space-between;
    }

    .nav-toggle {
        display: block;
        order: 3;
    }

    .language-switch {
        order: 2;
    }

    .site-nav {
        position: fixed;
        top: 74px;
        left: 0;
        right: 0;
        display: grid;
        gap: 0;
        width: min(560px, calc(100vw - 32px));
        margin: 0 auto;
        padding: 14px;
        border-radius: 26px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 28px 80px rgba(16, 20, 23, 0.16);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    body.nav-open .site-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav a {
        min-height: 48px;
        display: flex;
        align-items: center;
        padding: 0 14px;
        border-bottom: 1px solid var(--line);
    }

    .site-nav a:last-child {
        border-bottom: 0;
    }

    .hero,
    .story,
    .platform-hero,
    .platform-preview,
    .product-showcase,
    .boodion-hero,
    .boodion-download,
    .boodion-flows,
    .team-section,
    .leadership,
    .news-hero,
    .news-feature,
    .news-timeline,
    .article-hero,
    .article-layout,
    .article-contact-card,
    .security {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 130px;
    }

    .platform-hero {
        min-height: auto;
        padding-top: 130px;
    }

    .boodion-hero {
        min-height: auto;
        padding-top: 130px;
    }

    .platform-action-panel {
        grid-template-columns: 1fr;
    }

    .platform-hero-visual {
        min-height: 560px;
    }

    .boodion-hero-visual {
        min-height: 560px;
    }

    .preview-copy {
        position: relative;
        top: auto;
    }

    .hero-device {
        min-height: 560px;
    }

    .hero-ecosystem-frame {
        left: 50%;
        right: auto;
        width: min(420px, 92vw);
        height: 600px;
        transform: translateX(-50%);
    }

    .device-shell {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .metrics,
    .service-grid,
    .surface-grid,
    .workflow-grid,
    .usecase-grid,
    .preview-grid,
    .boodion-role-grid,
    .boodion-feature-grid,
    .news-card-grid,
    .journey-steps,
    .media-grid {
        grid-template-columns: 1fr 1fr;
    }

    .metrics article:nth-child(2) {
        border-right: 0;
    }

    .metrics article:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .partner-strip {
        grid-template-columns: repeat(3, 1fr);
    }

    .leadership-intro {
        min-height: auto;
    }

    .article-sidebar {
        position: relative;
        top: auto;
    }

    .contact-cta,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .contact-cta {
        align-items: flex-start;
    }
}

@media (max-width: 680px) {
    .site-header {
        top: 10px;
        width: calc(100% - 20px);
        padding: 10px 10px 10px 14px;
    }

    .brand img {
        width: 112px;
    }

    .language-switch button {
        min-width: 42px;
        font-size: 12px;
    }

    .hero {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero h1 {
        font-size: clamp(46px, 14vw, 62px);
    }

    .hero-actions {
        display: grid;
    }

    .button {
        width: 100%;
    }

    .hero-device {
        min-height: 470px;
    }

    .hero-ecosystem-frame {
        width: min(330px, 94%);
        height: 470px;
        border-radius: 38px;
    }

    .device-shell {
        width: min(330px, 94%);
        min-height: 460px;
        border-radius: 42px;
    }

    .signal-card {
        min-height: 48px;
        font-size: 13px;
    }

    .signal-card-top {
        top: 56px;
    }

    .signal-card-bottom {
        bottom: 34px;
    }

    .metrics,
    .service-grid,
    .surface-grid,
    .workflow-grid,
    .usecase-grid,
    .preview-grid,
    .news-card-grid,
    .journey-steps,
    .media-grid,
    .partner-strip {
        grid-template-columns: 1fr;
    }

    .metrics article {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .metrics article:last-child {
        border-bottom: 0;
    }

    .story,
    .services,
    .platform-surfaces,
    .platform-workflow,
    .platform-usecases,
    .platform-preview,
    .product-showcase,
    .boodion-download,
    .boodion-roles,
    .boodion-features,
    .boodion-flows,
    .boodion-integration,
    .team-section,
    .leadership,
    .news-list,
    .news-feature,
    .news-timeline,
    .article-shell,
    .journey,
    .security,
    .media,
    .partners,
    .contact-cta {
        width: calc(100% - 32px);
    }

    .platform-hero {
        padding: 130px 20px 58px;
    }

    .boodion-hero {
        padding: 130px 20px 58px;
    }

    .platform-hero h1 {
        font-size: clamp(42px, 12vw, 62px);
    }

    .boodion-hero h1 {
        font-size: clamp(42px, 12vw, 62px);
    }

    .store-buttons,
    .portal-buttons {
        grid-template-columns: 1fr;
    }

    .store-badge {
        justify-content: center;
    }

    .store-badge img {
        max-width: 180px;
    }

    .platform-hero-visual {
        min-height: auto;
    }

    .boodion-hero-visual {
        min-height: auto;
    }

    .hero-phone-frame {
        width: min(310px, 92vw);
        border-radius: 42px;
    }

    .boodion-phone-frame {
        width: min(310px, 92vw);
        border-radius: 42px;
    }

    .hero-phone-frame img {
        max-height: 620px;
        border-radius: 32px;
    }

    .boodion-phone-frame img {
        max-height: 620px;
        border-radius: 32px;
    }

    .boodion-signal {
        position: relative;
        inset: auto;
        width: 100%;
        margin-top: 10px;
    }

    .boodion-hero-visual {
        gap: 10px;
    }

    .asset-placeholder,
    .asset-placeholder-phone {
        width: 100%;
        min-height: 360px;
        border-radius: 24px;
    }

    .asset-placeholder-phone::before {
        border-radius: 18px;
    }

    .asset-placeholder::after {
        top: 18px;
        right: 18px;
        max-width: calc(100% - 36px);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .surface-card {
        min-height: auto;
        padding: 24px;
    }

    .workflow-card,
    .usecase-card,
    .boodion-feature-card {
        min-height: auto;
        padding: 26px;
    }

    .boodion-role-card {
        min-height: auto;
        padding: 26px;
    }

    .boodion-role-card img {
        width: 118px;
        height: 118px;
        border-radius: 32px;
    }

    .boodion-flow-gallery {
        grid-template-columns: 1fr;
    }

    .preview-card-phone {
        grid-row: auto;
    }

    .preview-card-phone .asset-placeholder {
        min-height: 380px;
    }

    .product-card {
        grid-template-columns: 86px minmax(0, 1fr);
        padding: 24px;
    }

    .product-card img {
        width: 84px;
        height: 84px;
    }

    .news-hero {
        min-height: auto;
        padding: 130px 20px 58px;
    }

    .news-hero h1 {
        font-size: clamp(46px, 14vw, 64px);
    }

    .news-hero-panel {
        min-height: 240px;
        padding: 24px;
    }

    .article-hero {
        min-height: auto;
        padding: 130px 20px 58px;
    }

    .article-hero h1 {
        font-size: clamp(42px, 12vw, 62px);
    }

    .article-hero-meta {
        min-height: 240px;
        padding: 24px;
    }

    .news-article-card.is-featured {
        grid-column: auto;
    }

    .news-article-card {
        min-height: 300px;
    }

    .article-image-grid {
        grid-template-columns: 1fr;
    }

    .article-image-card.is-wide {
        grid-column: auto;
    }

    .article-contact-card .button {
        width: 100%;
    }

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

    .team-visual img {
        aspect-ratio: 1.2 / 1;
    }

    .leadership {
        padding: 34px 22px;
    }

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

    .leader-card h3 {
        font-size: clamp(40px, 15vw, 58px);
    }

    .security img {
        justify-self: start;
    }

    .contact-cta {
        padding: 34px 24px;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}

.policy-body {
    background:
        radial-gradient(circle at 10% 12%, rgba(48, 204, 180, 0.18), transparent 30%),
        radial-gradient(circle at 88% 8%, rgba(230, 31, 42, 0.08), transparent 26%),
        linear-gradient(180deg, #f8fffc 0%, #edf9f5 46%, #ffffff 100%);
}

.policy-legacy-text {
    display: none;
}

.policy-site-header {
    grid-template-columns: auto 1fr 42px;
}

.policy-header-spacer {
    width: 42px;
    height: 42px;
}

.policy-hero {
    position: relative;
    min-height: 48vh;
    display: grid;
    place-items: center;
    padding: 150px 24px 72px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(12, 111, 102, 0.94), rgba(36, 144, 132, 0.72)),
        radial-gradient(circle at 22% 28%, rgba(48, 204, 180, 0.46), transparent 36%);
}

.policy-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 88%);
}

.policy-hero-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(4px);
    opacity: 0.72;
}

.policy-hero-orb-one {
    width: 240px;
    height: 240px;
    left: max(24px, calc((100vw - 1180px) / 2));
    bottom: -90px;
    background: rgba(48, 204, 180, 0.36);
}

.policy-hero-orb-two {
    width: 160px;
    height: 160px;
    right: max(42px, calc((100vw - 1180px) / 2));
    top: 130px;
    background: rgba(230, 31, 42, 0.16);
}

.policy-hero-card {
    position: relative;
    width: min(900px, 100%);
    padding: clamp(46px, 8vw, 86px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    color: var(--white);
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 34px 100px rgba(3, 40, 36, 0.28);
    backdrop-filter: blur(18px);
}

.policy-hero h1 {
    margin: 0;
    font-size: clamp(44px, 7vw, 86px);
    font-weight: 900;
    letter-spacing: 0.02em;
}

.policy-section {
    padding: 86px 24px 110px;
}

.policy-shell {
    width: min(960px, 100%);
    margin: 0 auto;
}

.policy-title-card {
    display: inline-flex;
    margin: 0 0 22px;
    padding: 13px 20px;
    border: 1px solid rgba(48, 192, 168, 0.24);
    border-radius: 999px;
    color: var(--brand-dark);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 42px rgba(12, 111, 102, 0.08);
}

.policy-title-card h2 {
    margin: 0;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.policy-card {
    position: relative;
    padding: clamp(30px, 5vw, 58px);
    border: 1px solid rgba(48, 192, 168, 0.18);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)),
        radial-gradient(circle at 100% 0%, rgba(48, 204, 180, 0.16), transparent 30%);
    box-shadow: 0 30px 86px rgba(12, 111, 102, 0.12);
    overflow: hidden;
}

.policy-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 7px;
    height: 100%;
    background: linear-gradient(180deg, var(--brand-bright), var(--brand-deep), var(--brand-red));
}

.policy-card p,
.policy-card h5,
.policy-card h6 {
    position: relative;
}

.policy-card p {
    margin: 0 0 28px;
    color: rgba(16, 37, 34, 0.76);
    font-size: clamp(16px, 1.7vw, 18px);
    font-weight: 500;
    line-height: 2.08;
}

.policy-card p:last-child {
    margin-bottom: 0;
}

.policy-card h5 {
    margin: 38px 0 0;
    color: var(--ink);
    font-size: clamp(22px, 3vw, 31px);
    font-weight: 900;
    line-height: 1.28;
}

.policy-card h6 {
    margin: 0 0 16px;
    color: var(--brand-dark);
    font-size: clamp(17px, 2vw, 20px);
    font-weight: 900;
    line-height: 1.5;
}

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

.policy-footer-brand img {
    width: 132px;
}

.policy-social-links {
    display: flex;
    gap: 10px;
}

.policy-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transition: transform 0.22s ease, background 0.22s ease;
}

.policy-social-link:hover {
    transform: translateY(-2px);
    background: rgba(48, 204, 180, 0.24);
}

.policy-copylink {
    color: rgba(255, 255, 255, 0.76);
    font-weight: 700;
    line-height: 1.9;
    text-align: right;
}

.policy-copylink a {
    color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 980px) {
    .policy-site-header {
        grid-template-columns: auto auto;
    }

    .policy-header-spacer {
        display: none;
    }

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

    .policy-copylink {
        text-align: left;
    }
}

@media (max-width: 680px) {
    .policy-hero {
        min-height: 42vh;
        padding: 130px 20px 48px;
    }

    .policy-hero-card {
        padding: 38px 22px;
        border-radius: 8px;
    }

    .policy-section {
        padding: 54px 16px 74px;
    }

    .policy-card {
        border-radius: 14px;
    }
}
