
   HCG HOMEPAGE SYSTEM
   Executive Corporate Visual Framework
   Approved Palette: Black / Gold / Gray / White
   ========================================================== */

/* ==========================================================
   HOMEPAGE FOUNDATION
   ========================================================== */

.hcg-homepage-wrapper * {
    box-sizing: border-box;
}

.hcg-homepage-wrapper {
    width: 100%;
    overflow: hidden;
    background: #FFFFFF;
    color: #444444;
}

.hcg-homepage-wrapper section {
    position: relative;
    padding: 72px 0;
}

.hcg-container,
.hamsa-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}


/* ==========================================================
   HOMEPAGE TYPOGRAPHY
   ========================================================== */

.hcg-homepage-wrapper h1,
.hcg-homepage-wrapper h2,
.hcg-homepage-wrapper h3,
.hcg-homepage-wrapper h4,
.hcg-homepage-wrapper h5 {
    margin-top: 0;
    color: #111111;
    letter-spacing: -.2px;
}

.hcg-homepage-wrapper p {
    margin: 0 0 18px;
    color: #444444;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
}


/* ==========================================================
   SECTION HEADING
   ========================================================== */

.hcg-section-heading {
    max-width: 820px;
    margin: 0 auto 44px;
    text-align: center;
}

.hcg-section-heading h2 {
    margin-bottom: 12px;
    color: #111111;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.25;
}

.hcg-section-heading p {
    margin: 0 auto;
    color: #777777;
    font-size: 17px;
    line-height: 1.7;
}


/* ==========================================================
   HOMEPAGE BUTTONS
   ========================================================== */

.hcg-btn-primary,
.hcg-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;
    padding: 11px 22px;

    border-radius: 3px;

    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;

    transition: all .25s ease;
}

.hcg-btn-primary {
    background: #C6A15B;
    border: 1px solid #C6A15B;
    color: #111111;
}

.hcg-btn-primary:hover {
    background: #111111;
    border-color: #111111;
    color: #FFFFFF;
    transform: translateY(-1px);
}

.hcg-btn-secondary {
    background: #FFFFFF;
    border: 1px solid #111111;
    color: #111111;
}

.hcg-btn-secondary:hover {
    background: #111111;
    border-color: #111111;
    color: #FFFFFF;
    transform: translateY(-1px);
}


/* ==========================================================
   STATISTICS SECTION
   ========================================================== */

.hcg-statistics-section {
    position: relative;
    overflow: hidden;
    background: #111111;
    color: #FFFFFF;
}

.hcg-statistics-section .hamsa-container {
    position: relative;
    z-index: 2;
}

.hcg-statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.hcg-stat-card {
    position: relative;

    min-height: 300px;
    padding: 30px 26px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    background: #222222;
    border: 1px solid rgba(198,161,91,.35);
    border-radius: 4px;

    overflow: hidden;
    transition: all .25s ease;
}

.hcg-stat-card:hover {
    border-color: #C6A15B;
    transform: translateY(-3px);
}

.hcg-stat-icon {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    background: rgba(198,161,91,.12);
    border: 1px solid rgba(198,161,91,.30);
    border-radius: 3px;
}

.hcg-stat-icon .dashicons {
    width: 24px;
    height: 24px;
    font-size: 24px;
    color: #C6A15B;
}

.hcg-statistics-section .hcg-stat-number {
    margin-bottom: 12px;
    color: #FFFFFF;

    font-size: 40px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -.5px;

    overflow-wrap: break-word;
}

.hcg-statistics-section .hcg-stat-label {
    position: relative;

    margin-bottom: 18px;
    padding-bottom: 16px;

    color: #FFFFFF;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
}

.hcg-statistics-section .hcg-stat-label::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 42px;
    height: 2px;

    background: #C6A15B;
}

.hcg-statistics-section .hcg-stat-description {
    margin-top: auto;
    color: rgba(255,255,255,.72);

    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
}


/* ==========================================================
   WHY PERTECNICA
   ========================================================== */

.hcg-why-section {
    background: #F7F7F7;
}

.hcg-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    align-items: stretch;
}

.hcg-why-card {
    height: 100%;
    padding: 26px;

    display: flex;
    flex-direction: column;

    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: 4px;

    transition: all .25s ease;
}

.hcg-why-card:hover {
    border-color: #C6A15B;
    box-shadow: 0 6px 20px rgba(17,17,17,.07);
    transform: translateY(-2px);
}

.hcg-why-card::before {
    display: none;
}

