/* ============================================
   POTS Replacement — BFP Branded Theme
   Amber/copper accent, dark telecom aesthetic
   v1.0.0
   ============================================ */

:root {
    --pots-bg-primary: #0a0a1a;
    --pots-bg-secondary: #0f1523;
    --pots-bg-card: rgba(15, 21, 35, 0.85);
    --pots-accent: #d4a574;
    --pots-accent-light: #e8c49a;
    --pots-accent-dark: #b08050;
    --pots-green: #00c853;
    --pots-cyan: #00d4ff;
    --pots-text-primary: #e8eaed;
    --pots-text-secondary: #9aa0a8;
    --pots-border: rgba(212, 165, 116, 0.2);
    --pots-glass: rgba(255, 255, 255, 0.04);
    --pots-card-radius: 16px;
    --pots-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset for POTS pages ---- */
.pots-page,
.pots-page * {
    box-sizing: border-box;
}

body.pots-body {
    background: var(--pots-bg-primary);
    color: var(--pots-text-primary);
    font-family: "Inter", -apple-system, sans-serif;
    margin: 0;
    padding: 0;
}

/* ---- Hero Section ---- */
.pots-hero {
    position: relative;
    padding: 10rem 2rem 6rem;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(212, 165, 116, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(0, 200, 83, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a1a 0%, #0f1523 50%, #1a1028 100%);
}

.pots-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(90deg, rgba(212, 165, 116, 0.03) 0px, transparent 1px, transparent 80px),
        repeating-linear-gradient(0deg, rgba(212, 165, 116, 0.03) 0px, transparent 1px, transparent 80px);
    pointer-events: none;
}

.pots-hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.pots-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 165, 116, 0.12);
    border: 1px solid var(--pots-border);
    border-radius: 50px;
    color: var(--pots-accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.pots-hero-title {
    font-family: "Orbitron", sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--pots-accent-light) 50%, var(--pots-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pots-hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--pots-text-secondary);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.pots-hero-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--pots-accent) 0%, var(--pots-accent-dark) 100%);
    color: #0a0a1a;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--pots-transition);
    letter-spacing: 0.02em;
}

.pots-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.3);
    color: #0a0a1a;
}

.pots-hero-secondary {
    display: inline-block;
    margin-left: 1rem;
    padding: 1rem 2.5rem;
    border: 1px solid var(--pots-border);
    color: var(--pots-accent);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--pots-transition);
}

.pots-hero-secondary:hover {
    background: rgba(212, 165, 116, 0.1);
    color: var(--pots-accent-light);
}

/* ---- Stats Bar ---- */
.pots-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: -3rem auto 4rem;
    padding: 0 2rem;
    position: relative;
    z-index: 3;
}

.pots-stat-card {
    background: var(--pots-bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--pots-border);
    border-radius: var(--pots-card-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--pots-transition);
}

.pots-stat-card:hover {
    border-color: var(--pots-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.1);
}

.pots-stat-number {
    font-family: "Orbitron", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--pots-accent);
    margin-bottom: 0.5rem;
}

.pots-stat-label {
    font-size: 0.85rem;
    color: var(--pots-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ---- Section Common ---- */
.pots-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pots-section-title {
    font-family: "Orbitron", sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--pots-text-primary);
}

.pots-section-subtitle {
    text-align: center;
    color: var(--pots-text-secondary);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* ---- What We Replace Section ---- */
.pots-replace-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.pots-replace-card {
    background: var(--pots-bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--pots-border);
    border-radius: var(--pots-card-radius);
    padding: 2rem;
    transition: var(--pots-transition);
    position: relative;
    overflow: hidden;
}

.pots-replace-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pots-accent), var(--pots-accent-dark));
    opacity: 0;
    transition: var(--pots-transition);
}

.pots-replace-card:hover {
    border-color: var(--pots-accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(212, 165, 116, 0.1);
}

.pots-replace-card:hover::before {
    opacity: 1;
}

.pots-replace-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.pots-replace-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--pots-text-primary);
}

.pots-replace-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--pots-text-secondary);
    margin: 0;
}

/* ---- Industry Section ---- */
.pots-industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.pots-industry-card {
    background: var(--pots-bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--pots-card-radius);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: var(--pots-transition);
    cursor: default;
}

.pots-industry-card:hover {
    border-color: var(--pots-accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(212, 165, 116, 0.08);
}

.pots-industry-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.pots-industry-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--pots-text-primary);
}

.pots-industry-card p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--pots-text-secondary);
    margin: 0;
}

/* ---- Features Section ---- */
.pots-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pots-feature {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.pots-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(212, 165, 116, 0.1);
    border: 1px solid var(--pots-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.pots-feature h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--pots-text-primary);
}

.pots-feature p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--pots-text-secondary);
    margin: 0;
}

