﻿
<style>
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@500;600;700&display=swap');

:root {
    --gh-primary: #0097b2;
    --gh-primary-strong: #00798f;
    --gh-primary-soft: #dff5fa;
    --gh-bg: #f4fbfd;
    --gh-card: rgba(255, 255, 255, 0.74);
    --gh-card-solid: #ffffff;
    --gh-border: rgba(0, 151, 178, 0.22);
    --gh-text: #112d35;
    --gh-muted: #5f7f88;
    --gh-shadow: 0 14px 34px rgba(0, 118, 140, 0.13);
    --gh-radius-xl: 24px;
    --gh-radius-lg: 18px;
    --gh-radius-md: 14px;
}

.gh-home {
    background:
        radial-gradient(70% 45% at 6% 0%, rgba(0, 151, 178, 0.16), transparent 60%),
        radial-gradient(60% 40% at 95% 3%, rgba(0, 151, 178, 0.13), transparent 60%),
        linear-gradient(180deg, #f8fdff 0%, var(--gh-bg) 48%, #ffffff 100%);
    padding: 10px 0 38px;
    color: var(--gh-text);
    font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
    margin-top:15px;
    border-radius: 20px;
}

.gh-wrap {
    width: min(1550px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 26px;
    margin-top: 20px;
}

.gh-glass {
    background: var(--gh-card);
    border: 1px solid var(--gh-border);
    backdrop-filter: blur(12px);
    box-shadow: var(--gh-shadow);
}

.gh-reveal {
    opacity: 0;
    transform: translateY(18px);
    animation: ghFadeUp 0.62s ease forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes ghFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gh-btn {
    border: 0;
    border-radius: 999px;
    padding: 11px 20px;
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.gh-btn:hover {
    transform: translateY(-1px);
}

.gh-btn-primary {
    color: #ffffff;
    background: linear-gradient(140deg, var(--gh-primary) 0%, #00b3ce 100%);
    box-shadow: 0 10px 22px rgba(0, 151, 178, 0.3);
}

.gh-btn-light {
    color: var(--gh-primary-strong);
    border: 1px solid rgba(0, 151, 178, 0.28);
    background: rgba(255, 255, 255, 0.9);
}

.gh-section-head {
    text-align: center;
    margin-bottom: 14px;
}

.gh-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--gh-border);
    border-radius: 999px;
    padding: 7px 13px;
    font-size: 0.71rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--gh-primary-strong);
    background: rgba(255, 255, 255, 0.72);
}

.gh-eyebrow i {
    font-size: 0.82rem;
}

.gh-section-head h2 {
    margin: 9px 0 0;
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: clamp(1.42rem, 2.8vw, 2.12rem);
    letter-spacing: 0;
    color: #08262d;
}

.gh-section-head p {
    margin: 8px auto 0;
    max-width: 620px;
    color: var(--gh-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.gh-hero {
    border-radius: 28px;
    padding: clamp(24px, 3.6vw, 46px) clamp(16px, 2.8vw, 30px);
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 252, 255, 0.97) 100%),
        repeating-linear-gradient(0deg, transparent 0 100px, rgba(14, 35, 44, 0.04) 100px 101px),
        repeating-linear-gradient(90deg, transparent 0 100px, rgba(14, 35, 44, 0.04) 100px 101px);
}

.gh-hero::before,
.gh-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.gh-hero::before {
    width: 320px;
    height: 320px;
    right: -150px;
    top: -190px;
    background: radial-gradient(circle, rgba(184, 217, 255, 0.42) 0%, rgba(184, 217, 255, 0) 74%);
}

.gh-hero::after {
    width: 280px;
    height: 280px;
    left: -120px;
    bottom: -180px;
    background: radial-gradient(circle, rgba(224, 239, 255, 0.46) 0%, rgba(224, 239, 255, 0) 76%);
}

.gh-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 16px;
    max-width: 1010px;
    margin: 0 auto;
}

.gh-hero-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.gh-yc-pill {
    width: fit-content;
    border-radius: 999px;
    border: 1px solid #e6e8ec;
    background: #ffffff;
    padding: 7px 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    color: #5f6772;
    font-weight: 600;
}

.gh-yc-pill strong {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2e3238;
    font-weight: 700;
}

.gh-yc-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: #ffffff;
    font-weight: 800;
    background: #ff7f2a;
}

.gh-platform-toggle {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e1e5ec;
    border-radius: 999px;
    padding: 4px;
    background: #ffffff;
}

.gh-platform-btn {
    border: 0;
    background: transparent;
    color: #626d7a;
    font-size: 0.79rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 8px 14px;
    cursor: pointer;
}

.gh-platform-btn.active {
    background: #eef7ff;
    color: #255f9b;
}

.gh-hero-copy {
    max-width: 890px;
    margin: 0 auto;
    text-align: center;
}

.gh-hero-copy .gh-kicker {
    margin: 0 0 8px;
    font-size: 0.84rem;
    letter-spacing: 0.04em;
    text-transform: none;
    font-weight: 700;
    color: #f5821f;
}

.gh-hero-copy h1 {
    margin: 0;
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.12rem, 5.2vw, 4.02rem);
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #11151d;
}

.gh-hero-copy p {
    margin: 13px auto 0;
    max-width: 760px;
    font-size: 1.01rem;
    line-height: 1.56;
    color: #5d6670;
}

.gh-techstack {
    margin: 4px auto 0;
    width: min(980px, 100%);
    text-align: left;
    font-size: 0.86rem;
    line-height: 1.5;
    color: #677280;
}

.gh-techstack strong {
    color: #3f4b58;
}

.gh-hero-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.gh-prompt-shell {
    width: min(980px, 100%);
    margin: 2px auto 0;
    padding: 2px;
    border-radius: 23px;
    background: linear-gradient(90deg, rgba(194, 184, 255, 0.85), rgba(189, 234, 255, 0.86), rgba(255, 234, 186, 0.82));
    box-shadow: 0 14px 30px rgba(129, 164, 188, 0.19);
}

.gh-prompt-surface {
    border-radius: 21px;
    overflow: hidden;
    border: 1px solid rgba(208, 218, 233, 0.85);
    background: #ffffff;
}

.gh-prompt-composer {
    min-height: 206px;
    padding: 16px 18px 14px;
    position: relative;
    background: #ffffff;
}

.gh-prompt-input {
    width: 100%;
    min-height: 146px;
    border: 0;
    outline: none;
    resize: none;
    background: transparent;
    color: #222a33;
    font-size: 1rem;
    line-height: 1.55;
    padding: 0 2px;
}

.gh-prompt-input::placeholder {
    color: #7f8793;
}

.gh-prompt-toolbar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 13px 13px;
}

.gh-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    border: 1px solid #dde3ee;
    background: #ffffff;
    color: #7d8694;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.14rem;
    cursor: pointer;
}

.gh-icon-btn:hover {
    border-color: #cad4e5;
}

.gh-send-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(91, 134, 255, 0.26);
    background: linear-gradient(145deg, #7bb5ff 0%, #5f8dff 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.14rem;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(95, 141, 255, 0.36);
}

.gh-send-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.gh-prompt-chips {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
    padding: 10px 10px 12px;
    border-top: 1px solid rgba(218, 226, 237, 0.9);
    background: linear-gradient(90deg, rgba(194, 184, 255, 0.34), rgba(190, 233, 255, 0.34), rgba(255, 234, 186, 0.34));
}

.gh-chip {
    border: 1px solid #dce2ed;
    background: #ffffff;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 0.92rem;
    color: #3e4552;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.gh-chip:hover {
    border-color: #c4d6ee;
}

.gh-chip.active {
    border-color: #b2d0ff;
    background: #edf5ff;
    color: #1c4a88;
}

.gh-chip i {
    color: #727d8c;
    font-size: 0.95rem;
}

.gh-preview-frame {
    width: min(1020px, 100%);
    margin: 6px auto 0;
    border-radius: 20px;
    border: 1px solid rgba(0, 151, 178, 0.23);
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(0, 118, 140, 0.16);
    overflow: hidden;
}

.gh-preview-head {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    border-bottom: 1px solid rgba(0, 151, 178, 0.15);
    background: linear-gradient(180deg, #ffffff 0%, #f2fbfd 100%);
}

.gh-dots {
    display: inline-flex;
    gap: 6px;
}

.gh-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 151, 178, 0.3);
}

.gh-preview-head span {
    font-size: 0.74rem;
    color: #53727b;
    font-weight: 700;
}

.gh-preview-body {
    display: grid;
    grid-template-columns: 176px 1fr 212px;
    min-height: 355px;
}

.gh-side-panel {
    background: linear-gradient(180deg, #f8feff 0%, #edf9fd 100%);
    border-right: 1px solid rgba(0, 151, 178, 0.14);
    padding: 12px;
}

.gh-side-panel.right {
    border-right: 0;
    border-left: 1px solid rgba(0, 151, 178, 0.14);
}

.gh-line {
    height: 9px;
    border-radius: 99px;
    background: rgba(0, 151, 178, 0.18);
    margin-bottom: 9px;
}

.gh-line.wide {
    width: 100%;
}

.gh-line.medium {
    width: 74%;
}

.gh-line.short {
    width: 54%;
}

.gh-canvas {
    padding: 15px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fdff 100%);
}

.gh-image-placeholder {
    border: 1px dashed rgba(0, 151, 178, 0.45);
    background:
        linear-gradient(145deg, rgba(0, 151, 178, 0.15), rgba(0, 151, 178, 0.05)),
        repeating-linear-gradient(45deg, rgba(0, 151, 178, 0.08) 0, rgba(0, 151, 178, 0.08) 8px, rgba(255, 255, 255, 0.3) 8px, rgba(255, 255, 255, 0.3) 16px);
    border-radius: 12px;
    color: #0b5a6b;
    font-weight: 700;
    font-size: 0.84rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px;
}

.gh-hero-image {
    height: 290px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Builder Showcase Ã¢â€â‚¬Ã¢â€â‚¬ */
.gh-builder-showcase {
    align-items: center;
    width: min(1200px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 26px;
    margin-top: 20px;
}

/* Menu toolbar Ã¢â‚¬â€ floating pill */
.gh-showcase-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: #1e1e2e;
    padding: 0 8px;
    border-radius: 14px;
    position: relative;
    z-index: 2;
    width: fit-content;
    margin: 0 auto;
}

.gh-showcase-menu-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    color: rgba(255,255,255,0.55);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.84rem;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.22s ease;
    position: relative;
    cursor: pointer;
    user-select: none;
}

.gh-showcase-menu-item:hover {
    color: rgba(255,255,255,0.85);
}

.gh-showcase-menu-item.active {
    color: #fff;
    font-weight: 600;
}

.gh-showcase-menu-item.active::after {
    content: '';
    position: absolute;
    left: 12px; right: 12px; bottom: 0;
    height: 2.5px;
    border-radius: 2px 2px 0 0;
    background: #fff;
}

