/* Governance Hub — Public Landing Page (Enhanced) */

.gh-landing {
    --gh-primary: #008B9C;
    --gh-primary-dark: #007A8A;
    --gh-accent: #C1A35F;
    --gh-brand: #001D4A;
    --gh-brand-dark: #001233;
    --gh-navy: #001D4A;
    --gh-muted: #64748b;
    --gh-border: #e2e8f0;
    --gh-bg: #f0f6f9;
    --gh-card: #ffffff;
    --gh-radius: 16px;
    --gh-shadow: 0 4px 24px rgba(0, 29, 74, 0.08);
    --gh-shadow-lg: 0 20px 60px rgba(0, 29, 74, 0.14);
    --gh-shadow-glow: 0 0 40px rgba(0, 139, 156, 0.18);
    font-family: 'Plus Jakarta Sans', 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gh-navy);
    background: #fff;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.gh-landing *,
.gh-landing *::before,
.gh-landing *::after { box-sizing: border-box; }

.gh-landing img { max-width: 100%; height: auto; display: block; }
.gh-landing a:not([class*="gh-btn"]) { text-decoration: none; color: inherit; }
.gh-landing a[class*="gh-btn"] { text-decoration: none; }

.gh-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Scroll reveal */
.gh-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.gh-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.gh-reveal-delay { transition-delay: 0.15s; }

/* ── Header ── */
.gh-landing-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}
.gh-landing-header.scrolled {
    box-shadow: 0 4px 24px rgba(0, 29, 74, 0.1);
    background: rgba(255, 255, 255, 0.97);
}
.gh-landing-header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    height: 80px;
    gap: 24px;
}
.gh-landing-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    justify-self: start;
    min-width: 0;
}
.gh-landing-logo {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gh-primary) 0%, var(--gh-brand) 100%);
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.5px;
    box-shadow: 0 4px 14px rgba(1, 205, 209, 0.35);
}
.gh-landing-brand-text {
    font-size: 18px;
    font-weight: 800;
    color: var(--gh-brand);
    line-height: 1.2;
}
.gh-landing-brand-text small {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: var(--gh-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.gh-landing-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    justify-self: center;
}
.gh-landing-nav a {
    font-size: 14px;
    font-weight: 600;
    color: var(--gh-navy);
    transition: color 0.2s;
    position: relative;
}
.gh-landing-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gh-primary);
    border-radius: 2px;
    transition: width 0.25s;
}
.gh-landing-nav a:hover { color: var(--gh-brand); }
.gh-landing-nav a:hover::after { width: 100%; }

.gh-landing-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    justify-self: end;
    flex-shrink: 0;
}
.gh-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gh-brand);
    border: 1px solid rgba(0, 29, 74, 0.14);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.2s;
    white-space: nowrap;
}
.gh-btn-ghost:hover {
    border-color: var(--gh-primary);
    background: var(--gh-primary-soft, rgba(0, 139, 156, 0.08));
    color: var(--gh-primary-dark);
}
.gh-btn-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--gh-primary), var(--gh-primary-dark));
    border: none;
    border-radius: 11px;
    box-shadow: 0 4px 16px rgba(0, 139, 156, 0.28);
    transition: all 0.25s;
    cursor: pointer;
    white-space: nowrap;
}
.gh-btn-login:hover {
    background: linear-gradient(135deg, var(--gh-brand), var(--gh-brand-dark));
    box-shadow: 0 6px 24px rgba(0, 29, 74, 0.22);
    transform: translateY(-1px);
    color: #fff;
}
.gh-mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--gh-brand);
    cursor: pointer;
    padding: 8px;
}

