   GEMA TEMPLATE VARIATIONS
   ============================================ */

/* ============================================
   VARIATION 1 - MINIMAL CLEAN
   ============================================ */

.gema-v1-minimal {
    padding-top: 80px;
    background: #fff;
}

/* V1 Hero */
.gema-v1-hero {
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.gema-v1-hero-logo {
    width: 180px;
    height: auto;
    margin-bottom: 2rem;
}

.gema-v1-hero h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 0.5rem;
}

.gema-v1-tagline {
    font-size: 1.25rem;
    color: #64748b;
}

/* V1 Section */
.gema-v1-section {
    padding: 60px 0;
    border-bottom: 1px solid #e2e8f0;
}

.gema-v1-section:last-of-type {
    border-bottom: none;
}

.gema-v1-timeline-section {
    background: #f8fafc;
}

.gema-v1-section-header {
    margin-bottom: 40px;
    text-align: center;
}

.gema-v1-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #0097B2;
    margin-bottom: 0.5rem;
}

.gema-v1-section-header h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: #1A2A6C;
}

/* V1 Logo Info */
.gema-v1-logo-info {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: start;
}

.gema-v1-logo-box {
    text-align: center;
}

.gema-v1-logo-box img {
    max-width: 200px;
    height: auto;
}

.gema-v1-logo-desc h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1A2A6C;
    margin-bottom: 1rem;
}

.gema-v1-logo-desc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gema-v1-logo-desc ul li {
    position: relative;
    padding-left: 1.5rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.gema-v1-logo-desc ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background: #0097B2;
    border-radius: 50%;
}

/* V1 Pillars */
.gema-v1-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gema-v1-pillar {
    text-align: center;
    padding: 30px 20px;
}

.gema-v1-pillar h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #0097B2;
    display: inline-block;
}

.gema-v1-pillar p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* V1 Timeline */
.gema-v1-timeline {
    max-width: 600px;
    margin: 0 auto;
}

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

.gema-v1-timeline-item:last-child {
    margin-bottom: 0;
}

.gema-v1-timeline-marker {
    width: 40px;
    height: 40px;
    background: #1A2A6C;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.gema-v1-timeline-content {
    flex: 1;
    padding-top: 8px;
}

.gema-v1-date {
    font-size: 0.8rem;
    color: #0097B2;
    font-weight: 600;
}

.gema-v1-timeline-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-top: 0.25rem;
}

/* V1 Org Logos */
.gema-v1-org-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.gema-v1-org-logos img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

/* V1 Role List */
.gema-v1-role-list {
    max-width: 700px;
    margin: 0 auto;
}

.gema-v1-role-item {
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

.gema-v1-role-item:last-child {
    border-bottom: none;
}

.gema-v1-role-item p {
    color: #475569;
    line-height: 1.7;
}

/* V1 CTA */
.gema-v1-cta {
    padding: 60px 0;
    text-align: center;
    background: #f8fafc;
}

.gema-v1-cta h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 0.5rem;
}

.gema-v1-cta p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.gema-v1-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* V1 Responsive */
@media (max-width: 768px) {
    .gema-v1-logo-info {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gema-v1-pillars {
        grid-template-columns: 1fr;
    }

    .gema-v1-org-logos {
        flex-wrap: wrap;
    }

    .gema-v1-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}


/* ============================================
   VARIATION 2 - CARD BASED
   ============================================ */

.gema-v2-cards {
    padding-top: 80px;
    background: #f0f4f8;
}

/* V2 Hero */
.gema-v2-hero {
    padding: 40px 0;
}

.gema-v2-hero-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.gema-v2-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1A2A6C 0%, #263A8D 100%);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.gema-v2-hero-left h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 0.75rem;
}

.gema-v2-hero-left p {
    color: #64748b;
    font-size: 1.1rem;
}

.gema-v2-hero-right img {
    width: 200px;
    height: auto;
}

/* V2 Section */
.gema-v2-section {
    padding: 50px 0;
}

.gema-v2-dark {
    background: linear-gradient(135deg, #1A2A6C 0%, #263A8D 100%);
}

.gema-v2-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.gema-v2-section-title h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: #1A2A6C;
}

.gema-v2-section-title.light h2 {
    color: #fff;
}

.gema-v2-title-line {
    width: 60px;
    height: 3px;
    background: #0097B2;
    margin: 1rem auto 0;
}

/* V2 Feature Card */
.gema-v2-feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.gema-v2-card-icon img {
    width: 180px;
    height: auto;
}

.gema-v2-card-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 1rem;
}

.gema-v2-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gema-v2-list li {
    position: relative;
    padding-left: 1.5rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.gema-v2-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0097B2;
    font-weight: bold;
}