.gh-showcase-menu-item i {
    font-size: 1.05rem;
    opacity: 0.85;
}

/* Connecting line */
.gh-showcase-connector {
    width: 1.5px;
    height: 28px;
    background: linear-gradient(to bottom, #1e1e2e, #c8c8cc);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Browser chrome */
.gh-browser-chrome {
    background: #f5f5f7;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 48px rgba(11,49,59,0.12), 0 1px 3px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.06);
    width: 100%;
}

.gh-browser-topbar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-bottom: 1px solid #e8e8ea;
}

.gh-browser-dots {
    display: flex;
    gap: 6px;
}

.gh-browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.gh-browser-dots span:nth-child(1) { background: #ff5f57; }
.gh-browser-dots span:nth-child(2) { background: #febc2e; }
.gh-browser-dots span:nth-child(3) { background: #28c840; }

.gh-browser-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border-radius: 8px 8px 0 0;
    padding: 5px 14px;
    font-size: 0.75rem;
    color: #333;
    font-weight: 500;
    border: 1px solid #e0e0e0;
    border-bottom: none;
}

.gh-browser-tab-icon {
    width: 14px;
    height: 14px;
    background: #e74c3c;
    border-radius: 4px;
}

.gh-browser-addressbar {
    display: flex;
    align-items: center;
    padding: 6px 16px 8px;
    gap: 10px;
}

.gh-browser-url {
    flex: 1;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 0.72rem;
    color: #777;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Editor Toolbar (afrack style) Ã¢â€â‚¬Ã¢â€â‚¬ */
.gh-editor-toolbar {
    display: flex;
    align-items: center;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid #e8e8ea;
    padding: 0 12px;
    height: 38px;
    font-size: 0.72rem;
    color: #555;
    overflow-x: auto;
}

.gh-editor-toolbar-left {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.gh-editor-brand {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    color: #e74c3c;
    font-size: 0.82rem;
    font-style: italic;
    padding-right: 8px;
    border-right: 1px solid #e8e8ea;
    margin-right: 6px;
    flex-shrink: 0;
}

.gh-editor-brand-icon {
    width: 18px;
    height: 18px;
    background: #e74c3c;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
}

.gh-editor-sep {
    width: 1px;
    height: 20px;
    background: #e8e8ea;
    margin: 0 4px;
    flex-shrink: 0;
}

.gh-editor-device {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    background: #f5f5f7;
    border-radius: 5px;
    font-size: 0.68rem;
    color: #333;
    flex-shrink: 0;
}

.gh-editor-device i {
    font-size: 0.78rem;
    color: #e74c3c;
}

.gh-editor-size-input {
    width: 34px;
    background: #f5f5f7;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 2px 4px;
    font-size: 0.66rem;
    color: #333;
    text-align: center;
}

.gh-editor-bp-group {
    display: flex;
    align-items: center;
    gap: 1px;
    margin-left: 6px;
    flex-shrink: 0;
}

.gh-editor-bp {
    padding: 3px 6px;
    font-size: 0.6rem;
    font-weight: 600;
    color: #999;
    border-radius: 3px;
    cursor: default;
    line-height: 1;
}

.gh-editor-bp.active {
    background: #e74c3c;
    color: #fff;
}

.gh-editor-toolbar-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.gh-editor-badge {
    font-size: 0.6rem;
    padding: 2px 7px;
    border-radius: 4px;
    font-weight: 500;
}

.gh-editor-badge.preview {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.gh-editor-badge.draft {
    color: #999;
}

.gh-editor-badge.saved {
    color: #2e7d32;
    font-size: 0.58rem;
}

.gh-editor-icon-btn {
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 0.82rem;
    cursor: default;
}

.gh-editor-publish {
    background: #2e7d32;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 4px 14px;
    font-size: 0.68rem;
    font-weight: 600;
    cursor: default;
    margin-left: 4px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Sub-toolbar (Widgets / Layers / Pages) Ã¢â€â‚¬Ã¢â€â‚¬ */
.gh-editor-subtoolbar {
    display: flex;
    align-items: center;
    gap: 0;
    background: #fff;
    border-bottom: 2px solid #e74c3c;
    padding: 0 12px;
    height: 30px;
    font-size: 0.68rem;
}

.gh-editor-subtab {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    color: #888;
    font-weight: 500;
    cursor: default;
    white-space: nowrap;
}

.gh-editor-subtab i {
    font-size: 0.82rem;
}

.gh-editor-subtab.active {
    color: #e74c3c;
    font-weight: 600;
}

.gh-editor-subtab .count {
    font-size: 0.58rem;
    color: #aaa;
    font-weight: 400;
}

.gh-editor-subtab-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ 3-Panel Builder Body Ã¢â€â‚¬Ã¢â€â‚¬ */
.gh-builder-body {
    display: grid;
    grid-template-columns: 220px 1fr 230px;
    height: 520px;
    background: #f0f0f2;
}

/* Tab content */
.gh-tab-content {
    display: none;
}

.gh-tab-content.active {
    display: contents;
}

/* Left panel */
.gh-builder-panel-left {
    background: #fff;
    border-right: 1px solid #e8e8ea;
    padding: 0;
    font-size: 0.72rem;
    color: #444;
    overflow-y: auto;
}

.gh-panel-search {
    margin: 10px 12px;
    width: calc(100% - 24px);
    background: #f7f7f9;
    border: 1px solid #e4e4e7;
    border-radius: 7px;
    padding: 7px 10px;
    font-size: 0.68rem;
    color: #999;
}

.gh-widget-group-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.63rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 12px;
    margin: 14px 0 8px;
}

.gh-widget-group-title i {
    font-size: 0.78rem;
}

.gh-widget-group-count {
    margin-left: auto;
    font-size: 0.58rem;
    color: #bbb;
    font-weight: 400;
}

.gh-widget-group-arrow {
    color: #ccc;
    font-size: 0.62rem;
}

.gh-widget-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 0 12px;
    margin-bottom: 6px;
}

.gh-widget-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 12px 6px 10px;
    border: 1px solid #eee;
    border-radius: 8px;
    font-size: 0.6rem;
    color: #555;
    cursor: default;
    transition: border-color 0.15s;
}

.gh-widget-item:hover {
    border-color: #ddd;
    background: #fafafa;
}

.gh-widget-item i {
    font-size: 1.1rem;
    color: #444;
}

/* Section layout previews */
.gh-section-layouts {
    padding: 0 12px;
    margin-top: 12px;
}

.gh-section-layouts-title {
    font-size: 0.58rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.gh-layout-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
}

.gh-layout-item {
    display: flex;
    gap: 2px;
    padding: 6px;
    border: 1px solid #eee;
    border-radius: 5px;
    height: 24px;
    align-items: stretch;
    cursor: default;
}

.gh-layout-item:hover {
    border-color: #ddd;
}

.gh-layout-col {
    background: #333;
    border-radius: 2px;
    flex: 1;
}

/* Canvas center */
.gh-builder-canvas {
    background: #e9eaed;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 14px;
    overflow: hidden;
}

.gh-canvas-site {
    background: #fff;
    border-radius: 6px;
    width: 100%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
}

/* Canvas nav */
.gh-canvas-nav {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.gh-canvas-logo {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    font-size: 0.72rem;
    color: #222;
}

.gh-canvas-logo-icon {
    width: 18px;
    height: 18px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gh-canvas-logo-icon i {
    font-size: 0.55rem;
    color: #fff;
}

.gh-canvas-nav-links {
    display: flex;
    gap: 12px;
    margin-left: 20px;
    font-size: 0.58rem;
    color: #555;
}

.gh-canvas-nav-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gh-canvas-login {
    font-size: 0.58rem;
    color: #555;
}

.gh-canvas-signup {
    font-size: 0.58rem;
    color: #fff;
    background: #e74c3c;
    border-radius: 5px;
    padding: 4px 10px;
    font-weight: 600;
}

/* Canvas hero */
.gh-canvas-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 20px 16px;
    align-items: start;
}

.gh-canvas-hero-left h2 {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: #111;
    line-height: 1.25;
    margin-bottom: 0;
}

.gh-canvas-hero-right {
    font-size: 0.56rem;
    color: #666;
    line-height: 1.6;
}

.gh-canvas-hero-btns {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
}

.gh-canvas-btn-primary {
    background: #e74c3c;
    color: #fff;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.56rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.gh-canvas-btn-secondary {
    color: #e74c3c;
    font-size: 0.56rem;
    font-weight: 500;
}

/* Canvas visual cards */
.gh-canvas-visuals {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    padding: 0 16px 16px;
}

.gh-canvas-visual-card {
    background: #f8f8fa;
    border-radius: 8px;
    padding: 12px;
    min-height: 60px;
}

.gh-canvas-visual-card.phone {
    background: linear-gradient(135deg, #f5e6e0, #e8d5cf);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.gh-canvas-visual-card.dialog {
    background: #fff;
    border: 1px solid #eee;
    padding: 8px;
    font-size: 0.5rem;
    color: #555;
    border-radius: 8px;
}

.gh-canvas-visual-card.chart {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 8px;
}

.gh-canvas-chart-header {
    font-size: 0.52rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
}

.gh-canvas-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 40px;
}

.gh-canvas-bar {
    flex: 1;
    background: #e74c3c;
    border-radius: 2px 2px 0 0;
}

.gh-canvas-bar.light {
    background: #f5cdc8;
}

/* ── Coming Soon section (Navigation canvas) ── */
.gh-canvas-coming-section {
    padding: 0 16px 14px;
    position: relative;
}

.gh-canvas-coming-badge {
    position: absolute;
    top: -2px;
    right: 20px;
    background: #e74c3c;
    color: #fff;
    font-size: 0.38rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 0 0 6px 6px;
    z-index: 1;
}

.gh-canvas-coming-container {
    border: 2px dashed #e74c3c;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    background: #fff;
}

.gh-canvas-coming-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 12px 10px;
    text-align: center;
    position: relative;
}

.gh-canvas-coming-col.brands {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 10px;
}

.gh-canvas-coming-emoji {
    font-size: 1rem;
    margin-bottom: 4px;
}

.gh-canvas-coming-label {
    font-size: 0.34rem;
    letter-spacing: 0.12em;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.gh-canvas-coming-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    color: #111;
    margin: 0 0 4px;
    line-height: 1.15;
}

.gh-canvas-coming-desc {
    font-size: 0.38rem;
    color: #888;
    margin: 0 0 8px;
    line-height: 1.5;
}

.gh-canvas-coming-btn {
    background: #1a1a2e;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.42rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.gh-canvas-coming-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.gh-canvas-coming-deco {
    position: absolute;
    font-size: 0.9rem;
}

.gh-canvas-coming-deco.phone {
    bottom: 26%;
    left: 8%;
    color: #27ae60;
    transform: rotate(-15deg);
}

.gh-canvas-coming-deco.pasta {
    bottom: 28%;
    right: 8%;
    color: #e67e22;
    transform: rotate(15deg);
}

.gh-canvas-coming-social {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    font-size: 0.42rem;
    color: #999;
}

.gh-canvas-coming-brands {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    border-top: 1px solid #f0f0f0;
    width: 100%;
    justify-content: center;
    font-size: 0.38rem;
    color: #888;
    flex-wrap: wrap;
}

.gh-canvas-coming-brands span {
    white-space: nowrap;
}

/* VELO Fashion Canvas */
.gh-canvas-velo {
    background: #f5efe6;
    border: 1px solid #f1f1f1
    border-radius: 0;
}

.gh-velo-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    background: #1a5c5c;
}

.gh-velo-nav-left,
.gh-velo-nav-right {
    display: flex;
    gap: 12px;
    font-size: 0.52rem;
    color: #cde0d8;
}

.gh-velo-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
}

/* VELO Hero */
.gh-velo-hero {
    display: flex;
    gap: 10px;
    padding: 16px 18px 10px;
    align-items: flex-start;
}

.gh-velo-hero-left {
    flex: 1.1;
}

.gh-velo-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.15;
    margin-bottom: 14px;
}

.gh-velo-hero-title em {
    font-style: italic;
    font-family: Georgia, 'Times New Roman', serif;
}

.gh-velo-accent {
    color: #2a5ca8;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
}

.gh-velo-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #1e2d5a;
    color: #fff;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.55rem;
    font-weight: 600;
}

