/*
Theme Name: AntiGravity Theme
Theme URI: https://bpszerofees.com
Author: AntiGravity
Version: 2.0.003
*/

/* BPS Website Styles - Premium Edition */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --bps-gold: #F0B820;
    --bps-gold-light: #F7D060;
    --bps-gold-dark: #D0A020;
    --bps-gold-darker: #B88818;

    /* Neutrals */
    --bps-black: #050505;
    --bps-charcoal: #111111;
    --bps-deep-gray: #1a1a1a;
    --bps-gray: #444444;
    --bps-medium-gray: #666666;
    --bps-light-gray: #E5E5E5;
    --bps-off-white: #F9F9FB;
    --bps-white: #FFFFFF;

    /* Fonts */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Effects */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px -2px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px -10px rgba(0, 0, 0, 0.15);

    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --speed-fast: 0.2s;
    --speed-base: 0.4s;
    --speed-slow: 0.6s;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--bps-black);
    background: var(--bps-white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* Typography Enhancements */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

p {
    font-weight: 400;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.8);
    padding: 1.5rem 0;
}

.nav-scrolled {
    background: var(--bps-white);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--glass-border);
}

.nav-scrolled .nav-menu a {
    color: var(--bps-black);
}

.nav-scrolled .nav-toggle span {
    background: var(--bps-black);
}

.nav-container {
    width: 90%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 45px;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    color: var(--bps-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bps-gold);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--bps-gold-dark);
}

.nav-menu a:hover::after {
    width: 100%;
}


/* Dropdown Menu Styles */
.nav-menu .dropdown {
    position: relative;
    display: inline-block;
}

.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: transparent;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    list-style: none;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1050;
    display: none;
    flex-direction: column;
    gap: 0;
}

.nav-menu .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: flex;
}

/* Ensure the link itself triggers the hover state properly */
.nav-menu .dropdown > a {
    cursor: default; /* Optional: makes it feel more like a menu than a link */
}

/* Let's make sure the hover area connects the link to the menu */
.nav-menu .dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
}



.nav-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-cta {
    margin: 0;
}

.nav-phone {
    margin: 0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    transition: var(--transition);
}

.nav-phone:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: var(--bps-gold);
}

.nav-phone-text {
    color: var(--bps-gold);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.02em;
    line-height: 1;
}

.nav-phone-icon {
    font-size: 1.4rem;
    line-height: 1;
    color: #FF4444;
}

.nav-scrolled .nav-phone {
    border-color: rgba(0, 0, 0, 0.1);
}

.nav-scrolled .nav-phone .nav-phone-text {
    color: var(--bps-gold-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--bps-white);
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--bps-gold);
    color: var(--bps-black);
    box-shadow: 0 4px 15px rgba(240, 184, 32, 0.3);
}