/* ── Hero ── */
.gh-hero {
    position: relative;
    padding: 148px 0 72px;
    overflow: hidden;
    background: linear-gradient(165deg, #eef8fa 0%, #f5fbfc 35%, #ffffff 70%);
}
.gh-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.gh-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}
.gh-hero-blob.blob-1 {
    width: 500px; height: 500px;
    top: -150px; right: -100px;
    background: rgba(0, 139, 156, 0.16);
    animation: ghBlobDrift 12s ease-in-out infinite;
}
.gh-hero-blob.blob-2 {
    width: 350px; height: 350px;
    bottom: -80px; left: -80px;
    background: rgba(0, 29, 74, 0.1);
    animation: ghBlobDrift 15s ease-in-out infinite reverse;
}
.gh-hero-blob.blob-3 {
    width: 250px; height: 250px;
    top: 40%; left: 35%;
    background: rgba(193, 163, 95, 0.1);
    animation: ghBlobDrift 10s ease-in-out infinite 2s;
}
@keyframes ghBlobDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.05); }
}
.gh-hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 29, 74, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent 80%);
}

.gh-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.gh-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 12px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(1, 205, 209, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gh-brand-dark);
    margin-bottom: 22px;
    box-shadow: 0 2px 12px rgba(0, 29, 74, 0.06);
}
.gh-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gh-primary);
    border-radius: 50%;
    animation: ghPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes ghPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 139, 156, 0.45); }
    50% { box-shadow: 0 0 0 6px rgba(0, 139, 156, 0); }
}
.gh-hero h1 {
    font-size: clamp(34px, 4.8vw, 54px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--gh-navy);
    margin: 0 0 20px;
    letter-spacing: -0.8px;
}
.gh-hero h1 span {
    background: linear-gradient(135deg, var(--gh-brand) 0%, var(--gh-primary) 60%, var(--gh-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gh-hero-lead {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gh-muted);
    margin: 0 0 28px;
    max-width: 520px;
}
.gh-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}
.gh-btn-primary-lg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--gh-primary), var(--gh-primary-dark));
    border: none;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 139, 156, 0.32);
    transition: all 0.25s;
    cursor: pointer;
}
.gh-btn-primary-lg:hover {
    background: linear-gradient(135deg, var(--gh-brand), var(--gh-brand-dark));
    box-shadow: 0 10px 32px rgba(0, 29, 74, 0.22);
    transform: translateY(-2px);
    color: #fff;
}
.gh-btn-outline-lg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 15px;
    font-weight: 700;
    color: var(--gh-brand);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--gh-border);
    border-radius: 12px;
    transition: all 0.25s;
    cursor: pointer;
}
.gh-btn-outline-lg:hover {
    border-color: var(--gh-brand);
    background: #fff;
    box-shadow: var(--gh-shadow);
}
.gh-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 28px;
}
.gh-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gh-muted);
}
.gh-hero-trust-item i { color: var(--gh-primary); font-size: 15px; }

.gh-hero-avatars {
    display: flex;
    align-items: center;
    gap: 14px;
}
.gh-avatar-stack {
    display: flex;
}
.gh-avatar-stack img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    margin-left: -10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.gh-avatar-stack img:first-child { margin-left: 0; }
.gh-hero-avatars p {
    font-size: 13px;
    color: var(--gh-muted);
    margin: 0;
    line-height: 1.4;
}
.gh-hero-avatars strong { color: var(--gh-brand); }

/* Hero visual */
.gh-hero-visual { position: relative; }
.gh-hero-image-main { position: relative; }
.gh-hero-image-wrap {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--gh-shadow-lg);
    border: 3px solid rgba(255, 255, 255, 0.9);
}
.gh-hero-image-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gh-hero-image-wrap:hover img { transform: scale(1.03); }
.gh-hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 61, 88, 0.45) 0%, transparent 55%);
    pointer-events: none;
}
.gh-hero-mini-gallery {
    position: absolute;
    bottom: -20px;
    right: -16px;
    display: flex;
    gap: 10px;
}
.gh-hero-mini-gallery img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid #fff;
    box-shadow: 0 8px 24px rgba(0, 29, 74, 0.2);
}

