.corporate-hero .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.78fr);
}

.corporate-hero .hero-copy {
    max-width: 820px;
}

.corporate-hero-card {
    overflow: hidden;
}

.corporate-hero-card::before {
    position: absolute;
    top: -110px;
    right: -80px;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    content: "";
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 32px;
}

.hero-metrics div {
    min-height: 115px;
    padding: 18px 14px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.12);
}

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

.hero-metrics strong {
    color: #fff;
    font-size: clamp(1.45rem, 2.5vw, 2.25rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.hero-metrics span {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.73rem;
    line-height: 1.4;
}

.proof-strip {
    position: relative;
    z-index: 5;
    margin-top: -1px;
    color: #fff;
    background: #0b1d2a;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

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

.proof-grid div {
    min-height: 124px;
    padding: 27px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.proof-grid div:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.proof-grid strong,
.proof-grid span {
    display: block;
}

.proof-grid strong {
    font-size: 1.02rem;
    letter-spacing: -0.02em;
}

.proof-grid span {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.78rem;
}

.corporate-about-panel {
    position: relative;
    overflow: hidden;
}

.corporate-about-panel::after {
    position: absolute;
    right: -120px;
    bottom: -140px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    content: "";
}

.experience-badge {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    min-height: 42px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.74);
    background: rgba(0, 0, 0, 0.13);
    font-size: 0.78rem;
}

.portfolio-section {
    color: #fff;
    background:
        radial-gradient(circle at 80% 10%, rgba(33, 185, 151, 0.12), transparent 26%),
        #081722;
}

.portfolio-heading > p {
    color: rgba(255, 255, 255, 0.57);
}

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

.property-card {
    position: relative;
    display: flex;
    min-height: 410px;
    overflow: hidden;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 28px;
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
        #0b1e2b;
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.16);
    transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.property-card::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.55;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

.property-card::after {
    position: absolute;
    top: 78px;
    right: -70px;
    width: 230px;
    height: 230px;
    border: 1px solid rgba(33, 185, 151, 0.19);
    border-radius: 50%;
    content: "";
    box-shadow: 0 0 100px rgba(33, 185, 151, 0.06);
}

.property-card:hover {
    transform: translateY(-7px);
    border-color: rgba(33, 185, 151, 0.46);
}

.property-topline,
.property-content {
    position: relative;
    z-index: 2;
}

.property-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.property-code {
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.property-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.73rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.property-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px rgba(33, 185, 151, 0.75);
}

.property-content > p {
    margin: 0 0 12px;
    color: var(--accent);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.property-content h3 {
    max-width: 310px;
    margin: 0;
    font-size: clamp(1.75rem, 3vw, 2.7rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.property-content > span {
    display: block;
    max-width: 340px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.91rem;
}

.portfolio-note {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 24px;
    margin-top: 20px;
    padding: 25px 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.045);
}

.portfolio-note-mark {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    color: #05241c;
    background: var(--accent);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.08em;
}

.portfolio-note strong {
    display: block;
    color: #fff;
}

.portfolio-note p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.88rem;
}

.standards-section {
    background: #f8fafb;
}

.standards-heading {
    margin-bottom: 42px;
}

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

.standard-card {
    min-height: 315px;
    padding: 27px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
}

.standard-card > span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--accent-dark);
    background: var(--accent-soft);
    font-size: 0.72rem;
    font-weight: 900;
}

.standard-card h3 {
    margin: 68px 0 14px;
    font-size: 1.25rem;
    line-height: 1.18;
    letter-spacing: -0.03em;
}

.standard-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.91rem;
}

.corporate-contact-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1080px) {
    .corporate-hero .hero-grid {
        grid-template-columns: 1fr;
    }

    .corporate-hero-card {
        max-width: 720px;
    }

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

    .proof-grid div:nth-child(3) {
        border-left: 1px solid rgba(255, 255, 255, 0.09);
    }

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

    .property-card:last-child {
        grid-column: 1 / -1;
        min-height: 340px;
    }
}

@media (max-width: 680px) {
    .hero-metrics,
    .proof-grid,
    .property-grid,
    .standards-grid {
        grid-template-columns: 1fr;
    }

    .hero-metrics div {
        min-height: auto;
    }

    .proof-grid div,
    .proof-grid div:first-child,
    .proof-grid div:nth-child(3) {
        min-height: auto;
        border-right: 1px solid rgba(255, 255, 255, 0.09);
        border-left: 1px solid rgba(255, 255, 255, 0.09);
        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    }

    .property-card,
    .property-card:last-child {
        grid-column: auto;
        min-height: 360px;
        padding: 24px;
    }

    .portfolio-note {
        grid-template-columns: 1fr;
    }

    .standard-card {
        min-height: 270px;
    }
}
