:root {
    --gp-bg: #ffffff;
    --gp-surface: #ffffff;
    --gp-text: #1f2933;
    --gp-muted: #6b7280;
    --gp-border: #e5e7eb;
    --gp-primary: #0d6efd;
    --gp-primary-dark: #0b5ed7;
    --gp-success-bg: #dff7ea;
    --gp-success-text: #087f5b;
    --gp-dark: #111827;
    --gp-radius-sm: 8px;
    --gp-radius-md: 14px;
    --gp-radius-lg: 20px;
    --gp-shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.06);
    --gp-shadow-md: 0 12px 30px rgba(15, 23, 42, 0.08);
}

body.gp-page {
    background: var(--gp-bg);
    color: var(--gp-text);
    line-height: 1.65;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

.gp-page a {
    text-underline-offset: 0.18em;
}

.gp-page h1,
.gp-page .h1 {
    color: var(--gp-text);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.08;
    overflow-wrap: anywhere;
}

.gp-page h2,
.gp-page .h2,
.gp-page h3,
.gp-page .h3 {
    color: var(--gp-text);
    font-weight: 750;
    letter-spacing: 0;
}

.gp-page .lead,
.gp-hero-lead {
    color: var(--gp-muted) !important;
    font-size: clamp(1.05rem, 1vw + 0.86rem, 1.22rem);
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.gp-page p,
.gp-page .row > * {
    min-width: 0;
}

.gp-page p {
    overflow-wrap: anywhere;
}

.gp-muted,
.gp-page .text-secondary {
    color: var(--gp-muted) !important;
}

.gp-section,
.gp-page .pf-pro-section {
    padding: 4rem 0;
}

.gp-section-sm,
.gp-page .pf-pro-section-tight {
    padding: 2.5rem 0;
}

.gp-section-white,
.gp-page .pf-pro-hero,
.gp-page .pf-demo-showcase,
.gp-page main > section.bg-white {
    background: var(--gp-surface) !important;
}

.gp-section-muted {
    background: var(--gp-surface) !important;
}

.gp-page .bg-light {
    background-color: var(--gp-surface) !important;
}

.gp-site-header {
    background: var(--gp-surface);
    border-bottom: 1px solid var(--gp-border);
}

.gp-page > header.bg-white.border-bottom {
    background: var(--gp-surface) !important;
    border-bottom: 1px solid var(--gp-border) !important;
}

.gp-page > header.bg-white.border-bottom > .container,
.gp-page > header.bg-white.border-bottom > .container-xl {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
}

.gp-page > header.bg-white.border-bottom a.fw-bold {
    color: var(--gp-dark) !important;
    font-weight: 800 !important;
}

.gp-page main > section.border-top,
.gp-page main > section.border-bottom,
.gp-page .pf-pro-hero,
.gp-page .pf-pro-section,
.gp-page .pf-pro-section-tight,
.gp-page .pf-demo-showcase {
    border-top: 0 !important;
    border-bottom: 0 !important;
}

.gp-page main hr {
    border: 0;
    opacity: 0;
}

.gp-header-main {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.4rem;
}

.gp-brand {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--gp-dark);
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0;
}

.gp-brand-logo {
    flex: 0 0 auto;
    width: 3.15rem;
    height: 3.15rem;
    object-fit: contain;
}

.gp-brand:hover,
.gp-brand:focus {
    color: var(--gp-dark);
}

.gp-site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.25rem;
    min-width: 0;
    flex: 1 1 auto;
}

.gp-site-nav-link {
    border-radius: var(--gp-radius-sm);
    color: #4b5563;
    font-size: 0.94rem;
    font-weight: 600;
    line-height: 1.2;
    padding: 0.52rem 0.68rem;
    text-decoration: none;
    white-space: nowrap;
}

.gp-site-nav-link:hover,
.gp-site-nav-link:focus,
.gp-site-nav-link.is-active {
    background: #f1f5f9;
    color: var(--gp-dark);
}

.gp-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    flex: 0 0 auto;
    min-width: 0;
}

.gp-header-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--gp-border);
    border-radius: var(--gp-radius-sm);
    background: #ffffff;
    color: var(--gp-dark);
    box-shadow: none;
}

.gp-header-menu-toggle:focus-visible {
    outline: 3px solid rgba(13, 110, 253, 0.22);
    outline-offset: 2px;
}

