/* ═══════════════════════════════════════════════════════════════
   Giant Phone Numbers — v3 — Elementor-compatible
   Works INSIDE Elementor containers. Backgrounds break out
   full-width, content stays centred and constrained.
   ═══════════════════════════════════════════════════════════════ */

/* ── BASE ── */
.gpn-wrap, .gpn-wrap * { box-sizing: border-box; }
.gpn-wrap {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: #1a1a2e;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
.gpn-wrap a { color: #00D9A7; text-decoration: none; transition: color 0.2s; }
.gpn-wrap a:hover { color: #00c29a; }
.gpn-wrap h1, .gpn-wrap h2, .gpn-wrap h3 { line-height: 1.2; color: #1a1a2e; margin: 0; }
.gpn-wrap ul { list-style: none; padding: 0; margin: 0; }
.gpn-wrap img { max-width: 100%; }

/* ── FULL-WIDTH TRICK ──
   Breaks out of Elementor's container to go edge-to-edge
   for backgrounds only, content stays centred */
.gpn-fw {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.gpn-fw-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
@keyframes gpnFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes gpnFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes gpnScaleIn {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes gpnSlideRight {
    from { opacity: 0; transform: translateX(-20px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes gpnFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

/* Animate on scroll — elements start hidden, JS adds .gpn-visible */
.gpn-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.gpn-animate.gpn-visible {
    opacity: 1;
    transform: translateY(0);
}
/* Staggered children */
.gpn-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.gpn-stagger.gpn-visible > *:nth-child(1)  { transition-delay: 0s; }
.gpn-stagger.gpn-visible > *:nth-child(2)  { transition-delay: 0.08s; }
.gpn-stagger.gpn-visible > *:nth-child(3)  { transition-delay: 0.16s; }
.gpn-stagger.gpn-visible > *:nth-child(4)  { transition-delay: 0.24s; }
.gpn-stagger.gpn-visible > *:nth-child(5)  { transition-delay: 0.32s; }
.gpn-stagger.gpn-visible > *:nth-child(6)  { transition-delay: 0.4s; }
.gpn-stagger.gpn-visible > *:nth-child(7)  { transition-delay: 0.48s; }
.gpn-stagger.gpn-visible > *:nth-child(8)  { transition-delay: 0.56s; }
.gpn-stagger.gpn-visible > *:nth-child(9)  { transition-delay: 0.64s; }
.gpn-stagger.gpn-visible > *:nth-child(n+10) { transition-delay: 0.7s; }
.gpn-stagger.gpn-visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   HERO — Full-width dark, smooth gradient orbs, no grid
   ═══════════════════════════════════════════════════════════════ */
.gpn-hero {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #0a0e17;
    color: #fff;
    text-align: center;
    padding: 100px 24px 90px;
    overflow: hidden;
    margin-bottom: 0;
}
/* Primary glow — top centre, slow drift */
.gpn-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0,217,167,0.14) 0%, transparent 60%);
    pointer-events: none;
    animation: gpnDrift1 12s ease-in-out infinite alternate;
    filter: blur(40px);
}
/* Secondary glow — bottom right, complementary colour */
.gpn-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,140,217,0.08) 0%, transparent 60%);
    pointer-events: none;
    animation: gpnDrift2 15s ease-in-out infinite alternate;
    filter: blur(50px);
}
.gpn-hero > * { position: relative; z-index: 2; }

/* Drift animations for the orbs */
@keyframes gpnDrift1 {
    0%   { transform: translateX(-50%) translateY(0); }
    100% { transform: translateX(-45%) translateY(30px); }
}
@keyframes gpnDrift2 {
    0%   { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-30px) translateY(-20px); }
}

.gpn-hero-badge {
    display: inline-block;
    background: rgba(0,217,167,0.1);
    color: #00D9A7;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 100px;
    border: 1px solid rgba(0,217,167,0.2);
    margin-bottom: 28px;
    animation: gpnFadeUp 0.6s ease both;
}
.gpn-hero-title {
    font-size: clamp(32px, 5.5vw, 56px);
    font-weight: 800;
    margin: 0 auto 20px;
    max-width: 800px;
    letter-spacing: -1.5px;
    color: #fff !important;
    animation: gpnFadeUp 0.6s ease 0.1s both;
}
.gpn-hero-title span {
    background: linear-gradient(135deg, #00D9A7, #00f5c8, #00D9A7);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gpnFadeUp 0.6s ease 0.1s both;
}
.gpn-hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.75;
    animation: gpnFadeUp 0.6s ease 0.2s both;
}
.gpn-hero-price {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 18px 36px;
    margin-bottom: 36px;
    backdrop-filter: blur(12px);
    animation: gpnScaleIn 0.5s ease 0.3s both;
}
.gpn-hero-price .from { font-size: 13px; color: rgba(255,255,255,0.45); }
.gpn-hero-price .amount { font-size: 44px; font-weight: 800; color: #00D9A7; }
.gpn-hero-price .per { font-size: 13px; color: rgba(255,255,255,0.45); }
.gpn-hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    animation: gpnFadeUp 0.6s ease 0.4s both;
}

/* ── BUTTONS ── */
.gpn-btn {
    display: inline-block;
    background: #00D9A7;
    color: #fff !important;
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    line-height: 1.4;
    box-shadow: 0 4px 15px rgba(0,217,167,0.25);
}
.gpn-btn:hover {
    background: #00c29a;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,217,167,0.35);
}
.gpn-btn-outline {
    display: inline-block;
    background: rgba(255,255,255,0.06);
    color: #fff !important;
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    text-decoration: none !important;
    transition: all 0.3s;
    line-height: 1.4;
    backdrop-filter: blur(4px);
}
.gpn-btn-outline:hover { border-color: #00D9A7; color: #00D9A7 !important; background: rgba(0,217,167,0.05); }
/* Light context */
.gpn-section .gpn-btn-outline {
    color: #1a1a2e !important;
    border-color: #d1d5db;
    background: transparent;
    backdrop-filter: none;
}
.gpn-section .gpn-btn-outline:hover { border-color: #00D9A7; color: #00D9A7 !important; }

/* ═══════════════════════════════════════════════════════════════
   TRUST BAR — Full-width subtle strip
   ═══════════════════════════════════════════════════════════════ */
.gpn-trust {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    background: #f6f8fa;
    border-bottom: 1px solid #e8ecf0;
    padding: 24px 24px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 0;
    margin-bottom: 0;
}
.gpn-trust-item { font-size: 14px; font-weight: 500; color: #555; white-space: nowrap; }

/* ═══════════════════════════════════════════════════════════════
   SECTIONS — Centred content, full-width alternating bg
   ═══════════════════════════════════════════════════════════════ */
.gpn-section {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    padding: 5em 24px;
    margin-top: 2em;
    margin-bottom: 2em;
}
.gpn-section:nth-child(odd)  { background: #fff; }
.gpn-section:nth-child(even) { background: #f6f8fa; }

/* All direct children centred and constrained */
.gpn-section > * {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* Section header */
.gpn-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #00D9A7;
    margin-bottom: 12px;
    text-align: center;
}
.gpn-section h2 {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    margin: 0 auto 14px;
    letter-spacing: -0.5px;
    text-align: center;
}
.gpn-section-desc {
    font-size: 16px;
    color: #666;
    max-width: 560px;
    margin: 0 auto 3em;
    line-height: 1.75;
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   SEARCH
   ═══════════════════════════════════════════════════════════════ */
.gpn-search-wrap {
    position: relative;
    margin: 0 auto 3em;
    max-width: 660px;
}
.gpn-search-bar {
    display: flex;
    border: 2px solid #dfe3e8;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.gpn-search-bar:focus-within {
    border-color: #00D9A7;
    box-shadow: 0 4px 24px rgba(0,217,167,0.12);
}
.gpn-search-input {
    flex: 1;
    padding: 18px 22px;
    border: none;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    background: transparent;
    color: #1a1a2e;
    min-width: 0;
}
.gpn-search-input::placeholder { color: #aaa; }
.gpn-search-btn {
    padding: 18px 32px;
    background: #00D9A7;
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.gpn-search-btn:hover { background: #00c29a; }

/* Autocomplete */
.gpn-autocomplete {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0; right: 0;
    background: #fff;
    border: 1px solid #dfe3e8;
    border-radius: 14px;
    max-height: 320px;
    overflow-y: auto;
    z-index: 100;
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.gpn-autocomplete.active { display: block; }
.gpn-ac-item {
    padding: 14px 22px;
    cursor: pointer;
    font-size: 14px;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.15s;
}
.gpn-ac-item:last-child { border-bottom: none; }
.gpn-ac-item:hover { background: rgba(0,217,167,0.06); padding-left: 28px; }
.gpn-ac-item .ac-code { font-weight: 700; color: #00D9A7; margin-right: 10px; }

/* Range dropdown */
.gpn-range-select-wrap { max-width: 660px; margin: 0 auto 3em; }
.gpn-range-row {
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.gpn-range-dropdown {
    flex: 1;
    padding: 16px 18px;
    border: 2px solid #dfe3e8;
    border-right: none;
    border-radius: 16px 0 0 16px;
    font-size: 14px;
    font-family: inherit;
    background: #fff;
    color: #1a1a2e;
    outline: none;
    min-width: 0;
}
.gpn-range-dropdown:focus { border-color: #00D9A7; }
.gpn-range-row .gpn-search-btn { border-radius: 0 16px 16px 0; }

/* ═══════════════════════════════════════════════════════════════
   RESULTS
   ═══════════════════════════════════════════════════════════════ */
.gpn-results { margin: 2em auto 3em; max-width: 1100px; }
.gpn-results-header { font-size: 14px; color: #666; margin-bottom: 16px; font-weight: 500; text-align: center; }
.gpn-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 12px;
}
.gpn-number-card {
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 14px;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.gpn-number-card:hover {
    border-color: #00D9A7;
    box-shadow: 0 6px 20px rgba(0,217,167,0.08);
    transform: translateY(-2px);
}
.gpn-number-display {
    font-size: 17px;
    font-weight: 700;
    font-family: 'SF Mono', 'Consolas', 'Monaco', monospace;
    color: #1a1a2e;
    letter-spacing: 0.5px;
}
.gpn-number-price { text-align: right; }
.gpn-number-monthly { font-size: 15px; font-weight: 700; color: #00D9A7; }
.gpn-number-setup { font-size: 11px; color: #888; margin-top: 2px; }
.gpn-number-gold {
    display: inline-block;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    margin-left: 8px;
}
.gpn-results-loading,
.gpn-results-empty { text-align: center; padding: 44px; color: #888; font-size: 14px; }

/* ═══════════════════════════════════════════════════════════════
   PRELOADED NUMBERS
   ═══════════════════════════════════════════════════════════════ */
.gpn-preloaded {
    width: min(90vw, 1200px);
    max-width: 900px;
    margin: 0 auto 2em;
    padding: 0 16px;
    box-sizing: border-box;
}
.gpn-preloaded-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 1.2em;
    text-align: center;
    color: #1a1a2e;
}
.gpn-preloaded-grid {
    display: grid;
    grid-template-columns: repeat(var(--gpn-preload-cols, 2), 1fr);
    gap: 12px;
}
.gpn-preloaded-extra {
    display: grid;
    grid-template-columns: repeat(var(--gpn-preload-cols, 2), 1fr);
    gap: 12px;
    margin-top: 12px;
}
.gpn-preloaded-more {
    text-align: center;
    margin-top: 1.5em;
}
.gpn-show-more-btn {
    color: #1a1a2e !important;
    border-color: #d1d5db !important;
    background: transparent !important;
    backdrop-filter: none !important;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s;
}
.gpn-show-more-btn:hover {
    border-color: #00D9A7 !important;
    color: #00D9A7 !important;
}

@media (max-width: 640px) {
    .gpn-preloaded-grid,
    .gpn-preloaded-extra { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   AREAS GRID
   ═══════════════════════════════════════════════════════════════ */
.gpn-areas {
    display: grid;
    grid-template-columns: repeat(var(--gpn-cols, 6), 1fr);
    gap: 14px;
    width: min(90vw, 1200px);
    max-width: 900px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}
.gpn-area-card {
    display: block;
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 14px;
    padding: 20px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}
.gpn-area-card:hover {
    border-color: #00D9A7;
    box-shadow: 0 8px 28px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}
.gpn-area-code { display: block; font-weight: 700; font-size: 17px; color: #00D9A7; }
.gpn-area-city { display: block; font-weight: 600; font-size: 14px; color: #1a1a2e; margin-top: 4px; }
.gpn-area-price { display: block; font-size: 12px; color: #888; margin-top: 6px; }

/* ═══════════════════════════════════════════════════════════════
   FEATURES GRID
   ═══════════════════════════════════════════════════════════════ */
.gpn-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    width: min(90vw, 1200px);
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}
.gpn-fcard {
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 18px;
    padding: 36px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}
.gpn-fcard:hover {
    border-color: rgba(0,217,167,0.3);
    box-shadow: 0 12px 36px rgba(0,0,0,0.05);
    transform: translateY(-4px);
}
.gpn-fcard-icon {
    font-size: 36px;
    margin-bottom: 18px;
    display: block;
    animation: gpnFloat 3s ease-in-out infinite;
}
.gpn-fcard:nth-child(2) .gpn-fcard-icon { animation-delay: 0.5s; }
.gpn-fcard:nth-child(3) .gpn-fcard-icon { animation-delay: 1s; }
.gpn-fcard:nth-child(4) .gpn-fcard-icon { animation-delay: 1.5s; }
.gpn-fcard:nth-child(5) .gpn-fcard-icon { animation-delay: 2s; }
.gpn-fcard:nth-child(6) .gpn-fcard-icon { animation-delay: 2.5s; }
.gpn-fcard h3 { font-size: 18px; font-weight: 700; margin: 0 0 10px; }
.gpn-fcard p { font-size: 14px; color: #555; margin: 0; line-height: 1.75; }

/* ═══════════════════════════════════════════════════════════════
   STEPS
   ═══════════════════════════════════════════════════════════════ */
.gpn-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    position: relative;
    width: min(90vw, 1200px);
    max-width: 900px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}
/* Connector line */
.gpn-steps::before {
    content: '';
    position: absolute;
    top: 42px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00D9A7, transparent);
    opacity: 0.2;
}
.gpn-step { text-align: center; position: relative; }
.gpn-step-num {
    font-size: 60px;
    font-weight: 800;
    color: #00D9A7;
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 20px;
}
.gpn-step h3 { font-size: 18px; font-weight: 700; margin: 0 0 10px; }
.gpn-step p { font-size: 14px; color: #666; margin: 0; line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════════ */
.gpn-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    width: min(90vw, 1200px);
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}
.gpn-pcard {
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 20px;
    padding: 36px;
    position: relative;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}
.gpn-pcard:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.06); transform: translateY(-4px); }
.gpn-pcard.popular {
    border-color: #00D9A7;
    box-shadow: 0 0 0 1px #00D9A7, 0 12px 36px rgba(0,217,167,0.1);
}
.gpn-pcard.popular::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -13px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, #00D9A7, #00c29a);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 6px 20px;
    border-radius: 100px;
    box-shadow: 0 4px 12px rgba(0,217,167,0.3);
}
.gpn-pcard h3 { font-size: 20px; font-weight: 700; margin: 0 0 4px; }
.gpn-price-tag { font-size: 40px; font-weight: 800; color: #00D9A7; margin: 16px 0; }
.gpn-price-tag span { font-size: 15px; color: #888; font-weight: 400; }
.gpn-pcard li {
    padding: 10px 0;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
}
.gpn-pcard li:last-child { border-bottom: none; }
.gpn-pcard li::before { content: '✓ '; color: #00D9A7; font-weight: 700; }
.gpn-pcard .gpn-btn { display: block; text-align: center; width: 100%; margin-top: 28px; }

/* ═══════════════════════════════════════════════════════════════
   COMPARISON TABLE
   ═══════════════════════════════════════════════════════════════ */
.gpn-table-wrap { overflow-x: auto; border-radius: 16px; border: 1px solid #e8ecf0; box-shadow: 0 4px 16px rgba(0,0,0,0.03); width: min(90vw, 1200px); max-width: 900px; margin: 0 auto; }
.gpn-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.gpn-table th {
    text-align: left;
    padding: 16px 22px;
    background: #0d1117;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}
.gpn-table td { padding: 15px 22px; border-bottom: 1px solid #f0f0f0; color: #555; background: #fff; }
.gpn-table tr:last-child td { border-bottom: none; }
.gpn-table tr:hover td { background: #f6f8fa; }
.gpn-yes { color: #00D9A7; font-weight: 600; }
.gpn-no { color: #dc3545; }

/* ═══════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════ */
.gpn-faq-list { max-width: 720px; margin: 0 auto; }
.gpn-faq-item {
    border-bottom: 1px solid #eee;
    padding: 24px 0;
}
.gpn-faq-q {
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: #1a1a2e;
    transition: color 0.2s;
}
.gpn-faq-q:hover { color: #00D9A7; }
.gpn-faq-q::after {
    content: '+';
    font-size: 24px;
    color: #00D9A7;
    font-weight: 600;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,217,167,0.08);
    border-radius: 50%;
    transition: all 0.3s;
}
.gpn-faq-item.open .gpn-faq-q::after {
    content: '−';
    background: #00D9A7;
    color: #fff;
    transform: rotate(180deg);
}
.gpn-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}
.gpn-faq-item.open .gpn-faq-a { max-height: 500px; padding-top: 16px; }

/* ═══════════════════════════════════════════════════════════════
   CTA BANNER — Full-width dark with glow
   ═══════════════════════════════════════════════════════════════ */
.gpn-cta {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    background: linear-gradient(160deg, #0a0e17 0%, #111827 50%, #0a0e17 100%);
    padding: 5em 24px;
    text-align: center;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0;
}
.gpn-cta::before {
    content: '';
    position: absolute;
    top: -50%; left: 50%; transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,217,167,0.12) 0%, transparent 65%);
    pointer-events: none;
}
.gpn-cta > * { position: relative; z-index: 2; max-width: 600px; margin-left: auto; margin-right: auto; }
.gpn-cta h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; margin: 0 0 14px; color: #fff; }
.gpn-cta p { color: rgba(255,255,255,0.55); margin: 0 auto 32px; font-size: 16px; line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════════════════════ */
.gpn-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 3em;
    width: min(90vw, 1200px);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 16px;
    box-sizing: border-box;
}
.gpn-stat {
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 18px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
}
.gpn-stat:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.04); }
.gpn-stat-num { font-size: 40px; font-weight: 800; color: #00D9A7; }
.gpn-stat-label { font-size: 13px; color: #666; margin-top: 8px; line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════════
   CITY INFO
   ═══════════════════════════════════════════════════════════════ */
.gpn-area-info { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 3em; width: min(90vw, 1200px); max-width: 900px; margin-left: auto; margin-right: auto; padding: 0 16px; box-sizing: border-box; }
.gpn-detail-card {
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 18px;
    padding: 36px;
}
.gpn-detail-card h3 { font-size: 17px; font-weight: 700; color: #00D9A7; margin: 0 0 20px; text-align: left; }
.gpn-detail-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid #f0f0f0; font-size: 14px; }
.gpn-detail-row:last-child { border-bottom: none; }
.gpn-detail-row .label { color: #888; }
.gpn-detail-row .value { font-weight: 600; color: #1a1a2e; }
.gpn-towns { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.gpn-town-tag {
    background: #f6f8fa;
    border: 1px solid #e8ecf0;
    border-radius: 8px;
    padding: 7px 16px;
    font-size: 13px;
    color: #555;
    transition: all 0.2s;
}
.gpn-town-tag:hover { border-color: #00D9A7; color: #00D9A7; }

/* ═══════════════════════════════════════════════════════════════
   NEARBY + LONDON TYPES + COMPARE
   ═══════════════════════════════════════════════════════════════ */
.gpn-nearby { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 14px; width: min(90vw, 1200px); max-width: 900px; margin: 0 auto; padding: 0 16px; box-sizing: border-box; }
.gpn-nearby-card {
    display: block; background: #fff; border: 1px solid #e8ecf0; border-radius: 14px; padding: 20px;
    text-decoration: none !important; transition: all 0.3s; text-align: center;
}
.gpn-nearby-card:hover { border-color: #00D9A7; transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.05); }

.gpn-london-types { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; width: min(90vw, 1200px); max-width: 1100px; margin: 0 auto; padding: 0 16px; box-sizing: border-box; }
.gpn-ltype {
    background: #fff; border: 1px solid #e8ecf0; border-radius: 18px; padding: 36px;
    position: relative; transition: all 0.35s; text-align: center;
}
.gpn-ltype:hover { border-color: rgba(0,217,167,0.3); box-shadow: 0 12px 36px rgba(0,0,0,0.05); transform: translateY(-4px); }
.gpn-ltype.pop { border-color: #00D9A7; }
.gpn-ltype.pop::after {
    content: 'MOST POPULAR'; position: absolute; top: 16px; right: 16px;
    background: #00D9A7; color: #fff; font-size: 9px; font-weight: 800; letter-spacing: 1px;
    padding: 5px 12px; border-radius: 8px;
}
.gpn-lcode { font-size: 36px; font-weight: 800; color: #00D9A7; margin-bottom: 10px; }
.gpn-ltype h3 { font-size: 17px; font-weight: 700; margin: 0 0 8px; }
.gpn-ltype p { font-size: 14px; color: #555; margin: 0 0 16px; line-height: 1.7; }
.gpn-lprice { font-weight: 700; font-size: 16px; color: #1a1a2e; }
.gpn-lprice span { color: #888; font-weight: 400; font-size: 13px; }

.gpn-compare { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; width: min(90vw, 1200px); max-width: 1100px; margin: 0 auto; padding: 0 16px; box-sizing: border-box; }
.gpn-ccard { background: #fff; border: 1px solid #e8ecf0; border-radius: 18px; padding: 36px; transition: all 0.3s; text-align: center; }
.gpn-ccard:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.04); transform: translateY(-3px); }
.gpn-ccard.highlight { border-color: #00D9A7; box-shadow: 0 0 0 1px #00D9A7; }
.gpn-ccard h3 { font-size: 28px; font-weight: 800; margin: 0 0 4px; }
.gpn-ccard h3.green { color: #00D9A7; }
.gpn-ccard .type { font-size: 13px; color: #888; margin-bottom: 18px; }
.gpn-ccard li { padding: 10px 0; font-size: 14px; color: #555; border-bottom: 1px solid #f0f0f0; text-align: left; }
.gpn-ccard li:last-child { border-bottom: none; }
.gpn-ccard li::before { content: '• '; color: #00D9A7; font-weight: 700; }

/* ═══════════════════════════════════════════════════════════════
   SEO CONTENT
   ═══════════════════════════════════════════════════════════════ */
.gpn-seo { max-width: 720px; margin: 3em auto 2em; padding: 3em 0 2em; border-top: 1px solid #eee; }
.gpn-seo h2 { font-size: 26px; font-weight: 700; margin: 0 0 18px; text-align: left; }
.gpn-seo h3 { font-size: 19px; font-weight: 700; margin: 36px 0 12px; text-align: left; }
.gpn-seo p { font-size: 15px; color: #555; line-height: 1.9; margin: 0 0 16px; text-align: left; }

/* ═══════════════════════════════════════════════════════════════
   SPACERS — em-based for consistent rhythm
   ═══════════════════════════════════════════════════════════════ */
.gpn-spacer { display: block; height: 3em; clear: both; }
.gpn-spacer-sm { display: block; height: 1.5em; clear: both; }
.gpn-spacer-lg { display: block; height: 5em; clear: both; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .gpn-hero { padding: 70px 20px 60px; }
    .gpn-hero-title { font-size: clamp(28px, 7vw, 42px); }
    .gpn-section { padding: 60px 16px; }
    .gpn-areas { grid-template-columns: repeat(3, 1fr); }
    .gpn-area-info { grid-template-columns: 1fr; }
    .gpn-search-bar { flex-direction: column; border-radius: 14px; }
    .gpn-search-btn { border-radius: 0 0 12px 12px; }
    .gpn-range-row { flex-direction: column; border-radius: 14px; }
    .gpn-range-dropdown { border-right: 2px solid #dfe3e8; border-radius: 14px 14px 0 0; }
    .gpn-range-row .gpn-search-btn { border-radius: 0 0 14px 14px; }
    .gpn-cta { padding: 60px 20px; }
    .gpn-features { grid-template-columns: 1fr; }
    .gpn-steps::before { display: none; }
    .gpn-trust { gap: 16px; padding: 20px 16px; }
}
@media (max-width: 480px) {
    .gpn-areas { grid-template-columns: repeat(2, 1fr); }
    .gpn-hero-price .amount { font-size: 36px; }
}
