/* =========================================================
   CORPORATE POSTGRESQL DBA TRAINING
   Page-scoped stylesheet
   Visual system intentionally aligned with corporate-oracle-dba.css
   ========================================================= */
/* =========================================================
   STANDARD CORPORATE TRAINING TYPOGRAPHY
   Desktop: Hero H1 52px | Section H2 38px
            Hero H2 19px | Body 15px
            Card Heading 17px | Supporting text 13-14px
            Kicker/Breadcrumb 11px
   ========================================================= */


.corp-pg-page {
    --pg-navy: #07152d;
    --pg-blue: #2563eb;
    --pg-light-blue: #60a5fa;
    --pg-cyan: #22c7f2;
    --pg-text: #0f172a;
    --pg-muted: #64748b;
    --pg-border: #e2e8f0;
    --pg-soft: #f8fafc;

    width: 100%;
    margin: 0;
    padding: 0;
    color: var(--pg-text);
    overflow-x: hidden;
}

.corp-pg-page *,
.corp-pg-page *::before,
.corp-pg-page *::after {
    box-sizing: border-box;
}

.corp-pg-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.corp-pg-page h1,
.corp-pg-page h2,
.corp-pg-page h3,
.corp-pg-page p {
    font-family: inherit;
}


/* =========================================================
   BREADCRUMB
   ========================================================= */

.corp-pg-breadcrumb-wrap {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #06152e;
}

.corp-pg-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    padding: 17px 0 25px;
    color: #aebdd0;
    font-size: 11px;
    line-height: 1.5;
}

.corp-pg-breadcrumb a {
    color: #e4edf8;
    text-decoration: none;
}

.corp-pg-breadcrumb a:hover {
    color: #67d9ff;
}


/* =========================================================
   HERO
   ========================================================= */

.corp-pg-hero {
    position: relative;
    overflow: hidden;
    padding-bottom: 65px;
    color: #fff;
    background:
        radial-gradient(circle at 84% 42%,
            rgba(37, 99, 235, .34),
            transparent 36%),
        linear-gradient(115deg,
            #041126,
            #07152d 48%,
            #102e5e);
}

.corp-pg-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .24;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(96, 165, 250, .12) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(96, 165, 250, .12) 1px,
            transparent 1px);
    background-size: 54px 54px;
}

.corp-pg-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    align-items: center;
    gap: 55px;
    min-height: 530px;
}

.corp-pg-hero-content {
    min-width: 0;
}

.corp-pg-kicker,
.corp-pg-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #67d9ff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
    line-height: 1.4;
    text-transform: uppercase;
}

.corp-pg-kicker {
    margin-bottom: 20px;
}

.corp-pg-kicker-line {
    display: inline-block;
    width: 38px;
    height: 2px;
    flex: 0 0 38px;
    background: var(--pg-cyan);
}

.corp-pg-hero h1 {
    max-width: 650px;
    margin: 0 0 15px;
    color: #fff;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1.3px;
}

.corp-pg-hero h1 span {
    color: var(--pg-light-blue);
}

.corp-pg-hero h2 {
    margin: 0 0 17px;
    color: #60c8ff;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.4;
}

.corp-pg-hero-text {
    max-width: 620px;
    margin: 0 0 28px;
    color: #d7e5f6;
    font-size: 15px;
    line-height: 1.8;
}

.corp-pg-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.corp-pg-btn {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 6px;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: .25s;
}

.corp-pg-btn:hover {
    transform: translateY(-2px);
}

.corp-pg-btn-primary {
    color: #fff !important;
    background: var(--pg-blue);
    border: 1px solid var(--pg-blue);
}

.corp-pg-btn-outline {
    color: #fff !important;
    background: transparent;
    border: 1px solid rgba(214, 230, 255, .6);
}

.corp-pg-btn-light {
    color: #0f172a !important;
    background: #fff;
    border: 1px solid #fff;
}

