:root {
    --primary: #1e40af; /* Royal Blue */
    --primary-dark: #1e3a8a; /* Deep Navy */
    --secondary: #06b6d4; /* Cyan */
    --accent: #f59e0b; /* Amber */
    --success: #10b981; /* Emerald */
    --text-main: #0f172a; /* Slate 900 */
    --text-gray: #475569; /* Slate 600 */
    --text-light: #64748b; /* Slate 500 */
    --container-width: 1180px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 4px 6px -1px rgba(15, 23, 42, 0.03), 0 2px 4px -2px rgba(15, 23, 42, 0.03);
    --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.05), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
    --shadow-lg: 0 25px 60px -15px rgba(15, 23, 42, 0.12);
    --border-glass: 1px solid rgba(255, 255, 255, 0.5);
    --border-card: 1px solid rgba(15, 23, 42, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #f8fafc;
    background-image: 
        radial-gradient(at 0% 0%, rgba(30, 64, 175, 0.03) 0px, transparent 40%),
        radial-gradient(at 100% 50%, rgba(6, 182, 212, 0.03) 0px, transparent 40%),
        radial-gradient(at 50% 100%, rgba(30, 64, 175, 0.02) 0px, transparent 50%);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Typography with clamp for automatic fluid sizing */
h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

h1 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0f172a;
    line-height: 1.2;
}

.section-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title h2 {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-gray);
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 10px 25px -5px rgba(30, 64, 175, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(30, 64, 175, 0.4);
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.15rem;
}

.btn-white {
    background: white;
    color: var(--primary);
    border: 1px solid rgba(30, 64, 175, 0.15);
    box-shadow: var(--shadow-sm);
}

.btn-white:hover {
    background: #f8fafc;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-full {
    width: 100%;
}

/* Floating Capsule Header Redesign */
.header-wrapper {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 1.5rem;
    pointer-events: none; /* Let clicks pass to header container */
}

header {
    max-width: var(--container-width);
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 100px;
    border: var(--border-glass);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    pointer-events: auto;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 255, 255, 0.6);
}

header nav {
    height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.75rem 0 1.25rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 1.35rem;
    font-weight: 700;
    z-index: 1010;
}

.logo-text {
    color: var(--text-main);
}

.logo-text span {
    color: var(--primary);
}

/* Nav Menu Structure */
.nav-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-gray);
    font-size: 0.95rem;
    position: relative;
    padding: 0.25rem 0;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Trustpilot Stars */
.tp-stars {
    display: flex;
    gap: 3px;
}

.tp-star {
    background: #00b67a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 2px;
}

.tp-star i, .tp-star svg {
    width: 12px !important;
    height: 12px !important;
    fill: white !important;
    stroke: none !important;
    color: white !important;
}

.trustpilot-header {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.85rem;
    color: var(--text-gray);
    background: rgba(255, 255, 255, 0.7);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    border: var(--border-card);
}

/* Mobile Hamburger Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
    padding: 0;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    border-radius: 10px;
    transition: var(--transition);
}

/* Hero Section Offset for Floating Header */
.hero {
    padding: 160px 0 60px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.1rem;
    background: rgba(30, 64, 175, 0.06);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(30, 64, 175, 0.1);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-gray);
    max-width: 750px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