.btn-primary:hover {
    background: var(--bps-gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(240, 184, 32, 0.4);
}

.btn-lg {
    padding: 1.1rem 2.8rem;
    font-size: 1.05rem;
}

.btn-white {
    background: var(--bps-white);
    color: var(--bps-black);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    background: var(--bps-off-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-white-outline {
    background: transparent;
    color: var(--bps-white);
    border: 2px solid var(--bps-white);
}

.btn-white-outline:hover {
    background: var(--bps-white);
    color: var(--bps-black);
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
    background: var(--bps-black);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('images/hero_bg.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: scale(1.05);
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    color: var(--bps-white);
    max-width: 1000px;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards 0.2s;
}

.hero-title span {
    color: var(--bps-gold);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards 0.4s;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Proof Bar */
.proof-bar {
    padding: 3rem 0;
    background: var(--bps-white);
    position: relative;
    z-index: 5;
    margin-top: -50px;
    border-radius: 15px 15px 0 0;
    box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.05);
}

.proof-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

.proof-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.proof-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--bps-black);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.proof-label {
    display: block;
    font-size: 0.9rem;
    color: var(--bps-medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Common Section Styles */
section {
    padding: 8rem 0;
}

.section-tag {
    display: block;
    text-align: center;
    color: var(--bps-gold-darker);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 5rem;
    color: var(--bps-black);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--bps-gold);
    border-radius: 2px;
}

/* Problem/Solution Section */
.problem-solution {
    background: var(--bps-off-white);
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.card {
    background: var(--bps-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 3rem 2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--bps-gold-light);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--bps-off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.card:hover .card-icon {
    background: var(--bps-gold);
    transform: scale(1.1);
}

.card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--bps-black);
}

.card-text {
    color: var(--bps-medium-gray);
    font-size: 1rem;
}

/* Services Section */
.services {
    background: var(--bps-white);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

/* Center the middle card in the services grid */
.service-grid article:nth-child(2) {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-grid article:nth-child(2) .service-list li {
    text-align: left; /* Keep list items left-aligned within the centered card */
}

.service-grid article:nth-child(2) .service-img-container {
    width: 100%;
    display: flex;
    justify-content: center;
}


.service-card {
    background: var(--bps-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.service-img-container {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.service-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(240, 184, 32, 0.2);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.service-body {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--bps-black);
}

.service-outcome {
    color: var(--bps-medium-gray);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.5;
}

.service-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.service-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: var(--bps-gray);
    font-weight: 500;
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--bps-gold);
    font-weight: 700;
}

.service-link {
    color: var(--bps-black);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--bps-gold-darker);
    gap: 0.8rem;
}

/* Process Section */
.process {
    background: var(--bps-black);
    color: var(--bps-white);
}

.process .section-title {
    color: var(--bps-white);
}

.process-steps {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.process-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--bps-gold);
    transition: width 1.5s ease;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--bps-deep-gray);
    border: 3px solid rgba(255, 255, 255, 0.1);
    color: var(--bps-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 2rem;
    transition: var(--transition);
}

.process-step.visible .step-number {
    border-color: var(--bps-gold);
    background: var(--bps-gold);
    color: var(--bps-black);
    box-shadow: 0 0 30px rgba(240, 184, 32, 0.3);
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--bps-gold);
}

.step-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Differentiators */
.differentiators {
    background: var(--bps-white);
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.diff-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.diff-icon-box {
    min-width: 70px;
    height: 70px;
    background: var(--bps-off-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--bps-gold-dark);
    transition: var(--transition);
}

.diff-item:hover .diff-icon-box {
    background: var(--bps-gold);
    color: var(--bps-black);
    transform: rotate(10deg);
}

.diff-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--bps-black);
}

.diff-description {
    color: var(--bps-medium-gray);
    font-size: 1.05rem;
}

/* FAQ Section */
.faq {
    background: var(--bps-off-white);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bps-white);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(240, 184, 32, 0.3);
}

.faq-question {
    width: 100%;
    padding: 1.8rem 2.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--bps-black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
}

.faq-chevron {
    font-size: 1.2rem;
    color: var(--bps-gold-dark);
    transition: var(--transition);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
    padding: 0 2.5rem 2rem;
    color: var(--bps-medium-gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--bps-black) 0%, var(--bps-deep-gray) 100%);
    color: var(--bps-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 4rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-secondary {
    color: var(--bps-gold);
    margin-top: 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
}

/* Footer */
.footer {
    background: #000;
    color: var(--bps-white);
    padding: 6rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

.footer-logo-img {
    height: 50px;
    margin-bottom: 2rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.footer-heading {
    color: var(--bps-gold);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1.2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--bps-gold);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
    transition: var(--speed-fast);
}

.footer-contact a:hover {
    color: var(--bps-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: var(--bps-gold);
    color: var(--bps-black);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 999;
    font-size: 1.5rem;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }

    .footer-grid {
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    section {
        padding: 6rem 0;
    }

    .cards,
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        flex-direction: column;
        gap: 4rem;
    }

    .process-line {
        left: 40px;
        width: 2px;
        height: 100%;
        top: 0;
    }

    .process-line-fill {
        width: 100%;
        height: 0;
    }

    .process-step {
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 2rem;
    }

    .step-number {
        margin: 0;
        min-width: 80px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bps-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 4rem 2rem;
        transition: 0.5s ease-in-out;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-phone {
        display: none;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .cards,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .diff-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* ==================================
   Page Header (for subpages)
   ================================== */
.page-header {
    background: linear-gradient(135deg, var(--bps-black) 0%, var(--bps-deep-gray) 100%);
    padding: 12rem 0 6rem;
    text-align: center;
    color: var(--bps-white);
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--bps-white);
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    padding: 6rem 0;
    min-height: 40vh;
}

.coming-soon {
    text-align: center;
    font-size: 1.5rem;
    color: var(--bps-medium-gray);
    padding: 4rem 0;
}

/* Active nav state */
.nav-menu a.active {
    color: var(--bps-gold);
}

.nav-menu a.active::after {
    width: 100%;
}

/* ==================================
   Legal Pages Styling
   ================================== */
.legal-header {
    background: linear-gradient(135deg, var(--bps-black) 0%, var(--bps-deep-gray) 100%);
    padding: 10rem 0 5rem;
    text-align: center;
    color: var(--bps-white);
}

.legal-logo {
    height: 60px;
    margin-bottom: 2rem;
}

.legal-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--bps-white);
}

.legal-updated {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.legal-content {
    padding: 5rem 0;
    background: var(--bps-white);
}

.legal-container {
    max-width: 800px;
}

.legal-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--bps-gray);
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--bps-off-white);
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bps-black);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--bps-gold);
}