.corp-pg-trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    color: #c8dbf5;
    font-size: 14px;
}

.corp-pg-trust-points span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.corp-pg-trust-points i {
    color: #25d2ba;
}

.corp-pg-hero-media {
    position: relative;
    width: 100%;
    min-width: 0;
}

.corp-pg-hero-image-frame {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border: 1px solid rgba(126, 192, 255, .4);
    border-radius: 15px;
    background: #07162d;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .28);
}

.corp-pg-hero-image-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}


/* =========================================================
   VALUE STRIP
   ========================================================= */

.corp-pg-value-strip {
    position: relative;
    z-index: 4;
    background: #fff;
    border-bottom: 1px solid var(--pg-border);
    box-shadow: 0 8px 28px rgba(18, 35, 65, .05);
}

.corp-pg-value-grid {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    width: 100%;
}

.corp-pg-value-item {
    min-width: 0;
    min-height: 100px;
    padding: 18px 19px;
    display: flex !important;
    align-items: center;
    gap: 13px;
    border-right: 1px solid var(--pg-border);
}

.corp-pg-value-item:last-child {
    border-right: 0;
}

.corp-pg-value-item>i {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--pg-blue);
    background: #edf4ff;
    font-size: 18px;
}

.corp-pg-value-item strong,
.corp-pg-value-item span {
    display: block;
}

