/* =========================================
   Turbo Home Security - Premium Stylesheet
   ========================================= */

:root {
    /* Color Palette */
    --primary-blue: #0A2540;
    /* Updated to new theme deep blue */
    --primary-navy: #0A2540;
    --secondary-blue: #1C3D5A;
    --accent-blue: #0070F3;
    --cta-color: #38A169;
    /* Updated to new theme green */
    --text-dark: #1A202C;
    --text-gray: #4A5568;
    --text-white: #FFFFFF;
    --bg-light: #F7FAFC;
    --white: #FFFFFF;

    /* Typography */
    --font-primary: 'Inter', sans-serif;

    /* Transitions & Shadows */
    --transition: all 0.3s ease;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
    --glow-shadow: 0 0 15px rgba(0, 209, 255, 0.6);
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.light-text {
    color: var(--white);
}

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-massive {
    padding: 20px 40px;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--cta-color);
    color: var(--primary-blue);
}

.btn-primary:hover {
    background-color: #00bce6;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.btn-outline:hover {
    background-color: var(--accent-blue);
    color: var(--white);
}

.btn-glow {
    box-shadow: var(--glow-shadow);
}

.btn-glow:hover {
    box-shadow: 0 0 25px rgba(0, 209, 255, 0.8);
}

/* Pulse Animation for CTA */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 209, 255, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(0, 209, 255, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 209, 255, 0);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* =========================================
   Unified Navigation (all pages)
   ========================================= */
:root {
    --navbar-h: 72px;
}

body {
    padding-top: var(--navbar-h);
}

#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    height: var(--navbar-h);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
    transition: box-shadow 0.25s ease;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--navbar-h);
    padding: 0 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-brand-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: #0A2540;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.nav-adt-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #E2E8F0;
    border-radius: 50px;
    padding: 5px 14px;
    background: #F7FAFC;
    font-size: .78rem;
    font-weight: 600;
    color: #0A2540;
}

.nav-adt-badge img {
    width: 28px;
    height: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4A5568;
    text-decoration: none;
    transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #0A2540;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.btn-cta,
.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #17824a;
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
    white-space: nowrap;
}

.btn-cta:hover,
.nav-cta-btn:hover {
    background: #125f38;
    transform: translateY(-1px);
    color: var(--white) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: #0A2540;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-nav-drawer {
    display: none;
    position: fixed;
    top: var(--navbar-h);
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
    z-index: 999;
    padding: 10px 0;
}

.mobile-nav-drawer.open {
    display: block;
}

.mobile-nav-drawer a {
    display: block;
    padding: 13px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-blue);
    border-bottom: 1px solid #E2E8F0;
    text-decoration: none;
    transition: background 0.2s ease;
}

.mobile-nav-drawer a:last-child {
    border-bottom: none;
}

.mobile-nav-drawer a:hover {
    background: #F7FAFC;
}



/* =========================================
   Hero Section
   ========================================= */
.hero-section {
    position: relative;
    padding: 100px 0;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    color: var(--white);
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    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));
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.hero-content-left {
    flex: 1;
    max-width: 650px;
}

.hero-compliance {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
    color: #E2E8F0;
}