.legal-section h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--bps-black);
    margin: 1.5rem 0 0.75rem;
}

.legal-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--bps-gray);
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-section ul li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--bps-gray);
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

.legal-section ul li strong {
    color: var(--bps-black);
}

.legal-section a {
    color: var(--bps-gold-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.legal-section a:hover {
    color: var(--bps-gold-darker);
    text-decoration: underline;
}

.legal-highlight {
    background: linear-gradient(135deg, rgba(240, 184, 32, 0.08), rgba(240, 184, 32, 0.15));
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--bps-gold);
}

.legal-warning {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(220, 38, 38, 0.1));
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #dc2626;
}

.legal-contact {
    background: var(--bps-off-white);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.legal-contact p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.legal-contact a {
    color: var(--bps-gold-dark);
}

/* ==================================
   Industry Stats Section
   ================================== */
.industry-stats {
    background: var(--bps-white);
    padding: 6rem 0;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--bps-medium-gray);
    font-size: 1.1rem;
    margin-top: 0;
}

.stats-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.stats-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bps-white);
    font-size: 1rem;
}

.stats-table th,
.stats-table td {
    padding: 1.25rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-table th {
    background: var(--bps-black);
    color: var(--bps-white);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.stats-table th:first-child {
    border-radius: 12px 0 0 0;
}

.stats-table th:last-child {
    border-radius: 0 12px 0 0;
}

.stats-table tbody tr:hover {
    background: rgba(240, 184, 32, 0.05);
}

.stats-table .highlight-red {
    color: #dc2626;
    font-weight: 700;
}

.stats-table .highlight-green {
    color: #16a34a;
    font-weight: 700;
}

.stats-table .total-row {
    background: linear-gradient(90deg, rgba(22, 163, 74, 0.1), rgba(22, 163, 74, 0.2));
    font-weight: 700;
}

.stats-table .total-row td {
    border-bottom: none;
}

.table-footnote {
    text-align: center;
    color: var(--bps-medium-gray);
    font-size: 0.85rem;
    margin-top: 1.5rem;
    font-style: italic;
}

/* ==================================
   Comparison Section
   ================================== */
.comparison-section {
    background: var(--bps-off-white);
    padding: 6rem 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bps-white);
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-table th {
    font-weight: 700;
    font-size: 1rem;
    padding: 1.5rem;
}

.comparison-table th:first-child {
    background: var(--bps-black);
    color: var(--bps-white);
    text-align: left;
    border-radius: 12px 0 0 0;
}

.comparison-table th.them-col {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: var(--bps-white);
}

.comparison-table th.us-col {
    background: linear-gradient(135deg, var(--bps-gold), var(--bps-gold-dark));
    color: var(--bps-black);
    border-radius: 0 12px 0 0;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--bps-black);
}

.comparison-table td.them-col {
    background: rgba(220, 38, 38, 0.03);
}

.comparison-table td.us-col {
    background: rgba(240, 184, 32, 0.08);
}

.comparison-table tbody tr:hover {
    background: rgba(0, 0, 0, 0.02);
}

.badge-red {
    display: inline-block;
    background: rgba(220, 38, 38, 0.15);
    color: #dc2626;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
}

.badge-green {
    display: inline-block;
    background: rgba(22, 163, 74, 0.15);
    color: #16a34a;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* ==================================
   Calculator Section
   ================================== */
.calculator-section {
    background: linear-gradient(135deg, var(--bps-black) 0%, var(--bps-deep-gray) 100%);
    color: var(--bps-white);
    padding: 6rem 0;
}

.calculator-section .section-tag {
    color: var(--bps-gold);
}

.calculator-section .section-title {
    color: var(--bps-white);
}

.calculator-section .section-intro {
    color: rgba(255, 255, 255, 0.7);
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.calculator-card {
    background: var(--bps-white);
    border-radius: 16px;
    padding: 3rem;
    color: var(--bps-black);
    box-shadow: var(--shadow-xl);
}

.calc-input-group {
    margin-bottom: 1.5rem;
}

.calc-input-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--bps-black);
}

.input-with-prefix,
.input-with-suffix {
    display: flex;
    align-items: center;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.input-with-prefix:focus-within,
.input-with-suffix:focus-within {
    border-color: var(--bps-gold);
    box-shadow: 0 0 0 3px rgba(240, 184, 32, 0.2);
}

.input-with-prefix .prefix,
.input-with-suffix .suffix {
    padding: 1rem;
    background: var(--bps-off-white);
    font-weight: 700;
    color: var(--bps-medium-gray);
}

.input-with-prefix input,
.input-with-suffix input {
    flex: 1;
    border: none;
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    outline: none;
}

.calc-btn {
    width: 100%;
    margin-top: 1rem;
}

.calc-results {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.result-item {
    background: var(--bps-off-white);
    padding: 1.25rem;
    border-radius: 8px;
    text-align: center;
}

.result-item.highlight-result {
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(22, 163, 74, 0.2));
    border: 2px solid rgba(22, 163, 74, 0.3);
}

.result-label {
    display: block;
    font-size: 0.85rem;
    color: var(--bps-medium-gray);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.result-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
}

.result-value.bad {
    color: #dc2626;
}

.result-value.good {
    color: #16a34a;
}

.result-cta {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--bps-gold-light), var(--bps-gold));
    border-radius: 8px;
}