.corp-pg-value-item strong {
    margin: 0 0 5px;
    color: var(--pg-text);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.corp-pg-value-item span {
    color: #6c7d98;
    font-size: 12px;
    line-height: 1.45;
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.corp-pg-section {
    padding: 90px 0;
}

.corp-pg-curriculum-section,
.corp-pg-audience-section,
.corp-pg-process-section,
.corp-pg-related-section {
    background: var(--pg-soft);
}

.corp-pg-section-head {
    max-width: 850px;
    margin: 0 auto 44px;
    text-align: center;
}

.corp-pg-section-head .corp-pg-section-kicker {
    margin-bottom: 13px;
}

.corp-pg-section-head h2,
.corp-pg-custom-grid h2,
.corp-pg-delivery-grid h2,
.corp-pg-seo-content h2,
.corp-pg-cta h2 {
    color: var(--pg-text);
}

.corp-pg-section-head h2 {
    margin: 0 0 18px;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
}

.corp-pg-section-head h2 span,
.corp-pg-custom-grid h2 span,
.corp-pg-delivery-grid h2 span,
.corp-pg-seo-content h2 span {
    color: var(--pg-blue);
}

.corp-pg-section-head p {
    max-width: 790px;
    margin: 0 auto;
    color: var(--pg-muted);
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   CURRICULUM
   ========================================================= */

.corp-pg-curriculum-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
    margin-top: 42px;
}

.corp-pg-curriculum-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;

    width: 100%;
    min-width: 0;

    padding: 26px 28px;

    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;

    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.corp-pg-curriculum-card:hover {
    transform: translateY(-3px);
    border-color: #bfdbfe;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.corp-pg-number {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border-radius: 10px;

    background: #eff6ff;
    color: #2563eb;

    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.corp-pg-curriculum-card>div:last-child {
    flex: 1 1 auto;
    min-width: 0;
}

.corp-pg-curriculum-card h3 {
    margin: 0 0 14px;

    color: #0f172a;

    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
}

.corp-pg-curriculum-card ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.corp-pg-curriculum-card li {
    position: relative;

    margin: 0 0 8px;
    padding-left: 17px;

    color: #64748b;

    font-size: 13px;
    font-weight: 400;
    line-height: 1.55;
}

.corp-pg-curriculum-card li:last-child {
    margin-bottom: 0;
}


/* Small blue bullet */

.corp-pg-curriculum-card li::before {
    content: "";

    position: absolute;
    left: 0;
    top: 9px;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #2563eb;
}

.corp-pg-panel-top {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 13px;
    padding: 16px 20px;
    color: #fff;
    background: linear-gradient(90deg, #1555cf, #2563eb);
}

.corp-pg-panel-top h3 {
    margin: 0;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
}

.corp-pg-curriculum-body {
    position: relative;
    min-height: 260px;
    padding: 24px 190px 24px 25px;
}

.corp-pg-curriculum-body ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.corp-pg-curriculum-body li {
    position: relative;
    margin: 0 0 9px;
    padding-left: 20px;
    color: #475569;
    font-size: 13px;
    line-height: 1.55;
}

.corp-pg-curriculum-body li::before {
    content: "\f058";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--pg-blue);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.corp-pg-card-art {
    position: absolute;
    top: 50%;
    right: 28px;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    color: rgba(37, 99, 235, .67);
    font-size: 55px;
    border: 2px solid rgba(37, 99, 235, .18);
    border-radius: 22px;
    background: #f8fbff;
}

.corp-pg-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    color: #2563eb;
    background: #eff6ff;

    font-size: 19px;
}

.corp-pg-benefit-card h3 {
    margin: 0 0 11px;

    color: #0f172a;

    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}

.corp-pg-benefit-card p {
    margin: 0;

    color: #64748b;

    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}



/* =========================================================
   CUSTOMIZED PROGRAM
   ========================================================= */

.corp-pg-custom-section,
.corp-pg-seo-section {
    background: var(--pg-soft);
}

.corp-pg-custom-grid,
.corp-pg-delivery-grid {
    display: grid !important;
    grid-template-columns: 1.08fr .92fr !important;
    gap: 65px;
    align-items: center;
}

.corp-pg-custom-grid>div,
.corp-pg-delivery-grid>div {
    min-width: 0;
}

.corp-pg-custom-grid h2,
.corp-pg-delivery-grid h2,
.corp-pg-seo-content h2,
.corp-pg-cta h2 {
    margin: 0 0 18px;
    font-size: 31px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
}

.corp-pg-custom-grid p,
.corp-pg-delivery-grid p {
    max-width: 600px;
    margin: 0 0 18px;
    color: var(--pg-muted);
    font-size: 15px;
    line-height: 1.8;
}

.corp-pg-check-list {
    display: grid !important;
    gap: 13px;
    margin: 25px 0 0;
    padding: 0;
    color: #526783;
    font-size: 14px;
    line-height: 1.55;
}

.corp-pg-check-list>div {
    display: flex !important;
    align-items: flex-start;
    gap: 11px;
}

.corp-pg-check-list i {
    flex: 0 0 auto;
    margin-top: 3px;
    color: #20c3af;
}

.corp-pg-custom-panel {
    width: 100%;
    overflow: hidden;
    border: 1px solid #254771;
    border-radius: 14px;
    color: #d9e8fb;
    background:
        radial-gradient(circle at 100% 0,
            rgba(68, 148, 255, .18),
            transparent 42%),
        #08182f;
}

.corp-pg-custom-panel>div:not(.corp-pg-panel-top) {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 25px;
    border-bottom: 1px solid rgba(155, 198, 242, .12);
}

.corp-pg-custom-panel>div:last-child {
    border-bottom: 0;
}

.corp-pg-custom-panel>div span {
    color: #91a9c7;
    font-size: 13px;
}

.corp-pg-custom-panel>div strong {
    color: #fff;
    font-size: 13px;
    text-align: right;
}


/* =========================================================
   AUDIENCE
   ========================================================= */

.corp-pg-audience-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 18px;
}

.corp-pg-audience-card {
    min-width: 0;
    min-height: 155px;
    padding: 24px 18px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid var(--pg-border);
    border-radius: 10px;
    background: #fff;
    transition: .25s;
}

.corp-pg-audience-card:hover {
    transform: translateY(-4px);
    border-color: #bfdbfe;
}

.corp-pg-audience-card i {
    margin-bottom: 14px;
    color: var(--pg-blue);
    font-size: 29px;
}

.corp-pg-audience-card h3 {
    margin: 0 0 8px;
    color: var(--pg-text);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.corp-pg-audience-card p {
    margin: 0;
    color: var(--pg-muted);
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   DELIVERY
   ========================================================= */

.corp-pg-delivery-section {
    padding-top: 30px;
}

.corp-pg-delivery-options {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 15px;
}

.corp-pg-delivery-options>div {
    min-height: 160px;
    padding: 23px 18px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid var(--pg-border);
    border-radius: 12px;
    background: #fff;
}

.corp-pg-delivery-options i {
    margin-bottom: 15px;
    color: var(--pg-blue);
    font-size: 24px;
}

.corp-pg-delivery-options strong {
    margin-bottom: 7px;
    color: var(--pg-text);
    font-size: 15px;
}

.corp-pg-delivery-options span {
    color: #70819b;
    font-size: 14px;
    line-height: 1.5;
}


/* =========================================================
   PROCESS
   ========================================================= */

.corp-pg-process {
    position: relative;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 18px;
}

.corp-pg-process::before {
    content: "";
    position: absolute;
    top: 34px;
    left: 9%;
    right: 9%;
    height: 1px;
    background: #cbd9eb;
}

.corp-pg-process-step {
    position: relative;
    z-index: 1;
    min-width: 0;
    padding: 0 18px;
    text-align: center;
}

.corp-pg-process-number {
    width: 68px;
    height: 68px;
    margin: 0 auto 22px;
    display: grid;
    place-items: center;
    border: 1px solid #b9d0ec;
    border-radius: 50%;
    color: var(--pg-blue);
    background: #fff;
    font-size: 15px;
    font-weight: 800;
}

.corp-pg-process-step h3 {
    margin: 0 0 11px;
    color: var(--pg-text);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.corp-pg-process-step p {
    margin: 0;
    color: #697b95;
    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   SEO CONTENT
   ========================================================= */

.corp-pg-seo-content {
    max-width: 940px;
    margin: 0 auto;
}

.corp-pg-seo-content .corp-pg-section-kicker {
    margin-bottom: 13px;
}

.corp-pg-seo-content h2 {
    margin: 0 0 20px;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
}

.corp-pg-seo-content p {
    margin: 0 0 20px;
    color: #5d708d;
    font-size: 15px;
    line-height: 1.85;
}

.corp-pg-seo-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   RELATED PROGRAMS
   ========================================================= */

.corp-pg-related-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 18px;
}

.corp-pg-related-card {
    min-width: 0;
    min-height: 190px;
    padding: 26px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--pg-border);
    border-radius: 12px;
    color: var(--pg-text) !important;
    background: #fff;
    text-decoration: none !important;
    transition: .25s;
}

.corp-pg-related-card:hover {
    transform: translateY(-4px);
    border-color: #bfdbfe;
}

.corp-pg-related-card>i {
    color: var(--pg-blue);
    font-size: 23px;
}

.corp-pg-related-card strong {
    color: var(--pg-text);
    font-size: 15px;
    line-height: 1.45;
}

.corp-pg-related-card span {
    color: var(--pg-blue);
    font-size: 12px;
    font-weight: 700;
}

/* =========================================================
   POSTGRESQL DBA - BENEFITS / KEY CAPABILITIES
   ========================================================= */

.corp-pg-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.corp-pg-benefit-card {
    position: relative;
    min-width: 0;
    min-height: 235px;
    padding: 30px 28px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.corp-pg-benefit-card:hover {
    transform: translateY(-4px);
    border-color: #bfdbfe;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.09);
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.corp-pg-cta-section {
    padding: 80px 0;
    background: #06152e;
}

.corp-pg-cta {
    padding: 55px 58px;
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    gap: 50px;
    align-items: center;
    border: 1px solid rgba(105, 177, 255, .28);
    border-radius: 16px;
    background:
        radial-gradient(circle at 85% 20%,
            rgba(53, 126, 255, .22),
            transparent 40%),
        linear-gradient(120deg, #0a1c38, #0d2853);
}

.corp-pg-cta .corp-pg-section-kicker {
    margin-bottom: 13px;
    color: #67d9ff;
}

.corp-pg-cta h2 {
    color: #fff;
    margin: 0 0 17px;
    font-size: 38px;
    line-height: 1.2;
}

.corp-pg-cta h2 span {
    color: var(--pg-light-blue);
}

.corp-pg-cta p {
    max-width: 760px;
    margin: 0;
    color: #bfd0e7;
    font-size: 15px;
    line-height: 1.75;
}

.corp-pg-cta-actions {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    min-width: 240px;
}


/* =========================================================
   RESPONSIVE - 1199px
   ========================================================= */

@media (max-width:1199px) {

    .corp-pg-hero h1 {
        font-size: 48px;
    }

    .corp-pg-value-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .corp-pg-value-item:nth-child(3) {
        border-right: 0;
    }

    .corp-pg-value-item:nth-child(n + 4) {
        border-top: 1px solid var(--pg-border);
    }

    .corp-pg-audience-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .corp-pg-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}


/* =========================================================
   RESPONSIVE - 900px
   ========================================================= */

@media (max-width:900px) {

    .corp-pg-section {
        padding: 72px 0;
    }

    .corp-pg-section-head h2 {
        font-size: 34px;
    }

    .corp-pg-hero-grid {
        grid-template-columns: 1fr !important;
        gap: 35px;
        min-height: auto;
    }

    .corp-pg-hero h1 {
        font-size: 44px;
    }

    .corp-pg-hero-media {
        max-width: 760px;
        margin: 0 auto;
    }

    .corp-pg-hero-image-frame {
        height: 400px;
    }

    .corp-pg-value-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .corp-pg-value-item:nth-child(3) {
        border-right: 1px solid var(--pg-border);
    }

    .corp-pg-value-item:nth-child(2n) {
        border-right: 0;
    }

    .corp-pg-value-item:nth-child(n + 3) {
        border-top: 1px solid var(--pg-border);
    }

    .corp-pg-curriculum-grid,
    .corp-pg-custom-grid,
    .corp-pg-delivery-grid {
        grid-template-columns: 1fr !important;
    }

    .corp-pg-custom-grid,
    .corp-pg-delivery-grid {
        gap: 40px;
    }

    .corp-pg-audience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .corp-pg-process {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 40px 20px;
    }

    .corp-pg-process::before {
        display: none;
    }

    .corp-pg-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .corp-pg-cta {
        grid-template-columns: 1fr !important;
    }

    .corp-pg-cta-actions {
        width: 100%;
        max-width: 320px;
    }

    .corp-pg-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .corp-pg-benefit-card {
        min-height: 220px;
        padding: 26px 24px;
    }

    .corp-pg-curriculum-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 34px;
    }

    .corp-pg-curriculum-card {
        padding: 24px;
    }


}


/* =========================================================
   RESPONSIVE - 600px
   ========================================================= */

@media (max-width:600px) {

    .corp-pg-container {
        width: 92%;
    }

    .corp-pg-section {
        padding: 58px 0;
    }

    .corp-pg-section-head {
        margin-bottom: 35px;
    }

    .corp-pg-section-head h2 {
        font-size: 29px;
    }

    .corp-pg-hero {
        padding-bottom: 50px;
    }

    .corp-pg-breadcrumb {
        padding: 14px 0 20px;
        font-size: 11px;
    }

    .corp-pg-hero h1 {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .corp-pg-hero h2 {
        font-size: 17px;
    }

    .corp-pg-hero-text {
        font-size: 14px;
    }

    .corp-pg-actions {
        flex-direction: column !important;
        align-items: stretch;
    }

    .corp-pg-btn {
        width: 100%;
    }

    .corp-pg-trust-points {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .corp-pg-hero-media {
        max-width: 100%;
    }

    .corp-pg-hero-image-frame {
        height: 300px;
        border-radius: 10px;
    }

    .corp-pg-value-grid {
        grid-template-columns: 1fr !important;
    }

    .corp-pg-value-item,
    .corp-pg-value-item:nth-child(2n),
    .corp-pg-value-item:nth-child(3n) {
        min-height: 88px;
        border-right: 0;
        border-top: 0;
        border-bottom: 1px solid var(--pg-border);
    }

    .corp-pg-value-item:last-child {
        border-bottom: 0;
    }

    .corp-pg-curriculum-card {
        grid-template-columns: 1fr !important;
    }

    .corp-pg-curriculum-body {
        min-height: auto;
        padding: 24px 20px 150px;
    }

    .corp-pg-card-art {
        top: auto;
        right: 50%;
        bottom: 22px;
        transform: translateX(50%);
        width: 95px;
        height: 95px;
        font-size: 45px;
    }

    .corp-pg-custom-content {
        padding: 32px 25px;
    }

    .corp-pg-custom-grid h2,
    .corp-pg-delivery-grid h2,
    .corp-pg-seo-content h2 {
        font-size: 28px;
    }

    .corp-pg-custom-panel>div:not(.corp-pg-panel-top) {
        flex-direction: column !important;
        align-items: flex-start;
        gap: 5px;
    }

    .corp-pg-custom-panel>div strong {
        text-align: left;
    }

    .corp-pg-audience-grid,
    .corp-pg-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .corp-pg-delivery-options {
        grid-template-columns: 1fr !important;
    }

    .corp-pg-delivery-options>div {
        min-height: 125px;
    }

    .corp-pg-process {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .corp-pg-process-step {
        display: grid !important;
        grid-template-columns: 82px minmax(0, 1fr);
        column-gap: 18px;
        align-items: center;
        padding: 0;
        text-align: left;
    }

    .corp-pg-process-number {
        grid-row: 1 / span 2;
        width: 76px;
        height: 76px;
        margin: 0;
    }

    .corp-pg-process-step h3,
    .corp-pg-process-step p {
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }

    .corp-pg-cta-section {
        padding: 60px 0;
    }

    .corp-pg-cta {
        padding: 38px 25px;
    }

    .corp-pg-cta-actions {
        min-width: 0;
        max-width: none;
    }

    .corp-pg-benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .corp-pg-benefit-card {
        min-height: auto;
        padding: 24px 22px;
    }

    .corp-pg-card-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 16px;
        font-size: 17px;
    }

    .corp-pg-benefit-card h3 {
        font-size: 17px;
    }

    .corp-pg-benefit-card p {
        font-size: 14px;
        line-height: 1.65;
    }

    .corp-pg-curriculum-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 28px;
    }

    .corp-pg-curriculum-card {
        gap: 14px;
        padding: 20px;
        border-radius: 10px;
    }

    .corp-pg-number {
        width: 38px;
        height: 38px;

        border-radius: 8px;

        font-size: 13px;
    }

    .corp-pg-curriculum-card h3 {
        margin-bottom: 11px;
        font-size: 17px;
        line-height: 1.35;
    }

    .corp-pg-curriculum-card li {
        margin-bottom: 7px;
        padding-left: 15px;

        font-size: 14px;
        line-height: 1.5;
    }
}


/* =========================================================
   RESPONSIVE - 400px
   ========================================================= */

@media (max-width:400px) {

    .corp-pg-container {
        width: 92%;
    }

    .corp-pg-hero h1 {
        font-size: 32px;
    }

    .corp-pg-section-head h2,
    .corp-pg-custom-grid h2,
    .corp-pg-delivery-grid h2,
    .corp-pg-seo-content h2,
    .corp-pg-cta h2 {
        font-size: 25px;
    }

    .corp-pg-audience-grid,
    .corp-pg-related-grid {
        grid-template-columns: 1fr !important;
    }
}
