.home-hero {
    position: relative;
    overflow: hidden;
    aspect-ratio: 12 / 5;
    background: #f4f8f7;
}

.home-hero picture,
.home-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-hero img {
    object-fit: contain;
    object-position: center;
    opacity: 0;
}

.hero-particle-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.home-page main {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fbfa 34%, #ffffff 70%);
}

.home-page main::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(10, 75, 83, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 75, 83, 0.04) 1px, transparent 1px);
    background-position: center top;
    background-size: 74px 74px;
    content: "";
    mask-image: linear-gradient(180deg, #000000, transparent 38%);
}

.home-intro,
.home-capabilities,
.home-showcase,
.home-process,
.home-proof,
.home-standards,
.cta-section {
    position: relative;
    z-index: 1;
}

.home-intro {
    padding-top: clamp(58px, 7vw, 96px);
    padding-bottom: clamp(48px, 6vw, 80px);
}

.home-capabilities {
    padding-top: clamp(40px, 5vw, 64px);
    padding-bottom: clamp(40px, 5vw, 64px);
}

.home-showcase {
    padding-top: clamp(40px, 5vw, 64px);
    padding-bottom: clamp(40px, 5vw, 64px);
}

.home-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
    gap: clamp(28px, 5vw, 68px);
    align-items: stretch;
}

.home-intro-copy {
    display: grid;
    align-content: center;
    gap: 24px;
    min-width: 0;
}

.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(14, 118, 111, 0.08), rgba(214, 168, 66, 0.08));
    border: 1px solid rgba(14, 118, 111, 0.15);
    width: max-content;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-brand);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.badge-text {
    font-size: 0.82rem;
    font-weight: 750;
    color: var(--color-brand-deep);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.home-stats-row {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    border-radius: var(--radius-card);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(244, 248, 247, 0.98));
    border: 1px solid rgba(10, 75, 83, 0.1);
    box-shadow: 0 8px 32px rgba(10, 48, 56, 0.06);
}

.stat-item {
    display: grid;
    gap: 4px;
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 900;
    color: var(--color-brand);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(10, 75, 83, 0.15), transparent);
}

.button-arrow {
    transition: transform 0.3s ease;
}

.button:hover .button-arrow {
    transform: translateX(4px);
}

.home-intro-copy h1 {
    max-width: 860px;
    margin: 0;
    font-size: clamp(2.1rem, 5.2vw, 4.6rem);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -0.02em;
    position: relative;
    background: linear-gradient(135deg, #0a4b53 0%, #0e766f 40%, #0a4b53 70%, #d6a842 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: title-gradient 8s ease-in-out infinite;
}

.home-intro-copy h1::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: linear-gradient(180deg, var(--color-accent), var(--color-brand), var(--color-accent));
    border-radius: 2px;
    opacity: 0.8;
}

.home-intro-copy h1::after {
    content: '';
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(214, 168, 66, 0.3), 0 0 0 8px rgba(214, 168, 66, 0.15);
    animation: title-dot-pulse 3s ease-in-out infinite;
}

@keyframes title-gradient {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

@keyframes title-dot-pulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        box-shadow: 0 0 0 4px rgba(214, 168, 66, 0.3), 0 0 0 8px rgba(214, 168, 66, 0.15);
    }
    50% {
        transform: translateY(-50%) scale(1.15);
        box-shadow: 0 0 0 6px rgba(214, 168, 66, 0.4), 0 0 0 12px rgba(214, 168, 66, 0.2);
    }
}

.home-lead {
    max-width: 720px;
    margin: 16px 0 0;
    color: #4f5f68;
    font-size: clamp(1.02rem, 1.7vw, 1.24rem);
    line-height: 1.7;
    position: relative;
    padding-left: 28px;
}

.home-lead::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    border: 2px solid var(--color-brand);
    border-radius: 50%;
    opacity: 0.3;
    transform: rotate(45deg);
}

.home-lead::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 14px;
    width: 1px;
    height: calc(100% - 6px);
    background: linear-gradient(180deg, var(--color-brand), transparent);
    opacity: 0.2;
}

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

.button-outline {
    color: var(--color-brand-deep);
    border-color: rgba(10, 75, 83, 0.2);
    background: #ffffff;
}

.button-outline:hover,
.button-outline:focus {
    color: #ffffff;
    border-color: var(--color-brand-deep);
    background: var(--color-brand-deep);
}

