/**
 * Vanterra Landing Pages CSS
 * Scoped styles for landing pages with mobile-first responsive design
 */

/* CSS Custom Properties for Brand Colors */
.vt-lp-container {
    --vt-lp-primary: #0d9488;
    --vt-lp-primary-dark: #0f766e;
    --vt-lp-secondary: #f59e0b;
    --vt-lp-secondary-dark: #d97706;
    --vt-lp-danger: #dc2626;
    --vt-lp-success: #16a34a;
    --vt-lp-text: #1f2937;
    --vt-lp-text-light: #6b7280;
    --vt-lp-border: #e5e7eb;
    --vt-lp-bg-light: #f9fafb;
    --vt-lp-bg-white: #ffffff;
    --vt-lp-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --vt-lp-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --vt-lp-border-radius: 8px;
    --vt-lp-border-radius-lg: 12px;
}

/* Reset and Base Styles - Scoped to Landing Pages */
.vt-lp-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--vt-lp-text);
}

.vt-lp-container *,
.vt-lp-container *::before,
.vt-lp-container *::after {
    box-sizing: border-box;
}

.vt-lp-container img {
    max-width: 100%;
    height: auto;
}

/* Typography */
.vt-lp-container h1,
.vt-lp-container h2,
.vt-lp-container h3,
.vt-lp-container h4 {
    margin: 0 0 1rem 0;
    font-weight: 700;
    line-height: 1.2;
    color: var(--vt-lp-text);
}

.vt-lp-container h1 { font-size: 2.5rem; }
.vt-lp-container h2 { font-size: 2rem; }
.vt-lp-container h3 { font-size: 1.5rem; }
.vt-lp-container h4 { font-size: 1.25rem; }

.vt-lp-container p {
    margin: 0 0 1rem 0;
    color: var(--vt-lp-text-light);
}

/* Section Titles */
.vt-lp-section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--vt-lp-text);
}

.vt-lp-section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--vt-lp-text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Layout */
.vt-lp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.vt-lp-container section {
    margin-bottom: 4rem;
    padding: 2rem 0;
}

/* Buttons */
.vt-lp-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: var(--vt-lp-border-radius);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 44px;
}

.vt-lp-btn-primary {
    background-color: var(--vt-lp-primary);
    color: white;
    box-shadow: var(--vt-lp-shadow);
}

.vt-lp-btn-primary:hover {
    background-color: var(--vt-lp-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--vt-lp-shadow-lg);
    color: white;
    text-decoration: none;
}

.vt-lp-btn-secondary {
    background-color: var(--vt-lp-secondary);
    color: white;
    box-shadow: var(--vt-lp-shadow);
}

.vt-lp-btn-secondary:hover {
    background-color: var(--vt-lp-secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--vt-lp-shadow-lg);
    color: white;
    text-decoration: none;
}

.vt-lp-btn-outline {
    background-color: transparent;
    color: var(--vt-lp-primary);
    border: 2px solid var(--vt-lp-primary);
}

.vt-lp-btn-outline:hover {
    background-color: var(--vt-lp-primary);
    color: white;
    text-decoration: none;
}

.vt-lp-btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
    min-height: 56px;
}

/* Hero Section */
.vt-lp-hero {
    background: linear-gradient(135deg, var(--vt-lp-bg-light) 0%, var(--vt-lp-bg-white) 100%);
    border-radius: var(--vt-lp-border-radius-lg);
    padding: 3rem 2rem;
    margin-bottom: 2rem;
}

.vt-lp-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.vt-lp-hero-headline {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--vt-lp-text);
}

.vt-lp-hero-subheadline {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--vt-lp-text-light);
}

.vt-lp-hero-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.vt-lp-hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--vt-lp-text);
}

.vt-lp-feature-icon {
    color: var(--vt-lp-primary);
    flex-shrink: 0;
}

.vt-lp-hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.vt-lp-hero-phone {
    text-align: center;
    padding: 1rem;
    background-color: var(--vt-lp-bg-light);
    border-radius: var(--vt-lp-border-radius);
}

.vt-lp-phone-label {
    display: block;
    font-size: 0.875rem;
    color: var(--vt-lp-text-light);
    margin-bottom: 0.25rem;
}

.vt-lp-phone-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vt-lp-primary);
    text-decoration: none;
}

.vt-lp-phone-number:hover {
    color: var(--vt-lp-primary-dark);
    text-decoration: underline;
}

.vt-lp-hero-image {
    text-align: center;
}

