
        /* Reset & Global */
        :root {
            --primary: #0067b8;
            --primary-dark: #063a78;
            --secondary: #1a1a1a;
            --accent: #159bd7;
            --success: #00c851;
            --premium-gold: #d4af37;
            --text-main: #111111;
            --text-sub: #666666;
            --bg-light: #f8f9fa;
            --white: #ffffff;
            --border: #eeeeee;
            --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
        }


        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-padding {
            padding: 120px 0;
        }

        @media (max-width: 1024px) {
            .section-padding {
                padding: 80px 0;
            }
            .container {
                padding: 0 20px;
            }
        }

        @media (max-width: 768px) {
            .section-padding {
                padding: 60px 0;
            }
            .container {
                padding: 0 16px;
            }
        }


        /* Page Hero */
        .page-hero {
            position: relative;
            height: 400px;
            background: #001855;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/img/main_slide/pagetop.png')no-repeat 50% 50%;
            background-size: cover;
            opacity: 0.6;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-label {
            display: inline-block;
            padding: 8px 24px;
            border: 1px solid rgba(255, 255, 255, 0.4);
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.05);
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 4px;
            margin-bottom: 24px;
            opacity: 0.95;
            margin-top: 60px;
            color: #fff;
        }

        .hero-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .hero-title .highlight-text {
            color: var(--accent);
        }

        .hero-desc {
            font-size: 20px;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }

        @media (max-width: 768px) {
            .page-hero {
                height: 300px;
            }
            .hero-title {
                font-size: 36px;
            }
            .hero-desc {
                font-size: 16px;
            }
        }

        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-sub {
            color: var(--primary);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 10px;
            display: block;
            font-size: 15px;
        }

        .section-title {
            font-size: 42px;
            font-weight: 800;
            color: #111;
            margin-bottom: 15px;
        }

        .section-desc {
            font-size: 18px;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        @media (max-width: 768px) {
            .section-header {
                margin-bottom: 40px;
            }
            .section-title {
                font-size: 28px;
            }
            .section-desc {
                font-size: 16px;
            }
        }

        /* CEO Message */
        .ceo-section {
            background: #fff;
        }

        .ceo-wrap {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
            align-items: center;
        }

        .ceo-photo {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .ceo-photo img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

        .ceo-content h3 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 10px;
            color: var(--primary);
        }

        .ceo-position {
            font-size: 18px;
            color: #666;
            margin-bottom: 30px;
        }

        .ceo-message {
            font-size: 18px;
            line-height: 1.8;
            color: #444;
            margin-bottom: 20px;
        }

        .ceo-signature {
            margin-top: 40px;
            text-align: right;
        }

        .ceo-signature strong {
            font-size: 24px;
            color: #111;
        }

        @media (max-width: 1024px) {
            .ceo-wrap {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .ceo-photo img {
                height: 400px;
            }
        }



        /* Core Values */
        .values-section {
            background: #fff;
        }

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

        .value-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 50px 30px;
            border-radius: 16px;
            text-align: center;
            border: 2px solid transparent;
            transition: 0.3s;
        }

        .value-card:hover {
            border-color: var(--primary);
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .value-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 40px;
            color: #fff;
        }

        .value-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .value-desc {
            font-size: 16px;
            color: #666;
            line-height: 1.7;
        }

        @media (max-width: 1024px) {
            .values-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .values-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Organization */
        .org-section {
            background: var(--bg-light);
        }

        .org-teams {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 35px;
            max-width: 1300px;
            margin: 0 auto;
        }

        .team-dept {
            background: #fff;
            border-radius: 12px;
            padding: 0;
            box-shadow: var(--shadow-md);
            transition: 0.3s;
            border: 2px solid #f0f0f0;
            overflow: hidden;
            position: relative;
        }

        .team-dept:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        .team-dept::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(180deg, var(--primary), var(--accent));
        }

        .team-dept-header {
            background: linear-gradient(135deg, #f8f9fa, #ffffff);
            padding: 35px 35px 30px 45px;
            border-bottom: 2px solid #f0f0f0;
            position: relative;
        }

        .team-dept-number {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 72px;
            font-weight: 900;
            color: rgba(0, 67, 224, 0.08);
            line-height: 1;
        }

        .team-dept-category {
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--primary);
            background: rgba(0, 67, 224, 0.1);
            padding: 6px 14px;
            border-radius: 20px;
            margin-bottom: 15px;
        }

        .team-dept-name {
            font-size: 28px;
            font-weight: 800;
            color: #111;
            margin-bottom: 0;
            position: relative;
            z-index: 2;
        }

        .team-dept-body {
            padding: 30px 35px 35px 45px;
        }

        .team-members-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .team-members-list li {
            padding: 14px 0;
            border-bottom: 1px solid #f5f5f5;
            font-size: 16px;
            color: #555;
            display: flex;
            align-items: center;
            gap: 12px;
            position: relative;
            padding-left: 20px;
            transition: 0.2s;
        }

        .team-members-list li:hover {
            color: var(--primary);
            padding-left: 25px;
        }

        .team-members-list li:last-child {
            border-bottom: none;
        }

        .team-members-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 6px;
            background: var(--primary);
            border-radius: 50%;
            transition: 0.2s;
        }

        .team-members-list li:hover::before {
            width: 8px;
            height: 8px;
        }

        @media (max-width: 1024px) {
            .org-teams {
                grid-template-columns: 1fr;
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            .team-dept-header {
                padding: 25px 25px 20px 30px;
            }
            .team-dept-body {
                padding: 25px 25px 25px 30px;
            }
            .team-dept-number {
                font-size: 56px;
                top: 15px;
                right: 20px;
            }
            .team-dept-name {
                font-size: 22px;
            }
            .team-members-list li {
                font-size: 14px;
                padding: 12px 0 12px 18px;
            }
        }



        /* Certifications */
        .cert-showcase {
            background: #fff;
        }

        .cert-gallery {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .cert-image-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: 0.3s;
            border: 1px solid #eee;
        }

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

        .cert-image {
            width: 100%;
            height: 320px;
            overflow: hidden;
            position: relative;
            background-color: #ffffff; /* 여백 부분 배경색 흰색으로 변경 */
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px; /* 안쪽 여백 추가 */
        }

        .cert-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.5s;
        }

        .cert-image-card:hover .cert-image img {
            transform: scale(1.1);
        }

        .cert-label {
            padding: 20px;
            background: #fff;
            text-align: center;
            border-top: 1px solid #f0f0f0;
        }

        .cert-label-title {
            font-size: 18px;
            font-weight: 700;
            color: #111;
            margin-bottom: 5px;
        }

        .cert-label-year {
            font-size: 14px;
            color: #888;
        }

        @media (max-width: 1024px) {
            .cert-gallery {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Clients */
        .clients-section {
            background: #f8f9fa;
        }

        .clients-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .client-logo {
            background: #fff;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            color: #888;
            border: 1px solid #eee;
            transition: 0.3s;
        }

        .client-logo:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        @media (max-width: 1024px) {
            .clients-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .clients-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* CSR */
        .csr-section {
            background: #fff;
        }

        .csr-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .csr-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: 0.3s;
            border: 1px solid #eee;
        }

        .csr-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .csr-image {
            width: 100%;
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .csr-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .csr-card:hover .csr-image img {
            transform: scale(1.1);
        }

        .csr-content {
            padding: 30px;
        }

        .csr-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #111;
        }

        .csr-desc {
            font-size: 15px;
            color: #666;
            line-height: 1.6;
            word-break: keep-all;
        }

        @media (max-width: 1024px) {
            .csr-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Contact Info */
        .contact-section {
            background: #fff;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 60px;
        }

        .contact-info {
            background: var(--bg-light);
            padding: 50px;
            border-radius: 16px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #fff;
            flex-shrink: 0;
        }

        .info-content h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .info-content p {
            font-size: 16px;
            color: #666;
            line-height: 1.6;
        }

        .map-placeholder {
            background: #e9ecef;
            height: 100%;
            min-height: 400px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 18px;
        }

        @media (max-width: 1024px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }

/* =========================================
   Corporate Company Page Renewal
========================================= */
.corp-company {
    --corp-navy: #061a33;
    --corp-blue: #0067b8;
    --corp-sky: #159bd7;
    --corp-ink: #102235;
    --corp-muted: #687889;
    --corp-line: #dbe7f0;
    --corp-soft: #f4f8fb;
    background: #ffffff;
    color: var(--corp-ink);
    overflow: hidden;
}

.corp-container {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
}

.corp-hero {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--corp-navy);
}

.corp-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(10, 15, 20, 0.8), rgba(10, 15, 20, 0.8)),
        url("/img/main_slide/pagetop.png") center/cover no-repeat;
    transform: scale(1.02);
}