.gh-hero-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 12px 40px rgba(0, 29, 74, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: ghFloat 4s ease-in-out infinite;
    min-width: 140px;
}
.gh-hero-float-card.card-1 { top: 20px; left: -36px; animation-delay: 0s; }
.gh-hero-float-card.card-2 { bottom: 60px; right: -28px; animation-delay: 1.2s; }
.gh-hero-float-card.card-3 { top: 50%; left: -20px; transform: translateY(-50%); animation-delay: 2.4s; }
@keyframes ghFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.gh-hero-float-card.card-3 {
    animation-name: ghFloatSide;
}
@keyframes ghFloatSide {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(calc(-50% - 10px)); }
}
.gh-float-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    margin-bottom: 6px;
}
.gh-float-icon.teal { background: linear-gradient(135deg, var(--gh-primary), var(--gh-primary-dark)); }
.gh-float-icon.navy { background: linear-gradient(135deg, var(--gh-brand), var(--gh-brand-dark)); }
.gh-float-icon.pink { background: linear-gradient(135deg, var(--gh-accent), #A88D4F); }
.gh-float-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--gh-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.gh-float-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--gh-navy);
}

/* ── Trust Strip ── */
.gh-trust-strip {
    background: #fff;
    border-bottom: 1px solid var(--gh-border);
    padding: 28px 0;
}
.gh-trust-strip-label {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gh-muted);
    margin: 0 0 18px;
}
.gh-trust-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 28px;
}
.gh-trust-icon-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gh-navy);
    padding: 8px 16px;
    background: var(--gh-bg);
    border-radius: 50px;
    transition: all 0.2s;
}
.gh-trust-icon-item:hover {
    background: rgba(1, 205, 209, 0.12);
    color: var(--gh-brand);
}
.gh-trust-icon-item i {
    color: var(--gh-primary-dark);
    font-size: 15px;
}

/* ── Stats Bar ── */
.gh-stats-bar {
    background: linear-gradient(135deg, var(--gh-brand) 0%, var(--gh-brand-dark) 60%, #002a3d 100%);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}
.gh-stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.gh-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}
.gh-stat-item {
    text-align: center;
    padding: 8px;
}
.gh-stat-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 20px;
    color: var(--gh-primary);
}
.gh-stat-item .number {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}
.gh-stat-item .number .suffix { color: var(--gh-primary); }
.gh-stat-item .label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* ── Sections ── */
.gh-section { padding: 96px 0; }
.gh-section-alt { background: var(--gh-bg); }
.gh-section-sectors { background: linear-gradient(180deg, #fff 0%, var(--gh-bg) 100%); }
.gh-section-testimonials {
    background: linear-gradient(180deg, var(--gh-bg) 0%, #fff 100%);
}

.gh-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}
.gh-section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gh-primary-dark);
    background: rgba(1, 205, 209, 0.12);
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    border: 1px solid rgba(1, 205, 209, 0.2);
}
.gh-section-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--gh-navy);
    margin: 0 0 16px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}
.gh-section-header p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gh-muted);
    margin: 0;
}

/* ── Sectors Grid ── */
.gh-sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.gh-sector-card {
    background: var(--gh-card);
    border-radius: var(--gh-radius);
    overflow: hidden;
    border: 1px solid var(--gh-border);
    box-shadow: var(--gh-shadow);
    transition: all 0.35s ease;
}
.gh-sector-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 29, 74, 0.14);
    border-color: rgba(1, 205, 209, 0.35);
}
.gh-sector-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}
.gh-sector-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gh-sector-card:hover .gh-sector-image img { transform: scale(1.08); }
.gh-sector-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 61, 88, 0.6) 0%, transparent 60%);
}
.gh-sector-body { padding: 24px; }
.gh-sector-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--gh-primary), var(--gh-brand));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin: -46px 0 16px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 14px rgba(1, 205, 209, 0.35);
}
.gh-sector-body h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--gh-navy);
    margin: 0 0 10px;
}
.gh-sector-body p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gh-muted);
    margin: 0;
}

