/**
 * SS Landing Pages - High Converting Template Styles
 * All classes prefixed with tvg- to avoid conflicts
 * Uses high specificity selectors to override page builders (Elementor, Divi, etc.)
 */

/* ============================================
   CSS ISOLATION / RESET
   High-specificity rules to override page builders
============================================= */

/* Reset common styles within landing page */
#tvg-landing-page.tvg-landing-page,
#tvg-landing-page.tvg-landing-page *,
#tvg-landing-page.tvg-landing-page *::before,
#tvg-landing-page.tvg-landing-page *::after {
    box-sizing: border-box !important;
}

#tvg-landing-page.tvg-landing-page h1,
#tvg-landing-page.tvg-landing-page h2,
#tvg-landing-page.tvg-landing-page h3,
#tvg-landing-page.tvg-landing-page h4,
#tvg-landing-page.tvg-landing-page h5,
#tvg-landing-page.tvg-landing-page h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif !important;
    line-height: 1.2 !important;
    margin-top: 0 !important;
    padding: 0 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
}

#tvg-landing-page.tvg-landing-page p,
#tvg-landing-page.tvg-landing-page span,
#tvg-landing-page.tvg-landing-page li,
#tvg-landing-page.tvg-landing-page label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif !important;
    letter-spacing: normal !important;
    text-transform: none !important;
}

#tvg-landing-page.tvg-landing-page a {
    text-decoration: none !important;
}

#tvg-landing-page.tvg-landing-page a:hover {
    text-decoration: none !important;
}

/* ============================================
   THEME COMPATIBILITY
   Minimal fixes to ensure landing page content
   doesn't conflict with theme headers/footers
============================================= */

/* Landing page content wrapper */
.tvg-landing-page {
    position: relative;
}

/* ============================================
   CSS CUSTOM PROPERTIES (THEMING)
============================================= */

:root {
    --tvg-primary: #1e3a5f;
    --tvg-primary-dark: #152c48;
    --tvg-primary-light: #2a4a73;
    --tvg-accent: #22c55e;
    --tvg-accent-light: #4ade80;
    --tvg-accent-bg: #dcfce7;
    --tvg-accent-text: #166534;
    --tvg-btn-primary: var(--tvg-primary);
    --tvg-btn-primary-hover: var(--tvg-primary-dark);
    --tvg-btn-secondary: var(--tvg-primary);
    --tvg-btn-secondary-hover: var(--tvg-primary);
    --tvg-text: #1a1a1a;
    --tvg-text-muted: #6b7280;
    --tvg-text-light: #4b5563;
    --tvg-bg: #ffffff;
    --tvg-bg-alt: #f9fafb;
    --tvg-bg-section: #f8fafc;
    --tvg-border: #e5e7eb;
    --tvg-stars: #fbbf24;
}

/* ============================================
   BASE STYLES
============================================= */

.tvg-landing-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--tvg-text);
    line-height: 1.6;
}

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

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

#tvg-landing-page .tvg-section-header h2,
.tvg-landing-page .tvg-section-header h2 {
    font-size: 2.25rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    color: #1a1a1a !important;
}

#tvg-landing-page .tvg-section-header p,
.tvg-landing-page .tvg-section-header p {
    font-size: 1.125rem !important;
    color: #6b7280 !important;
    max-width: 600px;
    margin: 0 auto !important;
}

/* ============================================
   BUTTONS
============================================= */

.tvg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.4;
}

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

.tvg-btn-primary {
    background: var(--tvg-btn-primary);
    color: white !important;
}