.result-cta p {
    margin: 0 0 1rem;
    font-weight: 600;
    color: var(--bps-black);
}

.result-cta strong {
    color: #16a34a;
    font-size: 1.2rem;
}

.calculator-info {
    color: var(--bps-white);
}

.calculator-info h3 {
    color: var(--bps-gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.calculator-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.calculator-info ul {
    list-style: none;
    margin: 1.5rem 0;
}

.calculator-info ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.calculator-info ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--bps-gold);
}

.compliance-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.compliance-badge span {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bps-gold);
}

/* Calculator Responsive */
@media (max-width: 992px) {
    .calculator-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {

    .stats-table,
    .comparison-table {
        font-size: 0.85rem;
    }

    .stats-table th,
    .stats-table td,
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 1rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Styles (Added via Automation) */
.contact-wrapper {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    color: var(--bps-black);
}

.contact-form-card {
    flex: 1.5;
    background: var(--bps-white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-xl);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--bps-black);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: var(--font-body);
    transition: var(--transition);
    background: var(--bps-off-white);
}

.form-control:focus {
    border-color: var(--bps-gold);
    background: var(--bps-white);
    box-shadow: 0 0 0 4px rgba(240, 184, 32, 0.15);
    outline: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.form-success {
    background: rgba(22, 163, 74, 0.1);
    border: 1px solid rgba(22, 163, 74, 0.2);
    color: #15803d;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.form-error {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    color: #b91c1c;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.info-item {
    margin-bottom: 2.5rem;
}

.info-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--bps-medium-gray);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--bps-black);
    text-decoration: none;
    font-family: var(--font-heading);
}

.info-value a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.info-value a:hover {
    color: var(--bps-gold-dark);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .contact-info {
        text-align: center;
        width: 100%;
    }

    .contact-form-card {
        width: 100%;
        padding: 2rem;
    }
}

/* Appended FAQ and Phone Styles */
.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

.faq-question {
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--bps-black);
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--bps-gold);
}

.faq-question::after {
    content: '+';
    font-weight: 300;
    font-size: 1.5rem;
    color: var(--bps-gold);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding-top: 1rem;
    color: var(--bps-gray);
    line-height: 1.7;
}

/* Nav Phone Updates */
.nav-phone {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.84rem;
    font-family: var(--font-heading);
    transition: var(--transition);
}

.nav-phone-icon {
    color: #D32F2F;
    /* Red Icon */
    margin-right: 10px;
    font-style: normal;
}

.nav-phone-text {
    color: #F0B820;
    /* Brand Yellow */
    transition: color 0.3s ease;
}

.nav-phone:hover .nav-phone-text {
    color: #D0A020;
    /* Darker Yellow */
}

/* Page Subtitle adjust */
.page-subtitle {}

/* Unless JS runs, then: */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* FAQ Content Padding Fix */
.faq-answer-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

/* v1.1 Padding Fix Applied */
/* Page Subtitle adjust */
.page-subtitle {
    max-width: 900px !important;
}

/* Fix FAQ Button Styles */
.faq-item .faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 1rem 2rem !important;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Ensure Reveal doesn't hide it if JS fails */
.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* v1.2 RESTORED */

/* ==========================================
   Alex AI Voice Agent Bubble
   ========================================== */
.alex-agent-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 9999;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
}

.alex-agent-bubble:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.6);
}

.alex-agent-bubble svg {
    width: 35px;
    height: 35px;
    fill: #ffffff;
}

.alex-notification-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background-color: #ef4444;
    border: 3px solid #ffffff;
    border-radius: 50%;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

@media (max-width: 480px) {
    .alex-agent-bubble {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }
    .alex-agent-bubble svg {
        width: 30px;
        height: 30px;
    }
}