:root {
    --teal-900: rgb(6, 43, 52);
    --teal-800: rgb(14, 68, 82);
    --teal-700: rgb(24, 118, 135);
    --teal-600: rgb(29, 150, 162);
    --teal-100: rgb(199, 232, 237);
    --teal-50: rgb(244, 250, 255);

    --highlight-1: rgb(10, 181, 153);
    --highlight-2: rgb(16, 207, 155);

    --red-light: rgb(252, 187, 193);
    --orange-light: rgb(250, 197, 188);
    --orange-lighter: rgb(253, 232, 227);
    --yellow: rgb(254, 210, 92);
    --yellow-light: rgb(253, 236, 206);
    --blue-light: rgb(192, 233, 255);
    --blue-soft: rgb(224, 242, 254);
    --blue-lighter: rgb(244, 250, 255);

    --text-dark: rgb(6, 43, 52);
    --text-muted: #4a5568;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-gray: #f9fafb;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1,
h2,
h3,
h4 {
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--teal-900);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 48px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--teal-600);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--teal-700);
}

.btn-primary-green {
    background-color: #60F9B1;
    color: #064E3B;
    box-shadow: 0 4px 14px rgba(96, 249, 177, 0.4);
}

.btn-primary-green:hover {
    background-color: #34E093;
    color: #064E3B;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(96, 249, 177, 0.6);
}

.btn-white {
    background-color: white;
    color: var(--teal-900);
}

.btn-white:hover {
    background-color: #f1f5f9;
}

.btn-highlight {
    background-color: var(--highlight-1);
    color: var(--bg-white);
}

.btn-highlight:hover {
    background-color: var(--highlight-2);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid #e2e8f0;
}

.btn-outline:hover {
    background-color: var(--bg-light);
}

.icon-small {
    width: 18px;
    height: 18px;
}

/* Header */
.header {
    background-color: var(--bg-white);
    padding: 16px 0;
    color: var(--teal-900);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #f1f5f9;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.header-left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.nav-link {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.9;
    transition: var(--transition);
}

.nav-link:hover {
    opacity: 1;
}

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