.tvg-btn-primary:hover {
    background: var(--tvg-btn-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
    color: white !important;
    text-decoration: none;
}

.tvg-btn-outline {
    background: transparent;
    border: 2px solid var(--tvg-btn-secondary);
    color: var(--tvg-btn-secondary) !important;
}

.tvg-btn-outline:hover {
    background: var(--tvg-btn-secondary-hover);
    color: white !important;
    text-decoration: none;
}

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

.tvg-btn-outline-light:hover {
    background: white;
    color: var(--tvg-primary) !important;
    text-decoration: none;
}

.tvg-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ============================================
   SECTION 1: HERO
============================================= */

.tvg-hero {
    padding: 4rem 0 5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.tvg-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tvg-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.tvg-stars {
    color: #fbbf24;
    letter-spacing: -2px;
}

#tvg-landing-page .tvg-hero h1,
.tvg-landing-page .tvg-hero h1 {
    font-size: 2.75rem !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    margin-bottom: 1.25rem !important;
    color: #1a1a1a !important;
}

.tvg-hero-subheadline {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.tvg-hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tvg-hero-social-proof {
    font-size: 0.95rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tvg-hero-avatars {
    display: flex;
    flex-shrink: 0;
}

.tvg-hero-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.tvg-hero-avatar + .tvg-hero-avatar {
    margin-left: -12px;
}

.tvg-hero-media {
    position: relative;
}

.tvg-hero-image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tvg-hero-placeholder,
.tvg-solution-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #d1d5db;
}

.tvg-placeholder-content {
    text-align: center;
    color: #9ca3af;
}

.tvg-placeholder-content svg {
    width: 48px;
    height: 48px;
    margin-bottom: 0.5rem;
}

.tvg-placeholder-content span {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.tvg-placeholder-content small {
    font-size: 0.8rem;
}

/* ============================================
   SECTION 2: OUTCOMES
============================================= */

.tvg-outcomes {
    padding: 2rem 0;
    background: var(--tvg-primary);
}

.tvg-outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tvg-outcome-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: white;
}

.tvg-outcome-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tvg-outcome-icon svg {
    width: 18px;
    height: 18px;
    color: var(--tvg-accent);
}

.tvg-outcome-text strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.tvg-outcome-text span {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* ============================================
   SECTION 3: PAIN POINT
============================================= */

.tvg-pain {
    padding: 5rem 0;
    background: #f8fafc;
}

.tvg-pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tvg-pain-full {
    grid-column: 1 / -1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.tvg-pain-image {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#tvg-landing-page .tvg-pain h2,
.tvg-landing-page .tvg-pain h2 {
    font-size: 2rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    color: #1a1a1a !important;
}

#tvg-landing-page .tvg-pain p,
.tvg-landing-page .tvg-pain p {
    font-size: 1.125rem !important;
    color: #4b5563 !important;
    line-height: 1.7 !important;
}

/* ============================================
   SECTION 4: SOLUTION
============================================= */

.tvg-solution {
    padding: 5rem 0;
    background: white;
}

.tvg-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

#tvg-landing-page .tvg-solution h2,
.tvg-landing-page .tvg-solution h2 {
    font-size: 2rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    color: #1a1a1a !important;
}

#tvg-landing-page .tvg-solution p,
.tvg-landing-page .tvg-solution p {
    font-size: 1.05rem !important;
    color: #4b5563 !important;
    margin-bottom: 1rem !important;
    line-height: 1.7 !important;
}

.tvg-credentials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 2rem;
}

.tvg-credential {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--tvg-primary);
    font-weight: 500;
}

.tvg-credential svg {
    width: 20px;
    height: 20px;
    color: var(--tvg-accent);
    flex-shrink: 0;
}

.tvg-solution-image {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tvg-solution-video {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: 1rem;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tvg-solution-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ============================================
   LOCAL EXPERTISE SECTION
============================================= */

.tvg-local-expertise {
    padding: 5rem 0;
    background: var(--tvg-bg);
    border-top: 1px solid var(--tvg-border);
    border-bottom: 1px solid var(--tvg-border);
}

.tvg-local-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

#tvg-landing-page .tvg-local-content h2,
.tvg-landing-page .tvg-local-content h2 {
    font-size: 2rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    color: var(--tvg-text) !important;
}

.tvg-local-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--tvg-text-light);
    margin-bottom: 1.5rem;
}

.tvg-local-tip {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: #f0fdf4;
    border-radius: 0.75rem;
    border-left: 4px solid var(--tvg-accent);
}

.tvg-local-tip svg {
    width: 24px;
    height: 24px;
    color: var(--tvg-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.tvg-local-tip strong {
    display: block;
    color: var(--tvg-accent-text);
    margin-bottom: 0.25rem;
}

.tvg-local-tip span {
    color: var(--tvg-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.tvg-local-details {
    background: var(--tvg-bg-section);
    padding: 2rem;
    border-radius: 1rem;
}

.tvg-neighborhoods h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--tvg-text);
}

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

.tvg-neighborhood-tag {
    background: var(--tvg-bg);
    padding: 0.4rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    color: var(--tvg-text-light);
    border: 1px solid var(--tvg-border);
}

.tvg-location-about {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--tvg-text-muted);
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid var(--tvg-border);
}

@media (max-width: 1024px) {
    .tvg-local-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

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

    .tvg-local-content h2 {
        font-size: 1.5rem;
    }

    .tvg-local-intro {
        font-size: 1rem;
    }
}

/* ============================================
   SECTION 5: BENEFITS
============================================= */

.tvg-benefits {
    padding: 5rem 0;
    background: #f9fafb;
}

.tvg-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tvg-benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.tvg-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.tvg-benefit-icon {
    width: 56px;
    height: 56px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.tvg-benefit-icon svg {
    width: 28px;
    height: 28px;
    color: var(--tvg-accent);
}

#tvg-landing-page .tvg-benefit-card h3,
.tvg-landing-page .tvg-benefit-card h3 {
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem !important;
    color: #1a1a1a !important;
}

#tvg-landing-page .tvg-benefit-card p,
.tvg-landing-page .tvg-benefit-card p {
    font-size: 0.95rem !important;
    color: #6b7280 !important;
    margin: 0 !important;
}

/* ============================================
   SECTION 6: PROCESS
============================================= */

.tvg-process {
    padding: 5rem 0;
    background: white;
}

.tvg-process-steps {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tvg-process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 320px;
}

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

#tvg-landing-page .tvg-step-content h3,
.tvg-landing-page .tvg-step-content h3 {
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem !important;
    color: #1a1a1a !important;
}

#tvg-landing-page .tvg-step-content p,
.tvg-landing-page .tvg-step-content p {
    font-size: 0.95rem !important;
    color: #6b7280 !important;
    margin: 0 !important;
}

.tvg-step-arrow {
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.tvg-step-arrow svg {
    width: 24px;
    height: 24px;
    color: #d1d5db;
}

/* ============================================
   SECTION 7: TESTIMONIALS
============================================= */

.tvg-testimonials {
    padding: 5rem 0;
    background: #f9fafb;
}

.tvg-testimonial-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

.tvg-testimonial-video {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #000;
}

.tvg-testimonial-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tvg-testimonial-media img {
    width: 100%;
    border-radius: 0.75rem;
}

.tvg-testimonial-content {
    padding: 1rem 0;
}

.tvg-testimonial-summary {
    display: inline-block;
    background: var(--tvg-accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tvg-testimonial-featured blockquote {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #374151;
    margin: 0 0 1.5rem;
    font-style: italic;
}

.tvg-testimonial-author {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.tvg-testimonial-author strong {
    color: #1a1a1a;
}

.tvg-testimonial-author span {
    color: #6b7280;
}

.tvg-testimonial-project {
    background: #f3f4f6;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.8rem;
}

.tvg-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.tvg-testimonial-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tvg-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
}

.tvg-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tvg-avatar-placeholder {
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tvg-avatar-placeholder span {
    font-size: 1.25rem;
    font-weight: 600;
    color: #6b7280;
}

.tvg-testimonial-card .tvg-testimonial-summary {
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
}

.tvg-testimonial-card blockquote {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
    margin: 0 0 1rem;
    font-style: italic;
}

.tvg-testimonial-card .tvg-testimonial-author {
    font-size: 0.875rem;
}

/* ============================================
   SECTION 8: FEATURES
============================================= */

#tvg-landing-page .tvg-features,
.tvg-landing-page .tvg-features {
    padding: 5rem 0 !important;
    background: var(--tvg-primary) !important;
    color: white !important;
}

#tvg-landing-page .tvg-features-content,
.tvg-landing-page .tvg-features-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

#tvg-landing-page .tvg-features-text h2,
.tvg-landing-page .tvg-features-text h2 {
    font-size: 2rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    color: white !important;
}

#tvg-landing-page .tvg-features-text p,
.tvg-landing-page .tvg-features-text p {
    font-size: 1.125rem !important;
    opacity: 0.9 !important;
    color: white !important;
}

.tvg-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.tvg-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.tvg-feature-item svg {
    width: 20px;
    height: 20px;
    color: var(--tvg-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.tvg-feature-item span {
    font-size: 0.95rem;
}

/* ============================================
   SECTION 9: FAQ
============================================= */

.tvg-faq {
    padding: 5rem 0;
    background: white;
}

.tvg-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.tvg-faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.tvg-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.tvg-faq-question svg {
    width: 20px;
    height: 20px;
    color: #6b7280;
    transition: transform 0.2s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.tvg-faq-item.tvg-active .tvg-faq-question svg {
    transform: rotate(180deg);
}

.tvg-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.tvg-faq-item.tvg-active .tvg-faq-answer {
    max-height: 500px;
}

.tvg-faq-answer p {
    padding: 0 0 1.25rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   QUOTE FORM SECTION
============================================= */

.tvg-quote-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.tvg-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

#tvg-landing-page .tvg-quote-content h2,
.tvg-landing-page .tvg-quote-content h2 {
    font-size: 2rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    color: #1a1a1a !important;
}

#tvg-landing-page .tvg-quote-content > p,
.tvg-landing-page .tvg-quote-content > p {
    font-size: 1.125rem !important;
    color: #6b7280 !important;
    margin-bottom: 2rem !important;
}

.tvg-quote-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tvg-quote-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tvg-quote-benefit svg {
    width: 20px;
    height: 20px;
    color: var(--tvg-accent);
    flex-shrink: 0;
}

.tvg-quote-benefit span {
    color: #4b5563;
}

.tvg-quote-form-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    overflow: hidden;
}

.tvg-form {
    width: 100%;
}

.tvg-form *,
.tvg-form *::before,
.tvg-form *::after {
    box-sizing: border-box;
}

/* ============================================
   FORM STYLES
============================================= */

.tvg-form .tvg-form-row {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
    width: 100%;
}

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

.tvg-form .tvg-form-group {
    min-width: 0;
}

.tvg-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #374151;
}

.tvg-form input[type="text"],
.tvg-form input[type="email"],
.tvg-form input[type="tel"],
.tvg-form select,
.tvg-form textarea {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0.875rem 1rem !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 0.5rem !important;
    font-size: 1rem !important;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: white !important;
    color: #1a1a1a !important;
    box-sizing: border-box !important;
    height: auto !important;
    line-height: 1.4 !important;
    margin: 0 !important;
}

.tvg-form input:focus,
.tvg-form select:focus,
.tvg-form textarea:focus {
    outline: none;
    border-color: var(--tvg-primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.tvg-form input::placeholder,
.tvg-form textarea::placeholder {
    color: #9ca3af;
}

.tvg-btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.tvg-form-message {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    display: none;
}

.tvg-form-message.tvg-success {
    display: block;
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

.tvg-form-message.tvg-error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
}

/* ============================================
   SECTION 10: FINAL CTA
============================================= */

#tvg-landing-page .tvg-final-cta,
.tvg-landing-page .tvg-final-cta {
    padding: 5rem 0 !important;
    background: linear-gradient(135deg, var(--tvg-primary) 0%, var(--tvg-primary-dark) 100%) !important;
    text-align: center !important;
    color: white !important;
}

#tvg-landing-page .tvg-final-cta h2,
.tvg-landing-page .tvg-final-cta h2 {
    font-size: 2.25rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    color: white !important;
}

#tvg-landing-page .tvg-final-cta p,
.tvg-landing-page .tvg-final-cta p {
    font-size: 1.25rem !important;
    opacity: 0.9 !important;
    margin-bottom: 2rem !important;
    max-width: 600px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    color: white !important;
}

.tvg-final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   AREAS SECTION
============================================= */

.tvg-areas {
    padding: 3rem 0;
    background: #f3f4f6;
    text-align: center;
}

.tvg-areas h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #374151;
}

.tvg-areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.tvg-area-link {
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 0.375rem;
    color: #4b5563 !important;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
    border: 1px solid #e5e7eb;
}

.tvg-area-link:hover {
    background: var(--tvg-primary);
    color: white !important;
    border-color: var(--tvg-primary);
    text-decoration: none;
}

/* ============================================
   OTHER SERVICES CAROUSEL
============================================= */

.tvg-other-services {
    padding: 5rem 0;
    background: var(--tvg-bg);
}

.tvg-services-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tvg-carousel-btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--tvg-bg);
    border: 2px solid var(--tvg-border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 2;
}

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

.tvg-carousel-btn:hover svg {
    stroke: white;
}

.tvg-carousel-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--tvg-text-muted);
    transition: stroke 0.2s;
}

.tvg-carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.tvg-carousel-btn:disabled:hover {
    background: var(--tvg-bg);
    border-color: var(--tvg-border);
}

.tvg-carousel-btn:disabled:hover svg {
    stroke: var(--tvg-text-muted);
}

.tvg-services-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
    flex: 1;
}

.tvg-services-carousel::-webkit-scrollbar {
    display: none;
}

.tvg-service-card {
    flex: 0 0 calc((100% - 6rem) / 5);
    min-width: 220px;
    max-width: 280px;
    background: var(--tvg-bg);
    border: 1px solid var(--tvg-border);
    border-radius: 1rem;
    padding: 1.5rem;
    text-decoration: none;
    color: var(--tvg-text);
    transition: all 0.3s ease;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
}

.tvg-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--tvg-primary);
    text-decoration: none;
    color: var(--tvg-text);
}

.tvg-service-card-icon {
    width: 56px;
    height: 56px;
    background: var(--tvg-bg-section);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s;
}

.tvg-service-card:hover .tvg-service-card-icon {
    background: var(--tvg-primary);
}

.tvg-service-card-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--tvg-primary);
    transition: stroke 0.3s;
}

.tvg-service-card:hover .tvg-service-card-icon svg {
    stroke: white;
}

#tvg-landing-page .tvg-service-card h3,
.tvg-landing-page .tvg-service-card h3 {
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.75rem !important;
    color: var(--tvg-text) !important;
}

.tvg-service-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    flex: 1;
}

.tvg-service-card-list li {
    font-size: 0.875rem;
    color: var(--tvg-text-muted);
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.25rem;
}

.tvg-service-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 6px;
    height: 6px;
    background: var(--tvg-accent);
    border-radius: 50%;
}

.tvg-service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--tvg-primary);
    margin-top: auto;
}

.tvg-service-card-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s;
}

