:root {
    --primary: #0F3156;
    /* Deep navy trust color */
    --primary-light: #2A5A8F;
    --secondary: #E35E3D;
    /* Energetic conversion orange */
    --secondary-hover: #C54A2D;
    --text-main: #2D3748;
    --text-light: #718096;
    --bg-main: #F7FAFC;
    --bg-white: #FFFFFF;
    --border-color: #E2E8F0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --radius-lg: 16px;
    --font-family: 'Inter', system-ui, sans-serif;
    --star-color: #FFB400;
    --success: #38A169;
}

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

body {
    font-family: var(--font-family);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

h1 {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

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

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    display: block;
}

.eyebrow.light {
    color: white;
    opacity: 0.9;
}

.subheading {
    font-size: 1.25rem;
    color: var(--text-main);
    max-width: 800px;
    margin: 0 auto 2rem;
    font-weight: 500;
}

.section-subheading {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Layout & Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.final-cta-section {
    padding: 6rem 0;
}

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

.bg-light {
    background-color: var(--bg-main);
}

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

.bg-primary h2,
.bg-primary p {
    color: white;
}

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

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

/* Navbar */
.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.navbar-logo img {
    height: 56px;
}

.navbar-links a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: color 0.2s;
}

.navbar-links a:hover {
    color: var(--secondary);
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.navbar-phone {
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    color: var(--primary);
    z-index: 101;
    align-items: center;
    justify-content: center;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary);
    position: relative;
    transition: background-color 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--primary);
    left: 0;
    transition: transform 0.3s, top 0.3s;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Active State (X transformation) */
.mobile-menu-toggle.active .hamburger {
    background-color: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 80vh;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0) 100%), url('../img/hero-bg.jpg') center/cover no-repeat;
    padding: 4rem 0;
}

.hero-container {
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-content {
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-trust-row {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary);
    flex-wrap: wrap;
}

.hero-trust-row div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-trust-row svg {
    color: var(--success);
    width: 20px;
    height: 20px;
}

.google-reviews {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.stars {
    color: var(--star-color);
    display: flex;
    gap: 2px;
}

.review-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-main);
}

.agent-badge-hero {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    width: fit-content;
    margin-top: 2.5rem;
    border: 1px solid var(--border-color);
}

.agent-badge-hero img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.agent-badge-hero .info {
    display: flex;
    flex-direction: column;
}

.agent-badge-hero .name {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--primary);
    line-height: 1.2;
}

.agent-badge-hero .title {
    font-size: 0.75rem;
    color: #000;
}

/* Forms */
.lead-form {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--secondary);
}

.lead-form p {
    color: #000 !important;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* Calculator */
.calculator-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    text-align: left;
}

.input-prefix {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-prefix span {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    color: var(--text-light);
}

.input-prefix input {
    padding-left: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    border: 2px solid var(--border-color);
}

.input-prefix input:focus {
    border-color: var(--secondary);
}

/* Range Slider Styling */
.range-container {
    margin: 2rem 0;
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: var(--border-color);
    outline: none;
    margin: 20px 0;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--secondary);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.1s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 50%;
    background: var(--secondary);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.calc-results {
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.calc-savings {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
    border-top: 2px dashed var(--border-color);
    padding-top: 1rem;
    margin-top: 1rem;
}

.calc-highlight {
    color: #38A169;
    font-size: 1.75rem;
}

.calc-disclaimer {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 1.5rem;
    line-height: 1.4;
}

/* Grid Cards */
.scroll-cards {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding-bottom: 2rem;
    margin-top: 3rem;
    -webkit-overflow-scrolling: touch;
}

.scroll-cards::-webkit-scrollbar {
    height: 8px;
}

.scroll-cards::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.scroll-cards::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 4px;
}

.scroll-cards::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}

.scroll-cards .card {
    flex: 0 0 350px;
    scroll-snap-align: start;
}

