/* === Reset & Base (Taste Skill: Geist font, off-black, no pure #000) === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #18181b; /* zinc-900, never pure black */
    line-height: 1.6;
    background: #fafafa;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; }

/* === Promo Bar === */
.promo-bar {
    background: #fef3c7;
    color: #18181b;
    padding: 10px 0;
    font-size: 13px;
    text-align: center;
    letter-spacing: 0.01em;
}
.promo-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.promo-badge {
    background: #18181b;
    color: #fafafa;
    font-weight: 600;
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.promo-text { font-weight: 500; color: #18181b; }
.promo-code { color: #52525b; }
.promo-code strong { color: #18181b; }
.promo-disclaimer {
    max-width: 720px;
    margin: 6px auto 0;
    font-size: 10px;
    color: #78716c;
    line-height: 1.5;
    padding: 0 24px;
}

/* === Header === */
.header {
    background: #18181b;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.logo-img {
    height: 28px;
    width: auto;
    filter: invert(1);
}
.logo-sub {
    font-size: 10px;
    color: #71717a;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.footer-logo-img {
    filter: invert(1);
    height: 24px;
}
.header-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #18181b;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 100px;
    background: #05E5AF;
    border: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px -2px rgba(5, 229, 175, 0.3);
}
.header-phone:hover {
    background: #1aecbb;
    box-shadow: 0 4px 14px -2px rgba(5, 229, 175, 0.4);
    transform: translateY(-1px);
}
.header-phone:active {
    transform: scale(0.98);
}

/* === Hero (Dark cinematic style like vivint.com) === */
.hero {
    position: relative;
    padding: 72px 0 96px;
    overflow: hidden;
    background: #0f0f0f;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.3;
    z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: start;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: #d4d4d8;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
    letter-spacing: 0.01em;
}
.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #05E5AF;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.hero h1 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.08;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}
.hero-sub {
    font-size: 16px;
    color: #a1a1aa;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}
.hero-trust {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #d4d4d8;
    font-size: 14px;
}

/* Hero Call Consultation Box */
.hero-call-box {
    margin-top: 32px;
    background: rgba(5, 229, 175, 0.12);
    border: 1px solid rgba(5, 229, 175, 0.25);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}
.hero-call-text {
    color: #d4d4d8;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 14px;
}
.hero-call-text strong {
    color: #ffffff;
}
.hero-call-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #05E5AF;
    color: #18181b;
    font-weight: 600;
    font-size: 16px;
    border-radius: 12px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 14px -2px rgba(5, 229, 175, 0.4);
}
.hero-call-btn:hover {
    background: #1aecbb;
    box-shadow: 0 6px 20px -2px rgba(5, 229, 175, 0.5);
    transform: translateY(-1px);
}

/* === Quiz Card (Taste: tinted shadows, rounded-[2rem], clean surfaces) === */
.quiz-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        0 8px 32px -4px rgba(0,0,0,0.08);
    overflow: hidden;
}
.quiz-card-header {
    background: #05E5AF;
    color: #18181b;
    text-align: center;
    padding: 14px 28px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.quiz-progress {
    height: 3px;
    background: #f4f4f5;
}
.quiz-progress-bar {
    height: 100%;
    background: #18181b;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 0 2px 2px 0;
}
.quiz-step-label {
    padding: 20px 28px 0;
    font-size: 11px;
    font-weight: 600;
    color: #a1a1aa;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.quiz-step {
    display: none;
    padding: 16px 28px 32px;
}
.quiz-step.active { display: block; }
.quiz-step h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #18181b;
    letter-spacing: -0.02em;
}
.quiz-hint {
    font-size: 13px;
    color: #71717a;
    margin-bottom: 20px;
}

/* Quiz Options */
.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.quiz-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    border: 1.5px solid #e4e4e7;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #3f3f46;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
    width: 100%;
}
.quiz-option:hover {
    border-color: #a1a1aa;
    background: #fafafa;
}
.quiz-option.selected {
    border-color: #18181b;
    background: #fafafa;
    color: #18181b;
}
.quiz-option:active {
    transform: scale(0.98);
}
.quiz-option-icon {
    width: 38px;
    height: 38px;
    background: #f4f4f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #71717a;
    transition: all 0.2s;
}
.quiz-option.selected .quiz-option-icon {
    background: #18181b;
    color: #fafafa;
}

.quiz-options.multi .quiz-option.selected {
    border-color: #18181b;
    background: #fafafa;
}

.quiz-next-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #05E5AF 0%, #04c99a 100%);
    color: #18181b;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    margin-top: 14px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: -0.01em;
    box-shadow: 0 4px 14px -2px rgba(5, 229, 175, 0.4);
}
.quiz-next-btn:hover { background: linear-gradient(135deg, #1aecbb 0%, #04d4a3 100%); box-shadow: 0 6px 20px -2px rgba(5, 229, 175, 0.5); transform: translateY(-1px); }
.quiz-next-btn:active { transform: translateY(0) scale(0.98); }

/* Quiz Form (Step 4) */
.quiz-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.quiz-form input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #e4e4e7;
    border-radius: 10px;
    font-size: 14px;
    transition: border-color 0.2s;
    outline: none;
    background: #fff;
}
.quiz-form input:focus {
    border-color: #18181b;
}
.quiz-form input::placeholder {
    color: #a1a1aa;
}
.quiz-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #05E5AF 0%, #04c99a 100%);
    color: #18181b;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 4px;
    letter-spacing: -0.01em;
    box-shadow: 0 4px 14px -2px rgba(5, 229, 175, 0.4);
}
.quiz-submit-btn:hover {
    background: linear-gradient(135deg, #1aecbb 0%, #04d4a3 100%);
    box-shadow: 0 6px 20px -2px rgba(5, 229, 175, 0.5);
    transform: translateY(-1px);
}
.quiz-submit-btn:active { transform: translateY(0) scale(0.98); box-shadow: 0 2px 8px rgba(5, 229, 175, 0.3); }
.form-disclaimer {
    font-size: 11px;
    color: #a1a1aa;
    line-height: 1.5;
}

/* Thank You */
.thank-you {
    text-align: center;
    padding: 20px 0;
}
.thank-you-icon { margin-bottom: 16px; }
.thank-you h3 {
    font-size: 22px;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}
.thank-you p {
    color: #52525b;
    font-size: 15px;
    margin-bottom: 8px;
}
.thank-you-promo {
    background: #fefce8;
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 13px;
    color: #854d0e;
    margin: 16px 0;
}
.thank-you-or {
    font-size: 12px;
    color: #a1a1aa;
    margin: 16px 0 4px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.thank-you-phone {
    font-size: 24px;
    font-weight: 600;
    color: #18181b;
    letter-spacing: -0.02em;
}

/* === Award Badges Marquee (slow) === */
.awards-bar {
    background: #18181b;
    padding: 24px 0;
    overflow: hidden;
    border-top: 1px solid #27272a;
}
.awards-marquee-wrap {
    overflow: hidden;
    position: relative;
}
.awards-marquee-wrap::before,
.awards-marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.awards-marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, #18181b, transparent);
}
.awards-marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, #18181b, transparent);
}
.awards-marquee-track {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: awardsScroll 50s linear infinite;
    width: max-content;
}
.award-badge-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 18px 24px;
    flex-shrink: 0;
}
.award-logo-img {
    height: 28px;
    width: auto;
    flex-shrink: 0;
    object-fit: contain;
}
.award-logo {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    letter-spacing: -0.03em;
    flex-shrink: 0;
}
.award-logo.accent {
    color: #05E5AF;
}
.award-divider {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}
.award-badge-title {
    font-size: 12px;
    font-weight: 500;
    color: #a1a1aa;
    white-space: nowrap;
}
@keyframes awardsScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* === Loading Screen === */
.loading-screen {
    text-align: center;
    padding: 32px 0;
}
.loading-spinner {
    position: relative;
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.spinner-ring {
    position: absolute;
    inset: 0;
    border: 3px solid #e4e4e7;
    border-top-color: #18181b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.loading-screen h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.loading-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 240px;
    margin: 0 auto;
    text-align: left;
}
.loading-step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #71717a;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.loading-step.visible {
    opacity: 1;
    transform: translateY(0);
    color: #3f3f46;
}