/* Hero Image */
.gh-velo-hero-right {
    flex: 0.9;
    position: relative;
}

.gh-velo-img-frame {
    position: relative;
    border: 2px solid #c8bfb0;
    border-radius: 4px;
    overflow: visible;
    background: linear-gradient(135deg, #b8a898 0%, #9a8a7a 100%);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -6px -6px 0 rgba(200, 191, 176, 0.3);
}

.gh-velo-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gh-velo-carousel-nav {
    position: absolute;
    top: 6px;
    right: 6px;
    display: flex;
    gap: 2px;
}

.gh-velo-arrow {
    width: 16px;
    height: 16px;
    background: #1a1a2e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.35rem;
    border-radius: 2px;
}

.gh-velo-badge {
    position: absolute;
    bottom: -8px;
    right: -8px;
    background: #2a5ca8;
    color: #fff;
    padding: 6px 10px;
    font-size: 0.55rem;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    border-radius: 3px;
}

.gh-velo-badge strong {
    font-size: 0.65rem;
    display: block;
}

/* Scrolling Marquee */
.gh-velo-marquee {
    background: #eee8de;
    padding: 5px 0;
    overflow: hidden;
    border-top: 1px solid #ddd5c8;
    border-bottom: 1px solid #ddd5c8;
}

.gh-velo-marquee-track {
    display: flex;
    gap: 18px;
    white-space: nowrap;
    font-size: 0.52rem;
    color: #555;
    font-style: italic;
    animation: gh-velo-scroll 18s linear infinite;
}

.gh-velo-marquee-track span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.gh-velo-marquee-track i {
    font-size: 0.36rem;
    color: #999;
}

@keyframes gh-velo-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Product Grid */
.gh-velo-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 8px 14px 10px;
}

.gh-velo-product {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #ede8e0;
    overflow: hidden;
}

.gh-velo-product-img {
    height: 48px;
    background: linear-gradient(135deg, #e8e0d4 0%, #d8d0c4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gh-velo-product-tag {
    position: absolute;
    top: 4px;
    left: 4px;
    background: #1a5c5c;
    color: #fff;
    font-size: 0.54rem;
    padding: 2px 6px;
    border-radius: 2px;
    font-weight: 600;
}

.gh-velo-product-tag.sale {
    background: #c0392b;
}

.gh-velo-product-info {
    padding: 5px 7px 6px;
}

.gh-velo-product-desc {
    display: block;
    font-size: 0.5rem;
    color: #888;
    line-height: 1.3;
    margin-bottom: 3px;
}

.gh-velo-product-name {
    display: block;
    font-size: 0.66rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.gh-velo-product-price {
    font-size: 0.64rem;
    font-weight: 700;
    color: #1e2d5a;
}

.gh-velo-product-old {
    font-size: 0.54rem;
    color: #aaa;
    text-decoration: line-through;
    margin-left: 3px;
}

/* SEO Tab - Dashboard Toolbar Mode */
.gh-browser-chrome.seo-mode .gh-editor-toolbar,
.gh-browser-chrome.seo-mode .gh-editor-subtoolbar {
    display: none;
}

.gh-seo-dashboard-bar {
    display: none;
    background: #fff;
    border-bottom: 1px solid #e8e8ea;
}

.gh-browser-chrome.seo-mode .gh-seo-dashboard-bar {
    display: block;
}

.gh-seo-dash-toolbar {
    display: flex;
    align-items: center;
    gap: 0;
    background: #e74c3c;
    padding: 0 14px;
    height: 34px;
    font-size: 0.68rem;
    color: #fff;
}

.gh-seo-dash-toolbar-left {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.gh-seo-dash-brand {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    font-size: 0.78rem;
}

.gh-seo-dash-brand-icon {
    background: #fff;
    color: #e74c3c;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.62rem;
}

.gh-seo-dash-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 16px;
    font-size: 0.62rem;
    opacity: 0.85;
}

.gh-seo-dash-toolbar-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.62rem;
}

.gh-seo-dash-toolbar-right i {
    font-size: 0.78rem;
    opacity: 0.85;
}

.gh-seo-dash-badge-preview {
    background: #fff;
    color: #e74c3c;
    font-size: 0.56rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
}

.gh-seo-dash-badge {
    font-size: 0.56rem;
    opacity: 0.8;
}

.gh-seo-dash-sep {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.3);
    margin: 0 4px;
}

.gh-seo-dash-subtoolbar {
    display: flex;
    align-items: center;
    padding: 0 14px;
    height: 32px;
    border-bottom: 1px solid #e8e8ea;
    font-size: 0.64rem;
    color: #555;
    gap: 0;
}

.gh-seo-dash-subtab {
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.gh-seo-dash-subtab.active {
    color: #e74c3c;
}

.gh-seo-dash-subtab .count {
    font-size: 0.52rem;
    color: #aaa;
    background: #f0f0f2;
    padding: 0 4px;
    border-radius: 8px;
}

.gh-seo-dash-subtab-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0;
}

.gh-seo-dash-publish {
    background: #e74c3c;
    color: #fff;
    padding: 4px 14px;
    border-radius: 5px;
    font-size: 0.62rem;
    font-weight: 600;
}

.gh-seo-dash-icon-btn {
    padding: 4px 6px;
    font-size: 0.78rem;
    color: #888;
}

/* SEO Dashboard Content Header */
.gh-seo-dash-content {
    display: none;
    padding: 0;
}

.gh-browser-chrome.seo-mode .gh-seo-dash-content {
    display: block;
}

.gh-browser-chrome.seo-mode .gh-builder-body {
    grid-template-rows: auto 1fr;
    height: 520px;
    overflow: hidden;
}

.gh-browser-chrome.seo-mode .gh-seo-left {
    grid-row: 2;
    grid-column: 1;
    overflow-y: auto;
}

.gh-browser-chrome.seo-mode .gh-builder-canvas {
    grid-row: 2;
    grid-column: 2;
    overflow-y: auto;
}

.gh-browser-chrome.seo-mode .gh-seo-right {
    grid-row: 2;
    grid-column: 3;
    overflow-y: auto;
}

.gh-seo-dash-header {
    display: flex;
    align-items: center;
    padding: 16px 20px 10px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.gh-seo-dash-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.gh-seo-dash-header-actions {
    margin-left: auto;
    display: flex;
    gap: 8px;
}

.gh-seo-dash-btn-ai {
    background: #0d9488;
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.62rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.gh-seo-dash-btn-export {
    background: #fff;
    color: #555;
    border: 1px solid #ddd;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.62rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.gh-seo-dash-stats {
    display: flex;
    gap: 12px;
    padding: 14px 20px;
    background: #fff;
}

.gh-seo-dash-stat-card {
    flex: 1;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 14px 16px;
}

.gh-seo-dash-stat-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.62rem;
    color: #666;
    margin-bottom: 6px;
}

.gh-seo-dash-stat-label i {
    font-size: 0.82rem;
}

.gh-seo-dash-stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
}

.gh-seo-dash-stat-sub {
    font-size: 0.52rem;
    color: #aaa;
    margin-top: 2px;
}

.gh-seo-dash-stat-sub.green {
    color: #2ecc71;
}

.gh-seo-dash-stat-sub.red {
    color: #e74c3c;
}

.gh-seo-dash-stat-sub.orange {
    color: #e8833a;
}

.gh-seo-dash-framework {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 14px 16px;
    min-width: 180px;
}

.gh-seo-dash-framework-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.68rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.gh-seo-dash-donut {
    width: 70px;
    height: 70px;
    margin: 0 auto 6px;
}

.gh-seo-dash-donut svg {
    width: 100%;
    height: 100%;
}

.gh-seo-dash-donut-label {
    font-size: 0.9rem;
    font-weight: 700;
    fill: #0d9488;
}

.gh-seo-dash-donut-sub {
    font-size: 0.36rem;
    fill: #999;
}

.gh-seo-dash-legend {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.52rem;
    color: #555;
    margin-bottom: 6px;
}

.gh-seo-dash-legend-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 3px;
}

.gh-seo-dash-insight {
    font-size: 0.5rem;
    color: #666;
    text-align: center;
    line-height: 1.4;
}

.gh-seo-dash-insight strong {
    text-decoration: underline;
}

.gh-seo-dash-websites-bar {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.gh-seo-dash-websites-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: #1a1a2e;
}

.gh-seo-dash-websites-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gh-seo-dash-search {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.58rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 120px;
}

.gh-seo-dash-filter {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.56rem;
    color: #555;
    font-weight: 500;
}

.gh-seo-dash-view-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #ddd;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    color: #888;
}

.gh-seo-dash-view-btn.active {
    background: #1a1a2e;
    color: #fff;
    border-color: #1a1a2e;
}

/* SEO & Performance Tab */
.gh-seo-left {
    padding: 0 !important;
    overflow-y: auto;
}

.gh-seo-score-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 12px 10px;
    border-bottom: 1px solid #eee;
}

.gh-seo-score-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2.5px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: #aaa;
    font-weight: 700;
    flex-shrink: 0;
}

.gh-seo-tabs {
    display: flex;
    border-bottom: 2px solid #eee;
    padding: 0 10px;
}