.tvg-service-card:hover .tvg-service-card-link svg {
    transform: translateX(4px);
}

/* ============================================
   RESPONSIVE STYLES
============================================= */

@media (max-width: 1024px) {
    .tvg-hero-grid,
    .tvg-solution-grid,
    .tvg-features-content,
    .tvg-quote-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .tvg-hero-media {
        order: 1;
    }

    .tvg-testimonial-featured {
        grid-template-columns: 1fr;
    }

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

    .tvg-process-steps {
        flex-direction: column;
        align-items: center;
    }

    .tvg-step-arrow {
        transform: rotate(90deg);
        padding: 0.5rem 0;
    }

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

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

    .tvg-hero h1 {
        font-size: 2rem;
    }

    .tvg-hero-subheadline {
        font-size: 1.1rem;
    }

    .tvg-hero-cta {
        flex-direction: column;
    }

    .tvg-hero-cta .tvg-btn {
        width: 100%;
    }

    .tvg-outcomes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tvg-pain-grid {
        grid-template-columns: 1fr;
    }

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

    .tvg-credentials {
        grid-template-columns: 1fr;
    }

    .tvg-section-header h2 {
        font-size: 1.75rem;
    }

    .tvg-pain h2,
    .tvg-solution h2,
    .tvg-quote-content h2 {
        font-size: 1.5rem;
    }

    .tvg-final-cta h2 {
        font-size: 1.75rem;
    }

    .tvg-final-cta p {
        font-size: 1.1rem;
    }

    .tvg-final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .tvg-final-cta-buttons .tvg-btn {
        width: 100%;
        max-width: 300px;
    }

    /* Carousel responsive */
    .tvg-carousel-btn {
        display: none;
    }

    .tvg-services-carousel {
        padding: 1rem 0.5rem;
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .tvg-service-card {
        flex: 0 0 280px;
        min-width: 260px;
    }
}

@media (max-width: 600px) {
    .tvg-form .tvg-form-row-2 {
        grid-template-columns: 1fr;
    }

    .tvg-pain,
    .tvg-solution,
    .tvg-benefits,
    .tvg-process,
    .tvg-testimonials,
    .tvg-features,
    .tvg-faq,
    .tvg-quote-section,
    .tvg-final-cta {
        padding: 3rem 0;
    }

    .tvg-testimonial-featured {
        padding: 1.5rem;
    }

    .tvg-testimonial-featured blockquote {
        font-size: 1.1rem;
    }

    .tvg-faq-question {
        font-size: 1rem;
        padding: 1rem 0;
    }
}

/* ============================================
   PRINT STYLES
============================================= */

@media print {
    .tvg-hero-cta,
    .tvg-quote-section,
    .tvg-final-cta,
    .tvg-areas {
        display: none;
    }
}