.home-command-panel {
    display: grid;
    gap: 16px;
    align-content: start;
    align-self: start;
    border: 1px solid rgba(214, 168, 66, 0.3);
    border-radius: var(--radius-card);
    padding: 20px clamp(24px, 4vw, 36px) 20px;
    background:
        linear-gradient(135deg, var(--color-brand-deep) 0%, var(--color-brand) 40%, rgba(14, 118, 111, 0.85) 100%),
        linear-gradient(145deg, rgba(214, 168, 66, 0.15) 0%, transparent 50%);
    box-shadow: 
        0 28px 80px rgba(10, 48, 56, 0.25),
        0 0 0 1px rgba(214, 168, 66, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: visible;
    min-height: auto;
}

.home-command-panel::before {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(214, 168, 66, 0.12) 0%, transparent 35%),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    content: "";
    pointer-events: none;
    animation: panel-shimmer 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes panel-shimmer {
    0%, 100% {
        opacity: 0.6;
        transform: translate(0, 0);
    }
    50% {
        opacity: 1;
        transform: translate(-2%, -2%);
    }
}

.home-command-panel::after {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    background-position: center;
    content: "";
    pointer-events: none;
    opacity: 0.6;
    z-index: 0;
    border-radius: var(--radius-card);
}

.paper-fold {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, transparent 50%, rgba(214, 168, 66, 0.4) 50%);
    border-top-right-radius: var(--radius-card);
    z-index: 2;
    pointer-events: none;
}

.paper-fold::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(225deg, rgba(214, 168, 66, 0.6) 50%, transparent 50%);
    content: "";
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.paper-fold::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    content: "";
    clip-path: polygon(0 0, 50% 50%, 0 100%);
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1;
}

.panel-header::after {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    content: "";
}

.panel-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(214, 168, 66, 0.15));
    color: var(--color-accent);
    border: 1px solid rgba(214, 168, 66, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.home-command-panel:hover .panel-icon {
    transform: rotate(10deg) scale(1.05);
    box-shadow: 0 6px 16px rgba(14, 118, 111, 0.2);
}

.panel-label {
    width: max-content;
    margin: 0;
    border: 1px solid rgba(214, 168, 66, 0.6);
    border-radius: 999px;
    padding: 6px 12px;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(214, 168, 66, 0.4), rgba(214, 168, 66, 0.25));
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.panel-label::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    content: "";
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.home-command-panel:hover .panel-label::before {
    transform: translateX(100%);
}

.design-metrics {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 2px 0;
    z-index: 1;
    position: relative;
}

.design-metrics div {
    display: grid;
    gap: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.design-metrics div::before {
    position: absolute;
    left: -8px;
    top: 50%;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--color-accent), rgba(255, 255, 255, 0.5));
    border-radius: 2px;
    content: "";
    transition: height 0.3s ease, top 0.3s ease;
}

.design-metrics div:hover::before {
    height: 80%;
    top: 10%;
}

.design-metrics div:hover {
    padding-left: 12px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent);
}

.metric-item {
    position: relative;
}

.metric-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--color-brand), var(--color-accent));
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(14, 118, 111, 0.25);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.metric-item:hover .metric-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 16px rgba(14, 118, 111, 0.35);
}

.design-metrics dt {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.2;
}

.design-metrics div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}


.design-metrics dd {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.84rem;
    line-height: 1.4;
    font-weight: 500;
}

.panel-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    z-index: 1;
}

.panel-footer::before {
    position: absolute;
    top: -1px;
    left: 0;
    width: 40%;
    height: 1px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    content: "";
}

.footer-badge {
    font-size: 0.7rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    position: relative;
    padding: 1px 0;
}

.footer-badge::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), rgba(255, 255, 255, 0.5));
    content: "";
    transition: width 0.3s ease;
}

.home-command-panel:hover .footer-badge:hover::after {
    width: 100%;
}

.footer-separator {
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 700;
    animation: separator-pulse 2s ease-in-out infinite;
}

@keyframes separator-pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

.section-heading-row {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.65fr);
    gap: clamp(22px, 5vw, 64px);
    align-items: end;
    margin-bottom: 34px;
}

.section-heading-row .section-lead {
    margin: 0;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.section-badge-light .badge-text {
    color: #ffffff;
}

.badge-line {
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-brand), var(--color-accent));
    border-radius: 999px;
}

.section-badge-light .badge-line {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), var(--color-accent));
}

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

.capability-card {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid rgba(219, 230, 229, 0.94);
    border-radius: var(--radius-card);
    padding: clamp(24px, 3vw, 32px);
    background: #ffffff;
    box-shadow: 0 14px 38px rgba(10, 48, 56, 0.07);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: grid;
    gap: 16px;
}

.capability-card::before {
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--color-brand), var(--color-accent));
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.capability-card:hover::before {
    transform: scaleX(1);
}