.gh-seo-tab {
    flex: 1;
    text-align: center;
    padding: 8px 4px;
    font-size: 0.6rem;
    color: #888;
    cursor: default;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.gh-seo-tab i {
    font-size: 0.65rem;
}

.gh-seo-tab.active {
    color: #4a8fff;
    border-bottom-color: #4a8fff;
    font-weight: 600;
}

.gh-seo-card {
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 12px 14px;
    margin: 8px 10px;
}

.gh-seo-card-title {
    font-size: 0.72rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.gh-seo-card-title i {
    font-size: 0.78rem;
}

.gh-seo-field {
    margin-bottom: 10px;
}

.gh-seo-field label {
    display: block;
    font-size: 0.62rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.gh-seo-input {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 6px 10px;
    font-size: 0.6rem;
    color: #888;
    background: #fff;
}

.gh-seo-textarea {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 6px 10px;
    font-size: 0.6rem;
    color: #888;
    background: #fff;
    min-height: 40px;
}

.gh-seo-hint {
    font-size: 0.48rem;
    color: #aaa;
    margin-top: 3px;
}

.gh-seo-preview {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 10px 12px;
    margin-top: 8px;
}

.gh-seo-preview-label {
    font-size: 0.46rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.gh-seo-preview-title {
    font-size: 0.75rem;
    color: #1a0dab;
    font-weight: 600;
}

.gh-seo-preview-url {
    font-size: 0.55rem;
    color: #2ecc71;
}

.gh-seo-preview-desc {
    font-size: 0.55rem;
    color: #777;
}

.gh-seo-checks {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gh-seo-check {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.6rem;
    color: #444;
}

.gh-seo-checkbox {
    width: 15px;
    height: 15px;
    border: 1.5px solid #ccc;
    border-radius: 3px;
    flex-shrink: 0;
}

.gh-seo-checklist {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gh-seo-checklist-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.58rem;
    color: #444;
}

.gh-seo-x {
    color: #e74c3c;
    font-size: 0.72rem;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1;
}

/* Performance Canvas */
.gh-canvas-perf {
    background: #fff;
    padding: 0;
}

.gh-perf-step-header {
    background: #1a1a2e;
    color: #fff;
    padding: 10px 16px;
    font-size: 0.72rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.gh-perf-subtitle {
    text-align: center;
    font-size: 0.62rem;
    color: #666;
    padding: 12px 10px 8px;
}

.gh-perf-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 4px 10px;
}

.gh-perf-card {
    border: 1.5px solid #e8e8ea;
    border-radius: 6px;
    padding: 8px 6px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    position: relative;
}

.gh-perf-card.selected {
    border-color: #4a8fff;
    background: #f0f6ff;
    box-shadow: 0 0 0 1px #4a8fff;
}

.gh-perf-card-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #2ecc71;
    color: #fff;
    font-size: 0.44rem;
    padding: 2px 8px;
    border-radius: 8px;
    font-weight: 600;
    white-space: nowrap;
}

.gh-perf-card-icon {
    margin: 4px 0;
}

.gh-perf-card-name {
    font-size: 0.68rem;
    color: #1a1a2e;
}

.gh-perf-card-desc {
    font-size: 0.5rem;
    color: #999;
}

.gh-perf-card-value {
    background: #f5f5f5;
    border-radius: 5px;
    padding: 6px 8px;
    width: 100%;
}

.gh-perf-card.selected .gh-perf-card-value {
    background: #e0edff;
}

.gh-perf-card-value strong {
    display: block;
    font-size: 0.62rem;
    color: #333;
}

.gh-perf-card-value span {
    font-size: 0.46rem;
    color: #888;
}

.gh-perf-card-note {
    font-size: 0.46rem;
    color: #999;
}

.gh-perf-card-note.warn {
    color: #e8833a;
}

.gh-perf-auto-note {
    text-align: center;
    font-size: 0.52rem;
    color: #999;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.gh-perf-custom-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px solid #eee;
    margin: 0 10px 8px;
    border-radius: 6px;
    font-size: 0.65rem;
    color: #333;
}

.gh-perf-custom {
    border: 1px solid #eee;
    border-radius: 6px;
    margin: 0 10px 10px;
    padding: 8px 10px;
}

.gh-perf-custom-title {
    font-size: 0.65rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.gh-perf-custom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.gh-perf-field label {
    display: block;
    font-size: 0.56rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.gh-perf-input {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 6px 10px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #1a1a2e;
    background: #fff;
}

.gh-perf-field-hint {
    font-size: 0.46rem;
    color: #aaa;
}

/* SEO Right Panel */
.gh-seo-right {
    padding: 0 !important;
    overflow-y: auto;
}

.gh-seo-fb-preview {
    margin-top: 6px;
}

.gh-seo-fb-img {
    background: #f5f5f5;
    border: 1px solid #eee;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    color: #bbb;
    border-radius: 6px 6px 0 0;
}

.gh-seo-fb-meta {
    border: 1px solid #eee;
    border-top: none;
    padding: 8px 10px;
    border-radius: 0 0 6px 6px;
}

.gh-seo-fb-domain {
    display: block;
    font-size: 0.44rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.gh-seo-fb-meta strong {
    display: block;
    font-size: 0.65rem;
    color: #1a1a2e;
}

.gh-seo-fb-meta span {
    font-size: 0.52rem;
    color: #999;
}

.gh-seo-pages-table {
    font-size: 0.55rem;
}

.gh-seo-pages-header {
    display: grid;
    grid-template-columns: 60px 1fr 75px;
    gap: 6px;
    padding: 5px 0;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.48rem;
    border-bottom: 1px solid #eee;
}

.gh-seo-pages-row {
    display: grid;
    grid-template-columns: 60px 1fr 75px;
    gap: 6px;
    padding: 6px 0;
    border-bottom: 1px solid #f5f5f5;
    align-items: center;
    color: #555;
    font-size: 0.55rem;
}

.gh-seo-pages-input {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 3px 6px;
    color: #bbb;
    font-size: 0.52rem;
}

.gh-seo-status-incomplete {
    color: #e8833a;
    font-size: 0.52rem;
    font-weight: 600;
}

/* Right panel - Style */
.gh-builder-panel-right {
    background: #fff;
    border-left: 1px solid #e8e8ea;
    padding: 0;
    font-size: 0.72rem;
    color: #444;
    overflow-y: auto;
}

.gh-style-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #eee;
}

.gh-style-tab {
    flex: 1;
    text-align: center;
    padding: 10px 8px;
    font-size: 0.68rem;
    color: #888;
    font-weight: 500;
    cursor: default;
    border-bottom: 2px solid transparent;
}

.gh-style-tab.active {
    color: #e74c3c;
    border-bottom-color: #e74c3c;
    font-weight: 600;
}

.gh-style-tab i {
    margin-right: 4px;
    font-size: 0.78rem;
}

.gh-style-breadcrumb {
    padding: 6px 14px;
    font-size: 0.58rem;
    color: #888;
    border-bottom: 1px solid #f0f0f0;
}

.gh-style-search {
    margin: 6px 14px;
    width: calc(100% - 28px);
    background: #f7f7f9;
    border: 1px solid #e4e4e7;
    border-radius: 7px;
    padding: 6px 10px;
    font-size: 0.66rem;
    color: #999;
}

.gh-style-section {
    display: flex;
    align-items: center;
    padding: 9px 14px;
    font-size: 0.7rem;
    color: #333;
    font-weight: 500;
    cursor: default;
    border-bottom: 1px solid #f5f5f5;
}

.gh-style-section i {
    font-size: 0.85rem;
    color: #888;
    margin-right: 8px;
}

.gh-style-section .arrow {
    margin-left: auto;
    color: #ccc;
    font-size: 0.65rem;
}

.gh-style-expanded {
    padding: 6px 14px 10px;
    border-bottom: 1px solid #f0f0f0;
}

.gh-style-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 0.64rem;
}

.gh-style-row-label {
    color: #777;
}

.gh-style-row-value {
    background: #f7f7f9;
    border: 1px solid #e4e4e7;
    border-radius: 5px;
    padding: 4px 8px;
    font-size: 0.62rem;
    color: #333;
    min-width: 55px;
    text-align: center;
}

.gh-style-slider-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
}

.gh-style-slider-label {
    color: #777;
    font-size: 0.64rem;
    min-width: 55px;
}

.gh-style-slider {
    flex: 1;
    height: 3px;
    background: #e0e0e0;
    border-radius: 2px;
    position: relative;
}

.gh-style-slider-fill {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    background: #e74c3c;
    border-radius: 2px;
}

.gh-style-slider-dot {
    width: 10px;
    height: 10px;
    background: #e74c3c;
    border-radius: 50%;
    position: absolute;
    top: -3.5px;
}

.gh-style-slider-value {
    width: 38px;
    background: #f7f7f9;
    border: 1px solid #e4e4e7;
    border-radius: 5px;
    padding: 3px 5px;
    font-size: 0.6rem;
    color: #333;
    text-align: center;
}

    color: #aaa;
    font-weight: 400;
}

.gh-editor-subtab-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0;
}

/* ── Extensions tab: Sub-tabs ── */
.gh-ext-subtabs {
    display: flex;
    border-bottom: 1px solid #e8e8ea;
    background: #fafafa;
}

.gh-ext-subtab {
    flex: 1;
    text-align: center;
    padding: 8px 4px;
    font-size: 0.62rem;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.15s;
}

.gh-ext-subtab:hover {
    color: #555;
}

.gh-ext-subtab.active {
    color: #e74c3c;
    border-bottom-color: #e74c3c;
}

.gh-ext-panel {
    display: none;
}

.gh-ext-panel.active {
    display: block;
}

/* ── Assets sub-panel ── */
.gh-asset-upload {
    margin: 10px 12px;
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 18px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.62rem;
    color: #666;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s;
}

.gh-asset-upload:hover {
    border-color: #e74c3c;
}

.gh-asset-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding: 8px 10px;
}

.gh-asset-filter {
    font-size: 0.58rem;
    padding: 4px 8px;
    border-radius: 5px;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 3px;
    transition: all 0.15s;
}

.gh-asset-filter:hover {
    background: #f0f0f2;
}

.gh-asset-filter.active {
    background: #fde8e5;
    color: #e74c3c;
}

/* ── Community sub-panel ── */
.gh-community-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px 12px;
}

.gh-community-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 6px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s;
    text-align: center;
}

.gh-community-item:hover {
    background: #f5f5f7;
}

.gh-community-item i {
    font-size: 1.3rem;
    color: #555;
}

.gh-community-item strong {
    font-size: 0.64rem;
    color: #333;
    font-weight: 600;
}

.gh-community-item span {
    font-size: 0.54rem;
    color: #999;
}

/* ── Job Form Canvas ── */
.gh-canvas-form-page {
    background: #f0f4ff;
    padding: 14px 12px;
    overflow-y: auto;
}