.vt-lp-hero-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--vt-lp-border-radius);
    box-shadow: var(--vt-lp-shadow-lg);
}

.vt-lp-hero-placeholder {
    background-color: var(--vt-lp-bg-light);
    border-radius: var(--vt-lp-border-radius);
    padding: 2rem;
}

.vt-lp-hero-svg {
    max-width: 100%;
    height: auto;
    max-height: 300px;
}

/* Trust Signals */
.vt-lp-trust-container {
    background-color: var(--vt-lp-bg-white);
    border: 1px solid var(--vt-lp-border);
    border-radius: var(--vt-lp-border-radius-lg);
    padding: 2rem;
    margin: 2rem 0;
}

.vt-lp-trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.vt-lp-stat-item {
    padding: 1rem;
}

.vt-lp-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--vt-lp-primary);
    margin-bottom: 0.25rem;
}

.vt-lp-stat-label {
    font-size: 0.875rem;
    color: var(--vt-lp-text-light);
    font-weight: 500;
}

.vt-lp-trust-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.vt-lp-trust-group h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--vt-lp-text);
}

.vt-lp-trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vt-lp-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--vt-lp-border);
}

.vt-lp-trust-item:last-child {
    border-bottom: none;
}

.vt-lp-trust-icon {
    color: var(--vt-lp-primary);
    flex-shrink: 0;
}

.vt-lp-company-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--vt-lp-border);
}

.vt-lp-company-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--vt-lp-text);
}

.vt-lp-company-tagline {
    font-size: 0.875rem;
    color: var(--vt-lp-text-light);
    margin: 0;
}

.vt-lp-trust-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--vt-lp-primary);
    text-decoration: none;
}

.vt-lp-trust-phone:hover {
    color: var(--vt-lp-primary-dark);
    text-decoration: underline;
}

.vt-lp-phone-icon {
    flex-shrink: 0;
}

/* Grid Layouts */
.vt-lp-problems-grid,
.vt-lp-solutions-grid,
.vt-lp-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.vt-lp-problem-item,
.vt-lp-solution-item,
.vt-lp-benefit-item {
    background-color: var(--vt-lp-bg-white);
    border: 1px solid var(--vt-lp-border);
    border-radius: var(--vt-lp-border-radius);
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vt-lp-problem-item:hover,
.vt-lp-solution-item:hover,
.vt-lp-benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--vt-lp-shadow-lg);
}

.vt-lp-problem-icon,
.vt-lp-solution-icon,
.vt-lp-benefit-icon {
    margin-bottom: 1rem;
    color: var(--vt-lp-primary);
}

.vt-lp-problem-title,
.vt-lp-solution-title,
.vt-lp-benefit-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--vt-lp-text);
}

.vt-lp-problem-description,
.vt-lp-solution-description,
.vt-lp-benefit-description {
    color: var(--vt-lp-text-light);
    margin: 0;
}

/* CTA Sections */
.vt-lp-problems-cta,
.vt-lp-benefits-cta {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background-color: var(--vt-lp-bg-light);
    border-radius: var(--vt-lp-border-radius);
}

.vt-lp-problems-cta-text {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--vt-lp-text);
}

.vt-lp-problems-cta .vt-lp-cta-btn,
.vt-lp-benefits-cta .vt-lp-cta-btn {
    margin: 0.5rem;
}