.contact-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.header-hours {
    font-size: 14px;
    opacity: 0.8;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.tty {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    padding: 40px 0;
    background-color: transparent;
    overflow: visible;
}

.hero-box {
    background: linear-gradient(90deg, #094B3C 0%, #10836B 80%);
    border-radius: 24px;
    padding: 64px 48px 32px 48px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero .btn-primary {
    background-color: #60F9B1;
    color: #094B3C;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(96, 249, 177, 0.4);
}

.hero .btn-primary:hover {
    background-color: #4ce59b;
    color: #094B3C;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(96, 249, 177, 0.6);
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.trust-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #d1fae5;
    /* Light bright green */
    color: #047857;
    /* Dark green for contrast */
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 56px;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 23px;
    color: #e2e8f0;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    align-items: stretch;
    gap: 16px;
    width: 100%;
}

.zip-entry-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.zip-label {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.hero-phone-fallback {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 8px;
    display: none;
}

.hero-phone-fallback a {
    text-decoration: underline;
}


.zip-input-group {
    display: flex;
    align-items: center;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-white);
    max-width: 250px;
    flex: 1;
    transition: var(--transition);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.zip-input-group:focus-within {
    border-color: var(--teal-600);
    box-shadow: 0 0 0 3px var(--teal-100);
}

.zip-icon-wrapper {
    background-color: #f8fafc;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #cbd5e1;
    color: #64748b;
    align-self: stretch;
}

.zip-icon-wrapper svg {
    width: 20px;
    height: 20px;
}

.zip-input-styled {
    flex: 1;
    border: none;
    padding: 14px 16px;
    font-size: 20px;
    color: var(--text-dark);
    outline: none;
    width: 100%;
    background: transparent;
}

.zip-input-styled::placeholder {
    color: #94a3b8;
}

.hero-benefits {
    margin: 24px 0 0 0;
    text-align: left;
}

.hero-benefits-title {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

.hero-benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    color: #e2e8f0;
}

.benefit-check {
    width: 28px;
    height: 28px;
    background-color: #ccfbf1;
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-check svg {
    width: 16px;
    height: 16px;
    stroke-width: 3px;
}

.hero-trust-badges {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-badges-top-right {
    position: absolute;
    top: 64px;
    right: 48px;
    z-index: 5;
}

.hero-trust-badges img {
    height: 52px;
    opacity: 1;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    transition: var(--transition);
}

.hero-trust-badges img:hover {
    transform: scale(1.05);
}

.hero-disclaimer {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

.hero-image-wrapper {
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 45%;
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
    z-index: 1;
}

.hero-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: bottom right;
}

.hero-content {
    flex: 1;
    max-width: 550px;
    position: relative;
    z-index: 2;
}

.floating-rating {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating-icon {
    width: 40px;
    height: 40px;
    background-color: #ccfbf1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
}

.floating-text {
    display: flex;
    flex-direction: column;
}

.floating-text strong {
    font-size: 18px;
    color: var(--teal-900);
}

.floating-text span {
    font-size: 14px;
    color: var(--text-muted);
}

/* Trust Banner */
.trust-banner {
    padding: 10px 0 60px 0;
    text-align: center;
    background-color: transparent;
    border: none;
}

.review-card.logos-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08), 0 10px 20px -5px rgba(0, 0, 0, 0.05);
    padding: 32px 48px;
    margin: 20px auto 40px auto;
    position: relative;
    z-index: 10;
}

.trust-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0px;
    font-weight: 600;
}

.trust-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2vw;
    flex-wrap: nowrap;
    width: 100%;
}

.trust-logo-img {
    flex: 0 1 auto;
    min-width: 0;
    height: 80px;
    max-width: 100%;
    object-fit: contain;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: var(--transition);
    transform: scale(1.3);
}

.trust-logo-img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.3);
}

/* Features Bar */
.features-bar {
    padding: 40px 0;
    background-color: var(--bg-white);
}

.features-bar-container {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    flex: 1;
    min-width: 150px;
}

.feature-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-yellow {
    background-color: var(--yellow-light);
    color: #B45309;
}

.icon-blue {
    background-color: var(--blue-light);
    color: #0284C7;
}

.icon-red {
    background-color: var(--red-light);
    color: #E11D48;
}

.icon-teal {
    background-color: var(--teal-100);
    color: var(--teal-700);
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 16px;
    color: var(--text-muted);
}

/* Why Choose CoverRight */
.why-choose {
    padding: 80px 0;
    background-color: var(--bg-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.benefit-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: var(--blue-soft);
    color: var(--teal-600);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    color: var(--teal-900);
}

.benefit-card p {
    font-size: 17px;
    color: var(--text-muted);
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background-color: transparent;
    position: relative;
    z-index: 1;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 48px;
    position: relative;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 24px;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
}

.step-1 {
    background-color: var(--yellow);
    color: var(--teal-900);
}

.step-2 {
    background-color: var(--blue-light);
    color: var(--teal-900);
}

.step-3 {
    background-color: var(--red-light);
    color: var(--teal-900);
}

.step-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.step-item p {
    font-size: 18px;
    color: var(--text-muted);
}

.step-arrow {
    position: absolute;
    top: 32px;
    right: -12px;
    transform: translateY(-50%);
    color: #cbd5e1;
    z-index: 1;
}

.step-item:last-child .step-arrow {
    display: none;
}

.how-it-works-action {
    text-align: center;
    margin-top: 48px;
}

.how-it-works-action p {
    font-size: 16px;
    color: var(--text-muted);
    margin-top: 12px;
}

/* FAQ Section */
.faq-section {
    padding-top: 100px;
    background-color: #f4f9ff;
    position: relative;
    overflow: hidden;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    padding-bottom: 100px;
}

.faq-left {
    position: relative;
}

.faq-heading {
    font-size: 44px;
    font-weight: 800;
    color: var(--teal-900);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.faq-description {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-piggy-man {
    position: absolute;
    bottom: -1px;
    left: -20px;
    height: 550px;
    width: auto;
    z-index: 1;
    pointer-events: none;
    opacity: 0.95;
}

.faq-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid #cbd5e1;
}

.faq-item:first-child {
    border-top: 1px solid #cbd5e1;
}

.faq-question {
    padding: 24px 0;
    font-weight: 500;
    font-size: 18px;
    color: #334155;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    transition: var(--transition);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    color: var(--teal-600);
}

.faq-question svg {
    transition: transform 0.3s ease;
    color: #94a3b8;
    width: 20px;
    height: 20px;
}

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

.faq-item[open] .faq-question {
    border-bottom: none;
    color: var(--teal-900);
}

.faq-answer {
    padding: 0 0 24px 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
}

.faq-cta {
    background-color: var(--yellow);
    padding: 32px;
    border-radius: 12px;
    text-align: left;
}

.faq-cta h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--teal-900);
}

.faq-cta p {
    font-size: 18px;
    margin-bottom: 16px;
}

.faq-cta-phone {
    font-size: 24px;
    font-weight: 700;
    color: var(--teal-900);
}

@media (max-width: 992px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-left {
        padding-bottom: 350px;
    }

    .faq-piggy-man {
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
    }
}

/* Bottom CTA */
.bottom-cta {
    padding: 100px 0;
    background-color: transparent;
    color: var(--text-dark);
}

.cta-box {
    background: linear-gradient(135deg, #10836B 0%, #094B3C 100%);
    border-radius: 24px;
    padding: 80px 48px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.bottom-cta h2 {
    font-size: 40px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.bottom-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.bottom-cta-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.bottom-cta-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
}

.bottom-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.bottom-cta-actions .btn {
    /* Let specific button classes handle their own shadows */
}

.btn-outline-light {
    background: transparent;
    color: var(--bg-white);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Footer (Current Home Page) */
.footer {
    background-color: var(--teal-900);
    color: var(--bg-white);
    padding: 64px 0 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 64px;
}

.footer-logo {
    height: 32px;
    margin-bottom: 24px;
}

.footer-contact p {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 8px;
    line-height: 1.5;
}

.footer-socials {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.footer-socials a {
    color: var(--bg-white);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-socials a:hover {
    opacity: 1;
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 16px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
}

.disclaimer p {
    font-size: 14px;
    opacity: 0.6;
    margin-bottom: 16px;
    line-height: 1.6;
}

/* Piggy Bank Shared Background */
.piggy-background-wrapper {
    position: relative;
    background-color: var(--bg-white);
    overflow: hidden;
}

.piggy-background-image {
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 500px;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

/* Trustpilot Reviews Section */
.reviews-section {
    padding: 80px 0;
    background-color: transparent;
    position: relative;
    z-index: 1;
}

.tp-banner {
    display: flex;
    gap: 40px;
    align-items: center;
}

.tp-left {
    flex-shrink: 0;
    width: 200px;
    text-align: center;
}

.tp-excellent {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.tp-stars-large {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

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

.tp-star-large svg {
    width: 20px;
    height: 20px;
    fill: white;
    stroke: white;
}

.tp-rating-text {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.tp-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-weight: 700;
    font-size: 20px;
    color: var(--text-dark);
}

.tp-carousel-wrapper {
    position: relative;
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
}

.tp-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: var(--text-dark);
    transition: var(--transition);
}

.tp-carousel-btn:hover {
    background: var(--bg-light);
    color: var(--teal-600);
}

.tp-prev-btn {
    left: -20px;
}

.tp-next-btn {
    right: -20px;
}

@media (max-width: 1240px) {
    .tp-prev-btn {
        left: 10px;
    }
    .tp-next-btn {
        right: 10px;
    }
}

.tp-reviews-container {
    overflow-x: auto;
    padding: 16px 0;
    scrollbar-width: none;
    width: 100%;
    scroll-behavior: smooth;
}

.tp-reviews-container::-webkit-scrollbar {
    display: none;
}

.tp-reviews-scroll {
    display: flex;
    gap: 24px;
}

.tp-review-card {
    flex: 0 0 300px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.tp-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.tp-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #4b5563;
}

.tp-user-info {
    display: flex;
    flex-direction: column;
}

.tp-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
}

.tp-date {
    font-size: 14px;
    color: #6b7280;
}

.tp-card-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

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

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

.tp-star svg {
    width: 10px;
    height: 10px;
    fill: white;
    stroke: white;
}

.tp-verified {
    font-size: 14px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tp-verified svg {
    width: 14px;
    height: 14px;
    color: #6b7280;
}

.tp-review-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--text-dark);
}

.tp-review-text {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Reviews Section V2 (Flip Cards) */
.reviews-section-v2 {
    background-color: #FAF9F6;
    position: relative;
    z-index: 1;
}

.flip-carousel-wrapper {
    position: relative;
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    width: 100%;
}

.flip-reviews-container {
    overflow-x: auto;
    padding: 48px 24px;
    scrollbar-width: none;
    width: 100%;
    scroll-behavior: smooth;
}

.flip-reviews-container::-webkit-scrollbar {
    display: none;
}

.flip-reviews-scroll {
    display: flex;
    gap: 24px;
}

.flip-card {
    background-color: transparent;
    width: 320px;
    height: 440px;
    flex: 0 0 320px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: left;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card.is-flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card.is-flipped .flip-card-front {
    pointer-events: none;
}

.flip-card:not(.is-flipped) .flip-card-back {
    pointer-events: none;
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.flip-card-front {
    background-color: #333;
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.flip-front-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.flip-front-top {
    position: relative;
    z-index: 2;
    padding: 24px;
}

.flip-pill {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    color: white;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.flip-stars-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.flip-stars {
    display: flex;
    gap: 4px;
}

.flip-star-box {
    background-color: #00b67a;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

.flip-star-box svg {
    width: 14px;
    height: 14px;
}

.flip-verified {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.flip-verified svg {
    width: 16px;
    height: 16px;
}

.flip-front-bottom {
    position: relative;
    z-index: 2;
    padding: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.flip-front-text {
    flex: 1;
}

.flip-front-text h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: white;
    line-height: 1.2;
}

.flip-front-text p {
    font-size: 15px;
    color: #e2e8f0;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.flip-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: white;
    color: var(--teal-900);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.flip-btn:hover {
    transform: scale(1.05);
}

.flip-btn svg {
    width: 22px;
    height: 22px;
}

.flip-card-back {
    background-color: white;
    color: var(--text-dark);
    transform: rotateY(180deg);
}

.tp-review-card-back {
    width: 100%;
    height: 100%;
    margin: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    border: 1px solid #e5e7eb;
}

.flex-1 {
    flex: 1;
}

.flip-back-btn {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    background-color: transparent;
    border-radius: 6px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    margin-top: 16px;
    transition: background-color 0.2s;
}

.flip-back-btn:hover {
    background-color: #f8fafc;
}

@media (max-width: 768px) {
    .tp-banner {
        flex-direction: column;
    }

    .tp-left {
        width: 100%;
        margin-bottom: 24px;
    }

    .hero-container {
        flex-direction: column;
    }

    .steps-container {
        flex-direction: column;
        gap: 48px;
    }

    .step-arrow {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .tp-prev-btn {
        left: 0px;
    }

    .tp-next-btn {
        right: 0px;
    }

    .trust-badge-pill {
        font-size: 13px;
        padding: 4px 12px;
        gap: 6px;
    }
}

@media (max-width: 992px) {
    .faq-piggy-man {
        display: none !important;
    }
}

@media (max-width: 985px) {
    .faq-left {
        padding-bottom: 0;
    }
}

@media (max-width: 900px) {
    .hero-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 40px 24px;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .zip-input-group {
        max-width: 100%;
    }

    .hero-benefits {
        display: none;
    }

    .hero-image-wrapper {
        display: none !important;
    }

    .hero-badges-top-right {
        position: static;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        justify-items: center;
        align-items: center;
        margin-top: 16px;
    }

    .hero-trust-badges img {
        height: 65px;
        max-width: 140px;
        object-fit: contain;
    }

    .header-phone-text,
    .contact-info .tty,
    .header-hours {
        display: none;
    }
    
    .phone-link {
        background-color: var(--teal-50);
        color: var(--teal-700);
        border-radius: 50%;
        padding: 10px;
        justify-content: center;
    }

    .bottom-cta-list {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .hero-phone-fallback {
        display: block;
        font-size: 22px;
    }

    .trust-logos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        justify-items: center;
        align-items: center;
        width: 100%;
        flex-wrap: wrap; /* Fallback if display grid overrides something */
    }
}

@media (max-width: 600px) {
    .header-left .nav-link {
        display: none;
    }
}

@media (max-width: 515px) {
    .bottom-cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .bottom-cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .cta-box {
        padding: 48px 24px;
    }
    
    .bottom-cta h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .bottom-cta p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .header-right .btn-highlight {
        display: none;
    }
}