.gh-form-row {
    display: flex;
    gap: 14px;
    padding: 12px 14px;
    background: #fff;
    border-bottom: 1px solid #eee;
    align-items: flex-start;
}

.gh-form-row:first-child {
    border-radius: 8px 8px 0 0;
}

.gh-form-row:last-child {
    border-radius: 0 0 8px 8px;
    border-bottom: none;
}

.gh-form-label {
    flex: 0 0 38%;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.gh-form-label strong {
    font-size: 0.62rem;
    color: #222;
}

.gh-form-label span {
    font-size: 0.52rem;
    color: #888;
    line-height: 1.3;
}

.gh-form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gh-form-field input[type="text"] {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 7px 10px;
    font-size: 0.58rem;
    color: #555;
    outline: none;
    background: #fff;
}

.gh-form-field input[type="text"]:focus {
    border-color: #4a90d9;
}

/* Rich text editor */
.gh-form-editor {
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}

.gh-form-editor-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 8px;
    border-bottom: 1px solid #eee;
    font-size: 0.58rem;
    color: #555;
}

.gh-form-editor-body {
    padding: 10px;
    min-height: 48px;
    font-size: 0.55rem;
    color: #aaa;
}

/* Checkboxes */
.gh-form-checks {
    gap: 0 !important;
}

.gh-form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border: 1px solid #eee;
    border-radius: 6px;
    font-size: 0.58rem;
    color: #333;
    cursor: pointer;
    margin-bottom: 4px;
}

.gh-form-check.checked {
    border-color: #4a90d9;
    background: #f0f6ff;
}

.gh-check-box {
    width: 16px;
    height: 16px;
    border: 1.5px solid #ccc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    color: transparent;
    flex-shrink: 0;
}

.gh-check-box.checked {
    background: #4a90d9;
    border-color: #4a90d9;
    color: #fff;
}

/* Select / dropdown */
.gh-form-select {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 7px 10px;
    font-size: 0.58rem;
    color: #555;
    cursor: pointer;
}

/* Tags */
.gh-form-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.gh-form-tag {
    background: #e8f0fe;
    color: #3367d6;
    font-size: 0.54rem;
    padding: 4px 10px;
    border-radius: 14px;
    font-weight: 500;
}

/* Radio cards */
.gh-form-radio-group {
    display: flex;
    gap: 8px;
}

.gh-form-radio {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 8px;
    border: 1.5px solid #eee;
    border-radius: 8px;
    font-size: 0.56rem;
    color: #555;
    cursor: pointer;
    text-align: center;
}

.gh-form-radio.selected {
    border-color: #4a90d9;
    background: #f7faff;
}

.gh-radio-dot {
    width: 14px;
    height: 14px;
    border: 2px solid #ccc;
    border-radius: 50%;
    position: relative;
}

.gh-radio-dot.selected {
    border-color: #4a90d9;
}

.gh-radio-dot.selected::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #4a90d9;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Salary row */
.gh-form-salary-row {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.gh-form-salary-row > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.gh-form-small-label {
    font-size: 0.5rem;
    color: #666;
    font-weight: 500;
}

.gh-form-small-input {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 6px 8px;
    font-size: 0.56rem;
    color: #333;
    outline: none;
}

/* ── Breakpoint list (Layout tab) ── */
.gh-bp-list {
    padding: 4px 10px;
}

.gh-bp-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.15s;
    font-size: 0.6rem;
}

.gh-bp-item:hover {
    background: #f5f5f7;
}

.gh-bp-item.active {
    background: #fde8e5;
}

.gh-bp-icon {
    width: 24px;
    height: 18px;
    background: #f0f0f2;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    font-weight: 700;
    color: #555;
}

.gh-bp-item.active .gh-bp-icon {
    background: #e74c3c;
    border-color: #e74c3c;
    color: #fff;
}

.gh-bp-label {
    flex: 1;
    color: #444;
    font-weight: 500;
}

.gh-bp-size {
    color: #aaa;
    font-size: 0.54rem;
}

/* ── Checkout canvas (Layout tab) ── */
.gh-canvas-checkout {
    background: #f6f3ef;
    display: flex;
    gap: 8px;
    padding: 0;
    overflow: hidden;
    border-radius: 6px;
    width: 100%;
    height: 100%;
    position: relative;
}

.gh-checkout-desktop {
    flex: 1;
    overflow: hidden;
    padding: 0;
}

.gh-checkout-nav {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    font-size: 0.44rem;
    border-bottom: 1px dashed #d5cfc5;
    gap: 6px;
}

.gh-checkout-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.62rem;
    font-style: italic;
    color: #222;
}

.gh-checkout-nav-links {
    color: #555;
    margin-left: 16px;
}

.gh-checkout-nav-right {
    margin-left: auto;
    color: #555;
    display: flex;
    gap: 6px;
    align-items: center;
}

.gh-checkout-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    text-align: center;
    padding: 10px 0 6px;
    color: #222;
}

.gh-checkout-body {
    display: flex;
    gap: 10px;
    padding: 0 10px 10px;
    font-size: 0.46rem;
}

.gh-checkout-left {
    flex: 1;
}

.gh-checkout-right {
    width: 42%;
}

.gh-checkout-subtitle {
    font-weight: 700;
    font-size: 0.52rem;
    color: #222;
    margin-bottom: 5px;
}

.gh-checkout-form-field {
    margin-bottom: 4px;
}

.gh-checkout-field-label {
    font-size: 0.42rem;
    color: #555;
    display: block;
    margin-bottom: 2px;
}

.gh-checkout-field-label::after {
    content: '';
}

.gh-checkout-input {
    background: #fff;
    border: 1px solid #e0ddd8;
    border-radius: 4px;
    padding: 5px 7px;
    font-size: 0.44rem;
    color: #888;
    display: flex;
    align-items: center;
}

.gh-checkout-promo {
    background: #fff;
    border: 1px solid #e0ddd8;
    border-radius: 6px;
    padding: 7px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.46rem;
    color: #333;
    margin-bottom: 6px;
}

.gh-checkout-cart-box {
    background: #fff;
    border: 1px solid #e0ddd8;
    border-radius: 6px;
    padding: 8px 10px;
}

.gh-checkout-cart-title {
    font-weight: 700;
    font-size: 0.52rem;
    color: #222;
    margin-bottom: 5px;
}

.gh-checkout-cart-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.44rem;
    color: #555;
    padding: 2px 0;
    border-bottom: 1px solid #f0ede8;
}

.gh-checkout-cart-row.total {
    border-bottom: none;
    padding-top: 4px;
    font-size: 0.5rem;
}

.gh-checkout-payment-label {
    font-size: 0.44rem;
    font-weight: 600;
    color: #333;
    margin: 6px 0 4px;
    text-align: center;
}

.gh-checkout-payment-btns {
    display: flex;
    gap: 4px;
    margin-bottom: 6px;
    justify-content: center;
}

.gh-checkout-pay-btn {
    font-size: 0.42rem;
    padding: 4px 10px;
    border-radius: 14px;
    border: 1px solid #ddd;
    color: #555;
    cursor: pointer;
}

.gh-checkout-pay-btn.active {
    background: #2c2c2c;
    color: #fff;
    border-color: #2c2c2c;
}

.gh-checkout-card-info {
    font-size: 0.42rem;
    color: #555;
}

.gh-checkout-card-row {
    display: flex;
    justify-content: space-between;
    padding: 3px 0;
    border-bottom: 1px solid #f0ede8;
}

.gh-checkout-card-row-split {
    display: flex;
    gap: 8px;
}

.gh-checkout-card-row-split > div {
    flex: 1;
    display: flex;
    justify-content: space-between;
    padding: 3px 0;
    border-bottom: 1px solid #f0ede8;
}

.gh-checkout-order-btn {
    background: #c0392b;
    color: #fff;
    text-align: center;
    padding: 7px;
    border-radius: 6px;
    font-size: 0.5rem;
    font-weight: 600;
    margin-top: 6px;
    letter-spacing: 0.05em;
}

/* Mobile overlay */
.gh-checkout-mobile {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-25%);
    width: 130px;
    background: #fff;
    border-radius: 8px 8px 0 0;
    box-shadow: -4px -2px 16px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid #e8e5e0;
    border-bottom: none;
}

.gh-checkout-mobile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 8px;
    font-size: 0.5rem;
    color: #333;
}

.gh-checkout-mobile-title {
    font-weight: 700;
    font-size: 0.6rem;
    text-align: center;
    padding: 4px 0 3px;
    color: #222;
}

.gh-checkout-mobile-body {
    padding: 0 6px 6px;
}

.gh-checkout-mobile-body .gh-checkout-form-field {
    margin-bottom: 3px;
}

.gh-checkout-mobile-body .gh-checkout-input {
    font-size: 0.4rem;
    padding: 4px 6px;
}

.gh-checkout-mobile-body .gh-checkout-field-label {
    font-size: 0.38rem;
}

/* ── Tasklyn Dashboard (Collaborate tab) ── */
.gh-canvas-tasklyn {
    background: #e8e6f0;
    padding: 0;
    overflow: hidden;
    border-radius: 6px;
    width: 100%;
    height: 100%;
}

.gh-tasklyn-nav {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    background: #fff;
    border-bottom: 1px solid #eee;
    gap: 8px;
}

.gh-tasklyn-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.62rem;
    color: #222;
}

.gh-tasklyn-nav-tabs {
    display: flex;
    gap: 2px;
    margin-left: 10px;
}

.gh-tasklyn-nav-tab {
    font-size: 0.42rem;
    padding: 3px 7px;
    border-radius: 12px;
    color: #666;
    cursor: pointer;
}

.gh-tasklyn-nav-tab.active {
    background: #e74c3c;
    color: #fff;
}

.gh-tasklyn-nav-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #555;
}

.gh-tasklyn-avatar {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0c27f, #fc5c7d);
}

.gh-tasklyn-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px 4px;
}

.gh-tasklyn-team-name {
    font-weight: 700;
    font-size: 0.52rem;
    color: #222;
}

.gh-tasklyn-team-desc {
    font-size: 0.38rem;
    color: #888;
    margin-top: 1px;
}

.gh-tasklyn-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gh-tasklyn-avatars {
    display: flex;
}

.gh-tasklyn-av {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid #fff;
    margin-left: -6px;
}