/* V2 Cards Grid */
.gema-v2-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.gema-v2-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.gema-v2-card-header {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.gema-v2-card-blue .gema-v2-card-header {
    background: linear-gradient(135deg, #1A2A6C 0%, #263A8D 100%);
    color: #fff;
}

.gema-v2-card-cyan .gema-v2-card-header {
    background: linear-gradient(135deg, #0097B2 0%, #00B4D8 100%);
    color: #fff;
}

.gema-v2-card-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.gema-v2-card-header h4 {
    font-size: 1rem;
    font-weight: 700;
}

.gema-v2-card p {
    padding: 0 20px;
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* V2 Echo Card */
.gema-v2-echo-card {
    background: linear-gradient(135deg, #0097B2 0%, #00B4D8 100%);
    border-radius: 16px;
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    color: #fff;
}

.gema-v2-echo-half h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.gema-v2-echo-half p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.gema-v2-echo-divider {
    width: 2px;
    background: rgba(255, 255, 255, 0.3);
}

/* V2 Timeline Cards */
.gema-v2-timeline-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gema-v2-timeline-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.gema-v2-timeline-number {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1A2A6C 0%, #263A8D 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
}

.gema-v2-timeline-image {
    height: 160px;
    overflow: hidden;
}

.gema-v2-timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gema-v2-timeline-info {
    padding: 20px;
}

.gema-v2-timeline-date {
    font-size: 0.8rem;
    color: #0097B2;
    font-weight: 600;
}

.gema-v2-timeline-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    margin-top: 0.25rem;
    line-height: 1.5;
}

/* V2 Org Card */
.gema-v2-org-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.gema-v2-org-logos {
    display: flex;
    gap: 30px;
}

.gema-v2-org-logo {
    text-align: center;
}

.gema-v2-org-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.gema-v2-org-logo span {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #1A2A6C;
}

.gema-v2-org-center img {
    width: 100px;
    height: auto;
}

/* V2 Role Cards */
.gema-v2-role-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.gema-v2-role-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.gema-v2-role-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #0097B2 0%, #00B4D8 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 1rem;
}

.gema-v2-role-card p {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* V2 CTA */
.gema-v2-cta {
    padding: 50px 0;
}

.gema-v2-cta-card {
    background: linear-gradient(135deg, #1A2A6C 0%, #263A8D 100%);
    border-radius: 20px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.gema-v2-cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.gema-v2-cta-content p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.gema-v2-cta-buttons {
    display: flex;
    gap: 1rem;
}

.gema-v2-cta-logo img {
    width: 120px;
    height: auto;
    opacity: 0.9;
}

/* V2 Responsive */
@media (max-width: 1024px) {
    .gema-v2-cards-grid,
    .gema-v2-timeline-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .gema-v2-role-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .gema-v2-hero-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .gema-v2-feature-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gema-v2-echo-card {
        grid-template-columns: 1fr;
    }

    .gema-v2-echo-divider {
        width: 100%;
        height: 2px;
    }

    .gema-v2-org-card {
        flex-direction: column;
        gap: 30px;
    }

    .gema-v2-org-logos {
        flex-wrap: wrap;
        justify-content: center;
    }

    .gema-v2-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .gema-v2-cta-buttons {
        flex-direction: column;
    }
}


/* ============================================
   VARIATION 3 - MODERN BOLD
   ============================================ */

.gema-v3-bold {
    padding-top: 80px;
    background: #fff;
}

/* V3 Hero */
.gema-v3-hero {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #1A2A6C 0%, #263A8D 100%);
    color: #fff;
    overflow: hidden;
}

.gema-v3-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.gema-v3-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.gema-v3-shape-1 {
    width: 400px;
    height: 400px;
    background: #0097B2;
    top: -100px;
    right: -100px;
}

.gema-v3-shape-2 {
    width: 300px;
    height: 300px;
    background: #00B4D8;
    bottom: -50px;
    left: 10%;
}

.gema-v3-shape-3 {
    width: 200px;
    height: 200px;
    background: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.gema-v3-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.gema-v3-hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.gema-v3-hero-text h1 {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.gema-v3-hero-text h1 span {
    color: #00B4D8;
}

.gema-v3-hero-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 400px;
}

.gema-v3-hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 2rem;
}

.gema-v3-stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
}

.gema-v3-stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
}

.gema-v3-hero-logo img {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* V3 Section */
.gema-v3-section {
    padding: 70px 0;
}

.gema-v3-section-dark {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
}

.gema-v3-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.gema-v3-section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #0097B2 0%, #00B4D8 100%);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.gema-v3-section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: #1A2A6C;
}

.gema-v3-section-header h2 span {
    color: #0097B2;
}

.gema-v3-section-header.light h2 {
    color: #fff;
}

.gema-v3-section-header.light h2 span {
    color: #00B4D8;
}

/* V3 Logo Block */
.gema-v3-logo-block {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    margin-bottom: 60px;
    align-items: center;
}

.gema-v3-logo-visual {
    position: relative;
    text-align: center;
}

.gema-v3-logo-visual img {
    width: 250px;
    height: auto;
    position: relative;
    z-index: 2;
}

.gema-v3-logo-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border: 3px dashed #0097B2;
    border-radius: 50%;
    opacity: 0.3;
}

.gema-v3-point {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.gema-v3-point:last-child {
    margin-bottom: 0;
}

.gema-v3-point-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #0097B2;
    line-height: 1;
}

.gema-v3-point p {
    color: #475569;
    line-height: 1.7;
}

/* V3 Pillars */
.gema-v3-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.gema-v3-pillar {
    background: #f8fafc;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.gema-v3-pillar:hover {
    border-color: #0097B2;
    transform: translateY(-5px);
}

.gema-v3-pillar-accent {
    background: linear-gradient(135deg, #0097B2 0%, #00B4D8 100%);
    color: #fff;
}

.gema-v3-pillar-header {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.gema-v3-pillar-accent .gema-v3-pillar-header {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.gema-v3-pillar-letter {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: #1A2A6C;
    line-height: 1;
}

.gema-v3-pillar-accent .gema-v3-pillar-letter {
    color: #fff;
}

.gema-v3-pillar-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1A2A6C;
}

.gema-v3-pillar-accent .gema-v3-pillar-header h3 {
    color: #fff;
}

.gema-v3-pillar-body {
    padding: 25px;
}

.gema-v3-pillar-body p {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.gema-v3-pillar-body p:last-child {
    margin-bottom: 0;
}

.gema-v3-pillar-accent .gema-v3-pillar-body p {
    color: rgba(255, 255, 255, 0.9);
}

/* V3 Echo Block */
.gema-v3-echo-block {
    background: linear-gradient(135deg, #1A2A6C 0%, #263A8D 100%);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    color: #fff;
}

.gema-v3-echo-side {
    flex: 1;
}

.gema-v3-echo-side h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.gema-v3-echo-side p {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.9;
}

.gema-v3-echo-equals {
    font-size: 3rem;
    font-weight: 700;
    color: #00B4D8;
}

/* V3 Timeline */
.gema-v3-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.gema-v3-timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-50%);
}

.gema-v3-timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.gema-v3-timeline-item:last-child {
    margin-bottom: 0;
}

.gema-v3-timeline-right {
    flex-direction: row-reverse;
}

.gema-v3-timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0097B2 0%, #00B4D8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.gema-v3-timeline-dot span {
    font-weight: 700;
    font-size: 1.25rem;
}

.gema-v3-timeline-card {
    width: calc(50% - 60px);
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gema-v3-timeline-img {
    height: 150px;
    overflow: hidden;
}

.gema-v3-timeline-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gema-v3-timeline-info {
    padding: 20px;
}

.gema-v3-timeline-date {
    display: inline-block;
    background: #0097B2;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gema-v3-timeline-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.5;
}

/* V3 Org Flow */
.gema-v3-org-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.gema-v3-org-group {
    display: flex;
    gap: 20px;
}

.gema-v3-org-item {
    width: 80px;
    height: 80px;
    background: #f8fafc;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e2e8f0;
}

.gema-v3-org-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.gema-v3-org-center img {
    width: 100px;
    height: auto;
}

/* V3 Role Grid */
.gema-v3-role-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.gema-v3-role-item {
    background: #f8fafc;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    gap: 20px;
    border-left: 4px solid #0097B2;
}

.gema-v3-role-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #0097B2;
}

.gema-v3-role-item p {
    color: #475569;
    line-height: 1.7;
}

/* V3 CTA */
.gema-v3-cta {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #1A2A6C 0%, #263A8D 100%);
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.gema-v3-cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.gema-v3-shape-4 {
    width: 300px;
    height: 300px;
    background: #0097B2;
    top: -100px;
    left: -100px;
}

.gema-v3-shape-5 {
    width: 250px;
    height: 250px;
    background: #00B4D8;
    bottom: -100px;
    right: -50px;
}

.gema-v3-cta-content {
    position: relative;
    z-index: 2;
}

.gema-v3-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.gema-v3-cta h2 span {
    color: #00B4D8;
}

.gema-v3-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.gema-v3-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* V3 Responsive */
@media (max-width: 1024px) {
    .gema-v3-hero-text h1 {
        font-size: 3.5rem;
    }

    .gema-v3-logo-block {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gema-v3-pillars {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .gema-v3-timeline-line {
        left: 25px;
    }

    .gema-v3-timeline-item,
    .gema-v3-timeline-right {
        flex-direction: row;
    }

    .gema-v3-timeline-dot {
        left: 25px;
    }

    .gema-v3-timeline-card {
        width: calc(100% - 80px);
        margin-left: 60px;
    }

    .gema-v3-role-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .gema-v3-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .gema-v3-hero-text h1 {
        font-size: 3rem;
    }

    .gema-v3-hero-stats {
        justify-content: center;
    }

    .gema-v3-echo-block {
        flex-direction: column;
        text-align: center;
    }

    .gema-v3-echo-equals {
        font-size: 2rem;
    }

    .gema-v3-org-flow {
        flex-direction: column;
    }

    .gema-v3-org-group {
        flex-wrap: wrap;
        justify-content: center;
    }

    .gema-v3-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}


/* ============================================
   VARIATION 4 - CORPORATE FORMAL
   ============================================ */

.gema-v4-corporate {
    padding-top: 80px;
    background: #fff;
}

/* V4 Banner */
.gema-v4-banner {
    background: linear-gradient(135deg, #1A2A6C 0%, #263A8D 100%);
    padding: 25px 0;
    color: #fff;
}

.gema-v4-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.gema-v4-banner-logo img {
    width: 80px;
    height: auto;
}

.gema-v4-banner-text h1 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.gema-v4-banner-text p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.gema-v4-banner-year span {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: #00B4D8;
}

/* V4 Section */
.gema-v4-section {
    padding: 50px 0;
    border-bottom: 1px solid #e2e8f0;
}

.gema-v4-section:last-of-type {
    border-bottom: none;
}

.gema-v4-section-alt {
    background: #f8fafc;
}

.gema-v4-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 50px;
}

.gema-v4-sidebar h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #1A2A6C;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gema-v4-sidebar-line {
    width: 40px;
    height: 3px;
    background: #0097B2;
    margin-top: 1rem;
}

.gema-v4-sidebar-logo {
    margin-top: 2rem;
}

.gema-v4-sidebar-logo img {
    width: 150px;
    height: auto;
}

.gema-v4-lead {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
}

/* V4 List */
.gema-v4-list-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.gema-v4-list-item:last-child {
    margin-bottom: 0;
}

.gema-v4-list-marker {
    width: 8px;
    height: 8px;
    background: #0097B2;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.gema-v4-list-text p {
    color: #475569;
    line-height: 1.7;
}

/* V4 Section Title */
.gema-v4-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.gema-v4-section-title h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A2A6C;
}

.gema-v4-title-line {
    width: 50px;
    height: 3px;
    background: #0097B2;
    margin: 1rem auto 0;
}

/* V4 Pillars */
.gema-v4-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.gema-v4-pillar {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.gema-v4-pillar-header {
    padding: 15px 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.gema-v4-pillar-badge {
    display: inline-block;
    background: #1A2A6C;
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
}

.gema-v4-pillar-badge-alt {
    background: #0097B2;
}

.gema-v4-pillar-content {
    padding: 20px;
}

.gema-v4-pillar-content p {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.gema-v4-pillar-content p:last-child {
    margin-bottom: 0;
}

/* V4 Definition Box */
.gema-v4-definition-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.gema-v4-definition-half {
    padding: 25px;
}

.gema-v4-definition-half:first-child {
    background: #f8fafc;
    border-right: 1px solid #e2e8f0;
}

.gema-v4-definition-half h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 0.75rem;
}

.gema-v4-definition-half p {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* V4 Timeline */
.gema-v4-timeline {
    max-width: 700px;
    margin: 0 auto;
}

.gema-v4-timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.gema-v4-timeline-item:last-child {
    margin-bottom: 0;
}

.gema-v4-timeline-date {
    width: 100px;
    text-align: right;
    flex-shrink: 0;
}

.gema-v4-timeline-month {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
}

.gema-v4-timeline-year {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A2A6C;
}

.gema-v4-timeline-content {
    display: flex;
    gap: 20px;
    flex: 1;
    align-items: flex-start;
}

.gema-v4-timeline-step {
    width: 35px;
    height: 35px;
    background: #1A2A6C;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.gema-v4-timeline-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.5;
    padding-top: 5px;
}

/* V4 Org Structure */
.gema-v4-org-structure {
    max-width: 500px;
    margin: 0 auto 40px;
    text-align: center;
}

.gema-v4-org-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.gema-v4-org-logo {
    text-align: center;
}

.gema-v4-org-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 0.25rem;
}

.gema-v4-org-logo span {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #1A2A6C;
}

.gema-v4-org-arrow {
    margin-bottom: 20px;
}

.gema-v4-org-center img {
    width: 80px;
    height: auto;
}

/* V4 Role Points */
.gema-v4-role-points {
    max-width: 800px;
    margin: 0 auto;
}

.gema-v4-role-point {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
    align-items: flex-start;
}

.gema-v4-role-point:last-child {
    border-bottom: none;
}

.gema-v4-role-num {
    width: 30px;
    height: 30px;
    background: #0097B2;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.gema-v4-role-point p {
    color: #475569;
    line-height: 1.7;
    padding-top: 3px;
}

/* V4 CTA */
.gema-v4-cta {
    padding: 50px 0;
    background: #f8fafc;
}

.gema-v4-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.gema-v4-cta-text h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 0.5rem;
}

.gema-v4-cta-text p {
    color: #64748b;
}

.gema-v4-cta-buttons {
    display: flex;
    gap: 1rem;
}

/* V4 Responsive */
@media (max-width: 1024px) {
    .gema-v4-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gema-v4-sidebar-logo {
        display: none;
    }

    .gema-v4-pillars {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .gema-v4-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .gema-v4-definition-box {
        grid-template-columns: 1fr;
    }

    .gema-v4-definition-half:first-child {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }

    .gema-v4-timeline-item {
        flex-direction: column;
        gap: 15px;
    }

    .gema-v4-timeline-date {
        text-align: left;
        width: auto;
    }

    .gema-v4-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .gema-v4-cta-buttons {
        flex-direction: column;
    }
}


/* ============================================
   VARIATION 5 - HORIZONTAL SCROLL
   ============================================ */

/* V5 Hero */
.gema-v5-hero {
    background: linear-gradient(135deg, #1A2A6C 0%, #263A8D 100%);
    color: #fff;
    padding: 80px 0;
}

.gema-v5-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.gema-v5-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.gema-v5-hero-left h1 {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.gema-v5-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #00B4D8;
    margin-bottom: 1rem;
}

.gema-v5-desc {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 400px;
    margin-bottom: 2rem;
}

.gema-v5-hero-image img {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* V5 Section */
.gema-v5-section {
    padding: 70px 0;
    border-bottom: 1px solid #e2e8f0;
}

.gema-v5-section:last-of-type {
    border-bottom: none;
}

.gema-v5-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gema-v5-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.gema-v5-section-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: #e2e8f0;
    line-height: 1;
}

.gema-v5-section-header h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: #1A2A6C;
}

/* V5 About Content */
.gema-v5-logo-info {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 50px;
    margin-bottom: 50px;
    align-items: center;
}

.gema-v5-logo-image {
    text-align: center;
}

.gema-v5-logo-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
}

.gema-v5-logo-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 1rem;
}

.gema-v5-logo-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gema-v5-logo-text ul li {
    position: relative;
    padding-left: 1.5rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.gema-v5-logo-text ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0097B2;
}

/* V5 Horizontal Pillars */
.gema-v5-pillars-horizontal {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.gema-v5-pillar-h {
    flex: 1;
    min-width: 280px;
    background: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    border-left: 4px solid #0097B2;
}

.gema-v5-pillar-h-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.gema-v5-pillar-h-header span {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 900;
    color: #1A2A6C;
}

.gema-v5-pillar-h-header h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1A2A6C;
}

.gema-v5-pillar-h p {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* V5 Echo Bar */
.gema-v5-echo-bar {
    background: linear-gradient(135deg, #0097B2 0%, #00B4D8 100%);
    border-radius: 12px;
    padding: 20px 30px;
    display: flex;
    gap: 40px;
    color: #fff;
}

.gema-v5-echo-item {
    flex: 1;
    font-size: 0.95rem;
}

.gema-v5-echo-item strong {
    font-size: 1.1rem;
}

/* V5 Timeline */
.gema-v5-timeline-horizontal {
    display: flex;
    gap: 30px;
    position: relative;
    padding-top: 30px;
}

.gema-v5-timeline-track {
    position: absolute;
    top: 55px;
    left: 0;
    right: 0;
    height: 3px;
    background: #e2e8f0;
}

.gema-v5-timeline-step {
    flex: 1;
    min-width: 280px;
    position: relative;
}

.gema-v5-step-marker {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1A2A6C 0%, #263A8D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    z-index: 2;
    border: 4px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.gema-v5-step-card {
    margin-top: 70px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.gema-v5-step-image {
    height: 150px;
    overflow: hidden;
}

.gema-v5-step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gema-v5-step-info {
    padding: 20px;
}

.gema-v5-step-date {
    display: inline-block;
    background: #0097B2;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gema-v5-step-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.5;
}

/* V5 Role */
.gema-v5-org-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    padding: 30px;
    background: #f8fafc;
    border-radius: 16px;
}

.gema-v5-org-logos {
    display: flex;
    gap: 20px;
}

.gema-v5-org-logo {
    text-align: center;
}

.gema-v5-org-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 0.25rem;
}

.gema-v5-org-logo span {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #1A2A6C;
}

.gema-v5-org-center {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gema-v5-org-center img {
    width: 80px;
    height: auto;
}

.gema-v5-jata {
    width: 60px !important;
}

/* V5 Role Points */
.gema-v5-role-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.gema-v5-role-point {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    gap: 15px;
}

.gema-v5-role-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #0097B2;
}

.gema-v5-role-point p {
    color: #475569;
    line-height: 1.7;
}

/* V5 CTA */
.gema-v5-cta {
    background: linear-gradient(135deg, #1A2A6C 0%, #263A8D 100%);
    color: #fff;
    padding: 60px 0;
}

.gema-v5-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.gema-v5-cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.gema-v5-cta-content p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.gema-v5-cta-buttons {
    display: flex;
    gap: 1rem;
}

.gema-v5-cta-logo img {
    width: 120px;
    height: auto;
    opacity: 0.8;
}

/* V5 Responsive */
@media (max-width: 1024px) {
    .gema-v5-hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .gema-v5-hero-left h1 {
        font-size: 3.5rem;
    }

    .gema-v5-logo-info {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gema-v5-timeline-horizontal {
        flex-direction: column;
        padding-top: 0;
    }

    .gema-v5-timeline-track {
        display: none;
    }

    .gema-v5-step-marker {
        position: relative;
        left: auto;
        transform: none;
        margin: 0 auto 20px;
    }

    .gema-v5-step-card {
        margin-top: 0;
    }

    .gema-v5-role-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .gema-v5-hero-left h1 {
        font-size: 3rem;
    }

    .gema-v5-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .gema-v5-pillars-horizontal {
        flex-direction: column;
    }

    .gema-v5-pillar-h {
        min-width: auto;
    }

    .gema-v5-echo-bar {
        flex-direction: column;
        gap: 20px;
    }

    .gema-v5-org-flow {
        flex-direction: column;
    }

    .gema-v5-org-logos {
        flex-wrap: wrap;
        justify-content: center;
    }

    .gema-v5-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .gema-v5-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}


/* ============================================
   GEMA V5 - UPDATED STYLES
   ============================================ */

/* V5 Vertical Timeline with President Image */
.gema-v5-section.gema-v5-timeline-vertical {
    background: linear-gradient(180deg, #f5f8fc 0%, #edf2f7 100%);
    padding-bottom: 0 !important;
    overflow: hidden;
}

.gema-v5-section.gema-v5-timeline-vertical .gema-v5-section-inner {
    padding-bottom: 0;
}

.gema-v5-timeline-wrapper {
    display: flex;
    align-items: stretch;
    gap: 0;
    position: relative;
}

.gema-v5-timeline-steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 0;
}

.gema-v5-vt-step {
    display: flex;
    align-items: center;
    gap: 0;
}

.gema-v5-vt-number {
    width: 65px;
    height: 65px;
    background: linear-gradient(145deg, #1A2A6C 0%, #2a3f8f 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    flex-shrink: 0;
    border: 3px solid #0097B2;
    box-shadow: 0 4px 15px rgba(26, 42, 108, 0.3);
    z-index: 2;
}

.gema-v5-vt-content {
    background: linear-gradient(95deg, #c5ccd4 0%, #d5dbe2 50%, #e5eaef 100%);
    padding: 0.9rem 1.5rem;
    border-radius: 0 35px 35px 0;
    margin-left: -8px;
    flex: 1;
}

.gema-v5-vt-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1A2A6C;
    line-height: 1.4;
    margin: 0;
    text-transform: uppercase;
}

.gema-v5-vt-date {
    display: block;
    color: #1A2A6C;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 0.25rem;
}

.gema-v5-vt-image {
    width: 200px;
    height: 135px;
    border-radius: 10px;
    overflow: hidden;
    margin-left: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transform: rotate(2deg);
}

.gema-v5-vt-step:nth-child(2) .gema-v5-vt-image {
    transform: rotate(-2deg);
}

.gema-v5-vt-step:nth-child(3) .gema-v5-vt-image {
    transform: rotate(1deg);
}

.gema-v5-vt-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gema-v5-president-image {
    width: 260px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.gema-v5-president-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* V5 Organization Diagram - 3 Column Layout */
.gema-v5-org-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    padding: 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Left Column: Organization Logos */
.gema-v5-org-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gema-v5-org-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.gema-v5-org-item img {
    width: 150px;
    height: auto;
    object-fit: contain;
}

/* Center Column: Arrows and GEMA */
.gema-v5-org-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.gema-v5-arrow-right,
.gema-v5-arrow-left {
    color: #FF6B35;
}

.gema-v5-org-gema {
    background: #fff;
    padding: 30px 40px;
    border-radius: 12px;
    border: 2px solid #0097B2;
}

.gema-v5-org-gema img {
    width: 200px;
    height: auto;
}

/* Right Column: Jata Negara */
.gema-v5-org-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gema-v5-org-jata {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.gema-v5-org-jata img {
    width: 220px;
    height: auto;
}

/* V5 Role Cards - 2x2 Grid with Icons */
.gema-v5-role-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.gema-v5-role-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.gema-v5-role-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0097B2 0%, #00B4D8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.gema-v5-role-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.gema-v5-role-card p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* V5 CTA - V3 Style with Geometric Shapes */
.gema-v5-cta-v3 {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #1A2A6C 0%, #263A8D 100%);
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.gema-v5-cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.gema-v5-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.gema-v5-shape-1 {
    width: 300px;
    height: 300px;
    background: #0097B2;
    top: -100px;
    left: -100px;
}

.gema-v5-shape-2 {
    width: 250px;
    height: 250px;
    background: #00B4D8;
    bottom: -100px;
    right: -50px;
}

.gema-v5-cta-v3 .gema-v5-cta-content {
    position: relative;
    z-index: 2;
}

.gema-v5-cta-v3 h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.gema-v5-cta-v3 h2 span {
    color: #00B4D8;
}

.gema-v5-cta-v3 p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.gema-v5-cta-v3 .gema-v5-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* V5 Updated Responsive */
@media (max-width: 1024px) {
    .gema-v5-timeline-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .gema-v5-president-image {
        display: none;
    }

    .gema-v5-org-diagram {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }

    .gema-v5-org-left {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .gema-v5-org-item {
        min-width: auto;
    }

    .gema-v5-org-center {
        flex-direction: column;
        gap: 20px;
    }

    /* Arrow pointing down (from orgs to GEMA) */
    .gema-v5-arrow-right svg {
        transform: rotate(90deg) !important;
    }

    /* Arrow pointing up (from Jata to GEMA) */
    .gema-v5-arrow-left svg {
        transform: rotate(-270deg) !important;
    }
}

@media (max-width: 768px) {
    /* Timeline - hide president, add padding */
    .gema-v5-section.gema-v5-timeline-vertical {
        padding-bottom: 50px !important;
    }

    .gema-v5-president-image {
        display: none;
    }

    .gema-v5-vt-step {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .gema-v5-vt-number {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }

    .gema-v5-vt-content {
        border-radius: 20px;
        margin-left: 0;
        max-width: 100%;
        text-align: center;
    }

    .gema-v5-vt-image {
        width: 100%;
        max-width: 280px;
        height: 160px;
        margin-left: 0;
        transform: none !important;
    }

    /* Org Diagram - vertical layout with up/down arrows */
    .gema-v5-org-diagram {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .gema-v5-org-left {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .gema-v5-org-item {
        padding: 15px;
    }

    .gema-v5-org-item img {
        width: 80px;
    }

    .gema-v5-org-center {
        flex-direction: column;
        gap: 15px;
    }

    /* Arrow pointing down (from orgs to GEMA) */
    .gema-v5-arrow-right svg {
        transform: rotate(90deg) !important;
    }

    /* Arrow pointing up (from Jata to GEMA) */
    .gema-v5-arrow-left svg {
        transform: rotate(-270deg) !important;
    }

    .gema-v5-org-gema {
        padding: 20px 30px;
    }

    .gema-v5-org-gema img {
        width: 150px;
    }

    /* Jata Negara - smaller on mobile */
    .gema-v5-org-jata img {
        width: 120px;
    }

    .gema-v5-role-cards {
        grid-template-columns: 1fr;
    }

    .gema-v5-cta-v3 h2 {
        font-size: 1.75rem;
    }

    .gema-v5-cta-v3 .gema-v5-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   GEMA V2 Template Styles
   ============================================ */

.gema-v2-page {
    overflow-x: hidden;
}

/* Hero Section */
.gema-v2-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gema-v2-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gema-v2-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gema-v2-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.7) 0%, rgba(0, 82, 147, 0.5) 100%);
}

.gema-v2-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
}

.gema-v2-hero-logo {
    margin-bottom: 40px;
}

.gema-v2-hero-logo img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.gema-v2-hero-title {
    display: flex;
    flex-direction: column;
    gap: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.4);
}

.gema-v2-title-gerakan {
    font-size: clamp(3rem, 10vw, 7rem);
    color: #00bcd4;
    letter-spacing: 0.3em;
}

.gema-v2-title-ekoniaga {
    font-size: clamp(3rem, 10vw, 7rem);
    color: #ffffff;
    letter-spacing: 0.15em;
}

.gema-v2-title-madani {
    font-size: clamp(3rem, 10vw, 7rem);
    color: #00bcd4;
    letter-spacing: 0.2em;
}

/* Three Pillars Section */
.gema-v2-pillars {
    padding: 80px 0;
    background: #f8fafc;
}

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

.gema-v2-pillar-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gema-v2-pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.gema-v2-pillar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #00bcd4;
    letter-spacing: 0.1em;
    text-align: center;
}

.gema-v2-pillar-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 15px;
}

.gema-v2-pillar-card p:last-child {
    margin-bottom: 0;
}

/* Langkah Section */
.gema-v2-langkah {
    padding: 80px 0;
    background: #ffffff;
}

.gema-v2-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #003366;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 0.15em;
    position: relative;
}

.gema-v2-section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #003366, #00bcd4);
    border-radius: 2px;
}

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

.gema-v2-langkah-item {
    background: #f8fafc;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.gema-v2-langkah-item:hover {
    transform: translateY(-5px);
}

.gema-v2-langkah-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.gema-v2-langkah-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 51, 102, 0.3));
    z-index: 1;
}

.gema-v2-langkah-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gema-v2-langkah-item:hover .gema-v2-langkah-image img {
    transform: scale(1.05);
}

.gema-v2-langkah-content {
    padding: 25px;
    text-align: center;
    background: #ffffff;
}

.gema-v2-langkah-content h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #003366;
    line-height: 1.5;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.gema-v2-langkah-date {
    display: inline-block;
    font-size: 0.85rem;
    color: #718096;
    font-weight: 500;
}

/* Kenapa Section */
.gema-v2-kenapa {
    padding: 80px 0;
    background: #f8fafc;
}

.gema-v2-kenapa-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.gema-v2-kenapa-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gema-v2-kenapa-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.gema-v2-kenapa-check {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #003366, #00bcd4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gema-v2-kenapa-check svg {
    width: 18px;
    height: 18px;
    color: #ffffff;
}

.gema-v2-kenapa-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

/* CTA Section */
.gema-v2-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #003366 0%, #005293 100%);
    position: relative;
    overflow: hidden;
}

.gema-v2-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 50%;
}

.gema-v2-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.gema-v2-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.gema-v2-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.gema-v2-cta-content h2 span {
    color: #00bcd4;
}

.gema-v2-cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.gema-v2-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.gema-v2-cta-buttons .btn-white {
    background: #ffffff;
    color: #003366;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gema-v2-cta-buttons .btn-white:hover {
    background: #f0f4f8;
    transform: translateY(-2px);
}

.gema-v2-cta-buttons .btn-outline-white {
    background: transparent;
    color: #ffffff;
    padding: 14px 32px;
    border: 2px solid #ffffff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gema-v2-cta-buttons .btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .gema-v2-pillars-grid,
    .gema-v2-langkah-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gema-v2-pillars-grid .gema-v2-pillar-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        justify-self: center;
    }

    .gema-v2-langkah-grid .gema-v2-langkah-item:last-child {
        grid-column: span 2;
        max-width: 50%;
        justify-self: center;
    }
}

@media (max-width: 768px) {
    .gema-v2-hero {
        min-height: 500px;
    }

    .gema-v2-hero-logo img {
        max-width: 150px;
    }

    .gema-v2-title-gerakan,
    .gema-v2-title-ekoniaga,
    .gema-v2-title-madani {
        font-size: 2.5rem;
        letter-spacing: 0.1em;
    }

    .gema-v2-pillars,
    .gema-v2-langkah,
    .gema-v2-kenapa,
    .gema-v2-cta {
        padding: 60px 0;
    }

    .gema-v2-pillars-grid,
    .gema-v2-langkah-grid,
    .gema-v2-kenapa-grid {
        grid-template-columns: 1fr;
    }

    .gema-v2-pillars-grid .gema-v2-pillar-card:last-child,
    .gema-v2-langkah-grid .gema-v2-langkah-item:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .gema-v2-section-title {
        font-size: 1.5rem;
        letter-spacing: 0.1em;
    }

    .gema-v2-cta-content h2 {
        font-size: 1.75rem;
    }

    .gema-v2-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .gema-v2-cta-buttons .btn-white,
    .gema-v2-cta-buttons .btn-outline-white {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .gema-v2-hero {
        min-height: 400px;
    }

    .gema-v2-title-gerakan,
    .gema-v2-title-ekoniaga,
    .gema-v2-title-madani {
        font-size: 2rem;
        letter-spacing: 0.05em;
    }

    .gema-v2-pillar-card,
    .gema-v2-kenapa-item {
        padding: 25px 20px;
    }

    .gema-v2-langkah-content {
        padding: 20px;
    }

    .gema-v2-langkah-content h4 {
        font-size: 0.85rem;
    }
}

