/*
 * index.css
 * Page-specific styles for the root index.php (PlayPool public landing page)
 * Extracted from the inline <style> block in the page markup.
 */

        :root {
            --pp-dark: #0e1f1c;
            --pp-dark-2: #1b2e2a;
            --pp-felt: #14704a;
            --pp-felt-light: #1f9061;
            --pp-gold: #e0b659;
            --pp-cream: #f5efe1;
            --pp-red: #b71c1c;
        }

        * { box-sizing: border-box; min-width: 0; }
        html {
            scroll-behavior: smooth;
            overflow-y: scroll;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        html::-webkit-scrollbar { display: none; }
        html, body {
            overflow-x: hidden;
            max-width: 100%;
            width: 100%;
            position: relative;
        }
        body {
            font-family: 'Poppins', system-ui, sans-serif;
            color: #2b2b2b;
            background: #fff;
            margin: 0;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            position: relative;
        }
        img { max-width: 100%; height: auto; }

        h1, h2, h3, h4 { font-weight: 700; }
        .display-font { font-family: 'Bebas Neue', sans-serif; letter-spacing: 1.5px; }

        /* ============ NAVBAR ============ */
        .pp-navbar {
            background: rgba(14, 31, 28, 0.95);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease, transform .3s ease;
            padding: 14px 0;
            left: 0;
            right: 0;
            width: 100%;
            max-width: 100vw;
            overflow-x: hidden;
        }
        .pp-navbar.nav-hidden { transform: translateY(-100%); }
        .pp-navbar > .container {
            max-width: 100%;
            width: 100%;
            flex-wrap: wrap;
            row-gap: 0;
            padding-right: 16px;
            padding-left: 16px;
            column-gap: 8px;
        }
        .pp-navbar .navbar-brand {
            min-width: 0;
            flex: 1 1 auto;
            max-width: calc(100% - 70px); /* always reserve room for toggler */
            margin-right: 0;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .pp-navbar .navbar-brand img {
            flex-shrink: 0;
        }
        .pp-navbar .navbar-brand > * {
            min-width: 0;
        }
        .pp-navbar .navbar-toggler {
            flex: 0 0 auto;
            flex-shrink: 0;
            margin-right: 0;
            margin-left: auto;
            max-width: 60px;
        }
        .pp-navbar.scrolled {
            background: rgba(14, 31, 28, 0.98);
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }
        .pp-navbar .navbar-brand {
            color: var(--pp-cream);
            font-weight: 700;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .pp-navbar .navbar-brand img {
            height: 38px;
            width: 38px;
            border-radius: 8px;
            object-fit: cover;
        }
        .pp-navbar .navbar-brand span { color: var(--pp-gold); }
        .pp-navbar .nav-link {
            color: rgba(245, 239, 225, 0.8) !important;
            font-weight: 500;
            margin: 0 5px;
            padding: 8px 16px !important;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        .pp-navbar .nav-link:hover, .pp-navbar .nav-link.active {
            color: var(--pp-gold) !important;
            background: rgba(224, 182, 89, 0.08);
        }
        .pp-navbar .navbar-toggler {
            border: 1px solid rgba(224, 182, 89, 0.3);
            color: var(--pp-gold);
        }
        .pp-navbar .navbar-toggler:focus { box-shadow: none; }
        .pp-navbar .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='%23e0b659' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .btn-pp {
            background: var(--pp-gold);
            color: var(--pp-dark);
            border: none;
            font-weight: 600;
            padding: 10px 26px;
            border-radius: 30px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }
        .btn-pp:hover {
            background: #f1c97a;
            color: var(--pp-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(224, 182, 89, 0.35);
        }
        .btn-pp-outline {
            background: transparent;
            color: var(--pp-cream);
            border: 2px solid rgba(245, 239, 225, 0.3);
            font-weight: 600;
            padding: 8px 24px;
            border-radius: 30px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }
        .btn-pp-outline:hover {
            background: var(--pp-cream);
            color: var(--pp-dark);
            border-color: var(--pp-cream);
        }

        /* ============ HERO ============ */
        .hero {
            background:
                linear-gradient(135deg, rgba(14,31,28,0.92) 0%, rgba(20,112,74,0.85) 100%),
                radial-gradient(circle at 70% 30%, rgba(224,182,89,0.18), transparent 50%);
            background-color: var(--pp-dark);
            color: var(--pp-cream);
            min-height: 100vh;
            min-height: 100dvh; /* avoids mobile browser-bar jump */
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 120px 0 80px;
        }
        .hero .hero-badge {
            display: inline-block;
            max-width: 100%;
            white-space: normal;
            word-wrap: break-word;
            line-height: 1.4;
        }
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                radial-gradient(circle 8px at 10% 20%, var(--pp-gold) 100%, transparent),
                radial-gradient(circle 8px at 85% 80%, #fff 100%, transparent),
                radial-gradient(circle 7px at 92% 25%, var(--pp-red) 100%, transparent),
                radial-gradient(circle 6px at 15% 75%, #2196f3 100%, transparent),
                radial-gradient(circle 7px at 60% 90%, #7b1fa2 100%, transparent);
            opacity: 0.15;
            animation: floatBalls 12s ease-in-out infinite;
            pointer-events: none;
        }
        @keyframes floatBalls {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        .hero h1 {
            font-size: clamp(2.4rem, 5vw, 4rem);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            font-weight: 800;
        }
        .hero h1 .highlight {
            color: var(--pp-gold);
            position: relative;
            display: inline-block;
        }
        .hero p.lead {
            font-size: 1.15rem;
            max-width: 580px;
            margin-bottom: 2rem;
            color: rgba(245,239,225,0.85);
        }
        .hero-stats {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(224,182,89,0.2);
        }
        .hero-stat .num {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.5rem;
            color: var(--pp-gold);
            line-height: 1;
        }
        .hero-stat .label {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.7;
        }

        .hero-visual {
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .pool-table {
            width: 100%;
            max-width: 500px;
            aspect-ratio: 5/3;
            background: linear-gradient(135deg, #1f9061 0%, #14704a 100%);
            border: 14px solid #5a3a1f;
            border-radius: 20px;
            box-shadow:
                0 30px 60px rgba(0,0,0,0.5),
                inset 0 0 60px rgba(0,0,0,0.4);
            position: relative;
            overflow: hidden;
        }
        .pool-table::before, .pool-table::after {
            content: '';
            position: absolute;
            background: rgba(0,0,0,0.6);
            width: 22px;
            height: 22px;
            border-radius: 50%;
        }
        .pool-table::before { top: 8px; left: 8px; box-shadow: calc(100% - 30px) 0 rgba(0,0,0,0.6), 50% 0 rgba(0,0,0,0.6); }
        .pool-table::after { bottom: 8px; left: 8px; box-shadow: calc(100% - 30px) 0 rgba(0,0,0,0.6), 50% 0 rgba(0,0,0,0.6); }

        .ball {
            position: absolute;
            width: 32px; height: 32px;
            border-radius: 50%;
            box-shadow: inset -5px -5px 8px rgba(0,0,0,0.5), 0 4px 8px rgba(0,0,0,0.3);
            animation: drift 8s ease-in-out infinite;
        }
        .ball::after {
            content: '';
            position: absolute;
            top: 6px; left: 9px;
            width: 10px; height: 10px;
            background: rgba(255,255,255,0.5);
            border-radius: 50%;
            filter: blur(2px);
        }
        .ball.b1 { background: #f1c40f; top: 30%; left: 25%; animation-delay: 0s; }
        .ball.b2 { background: #1976d2; top: 55%; left: 60%; animation-delay: 1.5s; }
        .ball.b3 { background: var(--pp-red); top: 40%; left: 70%; animation-delay: 3s; }
        .ball.b4 { background: #fff; top: 65%; left: 35%; animation-delay: 2s; }
        .ball.b5 { background: #2c2c2c; top: 25%; left: 55%; animation-delay: 4s; }
        @keyframes drift {
            0%, 100% { transform: translate(0,0); }
            50% { transform: translate(8px, -6px); }
        }

        /* ============ SECTIONS ============ */
        section { scroll-margin-top: 80px; }
        .section { padding: 100px 0; }
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        .section-title .eyebrow {
            color: var(--pp-felt);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.85rem;
            margin-bottom: 12px;
            display: inline-block;
        }
        .section-title h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--pp-dark);
            margin-bottom: 18px;
        }
        .section-title p {
            color: #666;
            max-width: 680px;
            margin: 0 auto;
            font-size: 1.05rem;
        }

        /* ============ FEATURES ============ */
        .features { background: #fafaf6; }
        .feature-card {
            background: #fff;
            border-radius: 18px;
            padding: 35px 28px;
            height: 100%;
            transition: all 0.35s ease;
            border: 1px solid #ececec;
            position: relative;
            overflow: hidden;
        }
        .feature-card::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--pp-felt), var(--pp-gold));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.35s ease;
        }
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(20,112,74,0.12);
            border-color: transparent;
        }
        .feature-card:hover::after { transform: scaleX(1); }
        .feature-icon {
            width: 60px; height: 60px;
            border-radius: 14px;
            background: linear-gradient(135deg, var(--pp-felt) 0%, var(--pp-felt-light) 100%);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            margin-bottom: 22px;
            box-shadow: 0 8px 20px rgba(20,112,74,0.25);
        }
        .feature-card h4 {
            font-size: 1.2rem;
            color: var(--pp-dark);
            margin-bottom: 12px;
        }
        .feature-card p {
            color: #6a6a6a;
            margin: 0;
            font-size: 0.95rem;
        }

        /* ============ HOW IT WORKS ============ */
        .how-it-works { background: #fff; }
        .step-card {
            text-align: center;
            padding: 30px 20px;
            position: relative;
        }
        .step-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 70px; height: 70px;
            border-radius: 50%;
            background: var(--pp-dark);
            color: var(--pp-gold);
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.2rem;
            margin-bottom: 20px;
            box-shadow: 0 10px 25px rgba(14,31,28,0.2);
        }
        .step-card h5 {
            color: var(--pp-dark);
            margin-bottom: 10px;
        }
        .step-card p { color: #666; font-size: 0.95rem; margin: 0; }

        /* ============ CTA BANNER ============ */
        .cta-banner {
            background:
                linear-gradient(135deg, rgba(14,31,28,0.92) 0%, rgba(20,112,74,0.92) 100%),
                radial-gradient(circle at 80% 50%, var(--pp-gold), transparent 50%);
            background-color: var(--pp-dark);
            color: var(--pp-cream);
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-banner h2 {
            font-size: clamp(1.8rem, 4vw, 2.6rem);
            margin-bottom: 18px;
        }
        .cta-banner p {
            color: rgba(245,239,225,0.85);
            max-width: 600px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
        }

        /* ============ ABOUT ============ */
        .about { background: #fafaf6; }
        .about-image {
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            background: linear-gradient(135deg, var(--pp-felt), var(--pp-felt-light));
            aspect-ratio: 4/5;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 25px 50px rgba(20,112,74,0.25);
        }
        .about-image .badge-circle {
            width: 70%;
            aspect-ratio: 1;
            border-radius: 50%;
            background: rgba(255,255,255,0.08);
            border: 2px dashed rgba(224,182,89,0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .about-image .badge-circle .inner {
            width: 75%;
            aspect-ratio: 1;
            border-radius: 50%;
            background: var(--pp-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Bebas Neue', sans-serif;
            color: var(--pp-gold);
            text-align: center;
            font-size: 1.5rem;
            line-height: 1;
            padding: 20px;
            box-shadow: inset 0 0 40px rgba(0,0,0,0.5);
        }
        .about h3 {
            font-size: clamp(1.7rem, 3vw, 2.3rem);
            color: var(--pp-dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .about p { color: #555; margin-bottom: 18px; font-size: 1rem; }
        .about ul { list-style: none; padding: 0; margin: 25px 0 30px; }
        .about ul li {
            position: relative;
            padding-left: 32px;
            margin-bottom: 12px;
            color: #444;
        }
        .about ul li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--pp-felt);
            position: absolute;
            left: 0; top: 4px;
            width: 22px; height: 22px;
            background: rgba(20,112,74,0.12);
            border-radius: 50%;
            text-align: center;
            font-size: 11px;
            line-height: 22px;
        }

        /* ============ CONTACT ============ */
        .contact { background: #fff; }
        .contact-card {
            background: #fafaf6;
            border-radius: 16px;
            padding: 30px 25px;
            text-align: center;
            border: 1px solid #ececec;
            height: 100%;
            transition: all 0.3s ease;
        }
        .contact-card:hover {
            transform: translateY(-5px);
            border-color: var(--pp-felt);
            box-shadow: 0 15px 30px rgba(20,112,74,0.1);
        }
        .contact-card .icon {
            width: 60px; height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--pp-felt), var(--pp-felt-light));
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            margin-bottom: 18px;
        }
        .contact-card h5 { color: var(--pp-dark); margin-bottom: 8px; }
        .contact-card p { color: #666; margin: 0; font-size: 0.95rem; }
        .contact-card a { color: var(--pp-felt); text-decoration: none; font-weight: 500; }
        .contact-card a:hover { color: var(--pp-felt-light); }

        .contact-form {
            background: #fafaf6;
            border-radius: 20px;
            padding: 40px;
            border: 1px solid #ececec;
        }
        .form-control, .form-select {
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 12px 16px;
            font-size: 0.95rem;
            transition: all 0.2s ease;
        }
        .form-control:focus, .form-select:focus {
            border-color: var(--pp-felt);
            box-shadow: 0 0 0 3px rgba(20,112,74,0.1);
        }
        .form-label { font-weight: 500; color: #333; font-size: 0.9rem; }

        /* ============ FOOTER ============ */
        .footer {
            background: var(--pp-dark);
            color: rgba(245,239,225,0.7);
            padding: 60px 0 0;
        }
        .footer h6 {
            color: var(--pp-cream);
            font-weight: 600;
            margin-bottom: 18px;
            font-size: 1rem;
        }
        .footer a { color: rgba(245,239,225,0.7); text-decoration: none; transition: color 0.2s ease; }
        .footer a:hover { color: var(--pp-gold); }
        .footer ul { list-style: none; padding: 0; margin: 0; }
        .footer ul li { margin-bottom: 10px; font-size: 0.9rem; }
        .footer .social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px; height: 38px;
            border-radius: 50%;
            background: rgba(255,255,255,0.06);
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        .footer .social a:hover {
            background: var(--pp-gold);
            color: var(--pp-dark);
            transform: translateY(-3px);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding: 20px 0;
            margin-top: 50px;
            text-align: center;
            font-size: 0.85rem;
        }

        /* Floating CTA */
        .floating-cta {
            position: fixed;
            bottom: 25px;
            right: 25px;
            z-index: 999;
            display: none;
        }
        .floating-cta.show { display: block; animation: popIn 0.4s ease; }
        @keyframes popIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ============ RESPONSIVE: Tablet & below (<992px) ============ */
        @media (max-width: 991.98px) {
            .pp-navbar {
                padding: 10px 0;
            }
            .pp-navbar .navbar-collapse {
                background: rgba(14, 31, 28, 0.98);
                margin-top: 12px;
                padding: 18px;
                border-radius: 14px;
                border: 1px solid rgba(224, 182, 89, 0.12);
                max-height: calc(100vh - 90px);
                overflow-y: auto;
            }
            .pp-navbar .nav-link {
                padding: 10px 14px !important;
                margin: 2px 0;
            }
            .pp-navbar .navbar-nav {
                margin-bottom: 12px;
            }
            .pp-navbar .d-flex.gap-2 {
                flex-direction: column;
                gap: 10px !important;
                align-items: stretch !important;
            }
            .pp-navbar .btn-pp,
            .pp-navbar .btn-pp-outline {
                justify-content: center;
                width: 100%;
            }
            .hero {
                text-align: center;
                padding: 110px 0 60px;
            }
            .hero p.lead {
                margin-left: auto;
                margin-right: auto;
            }
            .hero .d-flex.flex-wrap {
                justify-content: center;
            }
            .hero-stats {
                justify-content: center;
            }
        }

        /* ============ RESPONSIVE: Mobile (<768px) ============ */
        @media (max-width: 767.98px) {
            .hero {
                min-height: auto;
                padding: 100px 0 50px;
            }
            .hero-badge {
                font-size: 0.7rem;
                letter-spacing: 0.5px;
                padding: 8px 14px !important;
            }
            .row.g-5 { --bs-gutter-y: 2rem; }
            .hero h1 {
                font-size: clamp(1.9rem, 7vw, 2.6rem);
                line-height: 1.15;
            }
            .hero p.lead {
                font-size: 1rem;
            }
            .hero-stats {
                gap: 18px 28px;
                margin-top: 2rem;
                padding-top: 1.5rem;
            }
            .hero-stat .num {
                font-size: 2rem;
            }
            .hero-stat .label {
                font-size: 0.75rem;
            }
            .pool-table {
                margin-top: 30px;
                max-width: 100%;
                border-width: 10px;
            }
            .ball {
                width: 24px;
                height: 24px;
            }
            .ball::after {
                top: 4px;
                left: 7px;
                width: 7px;
                height: 7px;
            }
            .section {
                padding: 60px 0;
            }
            .section-title {
                margin-bottom: 40px;
            }
            .section-title h2 {
                font-size: clamp(1.6rem, 6vw, 2.2rem);
            }
            .section-title p {
                font-size: 0.95rem;
            }
            .feature-card {
                padding: 28px 22px;
            }
            .feature-icon {
                width: 52px;
                height: 52px;
                font-size: 1.4rem;
                margin-bottom: 18px;
            }
            .step-card {
                padding: 20px 10px;
            }
            .step-num {
                width: 60px;
                height: 60px;
                font-size: 1.8rem;
            }
            .cta-banner {
                padding: 60px 0;
            }
            .cta-banner h2 {
                font-size: clamp(1.5rem, 5vw, 2rem);
            }
            .cta-banner p {
                font-size: 1rem;
            }
            .about h3 {
                font-size: clamp(1.4rem, 5vw, 1.9rem);
            }
            .about-image {
                max-width: 320px;
                margin: 0 auto;
            }
            .contact-form {
                padding: 25px 20px;
            }
            .contact-card {
                padding: 25px 18px;
            }
            .footer {
                padding: 50px 0 0;
                text-align: center;
            }
            .footer .social {
                justify-content: center;
                display: flex;
            }
            .footer-bottom {
                margin-top: 35px;
                padding: 18px 12px;
                font-size: 0.8rem;
                line-height: 1.6;
            }
            .floating-cta {
                bottom: 16px;
                right: 16px;
                padding: 10px 18px;
                font-size: 0.9rem;
            }
        }

        /* ============ RESPONSIVE: Small mobile (<576px) ============ */
        @media (max-width: 575.98px) {
            .container {
                padding-left: 18px;
                padding-right: 18px;
            }
            .pp-navbar {
                padding: 8px 0;
            }
            .pp-navbar > .container {
                padding-right: 12px;
                padding-left: 12px;
            }
            .pp-navbar .navbar-brand {
                font-size: 1.15rem;
                gap: 8px;
                max-width: calc(100% - 64px); /* leave room for toggler */
            }
            .pp-navbar .navbar-brand img {
                height: 32px;
                width: 32px;
            }
            .pp-navbar .navbar-toggler {
                padding: 6px 10px;
                font-size: 1rem;
                max-width: 52px;
            }
            .pool-table {
                max-width: 92%;
                margin-left: auto;
                margin-right: auto;
                border-width: 8px;
            }
            .ball {
                width: 20px;
                height: 20px;
            }
            .ball::after {
                top: 3px;
                left: 6px;
                width: 6px;
                height: 6px;
            }
            .hero-stat .num { font-size: 1.5rem; }
            .feature-icon {
                width: 48px;
                height: 48px;
                font-size: 1.25rem;
                margin-bottom: 14px;
            }
            .feature-card h4 { font-size: 1.05rem; }
            .feature-card p { font-size: 0.9rem; }
            .step-num {
                width: 56px;
                height: 56px;
                font-size: 1.6rem;
            }
            .about-image {
                aspect-ratio: 1/1;
                max-width: 260px;
            }
            .about-image .badge-circle .inner {
                font-size: 1.2rem;
                padding: 14px;
            }
            .contact-card {
                padding: 22px 16px;
            }
            .contact-card .icon {
                width: 50px;
                height: 50px;
                font-size: 1.15rem;
                margin-bottom: 14px;
            }
            .contact-card h5 { font-size: 1rem; }
            .contact-card p { font-size: 0.88rem; }
            .form-control, .form-select {
                font-size: 16px; /* prevents iOS auto-zoom on focus */
                padding: 11px 14px;
            }
            .footer { padding: 40px 0 0; }
            .footer h6 { font-size: 0.95rem; margin-bottom: 14px; }
            .footer ul li { font-size: 0.88rem; }
            .footer .social a {
                width: 40px; height: 40px;
            }
            .hero {
                padding: 90px 0 40px;
            }
            .hero-stats {
                gap: 14px 20px;
                justify-content: space-between;
            }
            .hero-stat {
                flex: 1 0 30%;
                text-align: center;
            }
            .hero-stat .num {
                font-size: 1.7rem;
            }
            .hero-stat .label {
                font-size: 0.7rem;
                letter-spacing: 0.5px;
            }
            .btn-pp,
            .btn-pp-outline {
                padding: 9px 20px;
                font-size: 0.92rem;
            }
            .hero .d-flex.flex-wrap.gap-3 {
                gap: 10px !important;
                flex-direction: column;
                align-items: stretch;
            }
            .hero .d-flex.flex-wrap.gap-3 .btn-pp,
            .hero .d-flex.flex-wrap.gap-3 .btn-pp-outline {
                justify-content: center;
                width: 100%;
            }
            .cta-banner .d-flex.flex-wrap {
                flex-direction: column;
                gap: 10px !important;
            }
            .cta-banner .btn-pp,
            .cta-banner .btn-pp-outline {
                width: 100%;
                justify-content: center;
            }
            .section {
                padding: 50px 0;
            }
            .feature-card {
                padding: 24px 20px;
            }
            .about ul li {
                font-size: 0.92rem;
            }
            .contact-form {
                padding: 20px 16px;
            }
            #newsletterForm {
                flex-direction: column;
            }
            #newsletterForm .btn-pp {
                width: 100%;
                justify-content: center;
            }
            .floating-cta {
                bottom: 14px;
                right: 14px;
                padding: 9px 16px;
                font-size: 0.85rem;
            }
            .footer-bottom a {
                display: inline-block;
                margin: 4px 6px;
            }
        }

        /* ============ RESPONSIVE: Extra small mobile (<=400px) ============ */
        @media (max-width: 400px) {
            .container {
                padding-left: 14px;
                padding-right: 14px;
            }
            .pp-navbar > .container {
                padding-right: 10px;
                padding-left: 10px;
            }
            .pp-navbar .navbar-brand {
                font-size: 1.05rem;
                max-width: calc(100% - 56px);
                gap: 6px;
            }
            .pp-navbar .navbar-brand img {
                height: 28px;
                width: 28px;
            }
            .pp-navbar .navbar-toggler {
                padding: 4px 8px;
                max-width: 46px;
            }
            .hero {
                padding: 80px 0 32px;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .hero p.lead {
                font-size: 0.95rem;
            }
            .hero-badge {
                font-size: 0.62rem;
                letter-spacing: 0.3px;
                padding: 6px 10px !important;
            }
            .hero-stats {
                gap: 10px 14px;
                margin-top: 1.5rem;
                padding-top: 1.2rem;
            }
            .hero-stat .num { font-size: 1.4rem; }
            .hero-stat .label { font-size: 0.65rem; }
            .pool-table {
                max-width: 100%;
                border-width: 6px;
            }
            .section { padding: 40px 0; }
            .section-title { margin-bottom: 30px; }
            .section-title h2 { font-size: 1.4rem; }
            .section-title p { font-size: 0.9rem; }
            .feature-card { padding: 20px 16px; }
            .step-card { padding: 16px 6px; }
            .about-image { max-width: 220px; }
            .cta-banner { padding: 50px 0; }
            .cta-banner h2 { font-size: 1.4rem; }
            .cta-banner p { font-size: 0.95rem; }
            .footer-bottom {
                font-size: 0.75rem;
                margin-top: 28px;
            }
        }

        /* Touch-friendly tap targets on touch devices */
        @media (hover: none) and (pointer: coarse) {
            .btn-pp,
            .btn-pp-outline {
                min-height: 44px;
            }
            .pp-navbar .nav-link {
                padding: 12px 16px !important;
            }
            .footer .social a {
                width: 44px;
                height: 44px;
            }
        }