.gp-header-menu-icon {
    display: grid;
    gap: 0.28rem;
    width: 1.1rem;
}

.gp-header-menu-icon span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.gp-site-header.is-menu-open .gp-header-menu-icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.gp-site-header.is-menu-open .gp-header-menu-icon span:nth-child(2) {
    opacity: 0;
}

.gp-site-header.is-menu-open .gp-header-menu-icon span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.gp-icon {
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
}

.gp-btn-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.gp-btn-center {
    justify-content: center;
}

.gp-input-with-icon {
    position: relative;
}

.gp-input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    width: 1.05rem;
    height: 1.05rem;
    transform: translateY(-50%);
    color: #64748b;
    pointer-events: none;
}

.gp-page .gp-icon-input {
    padding-left: 2.85rem;
}

.gp-page .btn {
    border-radius: var(--gp-radius-sm);
    font-weight: 600;
    line-height: 1.25;
    padding: 0.62rem 0.95rem;
}

.gp-page .btn-sm {
    padding: 0.42rem 0.72rem;
    font-size: 0.88rem;
}

.gp-page .btn-lg {
    padding: 0.78rem 1.15rem;
    font-size: 1rem;
}

.gp-page .btn-primary {
    background: var(--gp-primary);
    border-color: var(--gp-primary);
    box-shadow: 0 0.35rem 0.8rem rgba(13, 110, 253, 0.12);
}

.gp-page .btn-primary:hover,
.gp-page .btn-primary:focus {
    background: var(--gp-primary-dark);
    border-color: var(--gp-primary-dark);
}

.gp-page .btn-outline-secondary {
    border-color: #cbd5e1;
    color: #334155;
    background: #ffffff;
}

.gp-page .btn-outline-secondary:hover,
.gp-page .btn-outline-secondary:focus {
    background: #f8fafc;
    border-color: #94a3b8;
    color: var(--gp-dark);
}

.btn-gp-dark,
.gp-page .btn-gp-dark,
.gp-page .btn-dark {
    background: var(--gp-dark);
    border-color: var(--gp-dark);
    color: #ffffff;
}

.btn-gp-dark:hover,
.btn-gp-dark:focus,
.gp-page .btn-gp-dark:hover,
.gp-page .btn-gp-dark:focus,
.gp-page .btn-dark:hover,
.gp-page .btn-dark:focus {
    background: #020617;
    border-color: #020617;
    color: #ffffff;
}

.gp-badge,
.gp-eyebrow,
.gp-page .pf-pro-kicker,
.gp-page .badge.text-bg-success {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    padding: 0.36rem 0.72rem;
    background: var(--gp-success-bg) !important;
    color: var(--gp-success-text) !important;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.1;
    text-transform: uppercase;
}

.gp-page .pf-pro-mini-nav {
    display: none;
}

.gp-page main > section.py-5 {
    padding: 4rem 0 !important;
}

.gp-page main > section.py-4 {
    padding: 2.5rem 0 !important;
}

.gp-page main.container,
.gp-page main.container-xl {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}

.gp-page .container {
    max-width: 1140px;
}

.gp-card,
.gp-page .pf-pro-card,
.gp-page .pf-home-map-card,
.gp-page .pf-city-map-card,
.gp-page .pf-nearby-list-panel,
.gp-page main > .card,
.gp-page main .card.border-0.shadow-sm {
    background: var(--gp-surface);
    border: 1px solid var(--gp-border) !important;
    border-radius: var(--gp-radius-md);
    box-shadow: var(--gp-shadow-sm) !important;
}

.gp-card-lg,
.gp-page .pf-pro-hero .pf-pro-card {
    border-radius: var(--gp-radius-lg);
}

.gp-page .pf-pro-hero {
    border-bottom: 0 !important;
}

.gp-page .pf-pro-hero .container,
.gp-page .pf-pro-section .container,
.gp-page .pf-pro-section-tight .container,
.gp-page .pf-demo-showcase .container,
.gp-page footer .container {
    max-width: 1140px;
}

@media (min-width: 1400px) {
    .gp-pro-public-page .pf-pro-hero .container,
    .gp-pro-public-page .pf-pro-section .container,
    .gp-pro-public-page .pf-pro-section-tight .container,
    .gp-pro-public-page .pf-demo-showcase .container {
        max-width: 1320px;
    }
}