/* Integrated Control Center Dashboard */
.dashboard-panel {
    background: white;
    border-radius: 36px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: var(--border-card);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.dashboard-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.dashboard-calc {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.calc-tabs {
    display: flex;
    background: #f1f5f9;
    padding: 5px;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.calc-tab {
    flex: 1;
    text-align: center;
    padding: 0.85rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-gray);
    cursor: pointer;
    border-radius: 12px;
    transition: var(--transition);
}

.calc-tab.active {
    background: white;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.calc-label {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.85rem;
    color: var(--text-main);
    display: block;
}

.calc-households {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.household-btn {
    border: 1px solid #e2e8f0;
    background: white;
    padding: 1.1rem 0.5rem;
    border-radius: 18px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.household-btn i {
    width: 24px;
    height: 24px;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.household-btn div {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-gray);
}

.household-btn:hover {
    border-color: #cbd5e1;
}

.household-btn.active {
    border-color: var(--primary);
    background: rgba(30, 64, 175, 0.02);
}

.household-btn.active i {
    color: var(--primary);
}

.household-btn.active div {
    color: var(--primary);
}

/* Comparison visual on right of panel */
.dashboard-vis {
    background: #f8fafc;
    border-radius: 28px;
    padding: 2.25rem;
    border: var(--border-card);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.chart-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-main);
}

.chart-savings-badge {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.chart-bars {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.chart-bar-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.chart-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-gray);
}

.chart-bar-outer {
    height: 22px;
    background: #e2e8f0;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
}

.chart-bar-inner {
    height: 100%;
    border-radius: 50px;
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.bar-current {
    background: #cbd5e1;
    width: 100%;
}

.bar-savings {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    width: 80%;
}

.chart-suppliers-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.85rem;
    text-align: center;
}

.chart-suppliers-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    opacity: 0.6;
    gap: 1rem;
}

.chart-suppliers-logos svg {
    height: 18px;
    max-width: 60px;
    color: #475569;
}

/* Smart Chat Section */
.chat-section {
    padding: 100px 0;
    background: white;
}

.chat-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 5rem;
    align-items: center;
}

.chat-bullets {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.chat-bullet {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-gray);
}

.chat-bullet i {
    color: var(--success);
    width: 20px;
    height: 20px;
}

.chat-phone-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.chat-phone {
    width: 100%;
    max-width: 380px;
    background: #f1f5f9;
    border-radius: 40px;
    padding: 1.25rem;
    box-shadow: var(--shadow-lg);
    border: 6px solid #e2e8f0;
    aspect-ratio: 9/15;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.phone-header {
    background: white;
    padding: 0.85rem 1.25rem;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.25rem;
}

.phone-avatar {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.phone-contact-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
}

.phone-contact-info span {
    font-size: 0.75rem;
    color: var(--success);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.phone-contact-info span::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    display: inline-block;
}

.phone-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    overflow-y: auto;
    padding: 0 0.5rem;
}

.chat-bubble {
    max-width: 80%;
    padding: 0.85rem 1.1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    line-height: 1.4;
    font-weight: 500;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.chat-bubble.show {
    opacity: 1;
    transform: translateY(0);
}

.bubble-advisor {
    background: white;
    color: var(--text-main);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.bubble-user {
    background: var(--primary);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

/* Dynamic Tab Showcase Section */
.showcase-section {
    padding: 100px 0;
    background: #f8fafc;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 5rem;
    align-items: center;
}

.showcase-tabs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.showcase-tab {
    background: white;
    padding: 1.75rem 2rem;
    border-radius: 24px;
    border: var(--border-card);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.showcase-tab-icon {
    width: 48px;
    height: 48px;
    background: #f1f5f9;
    color: var(--text-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.showcase-tab-icon i {
    width: 22px;
    height: 22px;
}

.showcase-tab-text h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-main);
    transition: var(--transition);
}

.showcase-tab-text p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.showcase-tab:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.showcase-tab.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, white, #f8fafc);
}

.showcase-tab.active .showcase-tab-icon {
    background: var(--primary);
    color: white;
}

.showcase-tab.active .showcase-tab-text h3 {
    color: var(--primary);
}

.showcase-content-card {
    background: white;
    border-radius: 32px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: var(--border-card);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
}

.showcase-graphic {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 20px;
    border: var(--border-card);
}

.graphic-brand-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.graphic-brand-row:last-child {
    border-bottom: none;
}

.graphic-badge {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Combined Trust & FAQ Section */
.trust-faq-section {
    padding: 100px 0;
    background: white;
}

.trust-faq-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
}

.trust-card {
    background: #f8fafc;
    border-radius: 32px;
    padding: 3rem 2.5rem;
    border: var(--border-card);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-score-block {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1.5rem;
}

.trust-score-num {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-main);
}

.trust-score-stars-desc h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.trust-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.review-item {
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 23, 42, 0.02);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.review-author {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
}

.review-text {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-style: italic;
    line-height: 1.4;
}

/* FAQ Accordion Internals */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #f8fafc;
    border-radius: 20px;
    border: var(--border-card);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(30, 64, 175, 0.1);
    background: white;
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.5rem 1.75rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-main);
}

.faq-question i {
    width: 20px;
    height: 20px;
    color: var(--text-light);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 1.75rem 1.5rem;
    color: var(--text-gray);
    display: none;
    line-height: 1.65;
    font-size: 0.95rem;
}

.faq-item.active {
    background: white;
    border-color: rgba(30, 64, 175, 0.15);
    box-shadow: var(--shadow-md);
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active i {
    transform: rotate(180deg);
    color: var(--primary);
}

/* Absolute Floating Footer CTA Overlay */
.footer-cta-overlay {
    margin-bottom: -70px;
    position: relative;
    z-index: 10;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-dark), #1e1b4b);
    padding: 4rem 3rem;
    border-radius: 36px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(6, 182, 212, 0.15) 0%, transparent 65%);
    pointer-events: none;
}

.cta-box h2 {
    color: white;
    font-size: 2.6rem;
    margin-bottom: 0.85rem;
    letter-spacing: -0.02em;
}

.cta-box p {
    font-size: 1.15rem;
    margin-bottom: 2.25rem;
    color: #cbd5e1;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Section */
footer {
    padding: 150px 0 40px;
    background: #0f172a;
    color: #94a3b8;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 1.3fr;
    gap: 5rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand .logo-text span {
    color: var(--secondary);
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 320px;
}

.footer-links h4, .footer-contact h4 {
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
}

.footer-links ul li {
    margin-bottom: 0.85rem;
}

.footer-links a {
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact p a {
    color: white;
    font-weight: 600;
}

.footer-contact p a:hover {
    color: var(--secondary);
}

.footer-bottom {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.85rem;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    z-index: 1001;
    display: none;
}

/* Mobile Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 2rem;
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    background: white;
    border-radius: 32px;
    padding: 3rem 2rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: popupFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes popupFadeIn {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.close-popup {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: #f1f5f9;
    border: none;
    color: var(--text-gray);
    font-size: 1.25rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.close-popup:hover {
    background: #e2e8f0;
}

/* New Premium Popup Styles */
.popup-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.08);
    color: var(--success);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.live-pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

.advisor-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1.5rem 0 2rem;
}

.avatar-wrapper {
    position: relative;
    margin-right: -12px;
}

.avatar-wrapper:last-child {
    margin-right: 0;
}

.avatar-img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: var(--shadow-sm);
    display: block;
}

.avatar-status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 11px;
    height: 11px;
    background: var(--success);
    border: 2px solid white;
    border-radius: 50%;
}

.popup-phone-number {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.popup-trust-tag {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-weight: 500;
}

/* Comprehensive Responsive Breakpoints Media Queries */

/* Large Desktop / TV Resolutions (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1250px;
    }
}

/* Laptops / Small Desktops (1024px - 1250px) */
@media (max-width: 1250px) {
    .nav-content {
        gap: 1.25rem;
    }
    .nav-links {
        gap: 1.25rem;
    }
    .trustpilot-header {
        display: none;
    }
}

@media (max-width: 1200px) {
    .dashboard-panel {
        gap: 2.5rem;
        padding: 2.5rem;
    }
    
    .chat-grid, .showcase-grid, .trust-faq-grid {
        gap: 3.5rem;
    }
}

/* Tablets Landscape & Portrait (768px - 1024px) */
@media (max-width: 1024px) {
    /* Header Capsule Collapse preparation */
    header {
        border-radius: 30px;
    }
    
    header nav {
        height: 68px;
    }
    
    .nav-content {
        position: absolute;
        top: 85px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border: var(--border-glass);
        box-shadow: var(--shadow-lg);
        border-radius: 24px;
        padding: 2rem;
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: var(--transition);
        z-index: 1005;
    }
    
    .nav-content.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
    }
    
    .nav-links a {
        font-size: 1.05rem;
    }
    
    .trustpilot-header {
        justify-content: center;
        align-self: center;
    }
    
    .nav-cta {
        align-self: center;
        width: 100%;
        max-width: 320px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Toggle Close State Animation for Hamburger */
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Dashboard Layout */
    .dashboard-panel {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2.25rem;
        border-radius: 28px;
    }
    
    /* Grid Collapses */
    .chat-grid, .showcase-grid, .trust-faq-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .chat-info, .showcase-info {
        text-align: center;
        max-width: 680px;
        margin: 0 auto;
    }
    
    .chat-bullets {
        align-items: center;
    }
    
    .showcase-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 1rem;
        gap: 1rem;
    }
    
    .showcase-tab {
        flex: 1;
        min-width: 250px;
        padding: 1.25rem 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
    }
}

/* Mobile Landscape (576px - 768px) */
@media (max-width: 768px) {
    .header-wrapper {
        top: 12px;
        padding: 0 1rem;
    }
    
    header {
        border-radius: 24px;
    }
    
    header nav {
        height: 64px;
        padding: 0 1.25rem 0 1rem;
    }
    
    .nav-content {
        top: 76px;
    }

    .hero {
        padding: 130px 0 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.85rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 380px;
    }
    
    .calc-households {
        grid-template-columns: 1fr;
        gap: 0.50rem;
    }
    
    .showcase-tabs {
        flex-direction: column;
        overflow-x: visible;
    }
    
    .showcase-tab {
        width: 100%;
        min-width: 0;
    }
    
    .showcase-content-card {
        padding: 2.25rem;
        border-radius: 24px;
    }
    
    .trust-card {
        padding: 2.25rem 1.75rem;
    }
    
    .cta-box {
        padding: 3rem 1.50rem;
        border-radius: 28px;
    }
    
    .footer-cta-overlay {
        margin-bottom: -50px;
        padding: 0 1rem;
    }
    
    footer {
        padding: 120px 0 100px; /* Space for Mobile sticky CTA */
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .mobile-sticky-cta {
        display: block;
    }
}

/* Small Portrait Phones (Up to 576px) */
@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }
    
    .dashboard-panel {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .dashboard-vis {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }
    
    .chart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .chat-phone {
        max-width: 100%;
        aspect-ratio: 9/16;
        border-radius: 30px;
        border-width: 4px;
        padding: 0.85rem;
    }
    
    .phone-header {
        padding: 0.75rem 1rem;
        margin-bottom: 1rem;
    }
    
    .chat-bubble {
        max-width: 90%;
        padding: 0.75rem 0.95rem;
        font-size: 0.8rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1.25rem;
        font-size: 0.9rem;
    }
}
