:root {
    --g-blue: #4285F4;
    --g-red: #EA4335;
    --g-yellow: #FBBC05;
    --g-green: #34A853;
    --g-dark: #0f172a;
    --g-card: #1e293b;
    --g-border: rgba(66,133,244,0.2);
    --g-accent: #4285F4;
}

.gs-hero {
    background: linear-gradient(135deg, #0f172a 0%, #0d1a2e 60%, #0f172a 100%);
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
}
.gs-hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(66,133,244,0.07) 0%, rgba(234,67,53,0.04) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.gs-hero::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(52,168,83,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Google colour bar underline on headings */
.gs-google-bar {
    display: inline-block;
    height: 4px;
    width: 48px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--g-blue) 0%, var(--g-red) 33%, var(--g-yellow) 66%, var(--g-green) 100%);
    margin-bottom: 0.75rem;
}

.gs-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(66,133,244,0.12);
    border: 1px solid rgba(66,133,244,0.3);
    color: #93c5fd;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    letter-spacing: 0.02em;
}

.gs-pill-badge.expiry {
    background: rgba(251,188,5,0.10);
    border-color: rgba(251,188,5,0.35);
    color: #fde68a;
}

.info-badge-gs {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: rgba(66,133,244,0.1);
    border: 1px solid rgba(66,133,244,0.25);
    color: #fff;
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.disclaimer-box-gs {
    background: rgba(251,188,5,0.08);
    border: 1px solid rgba(251,188,5,0.3);
    border-radius: 10px;
    padding: 0.9rem 1.2rem;
    font-size: 0.82rem;
    color: #fff;
    line-height: 1.6;
    margin-top: 1.5rem;
}
.disclaimer-box-gs a { color: #fde68a; }

.btn-gs {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #4285F4 0%, #1a6cf0 100%);
    color: #fff;
    padding: 0.85rem 1.8rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(66,133,244,0.35);
    white-space: nowrap;
}
.btn-gs:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(66,133,244,0.5);
    color: #fff;
    text-decoration: none;
}

.section-eyebrow-gs {
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--g-blue);
    margin-bottom: 0.6rem;
}

/* Code cards on dark bg */
.gs-code-card {
    background: var(--g-card);
    border: 1px solid var(--g-border);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s;
    height: 100%;
    position: relative;
}
.gs-code-card:hover {
    border-color: rgba(66,133,244,0.5);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    transform: translateY(-3px);
}
.gs-code-chip {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #93c5fd;
    background: rgba(66,133,244,0.1);
    border: 1px solid rgba(66,133,244,0.3);
    border-radius: 8px;
    padding: 0.55rem 0.85rem;
    margin-bottom: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    word-break: break-all;
    line-height: 1.5;
}
.gs-code-chip:hover {
    background: rgba(66,133,244,0.2);
    border-color: rgba(66,133,244,0.5);
}
.gs-code-chip.copied {
    background: rgba(52,168,83,0.15);
    border-color: rgba(52,168,83,0.4);
    color: #86efac;
}

/* Pixel product cards */
.pixel-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.25s;
    height: 100%;
}
.pixel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
    border-color: #bfdbfe;
}
.pixel-card-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}
.pixel-card-body { padding: 1.25rem 1.4rem 1.5rem; }

/* FAQ */
.faq-item-gs {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0.75rem;
    transition: border-color 0.2s;
}
.faq-item-gs:hover { border-color: #bfdbfe; }
.faq-question-gs {
    background: #fff;
    padding: 1.1rem 1.4rem;
    cursor: pointer;
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
    display: flex; justify-content: space-between; align-items: center;
    gap: 1rem;
    border: none; width: 100%; text-align: left;
    transition: background 0.15s;
}
.faq-question-gs:hover { background: #eff6ff; }
.faq-question-gs[aria-expanded="true"] { background: #eff6ff; color: #1d4ed8; }
.faq-chevron-gs { transition: transform 0.25s; color: #94a3b8; font-size: 0.85rem; flex-shrink:0; }
.faq-question-gs[aria-expanded="true"] .faq-chevron-gs { transform: rotate(180deg); color: var(--g-blue); }
.faq-answer-gs {
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
    padding: 1rem 1.4rem;
    font-size: 0.9rem;
    line-height: 1.75;
    color: #475569;
}

.no-codes-notice {
    background: #fef9c3;
    border: 1px solid #fde047;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    text-align: center;
    color: #713f12;
}