/* Warning Signs Section (Component) */
.vt-lp-warning-signs-container {
    padding: 3rem 0;
}
.vt-lp-warning-signs-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.vt-lp-section-tag {
    display: inline-block;
    background: rgba(230, 126, 34, 0.12);
    color: var(--vt-lp-accent, #e67e22);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 1rem;
}
.vt-lp-warning-signs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}
.vt-lp-warning-sign-card {
    background: var(--vt-lp-text, #1a1a2e);
    border-radius: var(--vt-lp-border-radius, 8px);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.vt-lp-warning-sign-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.vt-lp-warning-sign-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.vt-lp-warning-sign-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.vt-lp-warning-sign-card:hover .vt-lp-warning-sign-image img {
    transform: scale(1.05);
}
.vt-lp-warning-sign-content {
    padding: 1rem;
}
.vt-lp-warning-sign-content h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}
.vt-lp-warning-sign-content p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    margin: 0;
}
.vt-lp-warning-signs-cta {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background-color: var(--vt-lp-bg-light, #f8f9fa);
    border-radius: var(--vt-lp-border-radius, 8px);
}
.vt-lp-warning-signs-cta-text {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--vt-lp-text, #333);
}
.vt-lp-warning-signs {
    background: var(--vt-lp-text, #1a1a2e);
    padding: 3rem 1.5rem;
}
.vt-lp-warning-signs .vt-lp-section-title {
    color: #fff;
}
.vt-lp-warning-signs .vt-lp-section-subtitle {
    color: rgba(255,255,255,0.7);
}
.vt-lp-warning-signs .vt-lp-warning-signs-cta {
    background: rgba(255,255,255,0.1);
}
.vt-lp-warning-signs .vt-lp-warning-signs-cta-text {
    color: #fff;
}

/* Contact Form */
.vt-lp-contact-wrapper {
    background-color: var(--vt-lp-bg-white);
    border: 1px solid var(--vt-lp-border);
    border-radius: var(--vt-lp-border-radius-lg);
    padding: 2rem;
    margin: 2rem 0;
}

.vt-lp-contact-header {
    text-align: center;
    margin-bottom: 2rem;
}

.vt-lp-contact-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.vt-lp-phone-cta {
    font-size: 1.125rem;
}

.vt-lp-phone-link {
    color: var(--vt-lp-primary);
    font-weight: 600;
    text-decoration: none;
}

.vt-lp-phone-link:hover {
    color: var(--vt-lp-primary-dark);
    text-decoration: underline;
}

.vt-lp-form-divider {
    position: relative;
    padding: 0 2rem;
    color: var(--vt-lp-text-light);
    font-weight: 500;
}

.vt-lp-form-divider::before,
.vt-lp-form-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background-color: var(--vt-lp-border);
}

.vt-lp-form-divider::before {
    left: -60px;
}

.vt-lp-form-divider::after {
    right: -60px;
}

.vt-lp-contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.vt-lp-contact-info {
    background-color: var(--vt-lp-bg-light);
    border-radius: var(--vt-lp-border-radius);
    padding: 1.5rem;
}

.vt-lp-contact-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--vt-lp-text);
}

.vt-lp-contact-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vt-lp-contact-benefits li {
    margin-bottom: 0.5rem;
    color: var(--vt-lp-text-light);
}

.vt-lp-service-area {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--vt-lp-border);
}

.vt-lp-service-area h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--vt-lp-text);
}

.vt-lp-service-area p {
    font-size: 0.875rem;
    color: var(--vt-lp-text-light);
    margin: 0;
}

.vt-lp-contact-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--vt-lp-border);
}

.vt-lp-privacy-notice {
    font-size: 0.875rem;
    color: var(--vt-lp-text-light);
    margin-bottom: 1rem;
}

.vt-lp-emergency-cta {
    padding: 1rem;
    background-color: var(--vt-lp-bg-light);
    border-radius: var(--vt-lp-border-radius);
}

.vt-lp-emergency-text {
    margin: 0;
    font-size: 0.875rem;
    color: var(--vt-lp-text);
}

.vt-lp-emergency-phone {
    color: var(--vt-lp-danger);
    font-weight: 600;
    text-decoration: none;
}

.vt-lp-emergency-phone:hover {
    text-decoration: underline;
}

/* Breadcrumbs */
.vt-lp-breadcrumbs {
    margin-bottom: 1rem;
}

.vt-lp-breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
    color: var(--vt-lp-text-light);
}

.vt-lp-breadcrumb-item {
    display: flex;
    align-items: center;
}

.vt-lp-breadcrumb-item:not(:last-child)::after {
    content: '>';
    margin-left: 0.5rem;
    color: var(--vt-lp-border);
}

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

.vt-lp-breadcrumb-item a:hover {
    text-decoration: underline;
}

/* Form Integration */
.vt-lp-form-wrapper {
    background-color: var(--vt-lp-bg-white);
}

.vt-lp-form-wrapper .gform_wrapper {
    margin: 0;
}

/* Ensure Gravity Forms inherit our styles within landing pages */
.vt-lp-contact-form .gform_wrapper input[type="text"],
.vt-lp-contact-form .gform_wrapper input[type="email"],
.vt-lp-contact-form .gform_wrapper input[type="tel"],
.vt-lp-contact-form .gform_wrapper textarea,
.vt-lp-contact-form .gform_wrapper select {
    border: 1px solid var(--vt-lp-border) !important;
    border-radius: var(--vt-lp-border-radius) !important;
    padding: 12px !important;
    font-size: 1rem !important;
    transition: border-color 0.2s ease !important;
}

