:root {
    /* Primary Colors - Slate Blue (sophisticated, professional) */
    --primary: #1E293B;
    --primary-light: #334155;
    --primary-dark: #0F172A;
    
    /* Accent Colors - Electric Blue (modern, trustworthy) */
    --accent: #3B82F6;
    --accent-light: #60A5FA;
    --accent-dark: #2563EB;
    
    /* Highlight - Amber (warmth, attention) */
    --highlight: #F59E0B;
    --highlight-light: #FBBF24;
    
    /* Success */
    --success: #10B981;
    
    /* Backgrounds */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-tertiary: #F1F5F9;
    
    /* Text */
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-light: #94A3B8;
    
    /* Borders */
    --border-light: #E2E8F0;
    --border-medium: #CBD5E1;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1E293B 0%, #334155 100%);
    --gradient-accent: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    --gradient-subtle: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-secondary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(40px, 6vw, 64px); }
h2 { font-size: clamp(32px, 5vw, 48px); }
h3 { font-size: clamp(24px, 4vw, 32px); }

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    padding: 20px 0;
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-desktop {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-desktop a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-desktop a:hover {
    color: var(--primary);
}

.header-cta {
    display: flex;
    gap: 16px;
    align-items: center;
}

.phone-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    display: inline-block;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    padding: 24px;
    z-index: 999;
}

.mobile-menu.active {
    display: block !important;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav a {
    padding: 12px 0;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--border-light);
}

.mobile-nav .open-hubspot-chat,
.mobile-nav .mobile-chat-btn {
    background: none;
    border: none;
    padding: 12px 0;
    color: var(--text-primary);
    font-weight: 500;
    font-size: inherit;
    text-align: left;
    cursor: pointer;
    border-bottom: 1px solid var(--border-light);
    font-family: inherit;
}

.mobile-phone {
    color: var(--accent) !important;
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

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

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
    flex-direction: column;
    gap: 4px;
}

.btn-subtitle {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
}

/* Hero */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, white 100%);
}

.hero .container {
    max-width: 1280px !important;
}

/* Hero Content Centered */
.hero-content-center {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 48px 0;
    text-align: left;
}

.hero-features-grid-two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 32px 0;
    text-align: left;
}

.hero-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.hero-feature-item svg {
    color: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}

.hero-feature-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.hero-feature-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Services Overview Section */
.services-overview-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.services-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-option-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    border: 2px solid var(--border-light);
    display: flex;
    flex-direction: column;
}

.service-option-card.featured {
    border-color: var(--accent);
    position: relative;
}

.service-option-header h3 {
    font-size: 28px;
    margin-bottom: 8px;
}

.service-price {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.service-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    flex-grow: 1;
}

.service-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 15px;
    color: var(--text-primary);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-note {
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 12px;
}

/* Platform Benefits Section */
.platform-benefits-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.benefit-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 32px;
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.benefit-card > p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 14px;
    color: var(--text-secondary);
}

.benefit-list li::before {
    content: "\2713";  /* Unicode for checkmark */
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 16px;
}

/* Social Proof Section */
.social-proof-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.testimonial-stars {
    font-size: 16px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    font-size: 15px;
    color: var(--text-primary);
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-secondary);
}

.hero-split {
    display: grid !important;
    grid-template-columns: 1.1fr 0.9fr !important;
    gap: 48px !important;
    align-items: center;
}

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

.hero-badge {
    display: inline-block;
    background: var(--success);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 19px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.6;
}

.hero-tagline {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 32px;
    font-weight: 600;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
    font-size: 14px;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.hero-trust svg {
    color: var(--success);
    flex-shrink: 0;
}

.hero-trust span {
    white-space: nowrap;
}

/* Testimonial Bubble */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.testimonial-bubble {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-light);
    position: relative;
    max-width: 400px;
}

.testimonial-bubble::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 40px;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 12px solid white;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    color: var(--highlight);
    width: 20px;
    height: 20px;
}

.bubble-quote {
    font-size: 20px;
    color: var(--text-primary);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 16px;
    font-weight: 500;
}

.bubble-author {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.4;
}

/* Hero Centered (for inner pages) */
.hero-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-content-centered .hero-ctas {
    justify-content: center;
}

.hero-content-centered .hero-trust {
    justify-content: center;
}

/* What We Handle Banner */
.what-we-handle-banner {
    background: var(--bg-secondary);
    padding: 24px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.handle-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.handle-label {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.handle-list-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-secondary);
}

.handle-list-inline span {
    white-space: nowrap;
}

.handle-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.handle-link:hover {
    text-decoration: underline;
}

.handle-specialist {
    font-size: 14px;
    color: var(--success);
    font-weight: 500;
    text-align: center;
    width: 100%;
    margin-top: 8px;
}

/* Hero Benefits List */
.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.benefit-item svg {
    color: var(--success);
    flex-shrink: 0;
}

/* Solution Features in Hero */
.solution-features-hero {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
}

.solution-feature-hero {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.solution-feature-hero svg {
    color: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}

.solution-feature-hero h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.solution-feature-hero p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Task Input Card */
.task-input-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
}

.task-input-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.input-help {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.task-input {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--accent);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    resize: vertical;
    margin-bottom: 16px;
    transition: border-color 0.2s;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
    0%, 100% {
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }
    50% {
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    }
}

.task-input:focus {
    outline: none;
    border-color: var(--accent);
    animation: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.task-input::placeholder {
    color: var(--text-light);
}

/* Blinking cursor effect when empty */
.task-input:empty:before,
.task-input:placeholder-shown:before {
    content: '';
    display: inline-block;
    width: 2px;
    height: 20px;
    background: var(--accent);
    animation: blink 1s step-start infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

.input-note {
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 12px;
}

/* Pricing Grid Two Column */
.pricing-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.pricing-divider {
    list-style: none !important;
    padding: 0 !important;
    margin: 12px 0 !important;
    border-bottom: 1px solid var(--border-light);
}

.pricing-help-section {
    text-align: center;
    padding: 48px 32px;
    background: var(--bg-secondary);
    border-radius: 16px;
    margin-top: 48px;
}

.pricing-help-section h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

.help-options {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.help-note {
    color: var(--text-secondary);
    font-size: 15px;
}

/* Help Decide Section */
.help-decide-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.help-decide-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.help-decide-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.help-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.help-options-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* When only one card (chat hidden) */
.help-options-large:has(> :only-child) {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
}

.help-option-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    border: 2px solid var(--border-light);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.help-option-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.help-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.help-option-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.help-option-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.help-option-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    border: 2px solid var(--border-light);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: inherit;
    width: 100%;
}

.help-option-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.help-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.help-option-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.help-option-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.help-arrow {
    font-size: 28px;
    color: var(--accent);
    font-weight: 400;
    line-height: 1;
}

/* Hero Small (for inner pages) */
.hero-small {
    padding: 60px 0 40px;
    background: var(--gradient-subtle);
    text-align: center;
}

.hero-small-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero-small h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.hero-small p {
    font-size: 20px;
    color: var(--text-secondary);
}

/* Services List Section */
.services-list-section {
    padding: 80px 0;
}

.services-category {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-light);
}

.services-category:last-child {
    border-bottom: none;
}

.services-category h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.services-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 32px;
    list-style: none;
}

.services-items li {
    padding-left: 28px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
}