/* ── Features ── */
.gh-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.gh-feature-card {
    background: var(--gh-card);
    border-radius: var(--gh-radius);
    padding: 30px 26px;
    border: 1px solid var(--gh-border);
    box-shadow: var(--gh-shadow);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.gh-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gh-primary), var(--gh-brand));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.gh-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 29, 74, 0.1);
    border-color: rgba(0, 139, 156, 0.28);
}
.gh-feature-card:hover::before { transform: scaleX(1); }
.gh-feature-icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    margin-bottom: 18px;
}
.gh-feature-icon.teal { background: linear-gradient(135deg, var(--gh-primary), var(--gh-primary-dark)); }
.gh-feature-icon.navy { background: linear-gradient(135deg, var(--gh-brand), var(--gh-brand-dark)); }
.gh-feature-icon.pink { background: linear-gradient(135deg, var(--gh-accent), #A88D4F); }
.gh-feature-icon.orange { background: linear-gradient(135deg, #f59e0b, #ea580c); }
.gh-feature-icon.green { background: linear-gradient(135deg, #10b981, #059669); }
.gh-feature-icon.purple { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.gh-feature-card h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--gh-navy);
    margin: 0 0 10px;
}
.gh-feature-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--gh-muted);
    margin: 0 0 14px;
}
.gh-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.gh-feature-list li {
    font-size: 13px;
    color: var(--gh-muted);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.gh-feature-list li i { color: var(--gh-primary); font-size: 11px; }

/* ── Bento Grid ── */
.gh-bento-section { padding: 80px 0; background: #fff; }
.gh-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}
.gh-bento-card {
    background: var(--gh-bg);
    border-radius: var(--gh-radius);
    border: 1px solid var(--gh-border);
    overflow: hidden;
    transition: all 0.3s ease;
}
.gh-bento-card:hover {
    box-shadow: var(--gh-shadow-lg);
    border-color: rgba(1, 205, 209, 0.3);
}
.gh-bento-card.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    position: relative;
    min-height: 360px;
}
.gh-bento-card.bento-large img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gh-bento-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(0, 61, 88, 0.92) 0%, rgba(0, 61, 88, 0.4) 60%, transparent 100%);
    color: #fff;
}
.gh-bento-content h3 {
    font-size: 22px;
    font-weight: 800;
    margin: 12px 0 8px;
    color: #fff;
}
.gh-bento-content p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}
.gh-bento-content .gh-section-tag {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}
.gh-bento-card.bento-small {
    padding: 24px;
    display: flex;
    flex-direction: column;
}
.gh-bento-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gh-brand), var(--gh-brand-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}
.gh-bento-icon.accent { background: linear-gradient(135deg, var(--gh-accent), #ca3b69); }
.gh-bento-icon.teal { background: linear-gradient(135deg, var(--gh-primary), var(--gh-primary-dark)); }
.gh-bento-icon.navy { background: linear-gradient(135deg, var(--gh-brand), var(--gh-brand-dark)); }
.gh-bento-card.bento-small h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--gh-navy);
    margin: 0 0 8px;
}
.gh-bento-card.bento-small p {
    font-size: 13px;
    line-height: 1.55;
    color: var(--gh-muted);
    margin: 0;
}

/* ── Showcase ── */
.gh-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.gh-showcase-image {
    border-radius: var(--gh-radius);
    overflow: hidden;
    box-shadow: var(--gh-shadow-lg);
    position: relative;
}
.gh-showcase-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}
.gh-showcase-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 14px 20px;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.gh-showcase-badge i {
    font-size: 28px;
    color: #f59e0b;
}
.gh-showcase-badge strong {
    display: block;
    font-size: 15px;
    color: var(--gh-navy);
}
.gh-showcase-badge span {
    font-size: 12px;
    color: var(--gh-muted);
}
.gh-showcase-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--gh-navy);
    margin: 0 0 18px;
    line-height: 1.25;
    letter-spacing: -0.3px;
}
.gh-showcase-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gh-muted);
    margin: 0 0 22px;
}
.gh-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}
.gh-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 9px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--gh-navy);
}
.gh-check-list li i {
    color: var(--gh-primary);
    margin-top: 3px;
    flex-shrink: 0;
}