.vt-lp-contact-form .gform_wrapper input:focus,
.vt-lp-contact-form .gform_wrapper textarea:focus,
.vt-lp-contact-form .gform_wrapper select:focus {
    border-color: var(--vt-lp-primary) !important;
    box-shadow: 0 0 0 2px rgba(13, 148, 136, 0.1) !important;
    outline: none !important;
}

.vt-lp-contact-form .gform_wrapper .gform_button[type="submit"] {
    background-color: var(--vt-lp-primary) !important;
    color: white !important;
    border: none !important;
    border-radius: var(--vt-lp-border-radius) !important;
    padding: 16px 32px !important;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    width: 100% !important;
}

.vt-lp-contact-form .gform_wrapper .gform_button[type="submit"]:hover {
    background-color: var(--vt-lp-primary-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: var(--vt-lp-shadow-lg) !important;
}

/* Responsive Design */
@media (min-width: 640px) {
    .vt-lp-hero-cta {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    
    .vt-lp-contact-options {
        flex-direction: row;
        align-items: center;
    }
    
    .vt-lp-form-divider::before,
    .vt-lp-form-divider::after {
        width: 80px;
    }
    
    .vt-lp-form-divider::before {
        left: -80px;
    }
    
    .vt-lp-form-divider::after {
        right: -80px;
    }
    
    .vt-lp-problems-grid,
    .vt-lp-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vt-lp-trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vt-lp-contact-content {
        grid-template-columns: 2fr 1fr;
    }
}

@media (min-width: 768px) {
    .vt-lp-hero-wrapper {
        grid-template-columns: 2fr 1fr;
    }
    
    .vt-lp-hero-headline {
        font-size: 3rem;
    }
    
    .vt-lp-hero-cta .vt-lp-cta-btn {
        min-width: 180px;
    }
    
    .vt-lp-company-info {
        flex-direction: row;
    }
    
    .vt-lp-problems-cta .vt-lp-cta-btn,
    .vt-lp-benefits-cta .vt-lp-cta-btn {
        margin: 0 0.5rem;
    }
}

@media (min-width: 1024px) {
    .vt-lp-problems-grid,
    .vt-lp-solutions-grid,
    .vt-lp-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .vt-lp-section-title {
        font-size: 2.5rem;
    }
    
    .vt-lp-trust-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .vt-lp-container * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus styles for keyboard navigation */
.vt-lp-container a:focus,
.vt-lp-container button:focus {
    outline: 2px solid var(--vt-lp-primary);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .vt-lp-container {
        --vt-lp-border: #000000;
        --vt-lp-text: #000000;
        --vt-lp-bg-white: #ffffff;
    }
}

/* Solutions Section */
.vt-lp-solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.vt-lp-solution-item {
    background-color: var(--vt-lp-bg-white);
    border: 1px solid var(--vt-lp-border);
    border-radius: var(--vt-lp-border-radius);
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vt-lp-solution-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--vt-lp-shadow-lg);
}

.vt-lp-solution-benefits {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.vt-lp-solution-benefits li {
    padding: 0.25rem 0;
    color: var(--vt-lp-text-light);
    font-size: 0.875rem;
}

.vt-lp-solution-benefits li::before {
    content: '✓';
    color: var(--vt-lp-primary);
    font-weight: bold;
    margin-right: 0.5rem;
}

.vt-lp-solutions-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Process Section */
.vt-lp-process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.vt-lp-process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background-color: var(--vt-lp-bg-white);
    border: 1px solid var(--vt-lp-border);
    border-radius: var(--vt-lp-border-radius);
    padding: 1.5rem;
}

.vt-lp-step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--vt-lp-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.vt-lp-step-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--vt-lp-text);
}

.vt-lp-step-description {
    color: var(--vt-lp-text-light);
    margin: 0;
}

/* Testimonials Section */
.vt-lp-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.vt-lp-testimonial-item {
    background-color: var(--vt-lp-bg-white);
    border: 1px solid var(--vt-lp-border);
    border-radius: var(--vt-lp-border-radius);
    padding: 1.5rem;
    position: relative;
}

.vt-lp-testimonial-rating {
    margin-bottom: 1rem;
}

.vt-lp-star {
    color: #d1d5db;
    font-size: 1.25rem;
    margin-right: 0.25rem;
}

.vt-lp-star.filled {
    color: #f59e0b;
}