.corp-hero::after {
    position: absolute;
    right: -16%;
    bottom: -35%;
    width: 760px;
    height: 760px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 50%;
    content: "";
}

.corp-hero-inner {
    position: relative;
    z-index: 2;
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 90px;
}

.corp-hero-copy span,
.corp-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--corp-sky);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.corp-hero-copy span::before,
.corp-kicker::before {
    width: 34px;
    height: 2px;
    background: currentColor;
    content: "";
}

.corp-hero-copy h1 {
    margin-top: 24px;
    color: #fff;
    font-size: 68px;
    font-weight: 900;
    line-height: 1.12;
}

.corp-hero-copy p {
    max-width: 720px;
    margin: 28px auto 0;
    color: rgba(255,255,255,0.82);
    font-size: 20px;
    line-height: 1.75;
}

.corp-hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 42px;
}

.corp-hero-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 54px;
    border: 1px solid rgba(255,255,255,0.22);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.corp-hero-actions a:first-child {
    border-color: var(--corp-sky);
    background: var(--corp-sky);
}

.corp-hero-actions a:hover {
    transform: translateY(-3px);
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

.corp-hero-panel {
    padding: 38px;
    color: #fff;
    text-align: center;
}

.corp-hero-panel b {
    display: block;
    padding-bottom: 24px;
    font-size: 21px;
    font-weight: 850;
}

.corp-hero-panel li {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    color: rgba(255,255,255,0.88);
    font-size: 16px;
    font-weight: 650;
}

.corp-hero-panel li:last-child {
    padding-bottom: 0;
}

.corp-hero-panel li span {
    color: var(--corp-sky);
    font-size: 13px;
    font-weight: 900;
}

.corp-stat-wrap {
    position: relative;
    z-index: 3;
    margin-top: 0;
}

.corp-stat-grid {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.corp-stat-item {
    min-height: 116px;
    padding: 28px 30px;
    text-align: center;
}

.corp-stat-item i {
    display: block;
    color: var(--corp-blue);
    font-size: 38px;
    margin-bottom: 14px;
}

.corp-stat-item:last-child {
    border-right: 0;
}

.corp-stat-item strong {
    display: block;
    color: var(--corp-blue);
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.corp-stat-item span {
    display: block;
    margin-top: 12px;
    color: var(--corp-muted);
    font-size: 15px;
    font-weight: 650;
    line-height: 1.5;
}

.corp-section {
    padding: 120px 0;
}

.corp-split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 76px;
    align-items: center;
}

.corp-copy h2,
.corp-section-head h2,
.corp-system-title h2,
.corp-location-copy h2 {
    margin-top: 18px;
    color: var(--corp-ink);
    font-size: 48px;
    font-weight: 900;
    line-height: 1.22;
}

.corp-copy p,
.corp-section-head p,
.corp-location-copy p {
    margin-top: 22px;
    color: var(--corp-muted);
    font-size: 17px;
    line-height: 1.78;
}

.corp-image-stack {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: #dfeaf2;
}

.corp-image-stack img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.corp-image-caption {
    position: absolute;
    left: 34px;
    bottom: 34px;
    width: min(420px, calc(100% - 68px));
    padding: 26px;
    background: rgba(5, 22, 42, 0.82);
    color: #fff;
}

.corp-image-caption b {
    display: block;
    font-size: 22px;
    font-weight: 850;
}

.corp-image-caption span {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,0.78);
    font-size: 14px;
    line-height: 1.6;
}

.corp-business,
.corp-proof {
    background: var(--corp-soft);
}

.corp-section-head {
    max-width: 820px;
    margin-bottom: 54px;
}

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

.corp-business-card {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    color: #fff;
    background: var(--corp-navy);
}

.corp-business-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.corp-business-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(3,20,38,0.88));
    content: "";
}