/* ── Steps ── */
.gh-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    position: relative;
}
.gh-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 16%;
    right: 16%;
    height: 2px;
    background: linear-gradient(90deg, var(--gh-primary), var(--gh-brand));
    opacity: 0.2;
}
.gh-step { text-align: center; position: relative; }
.gh-step-number {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gh-brand), var(--gh-brand-dark));
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    box-shadow: 0 8px 28px rgba(0, 29, 74, 0.28);
    position: relative;
    z-index: 1;
}
.gh-step h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--gh-navy);
    margin: 0 0 10px;
}
.gh-step p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--gh-muted);
    margin: 0 auto;
    max-width: 280px;
}

/* ── Modules ── */
.gh-modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.gh-module-card {
    display: flex;
    gap: 18px;
    background: var(--gh-card);
    border-radius: var(--gh-radius);
    padding: 22px;
    border: 1px solid var(--gh-border);
    transition: all 0.3s;
    align-items: center;
}
.gh-module-card:hover {
    border-color: rgba(1, 205, 209, 0.4);
    box-shadow: var(--gh-shadow);
    transform: translateX(4px);
}
.gh-module-thumb {
    width: 96px;
    height: 76px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}
.gh-module-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gh-module-card h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--gh-navy);
    margin: 0 0 6px;
}
.gh-module-card p {
    font-size: 13px;
    line-height: 1.55;
    color: var(--gh-muted);
    margin: 0;
}

/* ── Testimonials ── */
.gh-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}
.gh-testimonial-card {
    background: var(--gh-card);
    border-radius: var(--gh-radius);
    padding: 28px;
    border: 1px solid var(--gh-border);
    box-shadow: var(--gh-shadow);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.gh-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 29, 74, 0.1);
}
.gh-testimonial-card.featured {
    background: linear-gradient(160deg, var(--gh-brand) 0%, var(--gh-brand-dark) 100%);
    border-color: transparent;
    color: #fff;
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 29, 74, 0.25);
}
.gh-testimonial-card.featured blockquote { color: rgba(255, 255, 255, 0.92); }
.gh-testimonial-card.featured .gh-testimonial-author strong { color: #fff; }
.gh-testimonial-card.featured .gh-testimonial-author span { color: rgba(255, 255, 255, 0.7); }
.gh-testimonial-card.featured .gh-testimonial-quote i { color: rgba(255, 255, 255, 0.2); }
.gh-testimonial-quote {
    font-size: 28px;
    color: rgba(1, 205, 209, 0.25);
    margin-bottom: 8px;
    line-height: 1;
}
.gh-testimonial-stars {
    color: #f59e0b;
    font-size: 13px;
    margin-bottom: 14px;
}
.gh-testimonial-card blockquote {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gh-navy);
    margin: 0 0 auto;
    padding-bottom: 20px;
    font-style: normal;
}
.gh-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--gh-border);
}
.gh-testimonial-card.featured .gh-testimonial-author {
    border-top-color: rgba(255, 255, 255, 0.15);
}
.gh-testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(1, 205, 209, 0.3);
}
.gh-testimonial-author strong {
    display: block;
    font-size: 14px;
    color: var(--gh-navy);
}
.gh-testimonial-author span {
    font-size: 12px;
    color: var(--gh-muted);
}

/* ── CTA ── */
.gh-cta-band {
    background: linear-gradient(135deg, var(--gh-brand) 0%, var(--gh-brand-dark) 50%, #001f2e 100%);
    padding: 88px 0;
    position: relative;
    overflow: hidden;
}
.gh-cta-bg-pattern {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(0, 139, 156, 0.18) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(193, 163, 95, 0.1) 0%, transparent 50%);
    pointer-events: none;
}
.gh-cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}
.gh-cta-inner h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
    letter-spacing: -0.3px;
}
.gh-cta-inner p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 auto 36px;
    max-width: 580px;
    line-height: 1.65;
}
.gh-cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}
.gh-cta-actions a.gh-btn-white {
    color: var(--gh-brand);
    background: #fff;
}
.gh-cta-actions a.gh-btn-white:hover {
    color: var(--gh-brand-dark);
    background: #fff;
}
.gh-cta-actions a.gh-btn-outline-white {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.gh-cta-actions a.gh-btn-outline-white:hover {
    color: var(--gh-brand);
    background: #fff;
    border-color: #fff;
}
.gh-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    font-size: 15px;
    font-weight: 700;
    color: var(--gh-brand);
    background: #fff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.25s;
    cursor: pointer;
}
.gh-btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
    color: var(--gh-brand-dark);
}
.gh-btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-radius: 12px;
    transition: all 0.25s;
    cursor: pointer;
}
.gh-btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