.gp-page .pf-pro-feature-icon {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: var(--gp-radius-sm);
    background: #f1f5f9;
    color: var(--gp-dark);
    font-weight: 800;
}

.gp-feature-grid {
    row-gap: 1rem;
}

.gp-feature-card {
    height: 100%;
}

.gp-step,
.gp-page .pf-pro-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
}

.gp-step-number,
.gp-page .pf-pro-step-number {
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    background: var(--gp-primary);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.92rem;
    box-shadow: 0 0.45rem 0.9rem rgba(13, 110, 253, 0.16);
}

.gp-cta-band,
.gp-page .pf-pro-cta-band,
.gp-page .bg-dark.rounded {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%) !important;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--gp-radius-md) !important;
    box-shadow: var(--gp-shadow-md);
}

.gp-cta-band h1,
.gp-cta-band h2,
.gp-cta-band h3,
.gp-cta-band .h1,
.gp-cta-band .h2,
.gp-cta-band .h3,
.gp-page .pf-pro-cta-band h1,
.gp-page .pf-pro-cta-band h2,
.gp-page .pf-pro-cta-band h3,
.gp-page .pf-pro-cta-band .h1,
.gp-page .pf-pro-cta-band .h2,
.gp-page .pf-pro-cta-band .h3,
.gp-page .bg-dark.rounded h1,
.gp-page .bg-dark.rounded h2,
.gp-page .bg-dark.rounded h3,
.gp-page .bg-dark.rounded .h1,
.gp-page .bg-dark.rounded .h2,
.gp-page .bg-dark.rounded .h3 {
    color: #ffffff !important;
}

.gp-cta-band p,
.gp-cta-band .text-white-50,
.gp-page .pf-pro-cta-band p,
.gp-page .pf-pro-cta-band .text-white-50,
.gp-page .bg-dark.rounded p,
.gp-page .bg-dark.rounded .text-white-50 {
    color: rgba(255, 255, 255, 0.82) !important;
}

.gp-cta-band .btn-light,
.gp-page .pf-pro-cta-band .btn-light,
.gp-page .bg-dark.rounded .btn-light {
    color: #111827;
    background: #ffffff;
    border-color: #ffffff;
}

.gp-info-panel {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: var(--gp-radius-md);
    color: #1e3a8a;
}

.gp-page .alert-info {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #1e3a8a;
    border-radius: var(--gp-radius-md);
}

.gp-page .alert-success {
    background: var(--gp-success-bg);
    border-color: #b8efd1;
    color: var(--gp-success-text);
    border-radius: var(--gp-radius-md);
}

.gp-page .accordion-item {
    border-color: var(--gp-border);
}

.gp-page .accordion-button {
    font-weight: 700;
}

.gp-page .pf-demo-phone-frame,
.gp-page .pf-demo-browser-frame {
    box-shadow: var(--gp-shadow-md);
}

.gp-page .pf-demo-device-label {
    border-color: var(--gp-border);
    border-radius: 999px;
    box-shadow: var(--gp-shadow-sm);
}

.gp-page .pf-creator-photo-placeholder {
    border: 1px dashed #cbd5e1;
    border-radius: var(--gp-radius-lg);
    box-shadow: var(--gp-shadow-sm);
}

.gp-map-card,
.gp-page .pf-city-pizzerias-map-wrap,
.gp-page .pf-nearby-map-wrap,
.gp-page .pf-home-map-stage {
    border: 1px solid var(--gp-border);
    border-radius: var(--gp-radius-md);
    overflow: hidden;
    box-shadow: none;
}

