/* ============================================================
   HytHost — shared premium DNA for individual game pages.
   Used by: samp.tpl, fivem.tpl, palworld.tpl (and any future
   game pages that don't need the full CS2 configurator).
   All classes prefixed .gpm-* ("game page modern").
   Per-game theming via CSS custom properties on .gpm-page.
   ============================================================ */

/* ===================== TOKENS ===================== */
.gpm-page {
    /* Per-game accent — override on the wrapper element. */
    --gpm-accent: #7c3aed;
    --gpm-accent-light: #b794ff;
    --gpm-accent-soft: rgba(124, 58, 237, 0.18);
    --gpm-accent-border: rgba(124, 58, 237, 0.35);
    --gpm-accent-glow: rgba(124, 58, 237, 0.55);
    --gpm-success: #59f58c;
    --gpm-success-text: #b6f5cc;
    --gpm-warn: #f0b860;
    --gpm-bg-1: #0c1220;
    --gpm-bg-2: #14182a;
}

.gpm-eyebrow {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 999px;
    background: var(--gpm-accent-soft);
    border: 1px solid var(--gpm-accent-border);
    color: var(--gpm-accent-light);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.gpm-section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}
.gpm-section-title {
    margin: 0 0 14px;
    font-size: clamp(1.85rem, 3.4vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.018em;
    line-height: 1.15;
}
.gpm-section-title.left { text-align: left; }
.gpm-section-sub {
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    line-height: 1.6;
}
.gpm-section-sub.left { text-align: left; margin: 0; }

.gpm-section { padding: 90px 0; }
.gpm-section-alt {
    background:
        radial-gradient(ellipse at 50% 0%, var(--gpm-accent-soft), transparent 60%),
        rgba(255, 255, 255, 0.012);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* ===================== CTA BUTTONS ===================== */
.gpm-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: 10px;
    background: var(--gpm-accent);
    color: #fff !important;
    font-weight: 600;
    font-size: 0.98rem;
    text-decoration: none !important;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 -1px 0 rgba(0, 0, 0, 0.18),
        0 8px 24px -10px var(--gpm-accent-glow),
        0 1px 2px rgba(0, 0, 0, 0.35);
    transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
    letter-spacing: 0.01em;
}
.gpm-cta-primary:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
    color: #fff !important;
    text-decoration: none !important;
}
.gpm-cta-primary.full { width: 100%; justify-content: center; }
.gpm-cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 600;
    font-size: 0.98rem;
    text-decoration: none !important;
    border: 1px solid transparent;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.gpm-cta-ghost .arrow-icon { display: inline-block; transition: transform 0.22s cubic-bezier(.4,0,.2,1); }
.gpm-cta-ghost:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    text-decoration: none !important;
}
.gpm-cta-ghost:hover .arrow-icon { transform: translateY(3px); }

/* ===================== HERO ===================== */
.gpm-hero {
    position: relative;
    padding: 80px 0 90px;
    background:
        radial-gradient(ellipse at 20% 30%, var(--gpm-accent-soft), transparent 55%),
        radial-gradient(ellipse at 80% 70%, rgba(89, 245, 140, 0.12), transparent 55%),
        linear-gradient(180deg, var(--gpm-bg-1) 0%, var(--gpm-bg-2) 100%);
    overflow: hidden;
}
.gpm-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><circle cx='2' cy='2' r='1' fill='white' opacity='0.25'/><circle cx='60' cy='30' r='0.8' fill='white' opacity='0.2'/><circle cx='100' cy='80' r='1.1' fill='white' opacity='0.3'/><circle cx='30' cy='90' r='0.9' fill='white' opacity='0.18'/></svg>");
    opacity: 0.5;
    pointer-events: none;
}
.gpm-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
}
.gpm-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(89, 245, 140, 0.1);
    border: 1px solid rgba(89, 245, 140, 0.3);
    color: var(--gpm-success-text);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 22px;
}
.gpm-hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.05;
    margin: 0 0 20px;
    color: #fff;
    letter-spacing: -0.025em;
}
.gpm-hero h1 .accent {
    background: linear-gradient(120deg, #d4baff, var(--gpm-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gpm-hero-lead {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 540px;
    margin: 0 0 30px;
    line-height: 1.6;
}
.gpm-hero-ctas {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}
.gpm-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 4px;
    padding: 0;
    list-style: none;
}
.gpm-hero-badges li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.86rem;
    font-weight: 500;
}
.gpm-hero-badges i { color: var(--gpm-accent-light); font-size: 0.85rem; }