.corp-business-card:hover img {
    transform: scale(1.06);
}

.corp-business-card div {
    position: relative;
    z-index: 2;
    padding: 34px;
}

.corp-business-card em {
    display: block;
    color: var(--corp-sky);
    font-size: 14px;
    font-style: normal;
    font-weight: 900;
}

.corp-business-card h3 {
    margin-top: 12px;
    font-size: 28px;
    font-weight: 900;
}

.corp-business-card p {
    margin-top: 16px;
    color: rgba(255,255,255,0.78);
    font-size: 15px;
    line-height: 1.7;
}

.corp-system {
    background: #fff;
}

.corp-system-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 80px;
    align-items: start;
}

.corp-process-list {
    border-top: 2px solid var(--corp-ink);
}

.corp-process-item {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 28px;
    padding: 30px 0;
    border-bottom: 1px solid var(--corp-line);
}

.corp-process-item span {
    color: var(--corp-blue);
    font-size: 22px;
    font-weight: 900;
}

.corp-process-item h3 {
    color: var(--corp-ink);
    font-size: 23px;
    font-weight: 850;
}

.corp-process-item p {
    margin-top: 9px;
    color: var(--corp-muted);
    font-size: 16px;
    line-height: 1.65;
}

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

.corp-proof-card {
    min-height: 260px;
    padding: 34px 28px;
    border: 1px solid var(--corp-line);
    background: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.corp-proof-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(4, 36, 68, 0.1);
}

.corp-proof-card i {
    color: var(--corp-blue);
    font-size: 38px;
}