/* ── Footer ── */
.gh-landing-footer {
    background: var(--gh-navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 28px;
}
.gh-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}
.gh-footer-brand .gh-landing-logo { margin-bottom: 16px; }
.gh-footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 20px;
}
.gh-footer-social { display: flex; gap: 10px; }
.gh-footer-social a {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s;
}
.gh-footer-social a:hover {
    background: var(--gh-primary);
    color: #fff;
    transform: translateY(-2px);
}
.gh-footer-col h4 {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 18px;
}
.gh-footer-col ul { list-style: none; padding: 0; margin: 0; }
.gh-footer-col li { margin-bottom: 10px; }
.gh-footer-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}
.gh-footer-col a:hover { color: var(--gh-primary); }
.gh-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
}
.gh-footer-bottom a { color: rgba(255, 255, 255, 0.6); }
.gh-footer-bottom a:hover { color: var(--gh-primary); }

/* ── Mobile Nav ── */
.gh-mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--gh-border);
    padding: 20px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 999;
}
.gh-mobile-nav.open { display: block; }
.gh-mobile-nav a {
    display: block;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--gh-navy);
    border-bottom: 1px solid var(--gh-border);
}
.gh-mobile-nav .gh-btn-login {
    width: 100%;
    justify-content: center;
    margin-top: 16px;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .gh-landing-nav {
        gap: 18px;
    }

    .gh-landing-nav a {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .gh-hero-grid,
    .gh-showcase-grid { grid-template-columns: 1fr; gap: 40px; }
    .gh-hero-visual { order: -1; }
    .gh-sectors-grid,
    .gh-features-grid { grid-template-columns: repeat(2, 1fr); }
    .gh-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .gh-bento-grid { grid-template-columns: repeat(2, 1fr); }
    .gh-bento-card.bento-large { grid-column: span 2; grid-row: span 1; min-height: 280px; }
    .gh-footer-grid { grid-template-columns: 1fr 1fr; }
    .gh-hero-float-card.card-1 { left: 8px; }
    .gh-hero-float-card.card-2 { right: 8px; }
    .gh-hero-float-card.card-3 { display: none; }
    .gh-testimonial-card.featured { transform: none; }
}

@media (max-width: 768px) {
    .gh-landing-header-inner {
        grid-template-columns: 1fr auto;
    }

    .gh-landing-nav,
    .gh-landing-header-actions .gh-btn-ghost,
    .gh-landing-header-actions .gh-btn-login { display: none; }
    .gh-mobile-toggle { display: block; }
    .gh-hero { padding: 118px 0 56px; }
    .gh-sectors-grid,
    .gh-features-grid,
    .gh-testimonials-grid,
    .gh-steps,
    .gh-modules-grid,
    .gh-bento-grid { grid-template-columns: 1fr; }
    .gh-bento-card.bento-large { grid-column: span 1; }
    .gh-steps::before { display: none; }
    .gh-stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .gh-stat-item .number { font-size: 32px; }
    .gh-footer-grid { grid-template-columns: 1fr; }
    .gh-section { padding: 64px 0; }
    .gh-hero-image-wrap img { height: 260px; }
    .gh-hero-mini-gallery { display: none; }
    .gh-trust-icons { gap: 8px 12px; }
    .gh-trust-icon-item { font-size: 12px; padding: 6px 12px; }
}