/* Hero visual card with stats + game thumb */
.gpm-hero-visual { position: relative; }
.gpm-hero-visual::before {
    content: '';
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse at center, var(--gpm-accent-soft), transparent 60%);
    filter: blur(20px);
    pointer-events: none;
}
.gpm-hero-card {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8);
}
.gpm-hero-card-thumb {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}
.gpm-hero-card-thumb img {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    padding: 8px;
    box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.5);
}
.gpm-hero-card-thumb-text { flex: 1; }
.gpm-hero-card-thumb-text h3 { color: #fff; margin: 0 0 4px; font-size: 1.3rem; font-weight: 700; }
.gpm-hero-card-thumb-text p { margin: 0; color: rgba(255, 255, 255, 0.6); font-size: 0.92rem; }

.gpm-hero-card-kpis {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}
.gpm-hero-card-kpi {
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.gpm-hero-card-kpi-val {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 4px;
}
.gpm-hero-card-kpi-label {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}
.gpm-hero-card-status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(89, 245, 140, 0.08);
    border: 1px solid rgba(89, 245, 140, 0.25);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
}
.gpm-hero-card-status .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gpm-success);
    box-shadow: 0 0 8px var(--gpm-success);
    animation: gpm-pulse 2s infinite;
}
@keyframes gpm-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(89, 245, 140, 0.6); }
    70%  { box-shadow: 0 0 0 8px rgba(89, 245, 140, 0); }
    100% { box-shadow: 0 0 0 0 rgba(89, 245, 140, 0); }
}

@media (max-width: 991px) {
    .gpm-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .gpm-hero-lead { max-width: none; }
}

/* ===================== TRUST STRIP ===================== */
.gpm-trust {
    padding: 32px 0;
    background: var(--gpm-bg-1);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.gpm-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: center;
}
.gpm-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    justify-content: center;
    text-align: center;
}
.gpm-trust-item i { color: var(--gpm-accent); font-size: 1.05rem; flex-shrink: 0; }
@media (max-width: 991px) { .gpm-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (max-width: 575px) { .gpm-trust-grid { grid-template-columns: 1fr; } }

/* ===================== FEATURES BENTO ===================== */
.gpm-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.gpm-feature {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 30px 28px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}
.gpm-feature::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, transparent 70%, var(--gpm-accent-soft) 100%);
    opacity: 0.5;
    pointer-events: none;
}
.gpm-feature:hover {
    transform: translateY(-4px);
    border-color: var(--gpm-accent-border);
    box-shadow: 0 20px 50px -22px var(--gpm-accent-glow);
}
.gpm-feature-wide { grid-column: span 2; }
.gpm-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--gpm-accent-soft);
    color: var(--gpm-accent-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}
.gpm-feature h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 10px;
    position: relative;
    z-index: 1;
}
.gpm-feature p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}
@media (max-width: 991px) {
    .gpm-features { grid-template-columns: repeat(2, 1fr); }
    .gpm-feature-wide { grid-column: span 2; }
}
@media (max-width: 575px) {
    .gpm-features { grid-template-columns: 1fr; }
    .gpm-feature-wide { grid-column: span 1; }
}

/* ===================== PLANS ===================== */
.gpm-plans {
    display: grid;
    gap: 22px;
    align-items: stretch;
}
.gpm-plans.cols-1 { grid-template-columns: minmax(0, 460px); justify-content: center; }
.gpm-plans.cols-2 { grid-template-columns: repeat(2, 1fr); max-width: 920px; margin: 0 auto; }
.gpm-plans.cols-3 { grid-template-columns: repeat(3, 1fr); }
.gpm-plans.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 991px) {
    .gpm-plans.cols-3,
    .gpm-plans.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .gpm-plans.cols-2,
    .gpm-plans.cols-3,
    .gpm-plans.cols-4 { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

.gpm-plan {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 32px 28px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.gpm-plan:hover {
    transform: translateY(-5px);
    border-color: var(--gpm-accent-border);
    box-shadow: 0 24px 55px -22px var(--gpm-accent-glow);
}
.gpm-plan-featured {
    border-color: var(--gpm-accent-border);
    background:
        radial-gradient(ellipse at 50% 0%, var(--gpm-accent-soft), transparent 70%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    box-shadow: 0 18px 50px -20px var(--gpm-accent-glow);
}
.gpm-plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--gpm-accent);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 8px 18px -8px var(--gpm-accent-glow);
}
.gpm-plan-tag {
    display: inline-block;
    align-self: flex-start;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.gpm-plan h3 {
    color: #fff;
    font-size: 1.55rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.01em;
}
.gpm-plan-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    color: #fff;
}
.gpm-plan-price .currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gpm-accent-light);
}
.gpm-plan-price .amount {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}
.gpm-plan-price .period {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.92rem;
    font-weight: 500;
    margin-left: 4px;
}
.gpm-plan-specs {
    list-style: none;
    padding: 18px 0 0;
    margin: 0 0 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.gpm-plan-specs li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.93rem;
    line-height: 1.4;
}
.gpm-plan-specs li i {
    color: var(--gpm-success);
    flex-shrink: 0;
    margin-top: 4px;
    font-size: 0.82rem;
}
.gpm-plan-cta {
    margin-top: auto;
}

