/* =============================================
   Longhorn Garage Doors – Main Stylesheet
   Color System:
   Navy:  #0F2B46 (header, footer, CTA band)
   Orange: #FF6B00 (all CTAs, badges)
   White:  #ffffff (backgrounds)
   Grey:   #F5F7FA (alternating sections)
   Text:   #1A1A2E (body copy)
   ============================================= */

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: #1A1A2E;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #0F2B46;
    text-align: center;
    margin-bottom: 10px;
}

.section-sub {
    text-align: center;
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 40px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
}

.btn-orange {
    background-color: #FF6B00;
    color: #fff;
    padding: 15px 30px;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.35);
}

.btn-orange:hover {
    background-color: #e05e00;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.45);
}

.btn-large {
    font-size: 1.15rem;
    padding: 18px 38px;
}

.pulse {
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(255, 107, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
    }
}

/* ===== STICKY HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #0F2B46;
    z-index: 1000;
    height: 72px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-link {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-decoration: none;
    gap: 2px;
}

.logo-name {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo-sub {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 0.65rem;
    color: #FF6B00;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-phone i {
    color: #FF6B00;
}

/* ===== HERO ===== */
.hero {
    padding-top: 72px;
    /* offset for fixed header */
    background-color: #F5F7FA;
    background-image: url('https://images.unsplash.com/photo-1605810404396-4191d9bc490d?q=80&w=1920');
    background-size: cover;
    background-position: center;
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 20px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ffffff;
    color: #0F2B46;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 8px 18px;
    border-radius: 50px;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #10B981;
    border-radius: 50%;
    display: inline-block;
    animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

h1 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0F2B46;
}

h1 .highlight {
    color: #FF6B00;
    display: block;
    font-size: 3.4rem;
    line-height: 1.1;
    margin-top: 4px;
}

@media (max-width: 900px) {
    h1 .highlight {
        font-size: 2.6rem;
    }
}

@media (max-width: 480px) {
    h1 .highlight {
        font-size: 2.1rem;
    }
}

.hero-sub {
    font-size: 1.15rem;
    color: #444;
    max-width: 480px;
}

.trust-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #1A1A2E;
    font-size: 1rem;
}

.trust-list i {
    color: #0F2B46;
    font-size: 1.1rem;
}

.hero-cta-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.response-time {
    font-size: 0.9rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
}

.response-time i {
    color: #FF6B00;
}

.micro-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
}

.hero-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    background-color: #d0dcea;
}

.hero-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 651 / 651;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 16px 16px 0 0;
}

.hero-image-caption {
    background-color: #0F2B46;
    color: #aac4e0;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 0 0 16px 16px;
}

.hero-image-caption i {
    color: #FF6B00;
    font-size: 1rem;
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
    background-color: #0F2B46;
    color: #fff;
    padding: 50px 20px;
}

.proof-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.proof-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stars {
    font-size: 1.8rem;
    color: #FF6B00;
    letter-spacing: 3px;
}

.proof-text {
    font-size: 1rem;
    color: #aac4e0;
}

.badge-wrap {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.google-reviews-badge {
    max-width: 210px;
    width: 100%;
    height: auto;
    display: block;
}

.badge-wrap--tall {
    padding: 6px;
}

.badges-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.bbb-badge {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    display: none;
    /* desktop only */
}

.proof-count {
    font-size: 1.2rem;
    font-weight: 700;
}

.reviews-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    margin-top: 10px;
}

.review {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
}

.review p {
    font-size: 0.95rem;
    color: #dce9f5;
    font-style: italic;
    margin-bottom: 8px;
}

.review span {
    font-size: 0.85rem;
    color: #aac4e0;
    font-weight: 600;
}

/* ===== TRUSTPILOT BADGE ===== */
.tp-badge {
    background: #fff;
    border: 1px solid #dce8f0;
    border-radius: 10px;
    padding: 12px 20px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    min-width: 155px;
}

.tp-top {
    display: flex;
    align-items: center;
    gap: 7px;
}

.tp-logo {
    background: #00B67A;
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tp-logo svg {
    width: 13px;
    height: 13px;
}

.tp-brand {
    font-size: 0.95rem;
    font-weight: 700;
    color: #191919;
    letter-spacing: -0.01em;
}

.tp-stars {
    display: flex;
    gap: 2px;
}

.tp-stars span {
    display: inline-block;
    width: 22px;
    height: 22px;
    background: #00B67A;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.tp-meta {
    font-size: 0.78rem;
    color: #666;
    font-weight: 500;
    white-space: nowrap;
}

/* ===== BRANDS / MANUFACTURERS ===== */
.brands-section {
    background-color: #fff;
    padding: 36px 20px;
    border-top: 1px solid #e8eef4;
    border-bottom: 1px solid #e8eef4;
}

.brands-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8a9bae;
    margin-bottom: 20px;
}

.brands-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 28px 40px;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.82;
}

.brand-item:hover {
    transform: scale(1.07);
    opacity: 1;
}