.vt-lp-testimonial-text {
    font-style: italic;
    color: var(--vt-lp-text);
    margin: 0 0 1rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.vt-lp-testimonial-author {
    border-top: 1px solid var(--vt-lp-border);
    padding-top: 1rem;
}

.vt-lp-author-name {
    font-weight: 600;
    color: var(--vt-lp-text);
    font-style: normal;
}

.vt-lp-author-location {
    color: var(--vt-lp-text-light);
    font-size: 0.875rem;
    margin-left: 0.5rem;
}

/* FAQ Section */
.vt-lp-faq-items {
    max-width: 800px;
    margin: 0 auto;
}

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

.vt-lp-faq-question {
    width: 100%;
    padding: 1.25rem;
    text-align: left;
    background-color: var(--vt-lp-bg-white);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--vt-lp-text);
    transition: background-color 0.2s ease;
}

.vt-lp-faq-question:hover {
    background-color: var(--vt-lp-bg-light);
}

.vt-lp-faq-question[aria-expanded="true"] {
    background-color: var(--vt-lp-bg-light);
}

.vt-lp-faq-question[aria-expanded="true"] .vt-lp-faq-toggle {
    transform: rotate(45deg);
}

.vt-lp-faq-toggle {
    color: var(--vt-lp-primary);
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.vt-lp-faq-answer {
    padding: 0 1.25rem 1.25rem 1.25rem;
    background-color: var(--vt-lp-bg-light);
    border-top: 1px solid var(--vt-lp-border);
}

.vt-lp-faq-answer p {
    color: var(--vt-lp-text-light);
    margin: 0;
    line-height: 1.6;
}

/* Final CTA Section */
.vt-lp-final-cta-container {
    background: linear-gradient(135deg, var(--vt-lp-primary) 0%, var(--vt-lp-primary-dark) 100%);
    border-radius: var(--vt-lp-border-radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    color: white;
}

.vt-lp-final-cta-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.vt-lp-final-cta-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.vt-lp-final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;
}

.vt-lp-final-cta-buttons .vt-lp-btn-primary {
    background-color: white;
    color: var(--vt-lp-primary);
}

.vt-lp-final-cta-buttons .vt-lp-btn-primary:hover {
    background-color: var(--vt-lp-bg-light);
    color: var(--vt-lp-primary-dark);
}

.vt-lp-final-cta-buttons .vt-lp-btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.vt-lp-final-cta-buttons .vt-lp-btn-secondary:hover {
    background-color: white;
    color: var(--vt-lp-primary);
}

.vt-lp-final-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    max-width: 400px;
    margin: 0 auto 1.5rem auto;
}

.vt-lp-final-benefits-list li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.vt-lp-service-area-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Responsive Updates */
@media (min-width: 640px) {
    .vt-lp-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vt-lp-final-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .vt-lp-final-benefits-list {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
}

@media (min-width: 768px) {
    .vt-lp-process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .vt-lp-warning-signs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .vt-lp-solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vt-lp-testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .vt-lp-process-steps {
        grid-template-columns: repeat(4, 1fr);
    }

    .vt-lp-process-step {
        flex-direction: column;
        text-align: center;
    }

    .vt-lp-final-benefits-list {
        grid-template-columns: repeat(4, 1fr);
    }

    .vt-lp-warning-signs-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Print styles */
@media print {
    .vt-lp-hero-cta,
    .vt-lp-problems-cta,
    .vt-lp-benefits-cta,
    .vt-lp-contact-wrapper,
    .vt-lp-final-cta-container {
        display: none !important;
    }
}

/* ============================================
   PPC Landing Page Template Styles
   ============================================ */

.ppc-lp {
    font-family: 'DM Sans', system-ui, sans-serif;
    color: #1a1a2e;
    background: #fafafa;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}
.ppc-lp * { box-sizing: border-box; }

/* Hero Section */
.ppc-hero {
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    background-color: var(--lp-primary);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.ppc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--lp-primary, #1a1a2e);
    opacity: 0.7;
    pointer-events: none;
}
.ppc-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}
.ppc-hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
}
.ppc-hero-content {
    animation: fadeInUp 0.6s ease;
}
.ppc-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}
.ppc-trust-badge .stars {
    color: #ffd700;
    font-size: 16px;
}
.ppc-trust-badge .text {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 500;
}
.ppc-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin: 0 0 16px 0;
}
.ppc-hero h1 .highlight {
    color: var(--lp-accent);
}
.ppc-hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 500px;
}
.ppc-hero-subtitle strong {
    color: white;
}
.ppc-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 30px;
}
.ppc-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 500;
}
.ppc-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.ppc-btn {
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}
.ppc-btn:hover {
    transform: translateY(-2px);
}
.ppc-btn-primary {
    background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-dark));
    color: white;
    box-shadow: 0 4px 20px rgba(230, 126, 34, 0.4);
}
.ppc-btn-primary:hover {
    color: white;
    box-shadow: 0 6px 25px rgba(230, 126, 34, 0.5);
}
.ppc-btn-phone {
    background: linear-gradient(135deg, var(--lp-cta), var(--lp-cta-dark));
    color: white;
    box-shadow: 0 4px 20px rgba(39, 174, 96, 0.4);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.ppc-btn-phone:hover {
    color: white;
    box-shadow: 0 6px 25px rgba(39, 174, 96, 0.55);
}
.ppc-btn-phone svg {
    animation: phoneRing 2s ease-in-out infinite;
}
@keyframes phoneRing {
    0%, 80%, 100% { transform: rotate(0deg); }
    5% { transform: rotate(15deg); }
    10% { transform: rotate(-10deg); }
    15% { transform: rotate(10deg); }
    20% { transform: rotate(-5deg); }
    25% { transform: rotate(0deg); }
}
.ppc-btn-phone.ppc-btn-lg {
    font-size: 20px;
    padding: 18px 36px;
}
.ppc-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}
.ppc-btn-outline:hover {
    border-color: rgba(255,255,255,0.6);
    color: white;
}
.ppc-form-cta,
.ppc-phone-cta {
    text-align: center;
}
.ppc-form-label {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-top: 6px;
    font-weight: 500;
}
.ppc-phone-label {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-top: 6px;
    font-weight: 500;
}