/* ---- Compliance Banner ---- */
.pots-compliance {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.06) 0%, rgba(0, 200, 83, 0.04) 100%);
    border: 1px solid var(--pots-border);
    border-radius: var(--pots-card-radius);
    padding: 3rem 2rem;
    max-width: 1100px;
    margin: 0 auto 4rem;
}

.pots-compliance-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.pots-compliance-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--pots-bg-card);
    border: 1px solid rgba(0, 200, 83, 0.15);
    border-radius: 12px;
    transition: var(--pots-transition);
}

.pots-compliance-badge:hover {
    border-color: var(--pots-green);
    box-shadow: 0 4px 20px rgba(0, 200, 83, 0.1);
}

.pots-compliance-badge .badge-icon {
    font-size: 1.5rem;
}

.pots-compliance-badge .badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--pots-green);
}

.pots-compliance-badge .badge-desc {
    font-size: 0.75rem;
    color: var(--pots-text-secondary);
}

/* ---- CTA Section ---- */
.pots-cta-section {
    text-align: center;
    padding: 5rem 2rem;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(212, 165, 116, 0.08) 0%, transparent 60%),
        var(--pots-bg-primary);
}

.pots-cta-title {
    font-family: "Orbitron", sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--pots-text-primary);
}

.pots-cta-text {
    font-size: 1.05rem;
    color: var(--pots-text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* ---- Contact Form Styling ---- */
.pots-contact-section {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.pots-contact-section .wpcf7-form {
    background: var(--pots-bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--pots-border);
    border-radius: var(--pots-card-radius);
    padding: 2.5rem;
}

.pots-contact-section .wpcf7-form label {
    display: block;
    color: var(--pots-text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.pots-contact-section .wpcf7-form input[type="text"],
.pots-contact-section .wpcf7-form input[type="email"],
.pots-contact-section .wpcf7-form input[type="tel"],
.pots-contact-section .wpcf7-form select,
.pots-contact-section .wpcf7-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--pots-text-primary);
    font-size: 0.95rem;
    transition: var(--pots-transition);
    margin-bottom: 1.25rem;
}

.pots-contact-section .wpcf7-form input:focus,
.pots-contact-section .wpcf7-form textarea:focus,
.pots-contact-section .wpcf7-form select:focus {
    outline: none;
    border-color: var(--pots-accent);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.15);
}

.pots-contact-section .wpcf7-form textarea {
    min-height: 120px;
    resize: vertical;
}

.pots-contact-section .wpcf7-form input[type="submit"] {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--pots-accent) 0%, var(--pots-accent-dark) 100%);
    color: #0a0a1a;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--pots-transition);
    width: 100%;
}

.pots-contact-section .wpcf7-form input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.3);
}

/* ---- Header Overrides ---- */
.pots-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 26, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--pots-border);
    padding: 0 2rem;
    transition: var(--pots-transition);
}

.pots-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.pots-logo {
    font-family: "Orbitron", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--pots-text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pots-logo .logo-accent {
    color: var(--pots-accent);
}

.pots-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pots-nav a {
    color: var(--pots-text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--pots-transition);
    position: relative;
}

.pots-nav a:hover,
.pots-nav a.active {
    color: var(--pots-accent);
}

.pots-nav-cta {
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--pots-accent) 0%, var(--pots-accent-dark) 100%);
    color: #0a0a1a !important;
    border-radius: 50px;
    font-weight: 600 !important;
}

.pots-nav-cta:hover {
    color: #0a0a1a !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

/* ---- Footer ---- */
.pots-footer {
    background: #060612;
    border-top: 1px solid var(--pots-border);
    padding: 4rem 2rem 2rem;
}

.pots-footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.pots-footer h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--pots-accent);
    margin-bottom: 1.25rem;
}

.pots-footer p,
.pots-footer li {
    font-size: 0.85rem;
    color: var(--pots-text-secondary);
    line-height: 1.6;
}

.pots-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pots-footer li {
    margin-bottom: 0.5rem;
}

.pots-footer a {
    color: var(--pots-text-secondary);
    text-decoration: none;
    transition: var(--pots-transition);
}

.pots-footer a:hover {
    color: var(--pots-accent);
}

.pots-footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--pots-text-secondary);
}

/* ---- Mobile Menu Toggle ---- */
.pots-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--pots-text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .pots-hero {
        padding: 8rem 1.5rem 4rem;
        min-height: 70vh;
    }

    .pots-hero-cta,
    .pots-hero-secondary {
        display: block;
        margin: 0.5rem auto;
        text-align: center;
        max-width: 280px;
    }

    .pots-hero-secondary {
        margin-left: auto;
    }

    .pots-stats {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -2rem;
    }

    .pots-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .pots-mobile-toggle {
        display: block;
    }

    .pots-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid var(--pots-border);
    }

    .pots-nav.open {
        display: flex;
    }

    .pots-compliance-badges {
        flex-direction: column;
        align-items: center;
    }

    .pots-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .pots-stats {
        grid-template-columns: 1fr;
    }

    .pots-footer-grid {
        grid-template-columns: 1fr;
    }
}