/* ===================== PANEL PREVIEW ===================== */
.gpm-panel-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
}
.gpm-panel-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
}
.gpm-panel-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.96rem;
    line-height: 1.4;
}
.gpm-panel-features li i {
    color: var(--gpm-success);
    flex-shrink: 0;
    margin-top: 3px;
    font-size: 0.92rem;
}
.gpm-panel-visual { position: relative; }
.gpm-panel-visual::before {
    content: '';
    position: absolute;
    inset: -30px;
    background:
        radial-gradient(ellipse at 30% 50%, var(--gpm-accent-soft), transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(89, 245, 140, 0.12), transparent 60%);
    filter: blur(20px);
    pointer-events: none;
}
.gpm-panel-frame {
    position: relative;
    z-index: 1;
    background: #0a0d1f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8), 0 0 0 1px var(--gpm-accent-border);
}
.gpm-panel-frame-bar {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.gpm-panel-frame-bar span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}
.gpm-panel-frame-bar span.red    { background: #ff5f56; }
.gpm-panel-frame-bar span.yellow { background: #ffbd2e; }
.gpm-panel-frame-bar span.green  { background: #28c941; }
.gpm-panel-frame img { display: block; width: 100%; height: auto; }
@media (max-width: 991px) {
    .gpm-panel-grid { grid-template-columns: 1fr; gap: 36px; }
    .gpm-panel-features { grid-template-columns: 1fr; }
}

/* ===================== DDOS SECTION ===================== */
.gpm-ddos-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}
.gpm-ddos-shield {
    position: relative;
    aspect-ratio: 1;
    max-width: 380px;
    margin: 0 auto;
    border-radius: 28px;
    background:
        radial-gradient(circle at 50% 50%, var(--gpm-accent-soft) 0%, transparent 70%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--gpm-accent-border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.gpm-ddos-shield i {
    font-size: 8rem;
    background: linear-gradient(135deg, var(--gpm-accent-light), var(--gpm-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 16px 40px var(--gpm-accent-glow));
}
.gpm-ddos-shield::before,
.gpm-ddos-shield::after {
    content: '';
    position: absolute;
    border: 1px solid var(--gpm-accent-border);
    border-radius: 50%;
    animation: gpm-pulse-ring 3s infinite;
}
.gpm-ddos-shield::before { inset: 40px; }
.gpm-ddos-shield::after  { inset: 80px; animation-delay: 1s; }
@keyframes gpm-pulse-ring {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50%      { opacity: 0.2; transform: scale(1.05); }
}
.gpm-ddos-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 22px;
}
.gpm-ddos-stat {
    padding: 16px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.gpm-ddos-stat-val {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 4px;
    line-height: 1;
}
.gpm-ddos-stat-label {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
@media (max-width: 991px) {
    .gpm-ddos-grid { grid-template-columns: 1fr; gap: 36px; }
    .gpm-ddos-shield { max-width: 260px; }
    .gpm-ddos-shield i { font-size: 5rem; }
}

/* ===================== FAQ ===================== */
.gpm-faq-wrap { max-width: 820px; margin: 0 auto; }
.gpm-faq { border-top: 1px solid rgba(255, 255, 255, 0.06); }
.gpm-faq-item { border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.gpm-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 4px;
    color: #fff !important;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none !important;
    cursor: pointer;
    transition: color 0.2s ease;
}
.gpm-faq-q:hover { color: var(--gpm-accent-light) !important; }
.gpm-faq-q i {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    transition: transform 0.25s ease, color 0.2s ease;
    flex-shrink: 0;
}
.gpm-faq-q:not(.collapsed) i { transform: rotate(180deg); color: var(--gpm-accent-light); }
.gpm-faq-a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.98rem;
    line-height: 1.65;
    padding: 0 4px 22px;
}

/* ===================== FINAL CTA ===================== */
.gpm-final-cta {
    background:
        radial-gradient(ellipse at 50% 0%, var(--gpm-accent-soft), transparent 70%),
        linear-gradient(180deg, var(--gpm-bg-2), var(--gpm-bg-1));
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}
.gpm-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><circle cx='2' cy='2' r='1' fill='white' opacity='0.18'/><circle cx='60' cy='30' r='0.8' fill='white' opacity='0.15'/><circle cx='100' cy='80' r='1.1' fill='white' opacity='0.22'/><circle cx='30' cy='90' r='0.9' fill='white' opacity='0.14'/></svg>");
    opacity: 0.4;
    pointer-events: none;
}
.gpm-final-cta > .container { position: relative; z-index: 1; }
.gpm-final-cta h2 {
    color: #fff;
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    font-weight: 800;
    margin: 14px 0 14px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.gpm-final-cta p {
    color: rgba(255, 255, 255, 0.78);
    max-width: 600px;
    margin: 0 auto 32px;
    font-size: 1.05rem;
    line-height: 1.55;
}
.gpm-final-cta-buttons {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 767px) {
    .gpm-section { padding: 64px 0; }
    .gpm-section-head { margin-bottom: 40px; }
    .gpm-final-cta { padding: 76px 0; }
    .gpm-hero { padding: 50px 0 70px; }
    .gpm-cta-primary,
    .gpm-cta-ghost { flex: 1 1 100%; justify-content: center; }
}