.capability-card:hover {
    border-color: rgba(14, 118, 111, 0.4);
    box-shadow: 0 28px 72px rgba(10, 48, 56, 0.15);
    transform: translateY(-6px);
}

.card-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.card-number {
    font-size: 0.86rem;
    font-weight: 900;
    color: rgba(10, 75, 83, 0.3);
}

.card-icon {
    color: var(--color-brand);
    transition: transform 0.3s ease;
}

.capability-card:hover .card-icon {
    transform: scale(1.1);
}

.card-learn-more {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 12px;
    font-size: 0.82rem;
    font-weight: 650;
    color: var(--color-brand);
    transition: all 0.3s ease;
}

.card-learn-more svg {
    transition: transform 0.3s ease;
}

.capability-card:hover .card-learn-more {
    gap: 10px;
}

.capability-card:hover .card-learn-more svg {
    transform: translateX(4px);
}

.capability-card h3,
.solution-matrix h3 {
    margin: 0 0 10px;
    color: var(--color-brand-deep);
    font-size: 1.1rem;
}

.capability-card p,
.solution-matrix p,
.showcase-copy p,
.proof-copy p {
    margin: 0;
    color: var(--color-muted);
}

.home-showcase {
    background:
        linear-gradient(180deg, rgba(244, 248, 247, 0), rgba(244, 248, 247, 0.86) 18%, rgba(244, 248, 247, 0.86) 82%, rgba(244, 248, 247, 0));
}

.showcase-layout,
.proof-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
    gap: clamp(30px, 6vw, 78px);
    align-items: center;
}

.proof-layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
}

.media-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-card);
    box-shadow: 0 20px 50px rgba(10, 48, 56, 0.12), 0 0 0 1px rgba(219, 230, 229, 0.4);
    background: linear-gradient(135deg, rgba(244, 248, 247, 0.3), rgba(255, 255, 255, 0.6));
    padding: 12px;
}

.media-frame::before {
    position: absolute;
    inset: 12px;
    border: 2px solid rgba(14, 118, 111, 0.12);
    border-radius: calc(var(--radius-card) - 6px);
    content: "";
    pointer-events: none;
    z-index: 2;
}

.media-frame::after {
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(214, 168, 66, 0.2);
    border-radius: calc(var(--radius-card) - 8px);
    content: "";
    pointer-events: none;
    z-index: 2;
}

.media-frame img {
    position: relative;
    z-index: 1;
    border-radius: calc(var(--radius-card) - 10px);
}

.media-frame .frame-decoration {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-card);
    z-index: 3;
    pointer-events: none;
}

.media-frame .frame-decoration::before {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    border-top: 2px solid rgba(214, 168, 66, 0.6);
    border-right: 2px solid rgba(214, 168, 66, 0.6);
    content: "";
}

.media-frame .frame-decoration::after {
    position: absolute;
    bottom: -8px;
    left: -8px;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid rgba(214, 168, 66, 0.6);
    border-left: 2px solid rgba(214, 168, 66, 0.6);
    content: "";
}

.image-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 16px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 40%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 4;
}

.media-frame:hover .image-overlay {
    opacity: 1;
}

.overlay-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-ink);
    cursor: pointer;
    transition: all 0.3s ease;
}

.overlay-badge:hover {
    background: #ffffff;
    transform: scale(1.1);
}

.media-frame img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.showcase-copy,
.proof-copy,
.process-copy,
.standards-copy {
    display: grid;
    gap: 18px;
}

.showcase-copy .section-title,
.proof-copy .section-title,
.process-copy .section-title {
    max-width: 780px;
}

.solution-matrix {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 8px;
}

.solution-matrix article {
    border: 1px solid rgba(10, 75, 83, 0.14);
    border-radius: var(--radius-card);
    padding: 20px;
    background: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
    display: grid;
    gap: 12px;
}

.solution-card:hover {
    border-color: rgba(14, 118, 111, 0.3);
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(10, 48, 56, 0.08);
}

.solution-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(14, 118, 111, 0.1), rgba(214, 168, 66, 0.1));
    color: var(--color-brand);
}

.home-process {
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(11, 29, 38, 0.98), rgba(10, 75, 83, 0.96)),
        url("../images/header-menu-3.png") center / cover;
}

.home-process .section-kicker {
    color: #9be4dd;
}

.home-process .section-lead {
    color: rgba(255, 255, 255, 0.75);
}

.process-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
    gap: clamp(28px, 5vw, 68px);
    align-items: start;
}

.process-steps {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    counter-reset: process;
    list-style: none;
}

.process-steps li {
    position: relative;
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-card);
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(8px);
}

.step-number {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-number span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(214, 168, 66, 0.3), rgba(214, 168, 66, 0.15));
    color: var(--color-accent);
    font-size: 0.9rem;
    font-weight: 900;
    border: 2px solid rgba(214, 168, 66, 0.4);
}