/* Lead Form */
.ppc-form-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    animation: fadeInUp 0.6s ease 0.2s both;
}
.ppc-form-card h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #1a1a2e;
    text-align: center;
}
.ppc-form-card .form-subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
    text-align: center;
}
.ppc-form-card input,
.ppc-form-card select,
.ppc-form-card textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
    outline: none;
    margin-bottom: 16px;
    background: white;
}
.ppc-form-card input:focus,
.ppc-form-card select:focus,
.ppc-form-card textarea:focus {
    border-color: var(--lp-accent);
}
.ppc-form-card select {
    cursor: pointer;
    color: #1a1a2e;
}
.ppc-form-card button[type="submit"] {
    width: 100%;
    background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-dark));
    color: white;
    padding: 16px;
    border-radius: 8px;
    border: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(230, 126, 34, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}
.ppc-form-card button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(230, 126, 34, 0.5);
}
.ppc-form-security {
    font-size: 12px;
    color: #999;
    text-align: center;
    margin-top: 16px;
}

/* Quote + CTA Combined Section */
.ppc-quote-cta {
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-primary-dark) 50%, var(--lp-primary) 100%);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}
.ppc-quote-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}
.ppc-quote-cta-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
}

/* Quote Card (frosted glass) */
.ppc-quote-cta-quote {
    position: relative;
}
.ppc-quote-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 36px 32px;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.ppc-quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    line-height: 1;
    color: var(--lp-accent, #e67e22);
    opacity: 0.3;
    position: absolute;
    top: 12px;
    left: 24px;
    pointer-events: none;
}
.ppc-quote-stars {
    font-size: 20px;
    color: var(--lp-accent, #e67e22);
    margin-bottom: 12px;
    letter-spacing: 4px;
}
.ppc-quote-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px 0;
    line-height: 1.3;
}
.ppc-quote-card blockquote {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    font-style: italic;
    margin: 0 0 16px 0;
    padding: 0;
    border: none;
}
.ppc-quote-card cite {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    color: var(--lp-accent, #e67e22);
}

/* CTA Side */
.ppc-quote-cta-action {
    position: relative;
}
.ppc-section-tag-light {
    background: rgba(255,255,255,0.1);
    color: var(--lp-accent, #e67e22);
}
.ppc-quote-cta-action h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    color: white;
    margin: 0 0 12px 0;
    line-height: 1.2;
}
.ppc-quote-cta-action h2 .highlight {
    color: var(--lp-accent);
}
.ppc-quote-cta-action > p {
    color: rgba(255,255,255,0.8);
    font-size: 17px;
    line-height: 1.6;
    margin: 0 0 24px 0;
}
.ppc-quote-cta-action .ppc-trust-row {
    margin-bottom: 28px;
}

/* Value Propositions */
.ppc-value-props {
    padding: 50px 20px;
    background: #fff;
}
.ppc-value-props-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ppc-value-prop-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: box-shadow 0.3s, transform 0.3s;
}
.ppc-value-prop-card:hover {
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}
.ppc-value-prop-icon {
    flex-shrink: 0;
    color: var(--lp-accent, #e67e22);
}
.ppc-value-prop-icon svg {
    display: block;
}
.ppc-value-prop-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #1a1a2e;
}
.ppc-value-prop-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Trust Logos Bar */
.ppc-trust-logos {
    padding: 30px 20px;
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.ppc-trust-logos-row {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.ppc-trust-logos-row img {
    max-height: 60px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s, opacity 0.3s;
}
.ppc-trust-logos-row img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Financing Section */
.ppc-financing {
    padding: 60px 20px;
    background: #f8f9fa;
}
.ppc-financing-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: center;
}
.ppc-financing-image img {
    max-width: 280px;
    border-radius: 12px;
    display: block;
}
.ppc-financing-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    margin: 8px 0 16px 0;
    color: #1a1a2e;
}
.ppc-financing-content > p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0 0 20px 0;
}
.ppc-financing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.ppc-financing-features li {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    padding-left: 24px;
    position: relative;
}
.ppc-financing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--lp-cta, #27ae60);
    font-weight: 700;
}