.hero-headline {
    font-size: 3.5rem;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-subheadline {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 35px;
    color: var(--white);
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.btn-green {
    background-color: #38A169;
    color: var(--white);
}

.btn-green:hover {
    background-color: #2F855A;
}

.btn-outline-white {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary-blue);
}

.hero-availability {
    font-size: 1rem;
    font-weight: 700;
    color: #48BB78;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-availability i {
    font-size: 0.6rem;
}

.hero-content-right {
    flex: 0.8;
}

.hero-devices {
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* =========================================
   Trust Bar
   ========================================= */
.trust-bar-section {
    position: relative;
    z-index: 10;
    margin-top: -50px;
    padding-bottom: 60px;
}

.trust-bar {
    background-color: var(--white);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 30px;
    border-radius: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-icon-circle {
    width: 35px;
    height: 35px;
    background-color: #F0FFF4;
    border: 2px solid #38A169;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38A169;
    font-size: 0.9rem;
}

.trust-info {
    display: flex;
    flex-direction: column;
}

.trust-info strong {
    font-size: 1.1rem;
    color: var(--primary-blue);
}

.trust-info span {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.trust-divider {
    width: 1px;
    height: 40px;
    background-color: #E2E8F0;
}

/* =========================================
   Features Section
   ========================================= */
.services-section {
    padding: 100px 0;
    background-color: #F7FAFC;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-image-container {
    position: relative;
}

.card-image-container img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.card-icon-circle {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 3px solid var(--white);
    z-index: 2;
}

.card-content {
    padding: 40px 20px 30px;
    text-align: center;
}

.card-content h3 {
    font-size: 1.15rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.card-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* =========================================
   Why Choose Us Section
   ========================================= */
.why-us-section {
    padding: 100px 0;
    background-color: var(--white);
}

.two-col-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.text-col h2 {
    font-size: 2.2rem;
    color: var(--primary-navy);
    margin-bottom: 40px;
    line-height: 1.2;
}

.benefits-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.benefits-list li {
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 12px;
    align-items: start;
}

.benefits-list i {
    color: #38A169; /* Green checkmark */
    font-size: 1.1rem;
    margin-top: 2px;
}

.benefit-label {
    font-size: 0.95rem;
    color: var(--primary-navy);
    font-weight: 800;
    line-height: 1.4;
}

.benefit-desc {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.image-col img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    display: block;
}

/* =========================================
   Emotional Safety Section
   ========================================= */
.emotional-section {
    padding: 100px 0;
    background-color: var(--primary-blue);
    color: var(--white);
}

.emotional-copy {
    color: #E2E8F0;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
}

.emotional-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.emotional-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 20px;
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.emotional-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.emotional-card i {
    font-size: 2.5rem;
    color: var(--cta-color);
    margin-bottom: 20px;
}

.emotional-card h3 {
    color: var(--white);
    font-size: 1.2rem;
}

.emotional-card p {
    color: #CBD5E0;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* =========================================
   Call Conversion Section
   ========================================= */
.conversion-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.sub-headline {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.conversion-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.conversion-benefits span {
    font-weight: 600;
    color: var(--primary-blue);
}

.conversion-benefits i {
    color: #38A169;
}

.big-phone-display {
    margin-bottom: 30px;
}

.big-phone-display a {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.big-phone-display a:hover {
    color: var(--accent-blue);
}

/* =========================================
   Testimonials Section
   ========================================= */
.testimonials-section {
    padding: 100px 0;
    background-color: #F7FAFC;
    /* Light gray background like the image */
}

.section-title {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 50px;
    font-weight: 800;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    border-top: 5px solid #38A169;
    /* Unified green */
    text-align: left;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #F6E05E;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.author {
    font-weight: 700;
    color: var(--accent-blue);
    font-style: normal !important;
    margin-top: 20px;
    margin-bottom: 5px;
}

.verified-customer {
    color: #38A169;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* =========================================
   FAQ Section
   ========================================= */
.faq-section {
    padding: 100px 0;
    background-color: var(--white);
}

.faq-container {
    max-width: 850px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 6px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 22px 25px;
    font-size: 1.1rem;
    font-weight: 700;
    background-color: #F0F4F8;
    /* Light blue/gray header from image */
    border: 1px solid #E2E8F0;
    color: var(--primary-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #E2E8F0;
}

.faq-answer {
    background-color: var(--white);
    border: 1px solid #E2E8F0;
    border-top: none;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.faq-answer p {
    padding: 20px 0;
    margin: 0;
    font-size: 1rem;
    color: var(--text-gray);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question {
    border-bottom: none;
}

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

/* =========================================
   Final CTA Section
   ========================================= */
.final-cta-section {
    position: relative;
    padding: 120px 0;
    background: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    color: var(--white);
}

.final-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.85);
}

.relative-z {
    position: relative;
    z-index: 2;
}

.final-cta-section h2 {
    color: var(--white);
    font-size: 3rem;
}

.final-cta-section p {
    color: #E2E8F0;
    font-size: 1.5rem;
    margin-bottom: 40px;
}

/* =========================================
   Footer — 3-Col Reference Design (all pages)
   ========================================= */
.main-footer {
    background-color: #0a1b24;
    color: var(--text-white);
    padding-top: 70px;
    padding-bottom: 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.1fr 1.6fr;
    gap: 50px;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 50px;
}

/* Brand column */
.footer-col .footer-brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-white);
    text-decoration: none;
    display: block;
    margin-bottom: 18px;
    letter-spacing: 0.2px;
}

.footer-adt {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 8px;
    padding: 8px 14px;
    margin-bottom: 16px;
}

.footer-adt-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50px;
    padding: 6px 14px;
    background: #fff;
    color: black !important;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 18px;
}

.footer-adt-badge img {
    width: 24px;
    height: auto;
    display: block;
}

.footer-col p.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 0;
}


a.floating-cta {

    background-color: green;
}

/* Column headings */
.footer-col h4 {
    color: var(--text-white);
    margin-bottom: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Link lists */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 13px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: var(--text-white);
}

/* Contact items */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
    margin-bottom: 14px;
    line-height: 1.5;
}

.footer-contact-item i {
    color: #38A169;
    margin-top: 2px;
    flex-shrink: 0;
    width: 14px;
    text-align: center;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-item a:hover {
    color: var(--text-white);
}

.footer-duns {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    margin-bottom: 14px;
}

/* Footer bottom legal bar */
.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    line-height: 1.8;
}

.footer-bottom p {
    margin-bottom: 4px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: var(--text-white);
    text-decoration: underline;
}


/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-green);
    color: black;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(56, 161, 105, 0.4);
    z-index: 999;
    animation: pulse-green 2s infinite;
    transition: var(--transition);
}

.floating-cta:hover {
    transform: scale(1.05);
    background-color: #2F855A;
}

@keyframes pulse-green {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(56, 161, 105, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(56, 161, 105, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(56, 161, 105, 0);
    }
}

/* Compliance Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: var(--white);
    width: 90%;
    max-width: 500px;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.popup-overlay.active .popup-content {
    transform: translateY(0);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    color: #CBD5E0;
    cursor: pointer;
}

.popup-icon {
    font-size: 4rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.popup-content h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.popup-brand {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4A5568;
    margin-bottom: 5px;
}

.popup-auth {
    font-size: 1rem;
    font-weight: 600;
    color: #718096;
    margin-bottom: 30px;
}

.popup-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 20px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    transition: var(--transition);
}

.popup-call-btn:hover {
    background-color: #1a365d;
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .floating-cta {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-cta {
        margin-top: 20px;
    }
}

/* =========================================
   Responsive Design (Mobile First Focus)
   ========================================= */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .two-col-layout {
        grid-template-columns: 1fr;
    }

    .image-col {
        order: -1;
        /* Move image to top on mobile */
    }

    .emotional-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-headline {
        font-size: 2.8rem;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content-left {
        max-width: 100%;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .trust-bar {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 768px) {

    /* Show hamburger, hide desktop nav items */
    .hamburger {
        display: flex;
    }

    .nav-adt-badge,
    .nav-links,
    .btn-cta,
    .nav-cta-btn {
        display: none;
    }

    .hero-section {
        padding: 60px 0;
        text-align: center;
    }

    .hero-headline {
        font-size: 2.2rem;
    }

    .hero-subheadline {
        font-size: 1.2rem;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .hero-availability {
        justify-content: center;
        text-align: center;
    }

    .trust-bar {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        border-radius: 15px;
    }

    .trust-divider {
        display: none;
    }

    .features-grid,
    .emotional-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .big-phone-display a {
        font-size: 2.2rem;
    }

    .conversion-benefits {
        flex-direction: column;
        gap: 15px;
    }

    /* Footer responsive */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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