.brand-item img {
    height: 100%;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    display: block;
}

@media (max-width: 600px) {
    .brands-row {
        gap: 20px 28px;
    }
    .brand-item {
        height: 36px;
    }
    .brand-item img {
        max-width: 90px;
    }
}

/* ===== PROBLEMS GRID ===== */
.problems {
    padding: 70px 20px;
    background-color: #F5F7FA;
}

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

.problems-cta-wrapper {
    margin-top: 50px;
    text-align: center;
}

.problems-cta-sub {
    font-size: 1.1rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 12px;
}

.problems-cta {
    display: flex;
    justify-content: center;
}

.problem-card {
    background: #fff;
    border: 2px solid #e0e8f0;
    border-radius: 12px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #0F2B46;
    transition: border-color 0.2s, transform 0.2s;
    cursor: pointer;
    overflow: hidden;
}

a.problem-card {
    text-decoration: none;
    color: #0F2B46;
}

.problem-card:hover {
    border-color: #FF6B00;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.1);
}

.problem-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-bottom: 1px solid #1a1a2e;
}

.problem-card-content {
    background-color: #2F3E57; /* Soft navy-blue from competitor style */
    color: #fff;
    width: 100%;
    padding: 24px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1; /* fill remaining space */
}

.problem-card-discount {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: #ffffff;
    line-height: 1.1;
}

.problem-card-desc {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #e0e8f0;
    line-height: 1.4;
}

.problem-card-action {
    background-color: #FFC000; /* Yellow 'Call for Redeem' bar */
    color: #1A1A2E;
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== AUTHORITY / STATS ===== */
.authority {
    background-color: #0F2B46;
    padding: 60px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-number {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #FF6B00;
}

.stat-label {
    font-size: 0.9rem;
    color: #aac4e0;
    font-weight: 600;
}

/* ===== HOW IT WORKS ===== */
.process {
    padding: 70px 20px;
    background-color: #ffffff;
}

.process-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.process-step {
    background: #F5F7FA;
    border-radius: 12px;
    padding: 35px 30px;
    text-align: center;
    flex: 1;
    max-width: 280px;
}

.step-number {
    width: 52px;
    height: 52px;
    background-color: #0F2B46;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.process-step h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F2B46;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.95rem;
    color: #555;
}

.process-arrow {
    font-size: 1.5rem;
    color: #aac4e0;
    flex-shrink: 0;
}

/* ===== CTA BAND ===== */
.cta-band {
    background-color: #0F2B46;
    padding: 70px 20px;
}

.cta-band-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.cta-band h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
}

.cta-band p {
    color: #aac4e0;
    font-size: 1.05rem;
    max-width: 520px;
}

/* ===== COUPONS ===== */
.coupons {
    padding: 70px 20px;
    background: #fff;
}

.coupons-grid {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.coupon-card {
    display: flex;
    border: 3px dashed #FF6B00;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    position: relative;
    box-shadow: 0 8px 28px rgba(255, 107, 0, 0.10);
}

.coupon-left {
    flex: 0 0 240px;
    overflow: hidden;
}

.coupon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.coupon-right {
    flex: 1;
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.coupon-badge {
    display: inline-block;
    background: #FF6B00;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 20px;
    width: fit-content;
}

.coupon-discount {
    font-size: 3.8rem;
    font-weight: 800;
    color: #FF6B00;
    line-height: 1;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.coupon-discount span {
    font-size: 2.2rem;
}

.coupon-desc {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F2B46;
    margin: 0;
    line-height: 1.4;
}

.coupon-fine {
    font-size: 0.76rem;
    color: #8a9bae;
    margin: 0;
}

.coupon-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: 4px;
    font-size: 0.95rem;
    padding: 12px 22px;
}

.coupon-scissors {
    position: absolute;
    top: -1px;
    right: 24px;
    background: #fff;
    padding: 0 6px;
    color: #FF6B00;
    font-size: 1.1rem;
    line-height: 0;
    transform: rotate(180deg);
}

@media (max-width: 640px) {
    .coupon-card {
        flex-direction: column;
    }

    .coupon-left {
        flex: 0 0 auto;
        height: 220px;
        width: 100%;
    }

    .coupon-img {
        object-position: center center;
    }

    .coupon-right {
        padding: 20px;
    }

    .coupon-discount {
        font-size: 2.8rem;
    }

    .coupon-cta {
        width: 100%;
        justify-content: center;
    }
}

/* ===== FAQ ===== */

.faq {
    padding: 70px 20px;
    background: #F5F7FA;
}

.faq-list {
    max-width: 750px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e0e8f0;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-item.open {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    text-align: left;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #0F2B46;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.faq-question i {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #FF6B00;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s;
}

.faq-item.open .faq-answer {
    max-height: 600px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: #555;
    line-height: 1.7;
}

/* ===== LEAD FORM (REQUEST A QUOTE) ===== */
.lead-section {
    padding: 80px 20px;
    background-color: #F5F7FA;
}

.lead-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: stretch;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(15, 43, 70, 0.08);
    overflow: hidden;
    border: 1px solid #e0e8f0;
}

.lead-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lead-content h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #0F2B46;
    margin-bottom: 12px;
}

.lead-content p {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0F2B46;
}

.quote-form input,
.quote-form select {
    padding: 14px 18px;
    border: 2px solid #e0e8f0;
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 1rem;
    color: #1A1A2E;
    transition: border-color 0.2s, box-shadow 0.2s;
    background-color: #fbfdff;
}

.quote-form input:focus,
.quote-form select:focus {
    outline: none;
    border-color: #FF6B00;
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
    background-color: #ffffff;
}

.form-submit {
    margin-top: 10px;
    border-radius: 8px;
    justify-content: center;
    width: 100%;
}

.form-secure {
    font-size: 0.8rem;
    color: #8a9bae;
    text-align: center;
    margin-top: -5px;
}

.form-secure i {
    color: #10B981;
}

.lead-image {
    background-image: url('https://images.unsplash.com/photo-1594968393527-02ff4e393b67?q=80&w=1200');
    /* Garage door photo */
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 400px;
}

.lead-trust-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(15, 43, 70, 0.95);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
}

.lead-trust-badge i {
    color: #FF6B00;
    font-size: 1.2rem;
}

/* ===== OUTLINE BUTTON (Hero Secondary CTA) ===== */
.btn-outline {
    background-color: transparent;
    color: #0F2B46;
    border: 2px solid #0F2B46;
    padding: 13px 28px;
}

.btn-outline:hover {
    background-color: #0F2B46;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 43, 70, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 80px 20px;
    background: #ffffff;
}

.final-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.final-cta h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #0F2B46;
    max-width: 640px;
}