.corp-proof-card h3 {
    margin-top: 26px;
    color: var(--corp-ink);
    font-size: 21px;
    font-weight: 850;
}

.corp-proof-card p {
    margin-top: 13px;
    color: var(--corp-muted);
    font-size: 15px;
    line-height: 1.7;
}

.corp-location {
    padding: 110px 0;
    background:
        linear-gradient(rgba(0, 11, 34, 0.85), rgba(0, 8, 27, 0.85)),
        url("/img/page/bld07.jpg") center/cover no-repeat;
    color: #fff;
}

.corp-location-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
    gap: 70px;
    align-items: center;
}

.corp-location-copy h2,
.corp-location-copy p {
    color: #fff;
}

.corp-location-copy p {
    color: rgba(255,255,255,0.78);
}

.corp-company-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 680px;
    margin-top: 34px;
}

.corp-company-info div {
    min-height: 112px;
    padding: 22px 24px;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(2, 18, 36, 0.48);
    backdrop-filter: blur(12px);
}

.corp-company-info span {
    display: block;
    color: var(--corp-sky);
    font-size: 13px;
    font-weight: 900;
}

.corp-company-info strong {
    display: block;
    margin-top: 12px;
    color: #fff;
    font-size: 17px;
    font-weight: 850;
    line-height: 1.55;
}

.corp-company-info a {
    color: inherit;
}

.corp-map-card {
    overflow: hidden;
    border: 10px solid rgba(255,255,255,0.92);
    background: #fff;
    box-shadow: 0 26px 64px rgba(0, 0, 0, 0.22);
}

.corp-map-card iframe {
    display: block;
    width: 100%;
    height: 410px;
    border: 0;
}

.corp-map-link {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    height: 56px;
    background: var(--corp-blue);
    color: #fff;
    font-size: 15px;
    font-weight: 850;
}

.corp-contact-card {
    padding: 38px;
    background: #fff;
    color: var(--corp-ink);
}

.corp-contact-card dl div {
    padding: 18px 0;
    border-bottom: 1px solid var(--corp-line);
}

.corp-contact-card dl div:first-child {
    padding-top: 0;
}

.corp-contact-card dt {
    color: var(--corp-blue);
    font-size: 13px;
    font-weight: 900;
}

.corp-contact-card dd {
    margin-top: 8px;
    color: var(--corp-ink);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.55;
}

.corp-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    margin-top: 28px;
    background: var(--corp-blue);
    color: #fff;
    font-size: 15px;
    font-weight: 850;
}

@media (max-width: 1024px) {
    .corp-hero-inner,
    .corp-split,
    .corp-system-grid,
    .corp-location-grid {
        grid-template-columns: 1fr;
    }

    .corp-hero-inner {
        gap: 42px;
        padding: 150px 0 90px;
    }

    .corp-hero-copy h1 {
        font-size: 52px;
    }

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

    .corp-business-grid {
        grid-template-columns: 1fr;
    }

    .corp-business-card {
        min-height: 360px;
    }
}

@media (max-width: 768px) {
    .corp-container,
    .corp-hero-inner,
    .corp-stat-grid {
        width: calc(100% - 36px);
    }

    .corp-hero {
        min-height: auto;
    }

    .corp-hero-inner {
        padding: 120px 0 72px;
    }

    .corp-hero-copy h1 {
        font-size: 38px;
    }

    .corp-hero-copy p,
    .corp-copy p,
    .corp-section-head p,
    .corp-location-copy p {
        font-size: 16px;
    }

    .corp-hero-actions {
        flex-direction: column;
    }

    .corp-hero-actions a {
        width: 100%;
    }

    .corp-hero-panel {
        padding: 28px;
    }

    .corp-stat-wrap {
        margin-top: 0;
    }

    .corp-stat-grid,
    .corp-proof-grid {
        grid-template-columns: 1fr;
    }

    .corp-stat-item {
        border-right: 0;
        border-bottom: 1px solid var(--corp-line);
    }

    .corp-section {
        padding: 78px 0;
    }

    .corp-copy h2,
    .corp-section-head h2,
    .corp-system-title h2,
    .corp-location-copy h2 {
        font-size: 32px;
    }

    .corp-image-stack,
    .corp-image-stack img {
        min-height: 360px;
    }

    .corp-image-caption {
        left: 18px;
        bottom: 18px;
        width: calc(100% - 36px);
    }

    .corp-process-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .corp-location {
        padding: 78px 0;
    }

    .corp-contact-card {
        padding: 28px 22px;
    }

    .corp-company-info {
        grid-template-columns: 1fr;
    }

    .corp-company-info div {
        min-height: auto;
    }

    .corp-map-card iframe {
        height: 330px;
    }
}