/* Guaranteed Solutions Section */
.ppc-guarantee-section {
    background: white;
    padding: 50px 20px;
    border-bottom: 1px solid #eee;
}
.ppc-guarantee-header {
    text-align: center;
    margin-bottom: 32px;
}
.ppc-guarantee-pretitle {
    font-size: 22px;
    font-weight: 700;
    color: var(--lp-accent, #e67e22);
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ppc-guarantee-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px 0;
}
.ppc-guarantee-header p {
    color: #666;
    font-size: 16px;
    margin: 0;
}
.ppc-guarantee-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}
.ppc-guarantee-badge {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    border: 1px solid #eee;
    transition: transform 0.2s, box-shadow 0.2s;
}
.ppc-guarantee-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.ppc-guarantee-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
}
.ppc-guarantee-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.ppc-guarantee-badge h3 {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ppc-guarantee-badge p {
    font-size: 15px;
    font-weight: 600;
    color: var(--lp-primary);
    margin: 0;
}

/* Social Proof Bar */
.ppc-social-proof {
    background: #f8f9fa;
    padding: 24px 20px;
    border-bottom: 1px solid #eee;
}
.ppc-stats-row {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.ppc-stat {
    text-align: center;
}
.ppc-stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
}
.ppc-stat-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

/* Warning Signs Section */
.ppc-warning-signs {
    padding: 60px 20px;
    background: #fafafa;
}
.ppc-section-header {
    text-align: center;
    margin-bottom: 40px;
}
.ppc-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #1a1a2e;
}
.ppc-section-header p {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}
.ppc-signs-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.ppc-sign-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #eee;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: box-shadow 0.3s, transform 0.3s;
}
.ppc-sign-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.ppc-sign-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}
.ppc-sign-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #1a1a2e;
}
.ppc-sign-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}
/* Image-based Warning Signs Grid */
.ppc-section-tag {
    display: inline-block;
    background: rgba(230, 126, 34, 0.12);
    color: var(--lp-accent, #e67e22);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.ppc-signs-image-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.ppc-sign-image-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: var(--lp-primary, #1a1a2e);
    transition: transform 0.3s, box-shadow 0.3s;
}
.ppc-sign-image-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.ppc-sign-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.ppc-sign-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.ppc-sign-image-card:hover .ppc-sign-image img {
    transform: scale(1.05);
}
.ppc-sign-image-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    padding: 14px 16px 4px;
    color: #fff;
    line-height: 1.3;
}
.ppc-sign-image-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    margin: 0;
    padding: 0 16px 16px;
}
/* Light background for warning signs section with images (cards stay dark for contrast) */
.ppc-warning-signs:has(.ppc-signs-image-grid) {
    background: #fff;
    padding: 60px 20px;
    border-bottom: 1px solid #eee;
}
.ppc-warning-signs:has(.ppc-signs-image-grid) .ppc-section-header h2 {
    color: #1a1a2e;
}
.ppc-warning-signs:has(.ppc-signs-image-grid) .ppc-section-header p {
    color: #666;
}
.ppc-warning-signs:has(.ppc-signs-image-grid) .ppc-section-tag {
    background: rgba(230, 126, 34, 0.1);
}

.ppc-btn-dark {
    background: var(--lp-primary);
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, background 0.2s;
}
.ppc-btn-dark:hover {
    background: var(--lp-primary-dark);
    color: white;
    transform: translateY(-2px);
}