.services-items li::before {
    content: "âœ“";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

/* Coordination Section */
.coordination-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.coordination-content {
    max-width: 1000px;
    margin: 0 auto;
}

.coordination-content h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.coordination-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.coordination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.coordination-item {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.coordination-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.coordination-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.coordination-how {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.coordination-how h3 {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.coordination-how ol {
    max-width: 600px;
    margin: 0 auto;
    padding-left: 24px;
}

.coordination-how li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 8px;
}

/* Custom Request Section */
.custom-request-section {
    padding: 80px 0;
    background: white;
}

.custom-request-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.custom-request-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.custom-request-intro {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.custom-request-form {
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: border-color 0.2s;
}

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

.form-group textarea {
    resize: vertical;
    line-height: 1.6;
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 16px;
    display: block;
    clear: both;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: 300;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-content h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.modal-intro {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.modal-form {
    text-align: left;
}

/* Voice Button */
.voice-btn {
    position: absolute;
    right: 12px;
    bottom: 12px;
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.voice-btn:hover {
    border-color: var(--accent);
    background: var(--bg-secondary);
}

.voice-btn.listening {
    border-color: var(--highlight);
    background: var(--highlight);
    color: white;
    animation: pulse 1s infinite;
}

.voice-btn svg {
    color: currentColor;
}

.form-group {
    position: relative;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

/* What We Handle Quick */
.what-we-handle-quick {
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 20px 0;
}

.handle-quick-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.handle-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.handle-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    color: var(--text-secondary);
}

.handle-categories span {
    white-space: nowrap;
}

.handle-plus {
    font-size: 14px;
    color: var(--success);
    font-weight: 500;
    max-width: 700px;
}

/* Segmentation Section */
.segmentation-section {
    padding: 60px 0;
    background: white;
}

.segmentation-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.segmentation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.segmentation-card {
    background: white;
    padding: 40px 32px;
    border-radius: 12px;
    border: 2px solid var(--border-light);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.segmentation-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.seg-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.segmentation-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.segmentation-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.seg-cta {
    color: var(--accent);
    font-weight: 600;
    font-size: 16px;
}

.segmentation-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
    font-size: 14px;
    color: var(--text-secondary);
}

.segmentation-trust svg {
    color: var(--success);
}

.segmentation-trust span {
    white-space: nowrap;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

.platform-preview {
    background: rgba(255, 255, 255, 0.6);
    padding: 8px !important;
    border-radius: 20px;
}

.platform-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
}

.portal-showcase {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
}

@media (max-width: 768px) {
    .portal-showcase {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Audience Section */
.audience-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.audience-card {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 32px;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.audience-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.audience-card.featured {
    background: var(--gradient-accent);
    color: white;
    border-color: var(--accent);
}

.audience-card.featured h3,
.audience-card.featured p {
    color: white;
}

.audience-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--highlight);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.audience-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.audience-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary);
}

.audience-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.audience-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--accent);
}

.audience-card.featured .audience-cta {
    color: white;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    color: white;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Recent Work Section */
.recent-work-section {
    padding: 80px 0;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.work-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 24px;
}

.work-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.work-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 14px;
}

.work-location svg {
    color: var(--accent);
}

.work-date {
    color: var(--text-light);
    font-size: 14px;
}

.work-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

.work-list {
    list-style: none;
    margin-bottom: 16px;
}

.work-list li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    color: var(--text-secondary);
}

.work-list li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 600;
}

.work-time {
    font-size: 14px;
    color: var(--text-light);
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
}

.section-cta {
    text-align: center;
    margin-top: 32px;
}

.section-cta p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Service Area Section */
.service-area-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.service-area-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.area-map {
    background: white;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border-light);
}

.map-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.area-list h3 {
    margin-bottom: 24px;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

.area-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

.area-note {
    color: var(--text-secondary);
    font-size: 14px;
}

.area-note a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 16px;
}

.cta-content > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.cta-phone {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.cta-phone a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 32px;
}

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

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 16px;
    font-size: 16px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a,
.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 40px;
    }

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

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

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

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

@media (max-width: 768px) {
    /* Hide desktop nav */
    .nav-desktop {
        display: none !important;
    }

    /* Hide phone link on all mobile */
    .phone-link {
        display: none !important;
    }

    /* Header padding */
    .header {
        padding: 12px 0 !important;
    }

    /* Header layout - simple flexbox */
    .header-content {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 16px !important;
        width: 100% !important;
    }

    /* Logo - always visible */
    .logo {
        display: block !important;
        font-size: 22px !important;
        font-weight: 700 !important;
        flex: 0 0 auto !important;
    }

    /* Header CTA container */
    .header-cta {
        display: flex !important;
        gap: 8px !important;
        flex: 0 0 auto !important;
        align-items: center !important;
    }

    /* Get Started button on mobile */
    .header-cta .btn {
        display: inline-flex !important;
        padding: 8px 12px !important;
        font-size: 13px !important;
        white-space: nowrap !important;
    }

    /* Hamburger menu - always visible */
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        gap: 5px !important;
        background: none !important;
        border: none !important;
        cursor: pointer !important;
        padding: 8px !important;
        flex: 0 0 auto !important;
    }

    .mobile-menu-toggle span {
        width: 24px !important;
        height: 2px !important;
        background: var(--primary) !important;
        border-radius: 2px !important;
        display: block !important;
    }

    /* Mobile menu dropdown */
    /* Mobile menu is controlled by .active class, not the breakpoint */
}