.final-cta p {
    color: #555;
    font-size: 1.05rem;
    max-width: 520px;
}

.phone-big {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0F2B46;
    display: block;
    transition: color 0.2s;
}

.phone-big:hover {
    color: #FF6B00;
}

/* ===== FOOTER ===== */
.site-footer {
    background-color: #0F2B46;
    padding: 40px 20px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-brand p {
    color: #7fafd5;
    font-size: 0.9rem;
    margin-top: 6px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #7fafd5;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #FF6B00;
}

.copyright {
    color: #4a6a8a;
    font-size: 0.8rem;
}

.footer-pay {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-pay-title {
    color: #7fafd5;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
}

.footer-pay-icons {
    display: flex;
    gap: 14px;
}

.footer-pay-icons i {
    font-size: 2.4rem;
    color: #fff;
    opacity: 0.85;
}

.footer-pay-note {
    color: #7fafd5;
    font-size: 0.85rem;
    margin: 0;
}

.footer-pay-note strong {
    color: #fff;
}

/* ===== STICKY MOBILE BAR ===== */
.sticky-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.sticky-mobile-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #FF6B00;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 18px;
    letter-spacing: 0.5px;
}

/* =============================================
   RESPONSIVE – MOBILE FIRST
   ============================================= */
@media (max-width: 900px) {

    /* Hero */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px;
    }

    .hero-image {
        height: 240px;
        border-radius: 12px;
    }
    .hero-image img {
        height: 240px;
        aspect-ratio: unset;
    }

    h1 {
        font-size: 2rem;
    }

    .hero-cta-wrap {
        align-items: stretch;
    }

    .hero-cta-wrap .btn {
        width: 100%;
        text-align: center;
    }

    /* Proof */
    .reviews-row {
        grid-template-columns: 1fr;
    }

    /* Problems */
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* Process */
    .process-grid {
        flex-direction: column;
    }

    .process-arrow {
        display: none;
    }

    .process-step {
        max-width: 100%;
    }

    /* CTA band */
    .cta-band h2 {
        font-size: 1.7rem;
    }

    /* Lead Form */
    .lead-inner {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .lead-image {
        min-height: 250px;
        order: -1;
        /* Move image above form on mobile */
    }

    .lead-content {
        padding: 30px 20px;
    }

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

    .lead-content h2 {
        font-size: 1.8rem;
    }

    /* Final CTA */
    .final-cta h2 {
        font-size: 1.6rem;
    }

    .phone-big {
        font-size: 2rem;
    }

    /* Sticky bar logic */
    .sticky-mobile-bar {
        display: block;
        transform: translateY(100%);
        transition: transform 0.3s ease-in-out;
    }

    .sticky-mobile-bar.show {
        transform: translateY(0);
    }

    body {
        padding-bottom: 72px;
    }

    /* Hide desktop header phone text */
    .header-phone {
        display: none;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
    }

    h1 {
        font-size: 1.7rem;
    }

    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .problem-card img {
        height: 110px;
    }

    .problem-card-content {
        padding: 12px 10px;
    }

    .problem-card-discount {
        font-size: 1.5rem;
        margin-bottom: 4px;
    }

    .problem-card-desc {
        font-size: 0.72rem;
        letter-spacing: 0px;
    }

    .problem-card-action {
        padding: 10px;
        font-size: 0.85rem;
    }

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