.gh-tasklyn-av.av1 { background: linear-gradient(135deg, #667eea, #764ba2); }
.gh-tasklyn-av.av2 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.gh-tasklyn-av.av3 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.gh-tasklyn-av.plus {
    background: #f0f0f2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.32rem;
    font-weight: 600;
    color: #555;
}

.gh-tasklyn-new-btn {
    font-size: 0.4rem;
    padding: 4px 10px;
    border-radius: 14px;
    background: #222;
    color: #fff;
    font-weight: 500;
}

/* Main grid */
.gh-tasklyn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 6px 10px 10px;
}

.gh-tasklyn-card {
    background: #fff;
    border-radius: 8px;
    padding: 8px 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.gh-tasklyn-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 0.48rem;
}

.gh-tasklyn-see-all {
    font-size: 0.38rem;
    color: #888;
    cursor: pointer;
}

/* Today Task */
.gh-tasklyn-card.today-task {
    grid-column: 1;
}

.gh-tasklyn-tasks {
    display: flex;
    gap: 5px;
}

.gh-tasklyn-task {
    flex: 1;
    border-radius: 8px;
    padding: 7px 8px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.gh-tasklyn-task.purple { background: #e8e0f8; }
.gh-tasklyn-task.peach { background: #fce4d8; }
.gh-tasklyn-task.salmon { background: #fdd8d0; }

.gh-tasklyn-priority {
    font-size: 0.32rem;
    background: rgba(255,255,255,0.6);
    padding: 1px 5px;
    border-radius: 8px;
    color: #555;
    align-self: flex-start;
}

.gh-tasklyn-task strong {
    font-size: 0.44rem;
    color: #222;
}

.gh-tasklyn-task-avatars {
    display: flex;
    margin-top: 2px;
}

.gh-tasklyn-task-avatars span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0c27f, #fc5c7d);
    border: 1px solid #fff;
    margin-left: -3px;
}

.gh-tasklyn-task-avatars span:first-child {
    margin-left: 0;
}

.gh-tasklyn-progress {
    height: 3px;
    background: rgba(0,0,0,0.08);
    border-radius: 2px;
    margin-top: 3px;
}

.gh-tasklyn-progress-bar {
    height: 100%;
    background: #888;
    border-radius: 2px;
}

.gh-tasklyn-task-count {
    font-size: 0.32rem;
    color: #888;
    text-align: right;
}

/* Project Completed */
.gh-tasklyn-card.project-completed {
    grid-column: 2;
}

.gh-tasklyn-completed-body {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gh-tasklyn-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gh-tasklyn-stat {
    font-size: 0.38rem;
    color: #555;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}

.gh-tasklyn-stat-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.gh-tasklyn-stat-dot.purple { background: #7c6ce0; }
.gh-tasklyn-stat-dot.orange { background: #e8833a; }
.gh-tasklyn-stat-dot.blue { background: #4a90d9; }

.gh-tasklyn-donut {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.gh-tasklyn-donut-svg {
    width: 100%;
    height: 100%;
}

/* Rank Performance */
.gh-tasklyn-card.rank {
    grid-column: 1;
}

.gh-tasklyn-rank-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gh-tasklyn-rank-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.4rem;
}

.gh-tasklyn-rank-av {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
}

.gh-tasklyn-rank-av.av1 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.gh-tasklyn-rank-av.av2 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.gh-tasklyn-rank-av.av3 { background: linear-gradient(135deg, #a18cd1, #fbc2eb); }

.gh-tasklyn-rank-item div {
    flex: 1;
    line-height: 1.3;
}

.gh-tasklyn-rank-item div strong {
    display: block;
    font-size: 0.42rem;
    color: #222;
}

.gh-tasklyn-rank-item div span {
    font-size: 0.34rem;
    color: #999;
}

.gh-tasklyn-points {
    font-size: 0.38rem;
    color: #555;
    white-space: nowrap;
}

/* Tracker Detail */
.gh-tasklyn-card.tracker {
    grid-column: 2;
    grid-row: 3;
}

.gh-tasklyn-tracker-legend {
    font-size: 0.34rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 5px;
}

.gh-tasklyn-legend-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.gh-tasklyn-legend-dot.orange { background: #e8833a; }
.gh-tasklyn-legend-dot.green { background: #b8d8ba; }

.gh-tasklyn-tracker-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 55px;
}

.gh-tasklyn-tbar-group {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 100%;
}

.gh-tasklyn-tbar {
    flex: 1;
    border-radius: 4px 4px 0 0;
}

.gh-tasklyn-tbar.orange { background: #e8833a; }
.gh-tasklyn-tbar.green { background: #c8e6c9; }

/* Chat */
.gh-tasklyn-card.chat {
    grid-column: 1 / -1;
}

.gh-tasklyn-card.rank,
.gh-tasklyn-card.tracker,
.gh-tasklyn-card.chat {
    grid-row: auto;
}

.gh-tasklyn-grid {
    grid-template-columns: 1fr 1fr 1fr;
}

.gh-tasklyn-card.today-task { grid-column: 1 / 3; grid-row: 1; }
.gh-tasklyn-card.project-completed { grid-column: 3; grid-row: 1; }
.gh-tasklyn-card.rank { grid-column: 1; grid-row: 2; }
.gh-tasklyn-card.tracker { grid-column: 2; grid-row: 2; }
.gh-tasklyn-card.chat { grid-column: 3; grid-row: 2; }

.gh-tasklyn-chat-messages {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gh-tasklyn-chat-msg {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gh-tasklyn-chat-msg.outgoing {
    align-items: flex-end;
}

.gh-tasklyn-chat-msg.incoming {
    align-items: flex-start;
}

.gh-tasklyn-chat-user {
    font-size: 0.38rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 4px;
}

.gh-tasklyn-chat-av {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0c27f, #fc5c7d);
    display: inline-block;
}

.gh-tasklyn-chat-bubble {
    font-size: 0.4rem;
    padding: 5px 8px;
    border-radius: 8px;
    max-width: 90%;
}

.gh-tasklyn-chat-bubble.out {
    background: #4a6cf7;
    color: #fff;
}

.gh-tasklyn-chat-bubble.in {
    background: #f5f5f5;
    color: #333;
}

.gh-tasklyn-chat-time {
    font-size: 0.3rem;
    color: #aaa;
}

.gh-tasklyn-voice-msg {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.36rem;
    color: #555;
}

.gh-tasklyn-voice-bars {
    letter-spacing: -1px;
    font-size: 0.5rem;
    color: #bbb;
}

/* Worldwide Map Section */
.gh-tasklyn-worldmap {
    background: #fff;
    border-radius: 8px;
    padding: 10px 14px 14px;
    margin-top: 8px;
}

.gh-worldmap-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
}

.gh-worldmap-body {
    position: relative;
}

.gh-worldmap-svg {
    width: 100%;
}

.gh-worldmap-graphic {
    width: 100%;
    height: auto;
}

.gh-worldmap-pins {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.gh-worldmap-pin {
    position: absolute;
    display: flex;
    gap: 4px;
    align-items: flex-start;
    max-width: 120px;
}

.gh-wm-pin-icon {
    width: 14px;
    height: 14px;
    border-radius: 50% 50% 50% 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 0.35rem;
    transform: rotate(-45deg);
}

.gh-wm-pin-icon i {
    transform: rotate(45deg);
}

.gh-wm-pin-sub {
    display: block;
    font-size: 0.32rem;
    font-weight: 600;
    color: #555;
}

.gh-wm-pin-desc {
    display: block;
    font-size: 0.26rem;
    color: #999;
    line-height: 1.3;
}

.gh-worldmap-pin strong {
    font-size: 0.36rem;
    display: block;
    line-height: 1.2;
}

/* Pin positions */
.pin-canada { top: 22%; left: 2%; }
.pin-algeria { top: 42%; left: 2%; }
.pin-brasil { top: 62%; left: 5%; }
.pin-kazakhstan { bottom: 12%; left: 26%; }
.pin-saudi { top: 18%; right: 2%; }
.pin-poland { top: 42%; right: 2%; }

.gh-worldmap-countries {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 6px;
    padding: 0 10px;
}

.gh-wm-col {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.gh-wm-col span {
    font-size: 0.28rem;
    color: #777;
    line-height: 1.4;
}

.gh-tools {
    width: min(1200px, 100%);
    margin: 0 auto;
    margin-top: 20px;
}

.gh-tools-feature {
    background: #fff;
    border: 1px solid #eee;
    border-radius: var(--gh-radius-lg);
    padding: clamp(20px, 4vw, 20px) clamp(20px, 3.5vw, 20px);
}

.gh-tools-feature-copy {
    margin-bottom: 28px;
}
.gh-tools-feature-copy h3 {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(3.15rem, 2.4vw, 1.55rem);
    color: #111;
    margin: 0 0 10px;
    line-height: 1.3;
}
.gh-tools-feature-copy p {
    font-size: clamp(0.82rem, 1.3vw, 0.92rem);
    color: #666;
    line-height: 1.6;
    margin: 0;
    max-width: 860px;
}

.gh-tools-browser {
    border: 1px solid var(--gh-primary);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,151,178,0.10);
}
.gh-tools-browser-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: #f5f5f5;
    border-bottom: 1px solid #eee;
}
.gh-tools-browser-dots {
    display: flex; gap: 6px;
}
.gh-tools-browser-dots span {
    width: 11px; height: 11px; border-radius: 50%;
}
.gh-tools-browser-dots span:nth-child(1) { background: #ff5f57; }
.gh-tools-browser-dots span:nth-child(2) { background: #ffbd2e; }
.gh-tools-browser-dots span:nth-child(3) { background: #28c840; }
.gh-tools-browser-tab {
    display: flex; align-items: center; gap: 6px;
    background: #fff; border: 1px solid #e5e5e5; border-radius: 6px;
    padding: 5px 14px; font-size: 0.72rem; font-weight: 500; color: #333;
}
.gh-tools-browser-tab img { width: 14px; height: 14px; }
.gh-tools-browser-tab-plus {
    width: 22px; height: 22px; display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: #999; cursor: default;
}
.gh-tools-browser-nav {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 16px;
    background: #fafafa;
    border-bottom: 1px solid #eee;
}
.gh-tools-browser-nav-btns {
    display: flex; gap: 4px; color: #bbb; font-size: 14px;
}
.gh-tools-browser-nav-btns i { cursor: default; }
.gh-tools-browser-url {
    flex: 1;
    background: #f0f0f0;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.68rem;
    color: #555;
    display: flex; align-items: center; gap: 6px;
}
.gh-tools-browser-url i { font-size: 11px; color: #999; }
.gh-tools-browser-nav-icons {
    display: flex; gap: 8px; color: #bbb; font-size: 14px; margin-left: auto;
}
.gh-tools-browser-body {
    position: relative;
}
.gh-tools-browser-img {
    display: block; width: 100%; height: auto;
}
.gh-tools-browser-fade {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 330px;
    background: linear-gradient(to top, rgb(0 151 178) 0%, rgb(0 151 178 / 92%) 25%, rgb(0 151 178 / 32%) 55%, rgb(0 151 178 / 0%) 100%);
    z-index: 2;
}

.gh-tools-subgrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
    margin-top: 20px;
}

.gh-tool-card {
    border-radius: 12px;
    padding: 12px;
    background: #fff;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: box-shadow 0.22s ease, transform 0.18s ease;
}
.gh-tool-card:hover {
    box-shadow: 0 10px 36px rgba(0,151,178,0.15);
    transform: translateY(-4px);
}

/* Invite mockup */
.gh-mock-invite {
    background: #fff;
    border: 1px solid rgba(0,151,178,0.22);
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 10px;
    flex: 1;
}
.gh-mock-invite-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 10px;
}
.gh-mock-invite-title {
    font-size: 0.78rem; font-weight: 700; color: #111;
}
.gh-mock-invite-row {
    display: flex; gap: 8px; align-items: center; margin-bottom: 10px;
}
.gh-mock-invite-input {
    flex: 1; border: 1.5px solid var(--gh-primary); border-radius: 7px;
    padding: 6px 10px; font-size: 0.7rem; color: #555; background: #f9fdfe;
}
.gh-mock-invite-btn {
    background: var(--gh-primary); color: #fff;
    border: none; border-radius: 7px;
    padding: 6px 14px; font-size: 0.7rem; font-weight: 600; cursor: default;
    white-space: nowrap;
}
.gh-mock-invite-divider { height: 1px; background: #f0f0f0; margin: 8px 0; }
.gh-mock-invite-label { font-size: 0.65rem; color: #999; margin-bottom: 8px; }
.gh-mock-invite-user {
    display: flex; align-items: center; gap: 8px;
    padding: 5px 0;
}
.gh-mock-av {
    width: 26px; height: 26px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.6rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.gh-mock-user-email { flex: 1; font-size: 0.68rem; color: #333; }
.gh-mock-role {
    font-size: 0.65rem; color: #666;
    display: flex; align-items: center; gap: 2px;
    background: #f5f5f5; padding: 3px 8px; border-radius: 20px;
}
.gh-mock-role i { font-size: 0.6rem; }

/* AI Generate mockup */
.gh-mock-ai {
    background: #fff;
    border: 1px solid rgba(0,151,178,0.22);
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 10px;
    flex: 1;
}
.gh-mock-ai-divider { height: 1px; background: #f0f0f0; margin: 10px 0 8px; }
.gh-mock-ai-label { font-size: 0.65rem; color: #999; margin-bottom: 8px; }
.gh-mock-ai-prompt {
    display: flex; align-items: center; gap: 7px;
    padding: 5px 0; font-size: 0.68rem; color: #555;
    border-bottom: 1px dashed #f0f0f0;
}
.gh-mock-ai-prompt:last-child { border-bottom: none; }
.gh-mock-ai-prompt i { color: #bbb; font-size: 0.7rem; flex-shrink: 0; }
.gh-mock-ai-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 10px;
}
.gh-mock-ai-title {
    font-size: 0.78rem; font-weight: 700; color: #111;
}
.gh-mock-ai-box {
    border: 1.5px solid var(--gh-primary); border-radius: 8px;
    padding: 10px 12px;
    background: #f9fdfe;
    min-height: 80px;
    display: flex; flex-direction: column; justify-content: space-between;
}
.gh-mock-ai-cursor {
    font-size: 0.75rem; color: var(--gh-primary); font-weight: 300; line-height: 1;
}
.gh-mock-ai-hint {
    font-size: 0.71rem; color: #bbb; margin-top: 2px;
}
.gh-mock-ai-footer {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 10px; padding-top: 8px; border-top: 1px solid #eee;
}
.gh-mock-ai-types {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.62rem; color: #888;
}
.gh-mock-ai-spark {
    color: var(--gh-primary); font-size: 0.7rem;
}
.gh-mock-ai-send {
    background: none; border: none;
    color: #bbb; font-size: 0.85rem; cursor: default;
    display: flex; align-items: center;
}
/* AI chip active state */
.gh-ai-chip {
    padding: 2px 7px;
    border-radius: 4px;
    transition: background 0.25s ease, color 0.25s ease;
    cursor: default;
}
.gh-ai-chip.active {
    background: var(--gh-primary);
    color: #fff;
}
/* Typing area */
.gh-ai-typing-wrap {
    min-height: 28px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    word-break: break-word;
}
.gh-ai-typing-text {
    font-size: 0.72rem;
    color: #333;
    line-height: 1.5;
}
@keyframes ghCursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
#ghAiCursor {
    animation: ghCursorBlink 1s step-end infinite;
    font-size: 0.75rem;
    color: var(--gh-primary);
}
/* Fake mouse cursor */
.gh-ai-fake-cursor {
    position: absolute;
    pointer-events: none;
    z-index: 20;
    opacity: 0;
    transition: left 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), top 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.25s ease;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.25));
}
.gh-ai-fake-cursor.visible { opacity: 1; }

.gh-tool-card h4 {
    margin: 0;
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1.08rem;
    color: #0d3640;
}

.gh-tool-card p {
    margin: 5px 0 0;
    color: var(--gh-muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

.gh-productivity {
    border-radius: var(--gh-radius-lg);
    padding: clamp(16px, 2.8vw, 26px);
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    align-items: center;
    width: min(1200px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 26px;
    margin-top: 20px;
    border-radius: 15px;
}

.gh-productivity-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.gh-productivity-head h3 {
    margin: 0;
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: clamp(1.32rem, 2.5vw, 4rem);
}

.gh-productivity-head p {
    margin: 8px 0 0;
    color: var(--gh-muted);
    font-size: 0.9rem;
}

.gh-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.gh-feature-card {
    border-radius: 12px;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s ease;
}
.gh-feature-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.gh-feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #006b80;
    background: rgba(0, 151, 178, 0.14);
    margin-bottom: 8px;
}

.gh-feature-card h5 {
    margin: 0;
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: #0c3640;
}

.gh-feature-card p {
    margin: 4px 0 0;
    font-size: 0.8rem;
    color: var(--gh-muted);
    line-height: 1.46;
}

.gh-pricing-toggle {
    width: fit-content;
    margin: 14px auto 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 151, 178, 0.21);
    background: rgba(255, 255, 255, 0.84);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gh-pricing-toggle .label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #38626d;
}

.gh-pricing-toggle .save {
    font-size: 0.69rem;
    color: #0c6c7f;
    border-radius: 999px;
    background: rgba(0, 151, 178, 0.16);
    padding: 4px 8px;
    font-weight: 700;
}

.gh-switch {
    position: relative;
    width: 45px;
    height: 24px;
}

.gh-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.gh-slider {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: rgba(0, 151, 178, 0.26);
    cursor: pointer;
    transition: all 0.2s ease;
}

.gh-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.gh-switch input:checked + .gh-slider {
    background: var(--gh-primary);
}

.gh-switch input:checked + .gh-slider::before {
    transform: translateX(21px);
}

.gh-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 11px;
}

.gh-plan {
    border-radius: 14px;
    padding: 14px;
    display: grid;
    gap: 9px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(0, 151, 178, 0.21);
}

.gh-plan.highlight {
    border-color: rgba(0, 151, 178, 0.47);
    box-shadow: 0 12px 24px rgba(0, 151, 178, 0.16);
    transform: translateY(-4px);
}

.gh-plan-label {
    width: fit-content;
    border-radius: 999px;
    padding: 4px 9px;
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #ffffff;
    background: linear-gradient(145deg, var(--gh-primary) 0%, #00b4d0 100%);
}

.gh-plan h4 {
    margin: 0;
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: 0.98rem;
    color: #0d3540;
}

.gh-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.gh-price strong {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.85rem;
    line-height: 1;
}

.gh-price span {
    font-size: 0.8rem;
    color: #587882;
}

.gh-plan p {
    margin: 0;
    font-size: 0.82rem;
    color: var(--gh-muted);
}

.gh-plan ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}

.gh-plan ul li {
    position: relative;
    padding-left: 16px;
    color: #3b636d;
    font-size: 0.79rem;
    line-height: 1.3;
}

.gh-plan ul li::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    left: 0;
    top: 4px;
    background: rgba(0, 151, 178, 0.72);
}

.gh-faq {
    width: min(930px, 100%);
    margin: 0 auto;
}

.gh-faq-list {
    display: grid;
    gap: 9px;
}

.gh-faq-item {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(0, 151, 178, 0.2);
    border-radius: 12px;
    overflow: hidden;
}

.gh-faq-item summary {
    list-style: none;
    padding: 14px 15px;
    font-size: 0.89rem;
    font-weight: 700;
    color: #0f4551;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gh-faq-item summary::-webkit-details-marker {
    display: none;
}

.gh-faq-item summary::after {
    content: '+';
    color: var(--gh-primary);
    font-size: 1rem;
}

.gh-faq-item[open] summary::after {
    content: '-';
}

.gh-faq-item p {
    margin: 0;
    padding: 0 15px 14px;
    color: var(--gh-muted);
    font-size: 0.83rem;
    line-height: 1.56;
}

.gh-question {
    margin-top: 10px;
    border-radius: 12px;
    border: 1px solid rgba(0, 151, 178, 0.24);
    background: rgba(255, 255, 255, 0.86);
    padding: 11px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.gh-question input {
    flex: 1;
    min-width: 220px;
    border: 1px solid rgba(0, 151, 178, 0.23);
    border-radius: 10px;
    padding: 9px 12px;
    font-size: 0.84rem;
    outline: none;
}

.gh-cta {
    border-radius: 20px;
    border: 1px solid rgba(0, 151, 178, 0.33);
    background:
        radial-gradient(55% 60% at 8% 15%, rgba(255, 255, 255, 0.31), rgba(255, 255, 255, 0) 60%),
        linear-gradient(145deg, rgba(0, 151, 178, 0.97) 0%, rgba(0, 190, 220, 0.94) 100%);
    box-shadow: 0 18px 36px rgba(0, 121, 143, 0.25);
    padding: clamp(20px, 4vw, 34px);
    text-align: center;
    color: #ffffff;
}

.gh-cta h3 {
    margin: 0;
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.55rem, 3.2vw, 2.3rem);
    font-weight: 600;
}

.gh-cta p {
    margin: 8px 0 16px;
    color: rgba(255, 255, 255, 0.91);
}

.gh-cta .gh-btn-light {
    border-color: rgba(255, 255, 255, 0.46);
    color: #0c6e80;
}

@media (max-width: 1080px) {
    .gh-wrap {
        width: min(1080px, 100%);
    }

    .gh-prompt-shell {
        width: min(910px, 100%);
    }

    .gh-builder-body {
        grid-template-columns: 160px 1fr 180px;
        height: 420px;
    }

    .gh-editor-bp-group {
        gap: 2px;
    }

    .gh-editor-bp {
        font-size: 0.58rem;
        padding: 2px 5px;
    }

    .gh-showcase-menu-item {
        padding: 12px 18px;
        font-size: 0.78rem;
    }

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

@media (max-width: 860px) {
    .gh-home {
        padding-bottom: 24px;
    }

    .gh-hero {
        padding: 24px 12px 20px;
    }

    .gh-hero-copy .gh-kicker {
        font-size: 0.76rem;
    }

    .gh-hero-copy h1 {
        font-size: clamp(1.92rem, 7vw, 2.9rem);
    }

    .gh-hero-copy p {
        font-size: 0.93rem;
        max-width: 620px;
    }

    .gh-techstack {
        font-size: 0.8rem;
    }

    .gh-prompt-composer {
        min-height: 170px;
    }

    .gh-prompt-input {
        min-height: 120px;
        font-size: 0.92rem;
    }

    .gh-chip {
        font-size: 0.84rem;
    }

    .gh-builder-body {
        grid-template-columns: 140px 1fr 0;
        height: 360px;
    }

    .gh-builder-panel-right {
        display: none;
    }

    .gh-seo-dashboard-bar,
    .gh-seo-dash-content {
        display: none !important;
    }

    .gh-browser-chrome.seo-mode .gh-editor-toolbar,
    .gh-browser-chrome.seo-mode .gh-editor-subtoolbar {
        display: flex;
    }

    .gh-editor-toolbar {
        flex-wrap: wrap;
        gap: 4px;
    }

    .gh-editor-bp-group {
        display: none;
    }

    .gh-showcase-menu-item {
        padding: 11px 14px;
        font-size: 0.74rem;
    }

    .gh-tools-feature {
        padding: 20px;
    }

    .gh-tools-subgrid {
        grid-template-columns: 1fr;
    }

    .gh-feature-grid {
        grid-template-columns: 1fr;
    }

    .gh-plan-grid {
        grid-template-columns: 1fr;
    }

    .gh-productivity-head {
        flex-direction: column;
    }

    .gh-plan.highlight {
        transform: none;
    }
}

@media (max-width: 560px) {
    .gh-wrap {
        gap: 20px;
    }

    .gh-hero {
        border-radius: 18px;
    }

    .gh-yc-pill {
        font-size: 0.77rem;
        padding: 6px 10px;
    }

    .gh-platform-toggle {
        width: 100%;
        justify-content: center;
    }

    .gh-platform-btn {
        padding: 7px 11px;
        font-size: 0.73rem;
    }

    .gh-hero-copy h1 {
        font-size: 1.85rem;
    }

    .gh-hero-copy p {
        font-size: 0.88rem;
    }

    .gh-prompt-shell {
        border-radius: 18px;
    }

    .gh-prompt-surface {
        border-radius: 16px;
    }

    .gh-prompt-composer {
        min-height: 142px;
        padding: 12px 12px 10px;
    }

    .gh-prompt-input {
        min-height: 92px;
        font-size: 0.86rem;
    }

    .gh-prompt-toolbar {
        padding: 8px 9px 10px;
    }

    .gh-icon-btn,
    .gh-send-btn {
        width: 38px;
        height: 38px;
    }

    .gh-prompt-chips {
        justify-content: flex-start;
        padding: 8px;
        gap: 6px;
    }

    .gh-chip {
        font-size: 0.72rem;
        border-radius: 9px;
        padding: 7px 9px;
        gap: 4px;
    }

    .gh-builder-body {
        grid-template-columns: 1fr;
        height: auto;
    }

    .gh-builder-panel-left,
    .gh-builder-panel-right {
        display: none;
    }

    .gh-builder-canvas {
        min-height: 220px;
    }

    .gh-editor-subtoolbar {
        flex-wrap: wrap;
    }

    .gh-showcase-menu {
        flex-wrap: wrap;
        border-radius: 12px;
        padding: 2px 4px;
    }

    .gh-showcase-menu-item {
        padding: 10px 12px;
        font-size: 0.72rem;
        gap: 5px;
    }

    .gh-showcase-menu-item i {
        font-size: 0.88rem;
    }

    .gh-showcase-connector {
        height: 18px;
    }
}

/* ═══════════════════════════════════════════════════════
   Multi-App Pricing Cards  (gh-mp-*)
   Used on: guest-home.ejs · services.ejs
   ═══════════════════════════════════════════════════════ */
.gh-mp-tab-bar {
    display: flex; gap: 4px; background: #f1f5f9;
    border-radius: 999px; padding: 4px;
    width: fit-content; margin: 0 auto 28px;
}
.gh-mp-tab-btn {
    padding: 9px 20px; border-radius: 999px; border: none;
    background: transparent; font-size: 0.84rem; font-weight: 600;
    color: #64748b; cursor: pointer; transition: all 0.2s;
    white-space: nowrap; font-family: inherit;
}
.gh-mp-tab-btn.active { background: #0f172a; color: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.18); }
.gh-mp-tab-panel { display: none; }
.gh-mp-tab-panel.active { display: block; }
.gh-mp-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; align-items: start; }
.gh-mp-grid-2 { grid-template-columns: repeat(2,1fr) !important; }
.gh-mp-card {
    background: #fff; border: 1.5px solid #e2e8f0; border-radius: 16px;
    padding: 22px 20px; display: flex; flex-direction: column;
    position: relative; transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.gh-mp-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.09); transform: translateY(-2px); }
.gh-mp-card.popular { border-color: #0097b2; border-color: var(--gh-primary); box-shadow: 0 0 0 1px var(--gh-primary), 0 8px 28px rgba(0,151,178,0.14); padding-top: 22px; overflow: visible; }
.gh-mp-popular-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: #0097b2 !important;
    color: #fff !important; font-size: 0.67rem; font-weight: 700;
    padding: 5px 16px; border-radius: 999px;
    white-space: nowrap; letter-spacing: 0.06em; text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0,151,178,0.35);
}
.gh-mp-plan-name { font-size: 1rem; font-weight: 700; color: #0f172a; margin: 0 0 4px; }
.gh-mp-plan-desc { font-size: 0.76rem; color: #64748b; margin: 0 0 14px; line-height: 1.5; }
.gh-mp-price-row { display: flex; align-items: flex-end; gap: 2px; margin-bottom: 8px; }
.gh-mp-price-sym { font-size: 1.25rem; font-weight: 700; color: #1e293b; line-height: 1.7; }
.gh-mp-price-num { font-size: 2.6rem; font-weight: 800; color: #0f172a; line-height: 1; }
.gh-mp-price-unit { font-size: 0.75rem; color: #94a3b8; margin-bottom: 6px; padding-left: 2px; }
.gh-mp-tenure-sel {
    width: 100%; border: 1.5px solid #e2e8f0; border-radius: 8px;
    padding: 8px 32px 8px 12px; font-size: 0.78rem; color: #334155;
    background: #f8fafc url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 11px center;
    appearance: none; cursor: pointer; margin-bottom: 6px; outline: none;
}
.gh-mp-tenure-sel:focus { border-color: var(--gh-primary); }
.gh-mp-savings { font-size: 0.72rem; color: #10b981; font-weight: 600; margin-bottom: 14px; min-height: 16px; }
.gh-mp-divider { height: 1px; background: #f1f5f9; margin: 12px 0; }
.gh-mp-feat-label { font-size: 0.7rem; font-weight: 700; color: #64748b; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; }
.gh-mp-feat-list { list-style: none; padding: 0; margin: 0 0 14px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.gh-mp-feat-item { display: flex; align-items: center; gap: 8px; font-size: 0.79rem; color: #334155; }
.gh-mp-feat-item i { color: var(--gh-primary); font-size: 0.9rem; flex-shrink: 0; }
.gh-mp-addons { border: 1px solid #e2e8f0; border-radius: 10px; overflow: hidden; margin-bottom: 14px; }
.gh-mp-addons summary {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 13px; font-size: 0.78rem; font-weight: 600; color: #334155;
    cursor: pointer; background: #f8fafc; list-style: none; user-select: none;
}
.gh-mp-addons summary::-webkit-details-marker { display: none; }
.gh-mp-chevron { font-size: 0.8rem; color: #94a3b8; transition: transform 0.22s; flex-shrink: 0; }
.gh-mp-addons[open] .gh-mp-chevron { transform: rotate(180deg); }
.gh-mp-addon-body { border-top: 1px solid #e2e8f0; background: #fff; max-height: 220px; overflow-y: auto; }
.gh-mp-addon-row { display: flex; align-items: flex-start; gap: 10px; padding: 8px 13px; border-bottom: 1px solid #f8fafc; font-size: 0.73rem; }
.gh-mp-addon-row:last-child { border-bottom: none; }
.gh-mp-addon-info { flex: 1; }
.gh-mp-addon-name { font-weight: 600; color: #1e293b; margin-bottom: 2px; }
.gh-mp-addon-desc { color: #94a3b8; font-size: 0.68rem; line-height: 1.4; }
.gh-mp-addon-badge { font-size: 0.64rem; font-weight: 700; padding: 2px 8px; border-radius: 999px; white-space: nowrap; flex-shrink: 0; margin-top: 2px; }
.gh-mp-badge-free { background: #dcfce7; color: #15803d; }
.gh-mp-badge-premium { background: #fef3c7; color: #b45309; }
.gh-mp-badge-included { background: rgba(0,151,178,0.12); color: #007a94; }
.gh-mp-cta {
    display: flex; align-items: center; justify-content: center; width: 100%;
    padding: 11px; border-radius: 10px; border: 1.5px solid #e2e8f0;
    font-size: 0.84rem; font-weight: 700; cursor: pointer; text-decoration: none;
    background: #f8fafc; color: #334155 !important; transition: all 0.2s; font-family: inherit; gap: 6px;
    box-sizing: border-box;
}
.gh-mp-cta.primary {
    background: linear-gradient(135deg, #0097b2 0%, #00c4d4 100%) !important;
    color: #fff !important; border-color: transparent; box-shadow: 0 4px 14px rgba(0,151,178,0.28);
}
.gh-mp-cta:hover { opacity: 0.88; transform: translateY(-1px); text-decoration: none; color: #334155 !important; }
.gh-mp-cta.primary:hover { color: #fff !important; }
.gh-mp-apps-strip { text-align: center; padding: 20px 0 0; font-size: 0.78rem; color: #94a3b8; }
.gh-mp-apps-strip strong { color: var(--gh-primary); font-weight: 600; }
.gh-mp-apps-strip a { color: var(--gh-primary); text-decoration: none; font-weight: 600; }
.gh-mp-apps-strip a:hover { text-decoration: underline; }
.hp-card .gh-mp-tab-bar { margin-bottom: 20px; }
@media (max-width: 1200px) { .gh-mp-grid:not(.gh-mp-grid-2) { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) {
    .gh-mp-grid, .gh-mp-grid-2 { grid-template-columns: 1fr !important; }
    .gh-mp-tab-btn { padding: 8px 14px; font-size: 0.78rem; }
}
    .gh-browser-chrome {
        border-radius: 12px;
    }

    .gh-question input {
        min-width: 100%;
    }
}