.step-connector {
    width: 2px;
    flex: 1;
    background: linear-gradient(180deg, rgba(214, 168, 66, 0.4), transparent);
    min-height: 20px;
}

.step-content {
    display: grid;
    gap: 8px;
}

.step-content strong {
    color: #ffffff;
    font-size: 1.08rem;
}

.step-content span {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}


.proof-features {
    display: grid;
    gap: 14px;
    margin-top: 16px;
}

.proof-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 8px;
    background: rgba(14, 118, 111, 0.04);
    border: 1px solid rgba(14, 118, 111, 0.1);
    transition: all 0.3s ease;
}

.proof-feature:hover {
    background: rgba(14, 118, 111, 0.08);
    border-color: rgba(14, 118, 111, 0.2);
    transform: translateX(4px);
}

.feature-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-brand), var(--color-accent));
    color: #ffffff;
    flex-shrink: 0;
}

.proof-feature span {
    font-size: 0.94rem;
    font-weight: 650;
    color: var(--color-ink);
}

.home-standards {
    background:
        linear-gradient(90deg, rgba(214, 168, 66, 0.13), transparent 42%),
        linear-gradient(135deg, #0b1d26, var(--color-brand-deep));
}

.standards-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
    gap: clamp(28px, 5vw, 62px);
    align-items: center;
}

.standard-card {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-card);
    padding: clamp(28px, 5vw, 48px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 68px rgba(0, 0, 0, 0.18);
    display: grid;
    gap: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.standard-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.iso-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(214, 168, 66, 0.3), rgba(214, 168, 66, 0.15));
    color: var(--color-accent);
    border: 2px solid rgba(214, 168, 66, 0.4);
}

.standard-card strong {
    display: block;
    color: #ffffff;
    font-size: clamp(3.2rem, 8vw, 5.8rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.standard-card span {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.78);
}

.standards-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
}

.cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(14, 118, 111, 0.15), rgba(214, 168, 66, 0.15));
    color: var(--color-brand);
    flex-shrink: 0;
}

.cta-text {
    display: grid;
    gap: 8px;
}

.scroll-image.is-scroll-ready,
[data-reveal].is-reveal-ready {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 560ms ease, transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-image.is-scroll-ready {
    transform: scale(0.92) translateY(18px);
}

.scroll-image.is-scroll-ready.is-visible,
[data-reveal].is-reveal-ready.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .capability-card,
    .scroll-image.is-scroll-ready,
    [data-reveal].is-reveal-ready {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 900px) {
    .home-intro-grid,
    .section-heading-row,
    .showcase-layout,
    .proof-layout,
    .process-layout,
    .standards-layout {
        grid-template-columns: 1fr;
    }

    .proof-layout .media-frame {
        order: -1;
    }

    .section-heading-row {
        align-items: start;
    }
}

@media (max-width: 760px) {
    .capability-grid,
    .solution-matrix {
        grid-template-columns: 1fr;
    }

    .home-intro-copy h1 {
        font-size: clamp(2rem, 10.5vw, 3.1rem);
    }

    .home-stats-row {
        flex-wrap: wrap;
        gap: 16px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: 1 1 calc(50% - 8px);
    }

    .process-steps li {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .step-number {
        flex-direction: row;
        width: 100%;
    }

    .step-connector {
        display: none;
    }

    .step-number span {
        width: 40px;
        height: 40px;
        font-size: 0.82rem;
    }

    .proof-features {
        gap: 10px;
    }

    .proof-feature {
        padding: 12px 14px;
    }

    .iso-badge {
        width: 64px;
        height: 64px;
    }

    .iso-badge svg {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 640px) {
    .home-action-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        justify-content: center;
    }

    .home-action-row .button {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    .home-command-panel {
        padding: 20px;
    }

    .home-stats-row {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 16px;
        padding: 20px 16px;
    }

    .stat-item {
        flex: 0 1 auto;
        min-width: 0;
        text-align: center;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.7rem;
        line-height: 1.3;
    }

    .stat-divider {
        display: block;
        width: 1px;
        height: 32px;
        background: linear-gradient(180deg, transparent, rgba(10, 75, 83, 0.15), transparent);
    }

    .cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .cta-text {
        text-align: center;
    }

    .cta-icon {
        margin: 0 auto;
    }

    .button-arrow {
        display: none;
    }
}

@media (orientation: portrait) and (max-width: 900px) {
    .home-showcase .media-frame img,
    .home-proof .media-frame img {
        aspect-ratio: 4 / 3;
        min-height: 280px;
    }
}