/* Medium mobile phones - hide button but keep logo and hamburger */
@media (max-width: 600px) {
    .header-cta .btn {
        display: none !important;
    }
    
    .logo {
        font-size: 20px !important;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-split {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero {
        padding: 60px 0 80px;
    }

    h1, .hero-title {
        font-size: 36px !important;
        line-height: 1.2;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 20px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .stat {
        width: 100%;
    }

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

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

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

    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .task-input {
        font-size: 16px !important;
        padding: 14px;
        min-height: 150px;
    }

    .platform-preview {
        padding: 8px;
    }

    .platform-image {
        border-radius: 12px;
    }

    .btn {
        padding: 14px 24px;
        font-size: 16px;
        min-height: 48px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px;
        padding: 12px;
    }

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

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto 24px;
    }
}

@media (max-width: 480px) {
    h1, .hero-title { 
        font-size: 28px !important;
        line-height: 1.2;
    }
    
    h2 { 
        font-size: 24px;
    }
    
    h3 { 
        font-size: 18px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        font-size: 15px;
        padding: 12px 20px;
    }

    .container {
        padding: 0 16px;
    }

    .section {
        padding: 40px 0;
    }

    /* CRITICAL: Hide Get Started button on tiny screens to make room */
    .header-cta .btn {
        display: none !important;
    }

    /* Keep phone hidden */
    .header-cta .phone-link {
        display: none !important;
    }

    /* Smaller logo on tiny screens */
    .logo {
        font-size: 18px !important;
    }

    /* Absolutely ensure hamburger is visible */
    .mobile-menu-toggle {
        display: flex !important;
        padding: 4px !important;
    }

    .mobile-menu-toggle span {
        width: 20px !important;
        height: 2px !important;
    }

    /* More compact header */
    .header {
        padding: 8px 0 !important;
    }

    .header-content {
        gap: 12px !important;
    }
}

/* Homeowners Page Styles */
.problem-section {
    padding: 80px 0;
    background: white;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.problem-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    text-align: center;
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.problem-card p {
    color: var(--text-secondary);
    font-size: 15px;
}

.solution-section {
    padding: 80px 0;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solution-badge {
    display: inline-block;
    background: var(--success);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.solution-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.solution-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.solution-feature svg {
    color: var(--success);
    flex-shrink: 0;
}

.solution-feature h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.solution-feature p {
    font-size: 14px;
    color: var(--text-secondary);
}

.solution-visual {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
}

.solution-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.what-fits-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.example-card {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 32px;
    position: relative;
}

.example-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.example-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--accent);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.example-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.example-time {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.example-list {
    list-style: none;
    margin-bottom: 24px;
}

.example-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    color: var(--text-secondary);
}

.example-list li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 600;
}

.example-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

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

.btn-accent:hover {
    background: var(--accent-dark);
}

.pricing-section {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 60px;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: var(--gradient-primary);
    color: white;
}

.pricing-card.featured h3,
.pricing-card.featured .pricing-name,
.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-description {
    color: white;
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.pricing-card.featured .pricing-header {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-name {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 12px;
}

.pricing-price {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.pricing-price span {
    font-size: 24px;
    opacity: 0.7;
}

.pricing-description {
    font-size: 16px;
    color: var(--text-secondary);
}

.pricing-card.featured .pricing-description {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features {
    list-style: none;
    margin-bottom: 24px;
}

.pricing-features li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}

.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 600;
    font-size: 18px;
}

.pricing-note {
    background: var(--bg-tertiary);
    padding: 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

.pricing-card.featured .pricing-note {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.pricing-btn {
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: all 0.2s;
}

.pricing-card.featured .pricing-btn {
    background: white;
    color: var(--primary);
}

.pricing-card.featured .pricing-btn:hover {
    background: var(--bg-secondary);
}

.pricing-faq {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-faq h3 {
    text-align: center;
    margin-bottom: 32px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.faq-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}

.faq-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.how-it-works-section {
    padding: 80px 0;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

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

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

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 15px;
}

@media (max-width: 1024px) {
    .problem-grid,
    .examples-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .problem-grid,
    .examples-grid,
    .pricing-grid,
    .faq-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

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

/* Landlords Page Styles */
.platform-features-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.platform-feature-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.platform-feature-large.reverse {
    direction: rtl;
}

.platform-feature-large.reverse > * {
    direction: ltr;
}

.feature-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.platform-feature-content h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.feature-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.feature-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.benefit-item svg {
    color: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-item span {
    color: var(--text-secondary);
    font-size: 15px;
}

.platform-feature-visual {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.landlord-pricing-section {
    padding: 80px 0;
}

.pricing-comparison {
    max-width: 1000px;
    margin: 60px auto 0;
    text-align: center;
}

.pricing-comparison h3 {
    font-size: 32px;
    margin-bottom: 40px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.comparison-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.comparison-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.comparison-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.comparison-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.remote-landlord-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.remote-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.remote-feature {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    text-align: center;
}

.remote-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.remote-feature h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.remote-feature p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .platform-feature-large {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .comparison-grid,
    .remote-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Styles */
.contact-hero {
    padding: 60px 0;
    background: var(--gradient-subtle);
    text-align: center;
}

.contact-hero-content h1 {
    margin-bottom: 16px;
}

.contact-hero-content p {
    font-size: 20px;
    color: var(--text-secondary);
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    margin-bottom: 16px;
}

.contact-intro {
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-method {
    display: flex;
    gap: 20px;
}

.method-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon svg {
    color: white;
}

.method-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.method-content p {
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.method-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.method-hours {
    font-size: 14px;
    color: var(--text-light);
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.contact-form-container h2 {
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.form-group label {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: border-color 0.2s;
}

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

.form-group textarea {
    resize: vertical;
}

.form-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    margin-top: -8px;
}

.quick-cta-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    text-align: center;
}

.quick-cta-content h2 {
    margin-bottom: 16px;
}

.quick-cta-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-form-container {
        padding: 24px;
    }
}

/* STR Hosts Page Styles */
.str-services-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.services-grid-str {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card-str {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.service-card-str h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary);
}

.service-card-str ul {
    list-style: none;
    padding: 0;
}

.service-card-str li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    color: var(--text-secondary);
}

.service-card-str li::before {
    content: 'â€¢';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
}

.str-pricing-section {
    padding: 80px 0;
}

.pricing-factors {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.factor-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
}

.factor-card.featured-factor {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.factor-card h3 {
    margin-bottom: 24px;
}

.factor-card.featured-factor h3,
.factor-card.featured-factor p {
    color: white;
}

.factor-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.factor-list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.factor-list strong {
    color: var(--primary);
    font-size: 16px;
}

.factor-list span {
    font-size: 14px;
    color: var(--text-secondary);
}

.discount-tiers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.discount-tier {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.tier-number {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.tier-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tier-discount {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
}

@media (max-width: 1024px) {
    .services-grid-str {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid-str,
    .pricing-factors {
        grid-template-columns: 1fr;
    }

    .discount-tiers {
        grid-template-columns: 1fr;
    }
}

/* About Page Styles */
.about-hero {
    padding: 80px 0;
    background: var(--gradient-subtle);
    text-align: center;
}

.about-hero-content h1 {
    margin-bottom: 24px;
}

.about-hero-content p {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Resources index — matches freeze checklist card language + site tokens */
.resources-page-body {
    background: var(--bg-secondary);
}

.resources-page {
    min-height: 40vh;
}

.resources-breadcrumb {
    padding: 20px 0 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.resources-breadcrumb ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.resources-breadcrumb li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.resources-breadcrumb li:not(:last-child)::after {
    content: "/";
    color: var(--text-light);
    font-weight: 400;
    margin-left: 8px;
}

.resources-breadcrumb a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.resources-breadcrumb a:hover {
    text-decoration: underline;
}

.resources-breadcrumb [aria-current="page"] {
    color: var(--text-primary);
    font-weight: 600;
}

.resources-page-hero {
    padding: 32px 0 48px;
    text-align: center;
}

.resources-page-hero .hero-badge {
    margin-bottom: 20px;
}

.resources-page-hero h1 {
    font-size: clamp(28px, 4.5vw, 44px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin: 0 auto 16px;
    max-width: 720px;
    line-height: 1.15;
}

.resources-page-lead {
    font-size: clamp(16px, 2.2vw, 19px);
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 640px;
    margin: 0 auto;
}

.resources-page-help {
    margin-top: 40px;
    padding: 20px 22px;
    text-align: center;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
}

.resources-page-help a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.resources-page-help a:hover {
    text-decoration: underline;
}

/* Resources hub — inspection ledger style (mobile mock alignment) */
.resources-ledger {
    padding: 0 0 56px;
}

.resources-ledger__intro {
    margin-bottom: 28px;
}

.resources-ledger__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 10px;
}

.resources-ledger__intro-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.resources-ledger__title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin: 0;
}

.resources-ledger__count {
    font-size: 15px;
    font-weight: 700;
    color: var(--accent);
}

.resources-ledger__sub {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 640px;
}

.resources-ledger-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.resources-ledger-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 16px;
    padding: 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.resources-ledger-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border-medium);
}

.resources-ledger-card__thumb {
    flex-shrink: 0;
    width: 88px;
    height: 88px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
}

.resources-ledger-card__thumb--prep {
    background-image: linear-gradient(145deg, #bfdbfe 0%, #60a5fa 100%);
}

.resources-ledger-card__thumb--damage {
    background-image: linear-gradient(145deg, #e0e7ff 0%, #6366f1 55%, #312e81 100%);
}

.resources-ledger-card__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 0;
}

.resources-ledger-card__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.resources-ledger-card__name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.25;
}

.resources-ledger-card__desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.45;
    margin-bottom: 6px;
}

.resources-ledger-card__cta {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    margin-top: auto;
}

.resources-ledger-card:hover .resources-ledger-card__cta {
    text-decoration: underline;
}

.freeze-page-crosslinks {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
    font-size: 14px;
    color: #6b7280;
}

.freeze-page-crosslinks p {
    margin: 0 0 8px;
}

.freeze-page-crosslinks p:last-child {
    margin-bottom: 0;
}

.freeze-page-crosslinks a {
    color: var(--accent, #3B82F6);
    font-weight: 500;
    text-decoration: none;
}

.freeze-page-crosslinks a:hover {
    text-decoration: underline;
}

/* --- Freeze damage checklist (mockup-aligned, MyHuis branded) --- */
.freeze-damage-page {
    --fd-navy: #1e3a5f;
    --fd-navy-deep: #0f2744;
    --fd-periwinkle: #eef2ff;
    --fd-periwinkle-mid: #e0e7ff;
    --fd-alert: #dc2626;
    --fd-alert-soft: #fef2f2;
}

.freeze-damage-page .freeze-damage-container {
    max-width: 1040px;
}

.freeze-damage-hero {
    margin-bottom: 32px;
}

.freeze-damage-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
}

@media (min-width: 900px) {
    .freeze-damage-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
        gap: 40px;
        align-items: center;
    }
}

.freeze-damage-hero__copy {
    text-align: center;
}

@media (min-width: 900px) {
    .freeze-damage-hero__copy {
        text-align: left;
    }
}

.freeze-damage-hero__badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fd-navy);
    background: var(--fd-periwinkle-mid);
    padding: 8px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.freeze-damage-hero__title {
    font-size: clamp(28px, 4.2vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin: 0 0 16px;
}

.freeze-damage-hero__title-accent {
    font-family: "Merriweather", Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 600;
    color: var(--fd-navy);
}

.freeze-damage-hero__lead {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0 0 24px;
    max-width: 520px;
}

@media (min-width: 900px) {
    .freeze-damage-hero__lead {
        margin-left: 0;
        margin-right: auto;
    }
}

.freeze-damage-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0;
    justify-content: center;
}

@media (min-width: 900px) {
    .freeze-damage-hero__actions {
        justify-content: flex-start;
    }
}

.freeze-damage-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.freeze-damage-btn--primary {
    background: var(--fd-navy);
    color: #fff;
    border-color: var(--fd-navy);
}

.freeze-damage-btn--primary:hover {
    background: var(--fd-navy-deep);
    border-color: var(--fd-navy-deep);
    color: #fff;
    transform: translateY(-1px);
}

.freeze-damage-btn--outline {
    background: #fff;
    color: var(--fd-navy);
    border-color: var(--fd-navy);
}

.freeze-damage-btn--outline:hover {
    background: var(--fd-periwinkle);
}

.freeze-damage-btn--ghost {
    background: transparent;
    color: var(--text-secondary);
    border-color: var(--border-light);
}

.freeze-damage-btn--ghost:hover {
    border-color: var(--border-medium);
    color: var(--text-primary);
}

.freeze-damage-btn--on-dark {
    background: #fff;
    color: var(--fd-navy-deep);
    border-color: #fff;
}

.freeze-damage-btn--on-dark:hover {
    background: var(--fd-periwinkle);
    color: var(--fd-navy-deep);
}

.freeze-damage-btn--outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.85);
}

.freeze-damage-btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.freeze-damage-hero__visual {
    position: relative;
}

.freeze-damage-hero__img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: cover;
    max-height: 320px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.freeze-critical-alert {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: -48px;
    margin-left: 12px;
    margin-right: 12px;
    position: relative;
    z-index: 2;
    padding: 16px 18px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--fd-alert);
    box-shadow: var(--shadow-md);
}

@media (min-width: 900px) {
    .freeze-critical-alert {
        margin-top: -56px;
        margin-left: 20px;
        margin-right: 20px;
    }
}

.freeze-critical-alert__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--fd-alert-soft);
    color: var(--fd-alert);
    font-weight: 800;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
}

.freeze-critical-alert__body {
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-secondary);
}

.freeze-critical-alert__body strong {
    color: var(--fd-alert);
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.freeze-checklist-progress--damage {
    background: linear-gradient(145deg, var(--fd-navy) 0%, var(--fd-navy-deep) 100%);
    color: #fff;
    border: none;
    box-shadow: var(--shadow-lg);
    padding: 18px 20px 16px;
}

.freeze-checklist-progress--damage__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 8px;
}

.freeze-checklist-progress--damage .freeze-checklist-progress__row {
    color: rgba(255, 255, 255, 0.9);
}

.freeze-checklist-progress--damage .freeze-checklist-progress__count strong,
.freeze-checklist-progress--damage .freeze-checklist-progress__pct {
    color: #fff;
    font-size: 18px;
}

.freeze-checklist-progress--damage__tasks {
    font-weight: 500;
    opacity: 0.85;
    font-size: 14px;
}

.freeze-checklist-progress--damage__bar {
    background: rgba(255, 255, 255, 0.22);
    height: 10px;
}

.freeze-checklist-progress--damage__fill {
    background: #fff;
}

.freeze-checklist-progress--damage .freeze-checklist-progress__btn {
    color: rgba(255, 255, 255, 0.95);
}

.freeze-checklist-progress--damage .freeze-checklist-progress__btn:hover {
    color: #fff;
}

.freeze-protocols-intro {
    margin: 40px 0 24px;
    text-align: center;
}

.freeze-protocols-intro__title {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}

.freeze-protocols-intro__sub {
    margin: 0;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.55;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.freeze-damage-page .freeze-container > .section {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 0;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.freeze-damage-page .freeze-container .section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    text-align: left;
    padding: 18px 18px;
    margin: 0;
    background: #fff;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
}

.freeze-damage-page .freeze-container .section-header__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--fd-periwinkle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
}

.freeze-damage-page .freeze-container .section-header__text {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.freeze-damage-page .freeze-container .section-header .section-title {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    line-height: 1.25;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.freeze-damage-page .freeze-container .section-subtitle {
    display: block;
    margin-top: 4px;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.4;
}

.freeze-damage-page .freeze-container .section-chevron {
    flex-shrink: 0;
    margin-left: 8px;
    color: var(--text-light);
    font-size: 12px;
}

.freeze-damage-page .freeze-container .section-content {
    padding: 0 18px 20px;
    border-top: 1px solid var(--border-light);
    background: var(--bg-secondary);
}

.freeze-section-hint {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 16px 0 12px;
}

.freeze-damage-page .check-list--stacked {
    gap: 12px;
}

.freeze-damage-page .check-item--stacked {
    align-items: flex-start;
    padding: 16px 16px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    gap: 14px;
    margin: 0;
}

.freeze-damage-page .check-item--stacked:hover {
    border-color: var(--border-medium);
}

.freeze-damage-page .check-item__title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.35;
}

.freeze-damage-page .check-item__desc {
    display: block;
    margin-top: 6px;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.5;
}

.freeze-damage-page .check-item--stacked input[type="checkbox"] {
    width: 22px;
    height: 22px;
    min-width: 22px;
    margin-top: 2px;
    border-radius: 4px;
    accent-color: var(--fd-navy);
}

.freeze-pro-tip {
    margin-top: 20px;
    padding: 16px 18px;
    background: var(--fd-periwinkle);
    border: 1px solid var(--fd-periwinkle-mid);
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-secondary);
}

.freeze-pro-tip strong {
    display: block;
    color: var(--fd-navy);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.freeze-pro-tip p {
    margin: 0;
}

.freeze-damage-cta-grid {
    display: grid;
    gap: 16px;
    margin: 40px 0 32px;
}

@media (min-width: 768px) {
    .freeze-damage-cta-grid {
        grid-template-columns: 1.4fr 1fr;
        align-items: stretch;
    }
}

.freeze-damage-cta-grid__primary {
    background: linear-gradient(145deg, var(--fd-navy) 0%, var(--fd-navy-deep) 100%);
    color: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: var(--shadow-md);
}

.freeze-damage-cta-grid__primary h3 {
    color: #fff;
    font-size: 22px;
    margin: 0 0 10px;
}

.freeze-damage-cta-grid__primary p {
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.55;
}

.freeze-damage-cta-grid__primary-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.freeze-damage-cta-grid__secondary {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.freeze-damage-cta-card {
    flex: 1;
    background: var(--fd-periwinkle);
    border: 1px solid var(--fd-periwinkle-mid);
    border-radius: 14px;
    padding: 18px 16px;
}

.freeze-damage-cta-card__icon {
    font-size: 22px;
    display: block;
    margin-bottom: 8px;
}

.freeze-damage-cta-card h4 {
    font-size: 16px;
    margin: 0 0 8px;
    color: var(--text-primary);
}

.freeze-damage-cta-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0 0 12px;
    line-height: 1.5;
}

.freeze-damage-cta-card a {
    font-size: 14px;
    font-weight: 600;
    color: var(--fd-navy);
    text-decoration: none;
}

.freeze-damage-cta-card a:hover {
    text-decoration: underline;
}

.freeze-alerts-banner {
    background: var(--fd-periwinkle);
    border: 1px solid var(--fd-periwinkle-mid);
    border-radius: 16px;
    padding: 28px 22px;
    margin-bottom: 28px;
}

.freeze-alerts-banner__inner {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.freeze-alerts-banner h3 {
    font-size: 20px;
    margin: 0 0 8px;
    color: var(--text-primary);
}

.freeze-alerts-banner__inner > p {
    margin: 0 0 18px;
    color: var(--text-secondary);
    font-size: 15px;
}

.freeze-alerts-banner__form {
    justify-content: center;
    margin-bottom: 20px;
}

.freeze-alerts-banner__form input {
    background: #fff;
}

.freeze-alerts-banner__share-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.freeze-alerts-banner__share-btns {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.freeze-alerts-banner__share-btns button {
    padding: 10px 18px;
    border-radius: 8px;
    border: 1px solid var(--border-medium);
    background: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    color: var(--fd-navy);
    font-family: inherit;
}

.freeze-alerts-banner__share-btns button:hover {
    background: var(--fd-periwinkle-mid);
}

.freeze-damage-share-section {
    border-top: none;
    padding-top: 8px;
}

.story-section {
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.story-text h2 {
    margin-bottom: 24px;
}

.story-lead {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.story-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.story-list {
    list-style: none;
    padding-left: 0;
    margin: 24px 0;
}

.story-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-secondary);
}

.story-list li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

.story-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-block {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 2px solid var(--border-light);
    text-align: center;
}

.stat-block-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-block-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.difference-section-about {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.differences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.difference-item {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.difference-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.2;
    margin-bottom: 16px;
    line-height: 1;
}

.difference-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.difference-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.team-section {
    padding: 80px 0;
}

.team-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.team-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 2px solid var(--border-light);
}

.team-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary);
}

.team-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.values-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    text-align: center;
}

.value-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .differences-grid,
    .team-info,
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* New Homepage Sections */

/* Escape Hatches */
.escape-hatches {
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 16px 0;
}

.escape-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--text-secondary);
}

.escape-content a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.escape-content a:hover {
    text-decoration: underline;
}

.separator {
    color: var(--border-medium);
}

/* Solution Section Home */
.solution-section-home {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.solution-grid-home {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 48px;
}

.solution-item-home {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.solution-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.2;
    margin-bottom: 16px;
    line-height: 1;
}

.solution-item-home h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.solution-item-home p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.solution-item-home p:last-child {
    margin-bottom: 0;
}

.solution-item-home em {
    color: var(--success);
    font-style: normal;
    font-weight: 600;
}

/* What Fits Section Home */
.what-fits-section-home {
    padding: 80px 0;
}

.examples-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.example-card-home {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 2px solid var(--border-light);
    position: relative;
}

.example-card-home.featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}

.example-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.example-card-home h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.example-time {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.example-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.example-list li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    color: var(--text-secondary);
}

.example-list li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.example-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

/* Simple Pricing Section */
.simple-pricing-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.pricing-grid-simple {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 48px;
}

.pricing-card-simple {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 2px solid var(--border-light);
    position: relative;
}

.pricing-card-simple.featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}

.pricing-header-simple {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-header-simple h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.pricing-price-simple {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.pricing-description-simple {
    color: var(--text-secondary);
    font-size: 16px;
}

.pricing-features-simple {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.pricing-features-simple li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--bg-secondary);
}

.pricing-features-simple li:last-child {
    border-bottom: none;
}

.pricing-features-simple li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 18px;
}

.pricing-note-simple {
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: 8px;
    margin-bottom: 24px;
}

.pricing-note-simple.highlight {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    color: var(--highlight);
    font-weight: 600;
}

/* Work Testimonial */
.work-testimonial {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    font-style: italic;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Who Serve Section */
.who-serve-section {
    padding: 80px 0;
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.serve-card {
    background: white;
    padding: 40px 32px;
    border-radius: 12px;
    border: 2px solid var(--border-light);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.serve-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.serve-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.serve-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.serve-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.serve-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 16px;
}

.serve-cta {
    color: var(--accent);
    font-weight: 600;
    font-size: 16px;
}

@media (max-width: 1024px) {
    .solution-grid-home,
    .examples-grid-home,
    .pricing-grid-simple,
    .serve-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .escape-content {
        flex-direction: column;
        gap: 8px;
    }

    .separator {
        display: none;
    }

    .solution-grid-home,
    .examples-grid-home {
        gap: 24px;
    }
}

/* Home Reset Calculator Page Styles */
.calculator-hero {
    padding: 60px 0;
    background: var(--gradient-subtle);
    text-align: center;
}

.calculator-hero-content h1 {
    margin-bottom: 16px;
}

.calculator-hero-content p {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.calculator-section {
    padding: 80px 0;
}

.calculator-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.task-categories h2 {
    margin-bottom: 12px;
}

.categories-intro {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.category-group {
    margin-bottom: 32px;
}

.category-group h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--primary);
}

.task-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.task-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.task-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.task-item.selected {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

.task-name {
    font-weight: 500;
}

.task-time {
    font-size: 14px;
    color: var(--text-light);
}

.task-item.selected .task-time {
    color: rgba(255, 255, 255, 0.8);
}

.calculator-summary {
    position: relative;
}

.summary-sticky {
    position: sticky;
    top: 100px;
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 32px;
}

.summary-sticky h3 {
    font-size: 24px;
    margin-bottom: 24px;
    text-align: center;
}

.summary-tasks,
.summary-time {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
}

.summary-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.summary-value {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.summary-status {
    margin: 24px 0;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
    text-align: center;
}

.status-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.status-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.summary-status.status-good {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--success);
}

.summary-status.status-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 2px solid #F59E0B;
}

.summary-status.status-over {
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid var(--accent);
}

.summary-price {
    text-align: center;
    padding: 24px 0;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.price-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.price-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.price-note {
    font-size: 14px;
    color: var(--text-secondary);
}

.summary-guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    font-size: 14px;
    color: var(--text-secondary);
}

.summary-guarantee svg {
    color: var(--success);
    flex-shrink: 0;
}

.how-it-works-simple {
    padding: 80px 0;
    background: var(--bg-secondary);
    text-align: center;
}

.how-it-works-simple h2 {
    margin-bottom: 48px;
}

.steps-simple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.step-simple {
    background: white;
    padding: 32px;
    border-radius: 12px;
}

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

.step-simple h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.step-simple p {
    font-size: 14px;
    color: var(--text-secondary);
}

@media (max-width: 1024px) {
    .calculator-layout {
        grid-template-columns: 1fr;
    }

    .summary-sticky {
        position: static;
    }
}

@media (max-width: 768px) {
    .steps-simple {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 40px 0 40px;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.2;
    }

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

    .hero-left {
        max-width: 100%;
    }

    .hero-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 24px 0;
    }

    .hero-features-grid-two-col {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 24px 0;
    }

    .hero-feature-item {
        gap: 12px;
    }

    .hero-feature-item h4 {
        font-size: 15px;
    }

    .hero-feature-item p {
        font-size: 13px;
    }

    .task-input-card {
        padding: 20px;
    }

    .task-input-card h3 {
        font-size: 20px;
    }

    .input-help {
        font-size: 14px;
    }

    .task-input {
        font-size: 15px;
        min-height: 180px;
    }

    .voice-btn {
        right: 12px;
        bottom: 12px;
        width: 40px;
        height: 40px;
    }

    .input-note {
        font-size: 13px;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 12px;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    .services-options-grid {
        grid-template-columns: 1fr;
    }

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

    .problem-card {
        padding: 24px;
    }

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

    .benefit-card {
        padding: 24px;
    }

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

    .testimonial-card {
        padding: 24px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }

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

    .step-card {
        padding: 24px;
    }

    .modal-content {
        margin: 20px;
        padding: 24px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-content h2 {
        font-size: 24px;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }

    .hero-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-tagline {
        font-size: 18px;
    }

    .hero-trust {
        gap: 8px;
        font-size: 13px;
    }

    .testimonial-bubble {
        padding: 24px;
    }

    .testimonial-bubble::before {
        display: none;
    }

    .bubble-quote {
        font-size: 18px;
    }

    .task-input-card {
        padding: 24px;
    }

    .pricing-grid-two {
        grid-template-columns: 1fr;
    }

    .help-options-large {
        grid-template-columns: 1fr;
    }

    .help-decide-content h2 {
        font-size: 28px;
    }

    .hero-small h1 {
        font-size: 32px;
    }

    .hero-small p {
        font-size: 17px;
    }

    .services-items {
        grid-template-columns: 1fr;
    }

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

    .coordination-content h2 {
        font-size: 32px;
    }

    .custom-request-content h2 {
        font-size: 28px;
    }

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

    .modal-content {
        padding: 24px;
        margin: 20px;
    }

    .modal-content h2 {
        font-size: 24px;
    }

    .modal-close {
        right: 12px;
        top: 12px;
    }

    .handle-banner-content {
        flex-direction: column;
        gap: 12px;
    }

    .handle-list-inline {
        flex-wrap: wrap;
        justify-content: center;
        font-size: 14px;
    }

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

    .segmentation-trust {
        flex-wrap: wrap;
        gap: 8px;
    }
}

@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .pricing-grid-two {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .segmentation-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Automatic Alternating Section Backgrounds */
/* This makes sections alternate white/gray automatically */

/* Default: all sections are white */
section {
    background: white;
}

/* Every odd section gets gray background (2nd, 4th, 6th, etc) */
section:nth-of-type(even) {
    background: var(--bg-secondary);
}

/* Hero always stays white */
.hero {
    background: white !important;
}

/* CTA section always stays gradient blue */
.cta-section {
    background: var(--gradient-primary) !important;
}

/* Override any specific section backgrounds to follow the pattern */
.services-overview-section,
.problem-section,
.platform-benefits-section,
.how-it-works-section,
.social-proof-section {
    background: inherit; /* Use the nth-of-type pattern */
}

/* Dual Portal Preview - Landlords Page */
.dual-portal-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
}

.portal-mockup {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.portal-label {
    background: var(--primary);
    color: white;
    padding: 12px 16px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

.portal-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile: Stack portals vertically */
@media (max-width: 768px) {
    .dual-portal-preview {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
/* ============================================
   FREEZE PREP PAGES - ULTRA MINIMAL
   Clean like a to-do list, not a manual
   ============================================ */

/* Container */
.freeze-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px;
}

/* Hero - minimal */
.freeze-hero {
    text-align: center;
    margin-bottom: 48px;
}

.freeze-hero h1 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
    color: #111827;
    letter-spacing: -0.02em;
}

.freeze-hero p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 24px;
}

/* Simple action buttons - minimal */
.freeze-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 24px 0;
}

.freeze-actions button,
.freeze-actions a {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    background: white;
    border: 1px solid #e5e7eb;
    color: #374151;
}

.freeze-actions button:hover,
.freeze-actions a:hover {
    border-color: #d1d5db;
    background: #f9fafb;
}

.freeze-actions .btn-primary {
    background: #3B82F6;
    color: white;
    border-color: #3B82F6;
}

.freeze-actions .btn-primary:hover {
    background: #2563eb;
    border-color: #2563eb;
}

/* Single line alert - no box */
.freeze-alert-minimal {
    text-align: center;
    padding: 12px 0;
    margin: 24px 0;
    font-size: 15px;
    color: #6b7280;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.freeze-alert-minimal strong {
    color: #111827;
}

/* Sections - just dividers, no boxes */
.section {
    border-top: 1px solid #e5e7eb;
    padding: 32px 0;
    margin: 0;
}

.section:first-of-type {
    border-top: none;
}

.section-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.section-chevron {
    font-size: 14px;
    color: #9ca3af;
    transition: transform 0.2s;
    margin-left: 12px;
}

.section.is-open .section-chevron {
    transform: rotate(180deg);
}

.section-content {
    display: none;
}

.section.is-open .section-content {
    display: block;
}

/* Checklist - clean and simple */
.check-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.check-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    cursor: pointer;
}

.check-item input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #3B82F6;
    flex-shrink: 0;
}

.check-item span {
    font-size: 15px;
    line-height: 1.6;
    color: #374151;
}

.check-item:hover span {
    color: #111827;
}

/* Remove all info boxes - inline text only */
.info-inline {
    margin-top: 12px;
    padding-left: 28px;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* Service CTA - minimal, no border */
.service-cta {
    text-align: center;
    padding: 48px 0;
    margin: 48px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.service-cta h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 8px;
}

.service-cta p {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 24px;
}

.service-cta .btn {
    display: inline-block;
    padding: 12px 24px;
    margin: 0 6px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}

.service-cta .btn-primary {
    background: #3B82F6;
    color: white;
}

.service-cta .btn-primary:hover {
    background: #2563eb;
}

.service-cta .btn-secondary {
    background: white;
    color: #374151;
    border: 1px solid #e5e7eb;
}

.service-cta .btn-secondary:hover {
    background: #f9fafb;
}

/* Share section - minimal, no box */
.share-section {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #e5e7eb;
}

.share-section h3 {
    font-size: 16px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 16px;
}

.share-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.share-buttons button {
    padding: 8px 16px;
    background: white;
    color: #374151;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.share-buttons button:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

/* Email form - inline, minimal */
.email-signup {
    max-width: 400px;
    margin: 0 auto;
}

.email-signup p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
}

.email-form {
    display: flex;
    gap: 8px;
}

.email-form input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 14px;
}

.email-form button {
    padding: 10px 16px;
    background: #3B82F6;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
}

.email-form button:hover {
    background: #2563eb;
}

/* Footer - minimal */
.freeze-footer {
    text-align: center;
    padding-top: 32px;
    margin-top: 32px;
    border-top: 1px solid #e5e7eb;
    font-size: 13px;
    color: #9ca3af;
}

.freeze-footer a {
    color: #6b7280;
    text-decoration: none;
}

.freeze-footer a:hover {
    color: #111827;
}

/* Freeze checklists — sticky progress, cards, mobile tap targets */
.freeze-checklist-progress {
    position: sticky;
    top: max(4.5rem, calc(env(safe-area-inset-top, 0px) + 3.75rem));
    z-index: 90;
    margin: 0 0 24px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-light, #e5e7eb);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.freeze-checklist-progress__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary, #6b7280);
    margin-bottom: 8px;
}

.freeze-checklist-progress__count strong {
    color: var(--text-primary, #111827);
    font-weight: 600;
}

.freeze-checklist-progress__pct {
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    color: var(--text-primary, #111827);
}

.freeze-checklist-progress__bar {
    height: 8px;
    background: var(--bg-secondary, #f3f4f6);
    border-radius: 999px;
    overflow: hidden;
}

.freeze-checklist-progress__fill {
    height: 100%;
    width: 0%;
    min-width: 0;
    background: var(--primary, #3B82F6);
    border-radius: 999px;
    transition: width 0.2s ease;
}

.freeze-checklist-progress__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
    margin-top: 12px;
    justify-content: center;
    align-items: center;
}

.freeze-checklist-progress__btn {
    min-height: 44px;
    min-width: 44px;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    color: var(--primary, #3B82F6);
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.freeze-checklist-progress__btn:hover {
    color: #2563eb;
}

.freeze-container > .section {
    background: #ffffff;
    border: 1px solid var(--border-light, #e5e7eb);
    border-radius: 12px;
    padding: 20px 18px;
    margin: 0 0 12px;
}

/* Mobile */
@media (max-width: 768px) {
    .freeze-container {
        padding: 40px 20px;
    }

    .freeze-container > .section {
        padding: 16px 14px;
    }

    .section {
        padding: 24px 0;
    }

    .freeze-container .check-item {
        min-height: 44px;
        align-items: center;
        padding: 6px 0;
        box-sizing: border-box;
    }

    .freeze-container .check-item input[type="checkbox"] {
        width: 20px;
        height: 20px;
        min-width: 20px;
        margin-top: 0;
        align-self: center;
    }

    .freeze-container .section-header {
        min-height: 44px;
        padding: 8px 0;
        margin-bottom: 12px;
    }

    .email-form {
        flex-direction: column;
    }

    .email-form input,
    .email-form button {
        width: 100%;
    }
}

/* Print */
@media print {
    .freeze-checklist-progress {
        display: none !important;
    }

    .freeze-container .section-content {
        display: block !important;
    }

    .freeze-container .freeze-actions,
    .freeze-container .share-section,
    .freeze-container .section-chevron {
        display: none !important;
    }

    .freeze-container .section {
        padding: 16px 0;
        page-break-inside: avoid;
    }

    .freeze-container > .section {
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 12px 0;
        margin-bottom: 0;
    }

    .freeze-container .section-header {
        display: block !important;
        padding: 0 0 8px;
    }

    body:has(.freeze-container) .header,
    body:has(.freeze-container) .mobile-menu,
    body:has(.freeze-container) .footer {
        display: none !important;
    }

    .freeze-container .freeze-damage-hero__img {
        display: none !important;
    }

    .freeze-container .freeze-critical-alert {
        margin-top: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        break-inside: avoid;
    }

    .freeze-container .freeze-damage-cta-grid,
    .freeze-container .freeze-alerts-banner {
        display: none !important;
    }
}

/* ============================================
   ROTATING TESTIMONIALS - COMPLETE FIX
   DELETE the testimonial-rotator section at the bottom of your styles.css
   and REPLACE with this entire section
   ============================================ */

   .testimonial-rotator-wrapper {
    position: relative;
}

/* Force exact styling match */
.testimonial-rotator-wrapper .testimonial-bubble {
    background: white !important;
    padding: 32px !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid #E2E8F0 !important; /* var(--border-light) */
    position: relative !important;
    max-width: 400px !important;
}

/* Hide stars as requested */
.testimonial-rotator-wrapper .testimonial-stars {
    display: none !important;
}

/* CRITICAL: Match exact original bubble-quote styling */
.testimonial-rotator-wrapper .bubble-quote {
    font-size: 20px !important;
    color: #0F172A !important; /* var(--text-primary) */
    font-style: italic !important;
    line-height: 1.5 !important;
    margin-bottom: 16px !important;
    font-weight: 500 !important; /* This is the KEY - medium weight */
}

/* CRITICAL: Match exact original bubble-author styling */
.testimonial-rotator-wrapper .bubble-author {
    font-size: 14px !important;
    color: #475569 !important; /* var(--text-secondary) */
    font-weight: 500 !important; /* This is the KEY */
    line-height: 1.4 !important;
}

/* Rotation functionality */
.testimonial-card {
    display: none !important;
    animation: fadeIn 0.5s ease-in;
}

.testimonial-card.active {
    display: block !important;
}

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

/* Navigation dots */
.testimonial-dots {
    display: flex !important;
    gap: 8px !important;
    justify-content: center !important;
    margin-top: 20px !important;
}

.dot {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background: #d1d5db !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0 !important;
    transition: all 0.3s !important;
}

.dot.active {
    background: #3B82F6 !important;
    width: 24px !important;
    border-radius: 5px !important;
}

.dot:hover {
    background: #9ca3af !important;
}

/* Mobile */
@media (max-width: 768px) {
    .testimonial-rotator-wrapper .bubble-quote {
        font-size: 18px !important;
    }
}
/* ============================================
   GLOBAL FIXES
   Paste this at the END of styles.css
   Fixes section-header layout, broken checkmarks,
   and adds homepage testimonial carousel
   ============================================ */

/* FIX 1: Section headers - stack vertically, centered
   The freeze-prep CSS was overriding this to flex-row side-by-side */
.section-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
}

.section-header h2 {
    text-align: center !important;
    width: 100% !important;
}

.section-header p {
    text-align: center !important;
    max-width: 700px !important;
}

/* Preserve freeze-prep horizontal layout only inside .freeze-container */
.freeze-container .section-header {
    flex-direction: row !important;
    justify-content: space-between !important;
    text-align: left !important;
}

/* FIX 2: Broken checkmark characters
   Replace corrupted multibyte characters with proper unicode escape */
.work-list li::before,
.benefit-list li::before,
.pricing-features li::before,
.pricing-features-simple li::before,
.example-list li::before,
.services-items li::before,
.story-list li::before {
    content: "\2713" !important;
}

.service-card-str li::before {
    content: "\2022" !important;
}

/* ============================================
   HOMEPAGE TESTIMONIAL CAROUSEL
   ============================================ */
.home-testimonials {
    padding: 60px 0;
    background: var(--bg-secondary, #F8FAFC);
}

.home-testimonials .container {
    max-width: 800px;
}

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

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
    animation: homeFadeIn 0.5s ease;
}

@keyframes homeFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-quote {
    font-size: 22px;
    font-style: italic;
    color: var(--text-primary, #0F172A);
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 500;
}

.testimonial-carousel .testimonial-author {
    font-size: 15px;
    color: var(--text-secondary, #475569);
    font-weight: 600;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.t-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #CBD5E1;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}

.t-dot.active {
    background: var(--accent, #3B82F6);
    width: 24px;
    border-radius: 5px;
}

/* ============================================
   GLOBAL FIXES
   Paste this at the END of styles.css
   Fixes section-header layout, broken checkmarks,
   and adds homepage testimonial carousel
   ============================================ */

/* FIX 1: Section headers - stack vertically, centered
   The freeze-prep CSS was overriding this to flex-row side-by-side */
   .section-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
}

.section-header h2 {
    text-align: center !important;
    width: 100% !important;
}

.section-header p {
    text-align: center !important;
    max-width: 700px !important;
}

/* Preserve freeze-prep horizontal layout only inside .freeze-container */
.freeze-container .section-header {
    flex-direction: row !important;
    justify-content: space-between !important;
    text-align: left !important;
}

/* FIX 2: Broken checkmark characters
   Replace corrupted multibyte characters with proper unicode escape */
.work-list li::before,
.benefit-list li::before,
.pricing-features li::before,
.pricing-features-simple li::before,
.example-list li::before,
.services-items li::before,
.story-list li::before {
    content: "\2713" !important;
}

.service-card-str li::before {
    content: "\2022" !important;
}

/* ============================================
   HOMEPAGE TESTIMONIAL CAROUSEL
   ============================================ */
.home-testimonials {
    padding: 60px 0;
    background: var(--bg-secondary, #F8FAFC);
}

.home-testimonials .container {
    max-width: 800px;
}

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

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
    animation: homeFadeIn 0.5s ease;
}

@keyframes homeFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-quote {
    font-size: 22px;
    font-style: italic;
    color: var(--text-primary, #0F172A);
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 500;
}

.testimonial-carousel .testimonial-author {
    font-size: 15px;
    color: var(--text-secondary, #475569);
    font-weight: 600;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.t-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #CBD5E1;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}

.t-dot.active {
    background: var(--accent, #3B82F6);
    width: 24px;
    border-radius: 5px;
}
/* ============================================
   GLOBAL FIXES
   Paste this at the END of styles.css
   Fixes section-header layout, broken checkmarks,
   and adds homepage testimonial carousel
   ============================================ */

/* FIX 1: Section headers - stack vertically, centered
   The freeze-prep CSS was overriding this to flex-row side-by-side */
   .section-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
}

.section-header h2 {
    text-align: center !important;
    width: 100% !important;
}

.section-header p {
    text-align: center !important;
    max-width: 700px !important;
}

/* Preserve freeze-prep horizontal layout only inside .freeze-container */
.freeze-container .section-header {
    flex-direction: row !important;
    justify-content: space-between !important;
    text-align: left !important;
}

/* FIX 2: Broken checkmark characters
   Replace corrupted multibyte characters with proper unicode escape */
.work-list li::before,
.benefit-list li::before,
.pricing-features li::before,
.pricing-features-simple li::before,
.example-list li::before,
.services-items li::before,
.story-list li::before {
    content: "\2713" !important;
}

.service-card-str li::before {
    content: "\2022" !important;
}

/* ============================================
   HOMEPAGE TESTIMONIAL CAROUSEL
   ============================================ */
.home-testimonials {
    padding: 60px 0;
    background: var(--bg-secondary, #F8FAFC);
}

.home-testimonials .container {
    max-width: 800px;
}

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

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
    animation: homeFadeIn 0.5s ease;
}

@keyframes homeFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-quote {
    font-size: 22px;
    font-style: italic;
    color: var(--text-primary, #0F172A);
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 500;
}

.testimonial-carousel .testimonial-author {
    font-size: 15px;
    color: var(--text-secondary, #475569);
    font-weight: 600;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.t-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #CBD5E1;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}

.t-dot.active {
    background: var(--accent, #3B82F6);
    width: 24px;
    border-radius: 5px;
}

/* ============================================
   MYHUIS vs GIG MARKETPLACE - Card Comparison
   ============================================ */
.comparison-section {
    padding: 80px 0;
    background: var(--bg-secondary, #F8FAFC);
}

.comparison-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 16px;
}

.comp-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 10px 15px -3px rgba(0,0,0,0.08);
    background: var(--bg-primary, #FFFFFF);
}

.comp-card-gig {
    border: 1px solid var(--border-light, #E2E8F0);
}

.comp-card-myhuis {
    border: 2px solid var(--accent, #3B82F6);
}

.comp-card-header {
    padding: 24px 28px;
    border-bottom: 1px solid var(--border-light, #E2E8F0);
}

.comp-card-gig .comp-card-header {
    background: var(--bg-secondary, #F8FAFC);
}

.comp-card-myhuis .comp-card-header {
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
}

.comp-card-header h3 {
    font-size: 20px;
    font-weight: 700;
}

.comp-card-gig .comp-card-header h3 {
    color: var(--text-light, #94A3B8);
}

.comp-card-myhuis .comp-card-header h3 {
    color: var(--accent-dark, #2563EB);
}

.card-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.comp-card-gig .card-tag {
    background: #F1F5F9;
    color: var(--text-light, #94A3B8);
}

.comp-card-myhuis .card-tag {
    background: #DBEAFE;
    color: var(--accent-dark, #2563EB);
}

.comp-card-body {
    padding: 24px 28px;
}

.comp-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #F1F5F9;
}

.comp-row:last-child {
    border-bottom: none;
}

.comp-row-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.comp-row-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light, #94A3B8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.comp-row-value {
    font-size: 15px;
    color: var(--text-primary, #0F172A);
    line-height: 1.5;
}

.comp-card-gig .comp-row-value {
    color: var(--text-secondary, #475569);
}

.icon-x {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #FEE2E2;
    color: #EF4444;
    font-size: 14px;
    font-weight: 700;
}

.icon-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #D1FAE5;
    color: #10B981;
    font-size: 14px;
    font-weight: 700;
}

.comp-card-footer {
    padding: 20px 28px;
    text-align: center;
    border-top: 1px solid var(--border-light, #E2E8F0);
}

.comp-card-myhuis .comp-card-footer {
    background: rgba(59, 130, 246, 0.04);
}

.comp-btn-muted {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light, #94A3B8);
    border: 1px solid var(--border-light, #E2E8F0);
    background: transparent;
}

@media (max-width: 768px) {
    .comparison-cards {
        grid-template-columns: 1fr;
    }
    .comp-card-body {
        padding: 16px 20px;
    }
    .comp-card-header {
        padding: 20px;
    }
}
/* ============================================
   GLOBAL FIXES
   Paste this at the END of styles.css
   Fixes section-header layout, broken checkmarks,
   and adds homepage testimonial carousel
   ============================================ */

/* FIX 1: Section headers - stack vertically, centered
   The freeze-prep CSS was overriding this to flex-row side-by-side */
   .section-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
}

.section-header h2 {
    text-align: center !important;
    width: 100% !important;
}

.section-header p {
    text-align: center !important;
    max-width: 700px !important;
}

/* Preserve freeze-prep horizontal layout only inside .freeze-container */
.freeze-container .section-header {
    flex-direction: row !important;
    justify-content: space-between !important;
    text-align: left !important;
}

/* FIX 2: Broken checkmark characters
   Replace corrupted multibyte characters with proper unicode escape */
.work-list li::before,
.benefit-list li::before,
.pricing-features li::before,
.pricing-features-simple li::before,
.example-list li::before,
.services-items li::before,
.story-list li::before {
    content: "\2713" !important;
}

.service-card-str li::before {
    content: "\2022" !important;
}

/* ============================================
   HOMEPAGE TESTIMONIAL CAROUSEL
   ============================================ */
.home-testimonials {
    padding: 60px 0;
}

.home-testimonials .container {
    max-width: 800px;
}

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

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
    animation: homeFadeIn 0.5s ease;
}

@keyframes homeFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-quote {
    font-size: 22px;
    font-style: italic;
    color: var(--text-primary, #0F172A);
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 500;
}

.testimonial-carousel .testimonial-author {
    font-size: 15px;
    color: var(--text-secondary, #475569);
    font-weight: 600;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.t-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #CBD5E1;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}

.t-dot.active {
    background: var(--accent, #3B82F6);
    width: 24px;
    border-radius: 5px;
}

/* ============================================
   MYHUIS vs GIG MARKETPLACE - Card Comparison
   ============================================ */
.comparison-section {
    padding: 80px 0;
}

.comparison-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 16px;
}

.comp-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 10px 15px -3px rgba(0,0,0,0.08);
    background: var(--bg-primary, #FFFFFF);
}

.comp-card-gig {
    border: 1px solid var(--border-light, #E2E8F0);
}

.comp-card-myhuis {
    border: 2px solid var(--accent, #3B82F6);
}

.comp-card-header {
    padding: 24px 28px;
    border-bottom: 1px solid var(--border-light, #E2E8F0);
}

.comp-card-gig .comp-card-header {
    background: var(--bg-secondary, #F8FAFC);
}

.comp-card-myhuis .comp-card-header {
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
}

.comp-card-header h3 {
    font-size: 20px;
    font-weight: 700;
}

.comp-card-gig .comp-card-header h3 {
    color: var(--text-light, #94A3B8);
}

.comp-card-myhuis .comp-card-header h3 {
    color: var(--accent-dark, #2563EB);
}

.card-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.comp-card-gig .card-tag {
    background: #F1F5F9;
    color: var(--text-light, #94A3B8);
}

.comp-card-myhuis .card-tag {
    background: #DBEAFE;
    color: var(--accent-dark, #2563EB);
}

.comp-card-body {
    padding: 24px 28px;
}

.comp-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #F1F5F9;
}

.comp-row:last-child {
    border-bottom: none;
}

.comp-row-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.comp-row-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light, #94A3B8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.comp-row-value {
    font-size: 15px;
    color: var(--text-primary, #0F172A);
    line-height: 1.5;
}

.comp-card-gig .comp-row-value {
    color: var(--text-secondary, #475569);
}

.icon-x {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #FEE2E2;
    color: #EF4444;
    font-size: 14px;
    font-weight: 700;
}

.icon-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #D1FAE5;
    color: #10B981;
    font-size: 14px;
    font-weight: 700;
}

.comp-card-footer {
    padding: 20px 28px;
    text-align: center;
    border-top: 1px solid var(--border-light, #E2E8F0);
}

.comp-card-myhuis .comp-card-footer {
    background: rgba(59, 130, 246, 0.04);
}

.comp-btn-muted {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light, #94A3B8);
    border: 1px solid var(--border-light, #E2E8F0);
    background: transparent;
}

@media (max-width: 768px) {
    .comparison-cards {
        grid-template-columns: 1fr;
    }
    .comp-card-body {
        padding: 16px 20px;
    }
    .comp-card-header {
        padding: 20px;
    }
}

/* ============================================
   ALTERNATING SECTION BACKGROUNDS
   Auto-alternates regardless of section order.
   Skips header and footer.
   ============================================ */
body > section:nth-of-type(odd) {
    background: var(--bg-primary, #FFFFFF);
}

body > section:nth-of-type(even) {
    background: var(--bg-secondary, #F8FAFC);
}

/* CTA section always uses the branded dark background */
.cta-section {
    background: var(--gradient-primary, linear-gradient(135deg, #1E293B 0%, #334155 100%)) !important;
}