.gp-pizza-card,
.gp-page .pf-city-card-link {
    border-radius: var(--gp-radius-md) !important;
    border: 1px solid var(--gp-border) !important;
    background: var(--gp-surface);
    box-shadow: var(--gp-shadow-sm) !important;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.gp-page .pf-city-card-link:hover,
.gp-page .pf-city-card-link:focus {
    border-color: #cbd5e1 !important;
    transform: translateY(-2px);
    box-shadow: var(--gp-shadow-md) !important;
}

.gp-page .pf-city-card-title {
    color: #ffffff;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.82);
    paint-order: stroke fill;
    text-shadow:
        0 1px 0 rgba(0, 0, 0, 0.9),
        0 2px 5px rgba(0, 0, 0, 0.65);
}

.gp-page .pf-city-card-media::after {
    background: none;
}

.gp-page .pf-city-card-placeholder::after {
    content: "";
    position: absolute;
    inset: 0;
    background: none;
    pointer-events: none;
}

.gp-page .pf-list-filter-btn {
    border-radius: var(--gp-radius-sm) !important;
    font-weight: 700;
}

.gp-home-hero {
    padding-top: 5rem !important;
    padding-bottom: 3.4rem !important;
}

.gp-home-title {
    max-width: 13ch;
    font-size: clamp(2.6rem, 5vw, 4.35rem) !important;
    line-height: 0.98 !important;
    min-width: 0;
}

.gp-home-title-lockup {
    display: flex;
    align-items: stretch;
    gap: clamp(0.75rem, 1.5vw, 1.15rem);
    max-width: min(100%, 39rem);
}

.gp-home-title-logo {
    display: block;
    flex: 0 0 auto;
    align-self: stretch;
    width: clamp(6.5rem, 12vw, 9.75rem);
    min-height: 100%;
    background-image: url('../images/brand/geo-pizza-logo-hero.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.gp-home-search-card,
.gp-home-map-card,
.gp-home-feature-card {
    border: 1px solid var(--gp-border) !important;
    border-radius: var(--gp-radius-md) !important;
    box-shadow: var(--gp-shadow-md) !important;
}

.gp-home-search-card {
    max-width: 36rem;
    margin-left: auto;
}

.gp-home-search-card .form-label {
    color: var(--gp-text);
    font-weight: 600;
}

.gp-home-search-card .form-control {
    min-height: 3.3rem;
    border-color: #cbd5e1;
    border-radius: var(--gp-radius-sm);
}

.gp-home-map-section {
    padding-top: 1.8rem !important;
    padding-bottom: 1.8rem !important;
}

.gp-home-map-card .card-body {
    padding: 2rem !important;
}

.gp-home-feature-card {
    min-height: 12rem;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.gp-home-feature-card:hover {
    transform: translateY(-2px);
}

.gp-home-feature-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.2rem;
    align-items: start;
}

.gp-home-feature-icon {
    display: inline-grid;
    place-items: center;
    width: 4rem;
    height: 4rem;
    border-radius: 999px;
}

.gp-home-feature-icon .gp-icon {
    width: 1.7rem;
    height: 1.7rem;
}

.gp-home-feature-icon-blue {
    color: #0d6efd;
    background: #e8f1ff;
}

.gp-home-feature-icon-green {
    color: #0f8b55;
    background: #def7e8;
}

.gp-home-feature-icon-purple {
    color: #7c3aed;
    background: #f0e7ff;
}

.gp-home-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--gp-primary);
    font-weight: 800;
    text-decoration: none;
}

.gp-home-card-link:hover,
.gp-home-card-link:focus {
    color: var(--gp-primary-dark);
}

.gp-pro-public-page .pf-pro-hero {
    padding-top: 5rem !important;
    padding-bottom: 3.4rem !important;
}

.gp-pro-public-page .pf-pro-hero .row {
    --bs-gutter-x: 3.5rem;
    --bs-gutter-y: 2.5rem;
}

.gp-pro-public-page .pf-pro-hero h1 {
    font-size: clamp(2.45rem, 4vw, 3.8rem) !important;
    line-height: 1.02 !important;
    max-width: 14.5ch;
}

.gp-pro-public-page .pf-pro-hero .lead {
    max-width: 42rem;
}

.gp-pro-public-page .pf-pro-section {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.gp-pro-public-page .pf-pro-section-tight {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
}

.gp-pro-public-page .pf-pro-card,
.gp-pro-public-page main .card.border-0.shadow-sm {
    border-radius: var(--gp-radius-md) !important;
    box-shadow: var(--gp-shadow-md) !important;
}

.gp-pro-public-page a.pf-pro-card,
.gp-pro-public-page .gp-pro-hover-card {
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.gp-pro-public-page a.pf-pro-card:hover,
.gp-pro-public-page a.pf-pro-card:focus,
.gp-pro-public-page .gp-pro-hover-card:hover {
    border-color: #cbd5e1 !important;
    transform: translateY(-2px);
    box-shadow: var(--gp-shadow-md) !important;
}

.gp-pro-public-page .pf-pro-feature-icon {
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 999px;
    background: #e8f1ff;
    color: var(--gp-primary);
}

.gp-pro-public-page .pf-pro-feature-icon .gp-icon {
    width: 1.35rem;
    height: 1.35rem;
}

.gp-pro-public-page .pf-pro-feature-icon-green {
    background: #def7e8;
    color: #0f8b55;
}

.gp-pro-public-page .pf-pro-feature-icon-purple {
    background: #f0e7ff;
    color: #7c3aed;
}

.gp-pro-public-page .pf-pro-feature-icon-slate {
    background: #f1f5f9;
    color: #334155;
}

.gp-pro-public-page .pf-demo-showcase {
    padding-top: 4rem !important;
}

.gp-pro-public-page .pf-demo-showcase .row.g-5 {
    --bs-gutter-x: 3.5rem;
}

.gp-pro-public-page .pf-demo-browser-frame,
.gp-pro-public-page .pf-demo-phone-frame {
    box-shadow: 0 1.2rem 2.8rem rgba(15, 23, 42, 0.16);
}

.gp-pro-public-page .pf-demo-browser-frame {
    --gp-demo-desktop-scale: 0.54;
    --gp-demo-desktop-width: 1200px;
    --gp-demo-desktop-height: 1600px;
    --gp-demo-desktop-screen-height: 430px;
    --gp-demo-desktop-viewport-height: 865px;
}

.gp-pro-public-page .pf-demo-browser-frame .pf-demo-device-screen {
    height: var(--gp-demo-desktop-screen-height);
    overflow-x: hidden;
    overflow-y: auto;
}

.gp-pro-public-page .pf-demo-browser-viewport {
    position: relative;
    width: 100%;
    height: var(--gp-demo-desktop-viewport-height);
    overflow: hidden;
}

.gp-pro-public-page .pf-demo-browser-frame .pf-demo-device-iframe {
    display: block;
    position: absolute;
    inset: 0 auto auto 0;
    width: var(--gp-demo-desktop-width);
    min-width: var(--gp-demo-desktop-width);
    height: var(--gp-demo-desktop-height);
    transform: scale(var(--gp-demo-desktop-scale));
    transform-origin: top left;
}

.gp-pro-public-page .gp-pro-inset-panel {
    border-color: var(--gp-border) !important;
    border-radius: var(--gp-radius-md) !important;
    background: #f8fafc !important;
}

.gp-pro-public-page .pf-pro-price {
    color: #111827;
    letter-spacing: 0;
}

.gp-site-footer {
    margin-top: 4rem;
    background: var(--gp-surface);
    border-top: 1px solid var(--gp-border);
}

.gp-footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem 0;
}

.gp-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.85rem 1.1rem;
}

.gp-footer-link,
.gp-footer-links a {
    color: #64748b;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
}

.gp-footer-link:hover,
.gp-footer-link:focus,
.gp-footer-links a:hover,
.gp-footer-links a:focus {
    color: var(--gp-dark);
}

@media (max-width: 991.98px) {
    .gp-header-main {
        min-height: auto;
        flex-wrap: wrap;
        gap: 0.75rem;
        padding: 0.9rem 0;
    }

    .gp-brand {
        order: 1;
    }

    .gp-header-actions {
        order: 2;
        margin-left: auto;
    }

    .gp-site-nav {
        display: none;
        order: 3;
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.15rem;
        scrollbar-width: thin;
    }

    .gp-home-hero {
        padding-top: 3.5rem !important;
        padding-bottom: 2.75rem !important;
    }

    .gp-home-title {
        max-width: 12.5ch;
        font-size: clamp(2.5rem, 7vw, 3.35rem) !important;
        line-height: 1.02 !important;
    }

    .gp-home-title-lockup {
        max-width: min(100%, 34rem);
    }

    .gp-home-title-logo {
        width: clamp(5.5rem, 17vw, 8rem);
    }

    .gp-home-search-card {
        max-width: 100%;
        margin-left: 0;
    }

    .gp-home-map-card .card-body {
        padding: 1.5rem !important;
    }

    .gp-home-feature-section {
        padding-top: 3rem !important;
    }

    .gp-home-feature-card {
        min-height: 0;
    }

    .gp-home-feature-layout {
        grid-template-columns: 4rem 1fr;
        gap: 1.25rem;
    }

    .gp-footer-inner {
        flex-direction: column;
    }

    .gp-footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 575.98px) {
    body.gp-page {
        max-width: 100%;
        overflow-x: hidden;
    }

    .gp-site-header {
        position: relative;
        width: 100vw;
        max-width: 100vw;
        overflow: hidden;
    }

    .gp-page h1,
    .gp-page .display-5,
    .gp-page .display-6 {
        font-size: 2rem !important;
        line-height: 1.12;
    }

    .gp-page .lead {
        font-size: 1.03rem;
    }

    .gp-page main > section:first-child h1,
    .gp-page .pf-pro-hero h1,
    .gp-page main > section:first-child .lead,
    .gp-page .pf-pro-hero .lead {
        max-width: 20.5rem;
    }

    .gp-home-title-lockup {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 4.2rem;
        align-items: stretch;
        column-gap: 0.65rem;
        width: 100%;
        box-sizing: border-box;
        max-width: 100% !important;
        padding-right: 0;
    }

    .gp-home-title-logo {
        position: static;
        width: 100%;
        min-height: 4.7rem;
        height: 100%;
    }

    .gp-page .gp-home-title-lockup .gp-home-title {
        max-width: 100% !important;
    }

    .gp-section,
    .gp-page .pf-pro-section {
        padding: 2.5rem 0;
    }

    .gp-section-sm,
    .gp-page .pf-pro-section-tight {
        padding: 1.8rem 0;
    }

    .gp-site-header .container-xl {
        width: 100%;
        max-width: 100%;
        padding-left: 0.9rem;
        padding-right: 0.9rem;
    }

    .gp-header-main {
        position: static;
        display: block;
        width: 100%;
        min-width: 0;
        min-height: 2.6rem;
        padding-right: 3.25rem;
    }

    .gp-brand {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        min-height: 2.5rem;
        min-width: 0;
    }

    .gp-brand-logo {
        width: 2.8rem;
        height: 2.8rem;
    }

    .gp-header-actions {
        display: none;
        order: 3;
        width: calc(100vw - 1.8rem);
        max-width: calc(100vw - 1.8rem);
        flex-direction: column;
        align-items: stretch;
        justify-content: stretch;
        margin-left: 0;
        margin-top: 0.8rem;
        padding-top: 0;
    }

    .gp-header-menu-toggle {
        display: inline-flex !important;
        position: absolute;
        top: 0.9rem;
        right: 0.9rem;
        left: auto;
        margin-left: 0;
        z-index: 5;
    }

    .gp-site-header.is-menu-open .gp-header-actions {
        display: flex;
    }

    .gp-header-actions .btn {
        width: 100%;
        min-width: 0;
    }

    .gp-home-search-card {
        max-width: 100%;
        margin-left: 0;
    }

    .gp-home-search-card .card-body,
    .gp-home-map-card .card-body {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .gp-home-hero-actions {
        gap: 0.6rem !important;
    }

    .gp-home-hero-actions .btn-lg {
        width: auto !important;
        flex: 0 1 auto !important;
        padding: 0.62rem 0.72rem;
        font-size: 0.86rem;
        white-space: nowrap;
    }

    .gp-home-hero-actions .gp-icon {
        width: 0.9rem;
        height: 0.9rem;
    }

    .gp-pro-public-page .gp-home-hero-actions {
        align-items: stretch;
        flex-direction: column;
        max-width: 20.5rem;
        width: 100%;
    }

    .gp-pro-public-page .gp-home-hero-actions .btn-lg {
        justify-content: center;
        max-width: 20.5rem;
        white-space: normal;
        width: 100% !important;
    }

    .gp-pro-public-page .pf-pro-hero .small {
        max-width: 20.5rem;
    }

    .gp-pro-public-page .pf-pro-hero .row,
    .gp-pro-public-page .pf-pro-section .row,
    .gp-pro-public-page .pf-pro-section-tight .row,
    .gp-pro-public-page .pf-demo-showcase .row {
        --bs-gutter-x: 0;
    }

    .gp-pro-public-page .pf-demo-showcase .row.g-5 {
        --bs-gutter-x: 0;
    }

    .gp-pro-public-page .pf-demo-phone-frame {
        box-sizing: border-box;
        width: 100%;
        max-width: 360px;
    }

    .gp-pro-public-page .pf-demo-browser-frame {
        --gp-demo-desktop-screen-height: 220px;
    }

    .gp-page .btn-lg {
        width: 100%;
    }

    .gp-page .d-flex.flex-wrap.gap-2 > .btn-lg {
        flex: 1 1 100%;
    }
}