.hcg-why-icon {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    background: rgba(198,161,91,.12);
    border: 1px solid rgba(198,161,91,.28);
    border-radius: 3px;
}

.hcg-why-icon .dashicons {
    width: 24px;
    height: 24px;
    font-size: 24px;
    color: #9D7A2F;
}

.hcg-why-card h3 {
    margin-bottom: 10px;
    color: #111111;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.35;
}

.hcg-why-card p {
    margin-bottom: 0;
    color: #444444;
    font-size: 16px;
    line-height: 1.7;
}


/* ==========================================================
   CTA SECTION
   ========================================================== */

.hcg-cta-section {
    background: #222222;
    color: #FFFFFF;
}

.hcg-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    align-items: stretch;
}

.hcg-cta-card {
    height: 100%;
    padding: 30px;

    display: flex;
    flex-direction: column;

    background: #111111;
    border: 1px solid rgba(198,161,91,.28);
    border-radius: 4px;

    transition: all .25s ease;
}

.hcg-cta-card:hover {
    border-color: #C6A15B;
    transform: translateY(-2px);
}

.hcg-cta-card::before {
    display: none;
}

.hcg-cta-icon {
    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    background: rgba(198,161,91,.12);
    border: 1px solid rgba(198,161,91,.28);
    border-radius: 3px;
}

.hcg-cta-icon .dashicons {
    width: 24px;
    height: 24px;
    font-size: 24px;
    color: #C6A15B;
}

.hcg-cta-card h3 {
    margin-bottom: 10px;
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.35;
}

.hcg-cta-card p {
    margin-bottom: 22px;
    color: rgba(255,255,255,.72);
    font-size: 16px;
    line-height: 1.7;
}

.hcg-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}


/* ==========================================================
   OFFERINGS SECTION
   ========================================================== */

.hcg-offerings-section {
    background: #FFFFFF;
}

.hcg-offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.hcg-offering-card {
    height: 100%;
    padding: 26px;

    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: 4px;

    transition: all .25s ease;
}

.hcg-offering-card:hover {
    border-color: #C6A15B;
    box-shadow: 0 6px 20px rgba(17,17,17,.07);
    transform: translateY(-2px);
}

.hcg-offering-card::before {
    display: none;
}

.hcg-offering-icon {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    background: rgba(198,161,91,.12);
    border: 1px solid rgba(198,161,91,.28);
    border-radius: 3px;
}

.hcg-offering-icon .dashicons {
    width: 24px;
    height: 24px;
    font-size: 24px;
    color: #9D7A2F;
}

.hcg-offering-card h3 {
    margin-bottom: 10px;
    color: #111111;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.35;
}

.hcg-offering-card p {
    margin-bottom: 16px;
    color: #444444;
    font-size: 16px;
    line-height: 1.7;
}

.hcg-offering-meta {
    color: #9D7A2F;
    font-size: 15px;
    font-weight: 600;
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 1199px) {

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

@media (max-width: 991px) {

    .hcg-homepage-wrapper section {
        padding: 58px 0;
    }

    .hcg-section-heading {
        margin-bottom: 36px;
    }

    .hcg-container,
    .hamsa-container {
        padding-left: 18px;
        padding-right: 18px;
    }
}

@media (max-width: 767px) {

    .hcg-homepage-wrapper section {
        padding: 48px 0;
    }

    .hcg-section-heading {
        margin-bottom: 30px;
    }

    .hcg-section-heading h2 {
        font-size: 26px;
    }

    .hcg-section-heading p {
        font-size: 16px;
    }

    .hcg-statistics-grid {
        grid-template-columns: 1fr;
    }

    .hcg-stat-card {
        min-height: auto;
        padding: 26px 22px;
    }

    .hcg-statistics-section .hcg-stat-number {
        font-size: 34px;
    }

    .hcg-statistics-section .hcg-stat-label {
        font-size: 21px;
    }

    .hcg-statistics-section .hcg-stat-description {
        font-size: 16px;
    }

    .hcg-why-card,
    .hcg-cta-card,
    .hcg-offering-card {
        padding: 22px;
    }

    .hcg-why-card h3,
    .hcg-cta-card h3,
    .hcg-offering-card h3 {
        font-size: 21px;
    }

    .hcg-cta-buttons {
        flex-direction: column;
    }

    .hcg-btn-primary,
    .hcg-btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {

    .hcg-container,
    .hamsa-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hcg-homepage-wrapper section {
        padding: 42px 0;
    }

    .hcg-stat-card {