/* === Packages (Taste: NO 3 equal cards — use 2-col zig-zag + featured) === */
.packages {
    padding: 96px 0;
    background: #fff;
}
.packages h2 {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}
.section-sub {
    color: #71717a;
    font-size: 15px;
    margin-bottom: 56px;
    max-width: 480px;
}
.packages-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 20px;
    align-items: stretch;
}
.package-card {
    border: 1.5px solid #e4e4e7;
    border-radius: 16px;
    padding: 28px 24px;
    position: relative;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    background: #fff;
    display: flex;
    flex-direction: column;
}
.package-features {
    flex: 1;
}
.package-card:hover {
    border-color: #d4d4d8;
    box-shadow: 0 8px 24px -8px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}
.package-card.recommended {
    border-color: #18181b;
    box-shadow: 0 12px 32px -8px rgba(24,24,27,0.12);
    padding: 36px 28px;
}
.package-badge {
    position: absolute;
    top: -11px;
    left: 24px;
    background: #18181b;
    color: #fafafa;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 6px;
    letter-spacing: 0.02em;
}
.package-img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 12px;
    padding: 16px;
    background: #f4f4f5;
    border-radius: 12px;
}
.package-header {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f4f4f5;
}
.package-header h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}
.package-header p {
    font-size: 13px;
    color: #71717a;
}
.package-features {
    list-style: none;
    margin-bottom: 28px;
}
.package-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-size: 13px;
    font-weight: 500;
}
.package-features li.not-included {
    color: #a1a1aa;
}
.package-cta {
    display: block;
    text-align: center;
    padding: 14px;
    background: linear-gradient(135deg, #05E5AF 0%, #04c99a 100%);
    color: #18181b;
    font-weight: 600;
    font-size: 14px;
    border: none;
    border-radius: 10px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 3px 12px -2px rgba(5, 229, 175, 0.3);
}
.package-cta:hover {
    box-shadow: 0 5px 18px -2px rgba(5, 229, 175, 0.45);
    transform: translateY(-1px);
}
.package-cta:active { transform: translateY(0) scale(0.98); }
.package-card.recommended .package-cta {
    background: linear-gradient(135deg, #05E5AF 0%, #04c99a 100%);
    box-shadow: 0 4px 14px -2px rgba(5, 229, 175, 0.4);
}
.package-card.recommended .package-cta:hover {
    box-shadow: 0 6px 20px -2px rgba(5, 229, 175, 0.5);
}

/* === Scrolling Testimonials Marquee (medium speed) === */
.testimonials-scroll {
    padding: 72px 0 48px;
    background: #fafafa;
    overflow: hidden;
}
.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
}
.rating-text {
    font-size: 14px;
    font-weight: 500;
    color: #f59e0b;
    display: block;
    margin-bottom: 8px;
}
.testimonials-header h2 {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #18181b;
}
.testimonials-marquee-wrap {
    overflow: hidden;
    position: relative;
}
.testimonials-marquee-wrap::before,
.testimonials-marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}
.testimonials-marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, #fafafa, transparent);
}
.testimonials-marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, #fafafa, transparent);
}
.testimonials-marquee-track {
    display: flex;
    gap: 20px;
    animation: testimonialsScroll 80s linear infinite;
    width: max-content;
}
.tm-card {
    background: #fff;
    border: 1px solid #e4e4e7;
    border-radius: 16px;
    padding: 24px;
    width: 300px;
    flex-shrink: 0;
}
.tm-stars {
    color: #f59e0b;
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}
.tm-card p {
    font-size: 13px;
    color: #3f3f46;
    line-height: 1.7;
    margin-bottom: 16px;
}
.tm-author strong {
    display: block;
    font-size: 13px;
    color: #18181b;
}
.tm-author span {
    font-size: 11px;
    color: #a1a1aa;
}
@keyframes testimonialsScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* === Exit Intent Popup === */
.exit-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}
.exit-popup-overlay.active {
    display: flex;
}
.exit-popup {
    background: #fff;
    border-radius: 20px;
    padding: 40px 36px;
    max-width: 440px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 24px 64px -16px rgba(0,0,0,0.2);
    animation: popupSlide 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes popupSlide {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.exit-popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 28px;
    color: #a1a1aa;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}
.exit-popup-close:hover { color: #18181b; }
.exit-popup-badge {
    display: inline-block;
    background: #fef3c7;
    color: #92400e;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 6px;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.exit-popup h3 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
    color: #18181b;
}
.exit-popup p {
    font-size: 15px;
    color: #71717a;
    line-height: 1.6;
    margin-bottom: 20px;
}
.exit-popup-benefits {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 600;
    color: #18181b;
}
.exit-popup-btn {
    display: block;
    padding: 16px;
    background: linear-gradient(135deg, #05E5AF 0%, #04c99a 100%);
    color: #18181b;
    font-weight: 700;
    font-size: 16px;
    border-radius: 12px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 14px -2px rgba(5, 229, 175, 0.4);
}
.exit-popup-btn:hover {
    box-shadow: 0 6px 20px -2px rgba(5, 229, 175, 0.5);
    transform: translateY(-1px);
}
.exit-popup-dismiss {
    font-size: 12px !important;
    color: #a1a1aa !important;
    cursor: pointer;
    margin-bottom: 0 !important;
    margin-top: 12px;
}
.exit-popup-dismiss:hover { color: #71717a !important; }

/* === Honeypot (bot protection) === */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* === How It Works === */
.how-it-works {
    padding: 96px 0;
    background: #fafafa;
}
.how-it-works h2 {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 600;
    margin-bottom: 56px;
    letter-spacing: -0.03em;
    text-align: center;
}
.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
}
.step-card {
    text-align: center;
    max-width: 280px;
    flex: 1;
}
.step-number {
    width: 44px;
    height: 44px;
    background: #18181b;
    color: #fafafa;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.step-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.step-card p {
    font-size: 13px;
    color: #71717a;
    line-height: 1.7;
}
.step-arrow {
    display: flex;
    align-items: center;
    padding-top: 10px;
    color: #d4d4d8;
}

/* === Why Vivint (Taste: asymmetric 2-col) === */
.why-vivint {
    padding: 96px 0;
    background: #fff;
}
.why-vivint h2 {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 600;
    margin-bottom: 48px;
    letter-spacing: -0.03em;
    text-align: center;
}
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.compare-card {
    background: #fafafa;
    border: 1px solid #e4e4e7;
    border-radius: 16px;
    padding: 32px;
}
.compare-card h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #18181b;
    letter-spacing: -0.01em;
}
.compare-card ul {
    list-style: none;
}
.compare-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    font-size: 13px;
    color: #3f3f46;
    line-height: 1.5;
}
.compare-card li svg { flex-shrink: 0; margin-top: 2px; }

/* === Final CTA === */
.final-cta {
    padding: 96px 0;
    background: #18181b;
    color: #fafafa;
    text-align: center;
}
.final-cta h2 {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}
.final-cta p {
    font-size: 15px;
    color: #71717a;
    margin-bottom: 36px;
}
.final-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.btn-primary {
    padding: 16px 36px;
    background: linear-gradient(135deg, #05E5AF 0%, #04c99a 100%);
    color: #18181b;
    font-weight: 600;
    font-size: 15px;
    border-radius: 12px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: -0.01em;
    box-shadow: 0 4px 14px -2px rgba(5, 229, 175, 0.4);
}
.btn-primary:hover { box-shadow: 0 6px 20px -2px rgba(5, 229, 175, 0.5); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0) scale(0.98); }
.btn-secondary {
    padding: 14px 32px;
    border: 1.5px solid #3f3f46;
    color: #d4d4d8;
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-secondary:hover {
    border-color: #71717a;
    color: #fafafa;
}
.btn-secondary:active { transform: scale(0.98); }

/* === Footer === */
.footer {
    padding: 48px 0 24px;
    background: #18181b;
    color: #71717a;
    border-top: 1px solid #27272a;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid #27272a;
}
.footer .logo-sub { color: #52525b; }
.footer-note {
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.7;
    color: #52525b;
    max-width: 480px;
}
.footer-contact h4 {
    font-size: 13px;
    font-weight: 600;
    color: #d4d4d8;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}
.footer-contact a {
    color: #a1a1aa;
    font-size: 17px;
    font-weight: 600;
}
.footer-contact p {
    font-size: 13px;
    margin-top: 4px;
}
.footer-bottom {
    padding-top: 24px;
    text-align: center;
    font-size: 11px;
}
.footer-bottom a {
    color: #52525b;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* === Mobile Sticky CTA === */
.mobile-sticky {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0,0,0,0.06);
    z-index: 100;
}
.mobile-sticky-btn {
    display: block;
    text-align: center;
    padding: 16px;
    background: linear-gradient(135deg, #05E5AF 0%, #04c99a 100%);
    color: #18181b;
    font-weight: 600;
    font-size: 15px;
    border-radius: 12px;
    transition: all 0.2s;
    box-shadow: 0 4px 14px -2px rgba(5, 229, 175, 0.4);
}
.mobile-sticky-btn:active { transform: scale(0.98); }

/* === Responsive === */
@media (max-width: 768px) {
    .hero { padding: 40px 0 60px; }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .hero-sub { font-size: 15px; }
    .hero-call-box { display: none; }
    .promo-disclaimer { font-size: 9px; padding: 0 16px; }
    .testimonials-scroll { padding: 48px 0 32px; }
    .tm-card { width: 260px; }
    .exit-popup-benefits { flex-direction: column; gap: 6px; }

    .proof-items { gap: 24px; }
    .proof-divider { display: none; }
    .proof-item { flex: 1 1 40%; }

    .packages { padding: 72px 0; }
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .package-card.recommended { padding: 28px 24px; }

    .steps-grid { flex-direction: column; align-items: center; }
    .step-arrow { transform: rotate(90deg); }

    .comparison-grid { grid-template-columns: 1fr; }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .mobile-sticky { display: block; }
    body { padding-bottom: 72px; }

    .promo-bar .container { flex-direction: column; gap: 4px; }

    .final-cta { padding: 72px 0; }
    .final-cta-buttons { flex-direction: column; width: 100%; }
    .btn-primary, .btn-secondary { width: 100%; text-align: center; justify-content: center; }

    .form-row { grid-template-columns: 1fr; }

    .how-it-works, .why-vivint { padding: 72px 0; }
}