.scroll-controls {
    display: flex;
    gap: 0.5rem;
}

.scroll-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.scroll-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.scroll-btn svg {
    width: 20px;
    height: 20px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

/* Trust Bar */
.trust-bar {
    background: var(--bg-white);
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.trust-items span {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-items span svg {
    margin-right: 0.75rem;
    color: var(--secondary);
    width: 24px;
    height: 24px;
}

/* Comparison Table Specifics */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto;
    align-items: center;
}

.card-winner {
    border: 2px solid var(--secondary) !important;
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    z-index: 2;
    position: relative;
}

.card-loser {
    opacity: 0.7;
    background: #F1F5F9 !important;
    transform: scale(0.95);
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

/* Agents */
.agent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.agent-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.agent-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.agent-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top;
}

.agent-info {
    padding: 2.5rem;
    text-align: left;
}

.agent-info h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.agent-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.agent-tags span {
    background: #EDF2F7;
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Footer */
.footer {
    background-color: var(--primary);
    color: white;
    padding: 4rem 0 2rem;
    margin-bottom: 70px;
    /* space for mobile bar */
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer p {
    color: white;
}

.footer a {
    color: #CBD5E0;
    text-decoration: none;
    transition: color 0.2s;
}

.footer a:hover {
    color: white;
}

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

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

.footer-disclaimers {
    font-size: 0.8rem;
    color: #A0AEC0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.footer-disclaimers ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.footer-bottom {
    font-size: 0.875rem;
    text-align: center;
    color: #CBD5E0;
}

.footer-bottom p {
    color: inherit;
}

/* Sticky Mobile Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.mobile-sticky-bar a {
    flex: 1;
    text-align: center;
    padding: 1rem 0;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.mobile-sticky-bar a:last-child {
    border-right: none;
}

.mobile-sticky-bar a.highlight {
    background: var(--secondary);
    color: white;
}

.mobile-sticky-bar .icon {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

/* Media Queries */
@media (max-width: 992px) {

    .navbar-links,
    .navbar-right {
        display: none;
    }

    .navbar-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        padding: 1rem;
        box-shadow: var(--shadow-md);
    }

    .navbar-links.active a {
        margin: 0.5rem 0;
        padding: 0.5rem;
    }

    .navbar-logo img {
        height: 48px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%), url('../img/hero-bg.jpg') center/cover no-repeat;
        padding: 3rem 0;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    h1 {
        font-size: 2rem;
    }

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

    .mobile-sticky-bar {
        display: flex;
    }
}

/* FAQ Styles */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    overflow: hidden;
    background: white;
}

.faq-question {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--primary);
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--secondary);
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
    background: white;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 4rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.process-step {
    flex: 1;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--bg-white);
    border: 2px solid var(--secondary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.9375rem;
    color: var(--text-light);
}

/* Icons in cards */
.card-icon {
    width: 48px;
    height: 48px;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

/* Form Container in Footer */
.footer-form-container {
    padding: 3rem;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    color: var(--text-main);
    text-align: left;
    max-width: 550px;
    margin: 0 auto;
}

.footer-form-container h2 {
    color: var(--primary);
    text-align: center;
    margin-bottom: 0.5rem;
}

.footer-form-container .lead-form {
    background: transparent;
    box-shadow: none;
    padding: 0;
    border-top: none;
    margin-top: 2rem;
}

.no-pressure {
    text-align: center;
    font-size: 0.875rem;
    color: #000 !important;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }

    .final-cta-section {
        padding: 3rem 0;
    }

    .footer-form-container {
        padding: 1.5rem;
    }

    .hero-container {
        gap: 2rem;
    }

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

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

    .card-winner {
        transform: scale(1);
    }

    .card-loser {
        transform: scale(1);
        opacity: 1;
    }

    .process-timeline {
        flex-direction: column;
        gap: 3rem;
    }

    .process-timeline::before {
        display: none;
    }
}

/* 2% Listing Fee Page Specific Styles */
.hero-trust-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
    padding: 1rem 0;
}

.hero-trust-bar span {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-trust-bar span::before {
    content: "✓";
    color: var(--success);
    font-size: 1.125rem;
}

.hero-savings-preview {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.hero-savings-preview div {
    font-size: 1rem;
    color: var(--text-main);
}

.hero-savings-preview strong {
    color: var(--secondary);
    display: block;
    font-size: 1.25rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--secondary);
    transition: transform 0.2s;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.service-card p {
    font-size: 0.9375rem;
    margin-bottom: 0;
    color: var(--text-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-main);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    position: relative;
    text-align: left;
    border: 1px solid var(--border-color);
}

.testimonial-card blockquote {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-card blockquote::before {
    content: '“';
    font-size: 4rem;
    color: var(--secondary);
    opacity: 0.2;
    position: absolute;
    top: -1.5rem;
    left: -1rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary);
    display: flex;
    flex-direction: column;
}

.testimonial-author span {
    font-weight: 400;
    font-size: 0.875rem;
    color: var(--text-light);
}

.calculator-cta-note {
    margin-top: 2rem;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.125rem;
    background: #EBF8FF;
    padding: 1rem;
    border-radius: var(--radius);
    display: inline-block;
}

@media (max-width: 768px) {
    .hero-trust-bar {
        gap: 1rem;
        flex-direction: column;
        align-items: flex-start;
        max-width: 250px;
        margin: 2rem auto 0;
    }

    .hero-savings-preview {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.25rem;
    }

    .hero-savings-preview strong {
        font-size: 1.125rem;
    }
}

/* Trust Points */
.trust-points {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.trust-points span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--primary);
}

.trust-points span::before {
    content: "✓";
    color: var(--success);
    font-weight: 800;
}

/* Savings Example Section */
.savings-highlight {
    margin-top: 3rem;
}

.savings-card {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
}

.savings-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.savings-comparison div {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.savings-comparison strong {
    font-size: 0.875rem;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.savings-comparison span {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
}

.savings-comparison div:first-child span {
    color: var(--secondary);
}

.total-savings {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--success);
    background: #F0FFF4;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-block;
}

@media (max-width: 768px) {
    .trust-points {
        gap: 1rem;
        flex-direction: column;
    }

    .savings-card {
        padding: 2rem 1.5rem;
    }

    .savings-comparison {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Split Layout */
.split-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.split-layout.align-center {
    align-items: center;
}

.split-image,
.split-content {
    flex: 1;
    min-width: 300px;
}

.split-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Check List */
.check-list {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.check-list div {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--primary);
}

.check-list div::before {
    content: "✓";
    color: var(--success);
    font-weight: 800;
    font-size: 1.125rem;
}

/* Hero Enhancements */
.hero-asymmetric {
    padding: 8rem 0;
    background: radial-gradient(circle at 70% 30%, rgba(247, 250, 252, 0.7) 0%, rgba(255, 255, 255, 1) 100%),
        url('../img/hero-bg.jpg') center/cover no-repeat;
    position: relative;
}

.hero-asymmetric .hero-container {
    display: flex;
    gap: 5rem;
    align-items: center;
}

.hero-asymmetric .hero-content {
    flex: 1.3;
}

.hero-asymmetric .hero-form-container {
    flex: 1;
    max-width: 440px;
}

.hero-form-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
}

@media (max-width: 992px) {
    .hero-asymmetric {
        padding: 4rem 0;
    }

    .hero-asymmetric .hero-container {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .hero-asymmetric .hero-content,
    .hero-asymmetric .hero-form-container {
        flex: 1;
        max-width: 100%;
        width: 100%;
    }

    .hero-asymmetric .subheading {
        margin-left: auto;
        margin-right: auto;
    }

    .split-layout {
        gap: 2rem;
    }
}