/* Process Section */
.ppc-process {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-primary-dark) 100%);
    color: white;
}
.ppc-process .ppc-section-header h2 {
    color: white;
}
.ppc-process .ppc-section-header p {
    color: rgba(255,255,255,0.7);
}
.ppc-process-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.ppc-process-step {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
}
.ppc-step-number {
    position: absolute;
    top: -15px;
    left: 24px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: white;
}
.ppc-process-step h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 8px 0 12px 0;
    color: white;
}
.ppc-process-step p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin: 0;
}

/* Reviews Placeholder */
.ppc-reviews {
    padding: 60px 20px;
    background: white;
}
.ppc-reviews-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.ppc-reviews-widget {
    margin-top: 24px;
    min-height: 200px;
    overflow: hidden;
}
.ppc-reviews-placeholder {
    color: #999;
    font-size: 14px;
}

/* Final CTA (Hero-Style) */
.ppc-final-cta-hero {
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-primary-dark) 50%, var(--lp-primary) 100%);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.ppc-final-cta-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}
.ppc-final-cta-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.ppc-final-cta-hero .ppc-trust-badge {
    margin-bottom: 24px;
}
.ppc-final-cta-hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin: 0 0 16px 0;
}
.ppc-final-cta-hero h2 .highlight {
    color: var(--lp-accent);
}
.ppc-final-cta-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 24px 0;
    max-width: 600px;
    display: inline-block;
}
.ppc-final-cta-subtitle strong {
    color: white;
}
.ppc-final-cta-hero .ppc-trust-row {
    justify-content: center;
    margin-bottom: 30px;
}
.ppc-cta-row-center {
    justify-content: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Intent-specific sections */
.ppc-emergency-section,
.ppc-cost-section,
.ppc-local-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.ppc-emergency-features,
.ppc-pricing-features,
.ppc-local-features {
    max-width: 1200px;
    margin: 32px auto 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.ppc-emergency-item,
.ppc-pricing-item,
.ppc-local-item {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #eee;
    text-align: center;
}

.ppc-emergency-item h4,
.ppc-pricing-item h4,
.ppc-local-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: var(--lp-primary);
}

.ppc-emergency-item p,
.ppc-pricing-item p,
.ppc-local-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* PPC Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .ppc-signs-image-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
    .ppc-hero-grid {
        grid-template-columns: 1fr 1fr;
    }
    .ppc-quote-cta-grid {
        grid-template-columns: 5fr 6fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .ppc-hero { padding: 40px 16px; }
    .ppc-hero h1 { font-size: 28px; }
    .ppc-trust-row { flex-direction: column; gap: 8px; }
    .ppc-form-card { padding: 24px 20px; }
    .ppc-quote-card h3 { font-size: 22px; }
    .ppc-quote-card blockquote { font-size: 14px; }
    .ppc-quote-card { padding: 28px 24px; }
    .ppc-quote-mark { font-size: 60px; }
    .ppc-quote-cta-action h2 { font-size: 24px; }
    .ppc-quote-cta-action .ppc-trust-row { flex-direction: column; gap: 8px; }
    .ppc-value-props-grid { grid-template-columns: 1fr; gap: 16px; }
    .ppc-value-prop-card { padding: 24px 20px; }
    .ppc-trust-logos-row { gap: 20px; }
    .ppc-trust-logos-row img { max-height: 44px; }
    .ppc-financing-inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
    .ppc-financing-image img { max-width: 200px; margin: 0 auto; }
    .ppc-financing-content h2 { font-size: 26px; }
    .ppc-financing-features { grid-template-columns: 1fr; text-align: left; }
    .ppc-guarantee-badges { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .ppc-guarantee-badge { padding: 20px 16px; }
    .ppc-guarantee-icon { width: 52px; height: 52px; }
    .ppc-stats-row { gap: 24px; }
    .ppc-stat-number { font-size: 24px; }
    .ppc-section-header h2 { font-size: 26px; }
    .ppc-signs-grid { grid-template-columns: 1fr; }
    .ppc-signs-image-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .ppc-sign-image-card h3 { font-size: 14px; padding: 10px 12px 2px; }
    .ppc-sign-image-card p { font-size: 12px; padding: 0 12px 12px; }
    .ppc-process-grid { grid-template-columns: 1fr; }
    .ppc-final-cta-hero h2 { font-size: 26px; }
    .ppc-final-cta-subtitle { font-size: 15px; }
    .ppc-quote-cta { padding: 40px 16px; }
    .ppc-btn-phone.ppc-btn-lg { font-size: 18px; padding: 16px 28px; }
}