/* Offerpad-inspired Design System */
:root {
    --primary-green: #1a5f3f;
    --accent-beige: #d4a574;
    --light-green: #2d7a56;
    --dark-green: #134a32;
    --green-900: #1f5139;    /* deep brand green */
    --green-700: #2f6b4c;
    --tan-500: #d8b38a;      /* warm accent for CTAs */
    --bg-cream: #f7f6f4;
    --text-900: #1f1f1f;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.5;
    color: var(--gray-800);
    background: var(--white);
}

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

/* Site Header - Fixed Spacing */
.site-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    padding: 0 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.brand {
    flex-shrink: 0;
}

.brand-logo {
    height: 40px;
    display: block;
}

.main-nav {
    display: flex;
    justify-content: center;
    flex: 1;
    margin: 0 2rem;
}

.nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-list a {
    color: var(--text-900);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 4px;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-list a:hover {
    color: var(--green-700);
}

/* Dropdown Navigation */
.nav-item {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 200px;
    z-index: 1000;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 14px;
    color: var(--gray-700);
}

.dropdown a:last-child {
    border-bottom: none;
}

.dropdown a:hover {
    background: var(--gray-50);
    color: var(--green-700);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.phone-link {
    color: var(--green-900);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.phone-icon {
    font-size: 16px;
}

.btn {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-accent {
    background: var(--tan-500);
    color: #1f1f1f;
}

.btn-accent:hover {
    filter: brightness(0.95);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}

/* CTA Button Styles */
.cta-button {
    background: var(--primary-green);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.cta-button:hover {
    background: var(--dark-green);
    transform: translateY(-1px);
}

.cta-button-large {
    padding: 18px 32px;
    font-size: 1.2rem;
    border-radius: 12px;
}

/* Sticky CTA Button */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-green);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    display: none;
}

.sticky-cta:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    color: white;
}

/* Hero */
.hero {
    position: relative;
    color: #fff;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg, rgba(31,81,57,.85) 0%, rgba(47,107,76,.75) 60%, rgba(31,81,57,.85) 100%),
        url('../images/houston-skyline.jpg') center/cover no-repeat;
    z-index: 0;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 2rem;
    align-items: center;
    min-height: 560px;
    padding: 3rem 0;
}

.hero-left .hero-title {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: .75rem;
}

.hero-left .highlight {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    opacity: .95;
}

.hero-subtitle {
    max-width: 48ch;
    margin: .75rem 0 1rem;
}

.hero-bullets {
    display: grid;
    gap: .35rem;
    margin: 1rem 0 1.25rem;
    padding-left: 0;
    list-style: none;
}

.trust-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    opacity: .95;
}

.trust-row img {
    height: 32px;
}

.hero-right .form-card {
    background: #fff;
    color: #1f1f1f;
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 12px 28px rgba(0,0,0,.15);
}

.hero-right .form-card .cta-button,
.hero-right .form-card button[type="submit"] {
    background: var(--tan-500)!important;
    color: #1f1f1f!important;
    border: none;
    border-radius: .6rem;
}

/* Phone Number Display */
.phone-display {
    background: var(--accent-beige);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.phone-display:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

/* Form Styles */
.detailed-form {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 2rem;
    color: var(--gray-800);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.2);
    width: 100%;
    max-width: 400px;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.3;
}

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

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

.form-label {
    display: block;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.required {
    color: #dc2626;
}

.form-input {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.2s;
    background: var(--white);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(26, 95, 63, 0.1);
}

.form-input::placeholder {
    color: var(--gray-400);
}

.submit-button {
    width: 100%;
    background: #dc2626;
    color: var(--white);
    padding: 18px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    margin-top: 1rem;
}

.submit-button:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

/* Benefits Box */
.benefits-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 400px;
    color: var(--gray-800);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

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

.benefits-list li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    font-size: 18px;
    font-weight: 500;
}

.benefits-list li::before {
    content: "✓";
    background: var(--primary-green);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-weight: bold;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumb Navigation */
.breadcrumb {
    padding: 1rem 0;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    color: var(--gray-600);
}

.breadcrumb-item a {
    color: var(--primary-green);
    text-decoration: none;
}

.breadcrumb-separator {
    color: var(--gray-400);
}

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

.card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid var(--gray-200);
}

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

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.card-text {
    color: var(--gray-600);
    line-height: 1.6;
}

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

.step-card {
    text-align: center;
    position: relative;
}

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

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

/* Trust Badges */
.trust-badges {
    background: var(--white);
    padding: 3rem 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.badge {
    padding: 1rem;
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    display: block;
}

.badge-text {
    color: var(--gray-600);
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Carousel */
.carousel-section {
    background: var(--gray-50);
    padding: 80px 0;
}

.carousel-container {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.carousel-slide {
    display: none;
    padding: 3rem;
    text-align: center;
}

.carousel-slide.active {
    display: block;
}

.slide-location {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 2rem;
}

.before-after-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

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

.photo-label {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.before-label { color: #dc2626; }
.after-label { color: #16a34a; }

.transformation-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.arrow-separator {
    font-size: 2rem;
    color: var(--primary-green);
    font-weight: bold;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-arrow {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.2s;
}

.carousel-arrow:hover {
    background: var(--dark-green);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--gray-300);
    cursor: pointer;
    transition: all 0.2s;
}

.carousel-dot.active {
    background: var(--primary-green);
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.mission-box {
    background: rgba(26, 95, 63, 0.05);
    border: 2px solid var(--primary-green);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.mission-title {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* Comparison Chart */
.comparison-section {
    background: var(--gray-50);
    padding: 80px 0;
}

.comparison-container {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-header {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.comparison-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.comparison-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.comparison-table {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    background: var(--white);
}

.table-header {
    font-weight: 700;
    font-size: 1.2rem;
    padding: 1.5rem;
    background: var(--gray-100);
    border-bottom: 2px solid var(--gray-200);
}

.header-haven {
    background: var(--primary-green);
    color: var(--white);
    text-align: center;
}

.header-traditional {
    background: var(--gray-200);
    color: var(--gray-800);
    text-align: center;
}

.table-row {
    display: contents;
}

.row-label {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--gray-800);
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    font-size: 1rem;
}

.category-header {
    background: var(--gray-50);
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.1rem;
}

.haven-cell {
    padding: 1.5rem;
    text-align: center;
    background: rgba(26, 95, 63, 0.05);
    border-bottom: 1px solid var(--gray-200);
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.1rem;
}

.traditional-cell {
    padding: 1.5rem;
    text-align: center;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-700);
    font-weight: 500;
}

.highlight-number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.highlight-green {
    color: var(--primary-green);
}

.highlight-red {
    color: #dc2626;
}

.comparison-cta {
    background: var(--primary-green);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.comparison-cta-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.comparison-button {
    background: var(--white);
    color: var(--primary-green);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid var(--white);
}

.comparison-button:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

.savings-highlight {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: var(--white);
    padding: 1rem;
    border-radius: 12px;
    margin: 1rem 0;
    text-align: center;
    font-weight: 700;
}

/* FAQ Styles */
.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    background: var(--gray-50);
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    width: 100%;
    text-align: left;
    transition: background 0.2s;
}

.faq-question:hover {
    background: var(--gray-100);
}

.faq-answer {
    padding: 1.5rem;
    display: none;
    line-height: 1.6;
}

.faq-answer.active {
    display: block;
}

.faq-toggle {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-green);
    transition: transform 0.3s;
}

.faq-toggle.active {
    transform: rotate(180deg);
}

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

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.blog-image {
    height: 200px;
    background: var(--gray-200);
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.blog-excerpt {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

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

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-700);
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* Mobile Responsive Design */
@media (max-width: 1200px) {
    .nav-list {
        gap: 1.5rem;
    }

    .nav-list a {
        font-size: 14px;
    }

    .header-cta {
        gap: 0.75rem;
    }

    .btn {
        padding: 8px 12px;
        font-size: 13px;
    }

    .phone-link {
        font-size: 13px;
    }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991px) {
    .main-nav {
        display: none;
        order: 3;
        width: 100%;
        margin: 1rem 0 0 0;
        background: white;
        border-top: 1px solid #eee;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .main-nav.active {
        display: block;
        animation: slideDown 0.3s ease-out;
    }

    .nav-toggle {
        display: block;
    }

    .header-row {
        flex-wrap: wrap;
    }

    .nav-list {
        flex-direction: column;
        padding: 1rem;
        gap: 0;
    }

    .nav-list li {
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-list li:last-child {
        border-bottom: none;
    }

    .nav-list a {
        display: block;
        padding: 12px 0;
        font-size: 16px;
    }

    .header-cta {
        gap: 0.5rem;
    }

    .btn {
        padding: 6px 10px;
        font-size: 12px;
    }

    .phone-link {
        font-size: 12px;
    }

    .brand-logo {
        height: 36px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        min-height: auto;
        padding: 1.75rem 0;
    }

    .hero-right {
        order: -1;
    }

    .hero-left .hero-title {
        font-size: 1.85rem;
    }

    .sticky-cta {
        display: block;
    }
}

@media (max-width: 768px) {
    .header-row {
        min-height: 60px;
    }

    .nav-list {
        gap: 1rem;
        flex-direction: column;
        background: white;
        padding: 1rem;
        border-top: 1px solid #eee;
    }

    .header-cta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-end;
    }

    .brand-logo {
        height: 32px;
    }

    .section-title {
        font-size: 2rem;
    }

    .before-after-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .arrow-separator {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

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

    .detailed-form {
        padding: 2rem;
        margin: 1rem;
    }

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

    .phone-display {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
    }

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

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

    .table-header {
        display: none;
    }

    .comparison-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1px;
        background: var(--gray-200);
        margin-bottom: 1px;
    }

    .row-label {
        grid-column: 1 / -1;
        text-align: center;
        background: var(--gray-100);
    }

    .category-header {
        grid-column: 1 / -1;
    }

    .comparison-title {
        font-size: 2rem;
    }

    .mobile-header {
        display: block;
        font-weight: 700;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        opacity: 0.8;
    }

    .desktop-only {
        display: none;
    }
}

@media (min-width: 769px) {
    .mobile-header {
        display: none;
    }
}
