/*
 * ========================================
 * SUCCESSIONI TREVISO .IT - Modern Design
 * ========================================
 * Design moderno, pulito e professionale
 * Mobile-first responsive
 * Version: 2.0
 * ========================================
 */

/* ==========================================
   CSS VARIABLES - Design Tokens
   ========================================== */
:root {
    /* Primary Colors - Modern Blue */
    --stv-primary: #0066FF;
    --stv-primary-dark: #0052CC;
    --stv-primary-light: #E6F0FF;
    --stv-primary-gradient: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);

    /* Secondary Colors - Warm Accent */
    --stv-accent: #FF6B35;
    --stv-accent-dark: #E55A2B;
    --stv-accent-light: #FFF0EB;
    --stv-accent-gradient: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);

    /* Neutral Colors */
    --stv-dark: #1A1A2E;
    --stv-gray-900: #16213E;
    --stv-gray-800: #2D3748;
    --stv-gray-700: #4A5568;
    --stv-gray-600: #718096;
    --stv-gray-500: #A0AEC0;
    --stv-gray-400: #CBD5E0;
    --stv-gray-300: #E2E8F0;
    --stv-gray-200: #EDF2F7;
    --stv-gray-100: #F7FAFC;
    --stv-white: #FFFFFF;

    /* Semantic Colors */
    --stv-success: #10B981;
    --stv-success-light: #D1FAE5;
    --stv-warning: #F59E0B;
    --stv-warning-light: #FEF3C7;
    --stv-error: #EF4444;
    --stv-error-light: #FEE2E2;

    /* Spacing */
    --stv-space-xs: 0.25rem;
    --stv-space-sm: 0.5rem;
    --stv-space-md: 1rem;
    --stv-space-lg: 1.5rem;
    --stv-space-xl: 2rem;
    --stv-space-2xl: 3rem;
    --stv-space-3xl: 4rem;
    --stv-space-4xl: 6rem;

    /* Typography */
    --stv-font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --stv-font-size-xs: 0.75rem;
    --stv-font-size-sm: 0.875rem;
    --stv-font-size-base: 1rem;
    --stv-font-size-lg: 1.125rem;
    --stv-font-size-xl: 1.25rem;
    --stv-font-size-2xl: 1.5rem;
    --stv-font-size-3xl: 1.875rem;
    --stv-font-size-4xl: 2.25rem;
    --stv-font-size-5xl: 3rem;

    /* Shadows */
    --stv-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --stv-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --stv-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --stv-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --stv-shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Border Radius */
    --stv-radius-sm: 0.375rem;
    --stv-radius: 0.5rem;
    --stv-radius-md: 0.75rem;
    --stv-radius-lg: 1rem;
    --stv-radius-xl: 1.5rem;
    --stv-radius-full: 9999px;

    /* Transitions */
    --stv-transition-fast: 150ms ease;
    --stv-transition: 300ms ease;
}

/* ==========================================
   BASE STYLES
   ========================================== */
.stv-it-header,
.stv-it-footer,
.stv-it-page {
    font-family: var(--stv-font-family);
    -webkit-font-smoothing: antialiased;
}

/* ==========================================
   HEADER
   ========================================== */
.stv-it-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--stv-gray-200);
    transition: var(--stv-transition);
}

.stv-it-header .navbar {
    padding: var(--stv-space-md) 0;
}

.stv-it-header .stv-it-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: var(--stv-space-xs);
}

.stv-it-header .stv-it-logo-text {
    font-size: var(--stv-font-size-xl);
    font-weight: 700;
    color: var(--stv-dark);
}

.stv-it-header .stv-it-logo-text strong {
    color: var(--stv-primary);
}

.stv-it-header .stv-it-logo-badge {
    background: var(--stv-accent-gradient);
    color: white;
    font-size: var(--stv-font-size-xs);
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: var(--stv-radius-full);
}

.stv-it-header .nav-link {
    color: var(--stv-gray-700);
    font-weight: 500;
    font-size: var(--stv-font-size-sm);
    padding: var(--stv-space-sm) var(--stv-space-md) !important;
    border-radius: var(--stv-radius);
    transition: var(--stv-transition-fast);
}

.stv-it-header .nav-link:hover {
    color: var(--stv-primary);
    background: var(--stv-primary-light);
}

.stv-it-header .stv-it-btn-nav {
    background: var(--stv-primary-gradient);
    color: white !important;
    font-weight: 600;
    font-size: var(--stv-font-size-sm);
    padding: var(--stv-space-sm) var(--stv-space-lg) !important;
    border-radius: var(--stv-radius-full);
    border: none;
    box-shadow: var(--stv-shadow);
    transition: var(--stv-transition);
}

.stv-it-header .stv-it-btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--stv-shadow-md);
}

.stv-it-header .navbar-toggler {
    border: none;
    padding: var(--stv-space-sm);
}

.stv-it-header .navbar-toggler:focus {
    box-shadow: none;
}

/* ==========================================
   FOOTER
   ========================================== */
.stv-it-footer {
    background: var(--stv-dark);
    color: var(--stv-gray-400);
    padding: var(--stv-space-4xl) 0 var(--stv-space-xl);
}

.stv-it-footer h5 {
    color: var(--stv-white);
    font-size: var(--stv-font-size-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--stv-space-lg);
}

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

.stv-it-footer ul li {
    margin-bottom: var(--stv-space-sm);
}

.stv-it-footer ul a {
    color: var(--stv-gray-400);
    text-decoration: none;
    font-size: var(--stv-font-size-sm);
    transition: var(--stv-transition-fast);
}

.stv-it-footer ul a:hover {
    color: var(--stv-white);
}

.stv-it-footer .stv-it-logo-text {
    font-size: var(--stv-font-size-2xl);
    color: var(--stv-white);
    margin-bottom: var(--stv-space-md);
    display: block;
}

.stv-it-footer .stv-it-logo-text strong {
    color: var(--stv-primary);
}

.stv-it-footer .stv-it-footer-brand p {
    font-size: var(--stv-font-size-sm);
    line-height: 1.7;
}

.stv-it-footer .stv-it-btn-footer {
    background: var(--stv-accent-gradient);
    color: white;
    font-weight: 600;
    font-size: var(--stv-font-size-sm);
    padding: var(--stv-space-sm) var(--stv-space-xl);
    border-radius: var(--stv-radius-full);
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: var(--stv-transition);
}

.stv-it-footer .stv-it-btn-footer:hover {
    transform: translateY(-2px);
    box-shadow: var(--stv-shadow-md);
    color: white;
}

.stv-it-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--stv-space-3xl);
    padding-top: var(--stv-space-xl);
}

.stv-it-footer-bottom p {
    margin: 0;
    font-size: var(--stv-font-size-sm);
}

.stv-it-footer-bottom a {
    color: var(--stv-gray-400);
    text-decoration: none;
}

.stv-it-footer-bottom a:hover {
    color: var(--stv-white);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.stv-it-hero {
    padding: calc(80px + var(--stv-space-4xl)) 0 var(--stv-space-4xl);
    background: linear-gradient(135deg, var(--stv-gray-900) 0%, var(--stv-dark) 100%);
    position: relative;
    overflow: hidden;
}

.stv-it-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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.02'%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");
}

.stv-it-hero .container {
    position: relative;
    z-index: 1;
}

.stv-it-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--stv-space-sm);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--stv-white);
    font-size: var(--stv-font-size-sm);
    font-weight: 500;
    padding: var(--stv-space-sm) var(--stv-space-md);
    border-radius: var(--stv-radius-full);
    margin-bottom: var(--stv-space-lg);
}

.stv-it-hero-badge i {
    color: var(--stv-accent);
}

.stv-it-hero h1 {
    color: var(--stv-white);
    font-size: var(--stv-font-size-5xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--stv-space-lg);
}

.stv-it-hero h1 span {
    background: var(--stv-accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stv-it-hero .lead {
    color: var(--stv-gray-400);
    font-size: var(--stv-font-size-xl);
    line-height: 1.7;
    margin-bottom: var(--stv-space-2xl);
    max-width: 540px;
}

.stv-it-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--stv-space-md);
    margin-bottom: var(--stv-space-3xl);
}

.stv-it-btn-primary {
    background: var(--stv-accent-gradient);
    color: white !important;
    font-weight: 600;
    font-size: var(--stv-font-size-base);
    padding: var(--stv-space-md) var(--stv-space-2xl);
    border-radius: var(--stv-radius-full);
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--stv-space-sm);
    box-shadow: var(--stv-shadow-md);
    transition: var(--stv-transition);
}

.stv-it-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--stv-shadow-lg);
    color: white;
}

.stv-it-btn-secondary {
    background: transparent;
    color: var(--stv-white) !important;
    font-weight: 600;
    font-size: var(--stv-font-size-base);
    padding: var(--stv-space-md) var(--stv-space-2xl);
    border-radius: var(--stv-radius-full);
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--stv-space-sm);
    transition: var(--stv-transition);
}

.stv-it-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--stv-white);
}

.stv-it-hero-stats {
    display: flex;
    gap: var(--stv-space-3xl);
}

.stv-it-hero-stat-number {
    font-size: var(--stv-font-size-4xl);
    font-weight: 800;
    color: var(--stv-white);
    line-height: 1;
    margin-bottom: var(--stv-space-xs);
}

.stv-it-hero-stat-label {
    font-size: var(--stv-font-size-sm);
    color: var(--stv-gray-500);
}

.stv-it-hero-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--stv-radius-xl);
    padding: var(--stv-space-2xl);
    box-shadow: var(--stv-shadow-xl);
}

.stv-it-hero-card-header {
    display: flex;
    align-items: center;
    gap: var(--stv-space-md);
    margin-bottom: var(--stv-space-xl);
    padding-bottom: var(--stv-space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stv-it-hero-card-icon {
    width: 48px;
    height: 48px;
    background: var(--stv-primary-gradient);
    border-radius: var(--stv-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--stv-font-size-xl);
    color: white;
}

.stv-it-hero-card-title {
    color: var(--stv-white);
    font-size: var(--stv-font-size-lg);
    font-weight: 600;
    margin: 0;
}

.stv-it-hero-card-subtitle {
    color: var(--stv-gray-500);
    font-size: var(--stv-font-size-sm);
    margin: 0;
}

.stv-it-hero-features {
    display: flex;
    flex-direction: column;
    gap: var(--stv-space-md);
}

.stv-it-hero-feature {
    display: flex;
    align-items: center;
    gap: var(--stv-space-md);
    color: var(--stv-gray-300);
    font-size: var(--stv-font-size-sm);
}

.stv-it-hero-feature i {
    color: var(--stv-success);
}

/* ==========================================
   SECTIONS
   ========================================== */
.stv-it-section {
    padding: var(--stv-space-4xl) 0;
}

.stv-it-section-light {
    background: var(--stv-gray-100);
}

.stv-it-section-white {
    background: var(--stv-white);
}

.stv-it-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--stv-space-3xl);
}

.stv-it-section-label {
    display: inline-block;
    background: var(--stv-primary-light);
    color: var(--stv-primary);
    font-size: var(--stv-font-size-sm);
    font-weight: 600;
    padding: var(--stv-space-xs) var(--stv-space-md);
    border-radius: var(--stv-radius-full);
    margin-bottom: var(--stv-space-md);
}

.stv-it-section-title {
    font-size: var(--stv-font-size-4xl);
    font-weight: 800;
    color: var(--stv-dark);
    margin-bottom: var(--stv-space-md);
}

.stv-it-section-subtitle {
    font-size: var(--stv-font-size-lg);
    color: var(--stv-gray-600);
    line-height: 1.7;
}

/* ==========================================
   CARDS
   ========================================== */
.stv-it-card {
    background: var(--stv-white);
    border-radius: var(--stv-radius-lg);
    padding: var(--stv-space-2xl);
    box-shadow: var(--stv-shadow);
    border: 1px solid var(--stv-gray-200);
    transition: var(--stv-transition);
    height: 100%;
}

.stv-it-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--stv-shadow-lg);
}

.stv-it-card-icon {
    width: 64px;
    height: 64px;
    background: var(--stv-primary-light);
    border-radius: var(--stv-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--stv-font-size-2xl);
    color: var(--stv-primary);
    margin-bottom: var(--stv-space-lg);
}

.stv-it-card-title {
    font-size: var(--stv-font-size-xl);
    font-weight: 700;
    color: var(--stv-dark);
    margin-bottom: var(--stv-space-sm);
}

.stv-it-card-text {
    font-size: var(--stv-font-size-base);
    color: var(--stv-gray-600);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Step Cards */
.stv-it-step-card {
    text-align: center;
}

.stv-it-step-number {
    width: 48px;
    height: 48px;
    background: var(--stv-primary-gradient);
    color: white;
    font-size: var(--stv-font-size-xl);
    font-weight: 700;
    border-radius: var(--stv-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--stv-space-lg);
    box-shadow: var(--stv-shadow-md);
}

/* Service Cards */
.stv-it-service-card {
    position: relative;
    overflow: hidden;
}

.stv-it-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--stv-primary-gradient);
    transform: scaleY(0);
    transition: var(--stv-transition);
}

.stv-it-service-card:hover::before {
    transform: scaleY(1);
}

.stv-it-service-list {
    list-style: none;
    padding: 0;
    margin: var(--stv-space-lg) 0 0;
}

.stv-it-service-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--stv-space-sm);
    margin-bottom: var(--stv-space-sm);
    font-size: var(--stv-font-size-sm);
    color: var(--stv-gray-600);
}

.stv-it-service-list li i {
    color: var(--stv-success);
    margin-top: 0.2em;
}

/* ==========================================
   BENEFITS
   ========================================== */
.stv-it-benefit {
    display: flex;
    gap: var(--stv-space-lg);
    margin-bottom: var(--stv-space-2xl);
}

.stv-it-benefit-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--stv-primary-light);
    border-radius: var(--stv-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--stv-font-size-xl);
    color: var(--stv-primary);
}

.stv-it-benefit h4 {
    font-size: var(--stv-font-size-lg);
    font-weight: 700;
    color: var(--stv-dark);
    margin-bottom: var(--stv-space-xs);
}

.stv-it-benefit p {
    font-size: var(--stv-font-size-base);
    color: var(--stv-gray-600);
    margin: 0;
    line-height: 1.6;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.stv-it-cta {
    background: var(--stv-primary-gradient);
    padding: var(--stv-space-4xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stv-it-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.stv-it-cta .container {
    position: relative;
    z-index: 1;
}

.stv-it-cta h2 {
    color: var(--stv-white);
    font-size: var(--stv-font-size-4xl);
    font-weight: 800;
    margin-bottom: var(--stv-space-md);
}

.stv-it-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--stv-font-size-lg);
    margin-bottom: var(--stv-space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ==========================================
   FORMS
   ========================================== */
.stv-it-form-section {
    padding: calc(80px + var(--stv-space-3xl)) 0 var(--stv-space-3xl);
    background: var(--stv-gray-100);
    min-height: 100vh;
}

.stv-it-form-card {
    background: var(--stv-white);
    border-radius: var(--stv-radius-xl);
    padding: var(--stv-space-2xl);
    box-shadow: var(--stv-shadow-lg);
    margin-bottom: var(--stv-space-xl);
}

.stv-it-form-card-header {
    display: flex;
    align-items: center;
    gap: var(--stv-space-md);
    margin-bottom: var(--stv-space-xl);
    padding-bottom: var(--stv-space-lg);
    border-bottom: 1px solid var(--stv-gray-200);
}

.stv-it-form-card-icon {
    width: 48px;
    height: 48px;
    background: var(--stv-primary-light);
    border-radius: var(--stv-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--stv-font-size-xl);
    color: var(--stv-primary);
}

.stv-it-form-card-title {
    font-size: var(--stv-font-size-xl);
    font-weight: 700;
    color: var(--stv-dark);
    margin: 0;
}

.stv-it-form-card-subtitle {
    font-size: var(--stv-font-size-sm);
    color: var(--stv-gray-600);
    margin: 0;
}

.stv-it-form-group {
    margin-bottom: var(--stv-space-lg);
}

.stv-it-form-label {
    display: block;
    font-size: var(--stv-font-size-sm);
    font-weight: 600;
    color: var(--stv-dark);
    margin-bottom: var(--stv-space-sm);
}

.stv-it-form-control,
.stv-it-form-section .form-control {
    width: 100%;
    padding: var(--stv-space-md);
    font-size: var(--stv-font-size-base);
    border: 2px solid var(--stv-gray-300);
    border-radius: var(--stv-radius-md);
    transition: var(--stv-transition-fast);
    background: var(--stv-white);
}

.stv-it-form-control:focus,
.stv-it-form-section .form-control:focus {
    outline: none;
    border-color: var(--stv-primary);
    box-shadow: 0 0 0 4px var(--stv-primary-light);
}

.stv-it-form-hint {
    font-size: var(--stv-font-size-sm);
    color: var(--stv-gray-600);
    margin-top: var(--stv-space-xs);
}

.stv-it-form-submit {
    background: var(--stv-accent-gradient);
    color: white;
    font-weight: 700;
    font-size: var(--stv-font-size-lg);
    padding: var(--stv-space-lg) var(--stv-space-3xl);
    border-radius: var(--stv-radius-full);
    border: none;
    width: 100%;
    cursor: pointer;
    box-shadow: var(--stv-shadow-md);
    transition: var(--stv-transition);
}

.stv-it-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--stv-shadow-lg);
}

/* Sidebar */
.stv-it-sidebar {
    position: sticky;
    top: 100px;
}

.stv-it-sidebar-card {
    background: var(--stv-white);
    border-radius: var(--stv-radius-lg);
    padding: var(--stv-space-xl);
    box-shadow: var(--stv-shadow);
    margin-bottom: var(--stv-space-lg);
}

.stv-it-sidebar-card h4 {
    font-size: var(--stv-font-size-lg);
    font-weight: 700;
    color: var(--stv-dark);
    margin-bottom: var(--stv-space-md);
}

.stv-it-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stv-it-sidebar-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--stv-space-sm);
    margin-bottom: var(--stv-space-sm);
    font-size: var(--stv-font-size-sm);
    color: var(--stv-gray-700);
}

.stv-it-sidebar-list li i {
    color: var(--stv-success);
    margin-top: 0.2em;
}

/* ==========================================
   CONFIRMATION
   ========================================== */
.stv-it-confirmation {
    padding: calc(80px + var(--stv-space-3xl)) 0 var(--stv-space-3xl);
    background: var(--stv-gray-100);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.stv-it-confirmation-card {
    background: var(--stv-white);
    border-radius: var(--stv-radius-xl);
    padding: var(--stv-space-3xl);
    box-shadow: var(--stv-shadow-lg);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.stv-it-confirmation-icon {
    width: 80px;
    height: 80px;
    background: var(--stv-success-light);
    border-radius: var(--stv-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--stv-space-xl);
}

.stv-it-confirmation-icon i {
    font-size: var(--stv-font-size-4xl);
    color: var(--stv-success);
}

.stv-it-confirmation h1 {
    font-size: var(--stv-font-size-3xl);
    font-weight: 800;
    color: var(--stv-dark);
    margin-bottom: var(--stv-space-md);
}

.stv-it-confirmation p {
    font-size: var(--stv-font-size-lg);
    color: var(--stv-gray-600);
    margin-bottom: var(--stv-space-xl);
}

/* ==========================================
   ABOUT PAGE
   ========================================== */
.stv-it-about-hero {
    padding: calc(80px + var(--stv-space-4xl)) 0 var(--stv-space-4xl);
    background: var(--stv-primary-gradient);
    color: var(--stv-white);
    text-align: center;
}

.stv-it-about-hero h1 {
    font-size: var(--stv-font-size-5xl);
    font-weight: 800;
    margin-bottom: var(--stv-space-md);
}

.stv-it-about-hero p {
    font-size: var(--stv-font-size-xl);
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.stv-it-value-card {
    text-align: center;
    padding: var(--stv-space-2xl);
}

.stv-it-value-icon {
    width: 80px;
    height: 80px;
    background: var(--stv-primary-gradient);
    border-radius: var(--stv-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--stv-space-lg);
    font-size: var(--stv-font-size-2xl);
    color: white;
    box-shadow: var(--stv-shadow-md);
}

/* ==========================================
   FAQ PAGE
   ========================================== */
.stv-it-faq-hero {
    padding: calc(80px + var(--stv-space-3xl)) 0 var(--stv-space-2xl);
    background: var(--stv-gray-100);
    text-align: center;
}

.stv-it-faq-hero h1 {
    font-size: var(--stv-font-size-4xl);
    font-weight: 800;
    color: var(--stv-dark);
    margin-bottom: var(--stv-space-md);
}

.stv-it-faq-category {
    margin-bottom: var(--stv-space-3xl);
}

.stv-it-faq-category-title {
    font-size: var(--stv-font-size-xl);
    font-weight: 700;
    color: var(--stv-dark);
    margin-bottom: var(--stv-space-lg);
    padding-bottom: var(--stv-space-sm);
    border-bottom: 2px solid var(--stv-primary);
    display: inline-block;
}

.stv-it-faq-item {
    background: var(--stv-white);
    border: 1px solid var(--stv-gray-200);
    border-radius: var(--stv-radius-md);
    margin-bottom: var(--stv-space-md);
    overflow: hidden;
}

.stv-it-faq-question {
    padding: var(--stv-space-lg);
    font-weight: 600;
    color: var(--stv-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--stv-transition-fast);
}

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

.stv-it-faq-answer {
    padding: 0 var(--stv-space-lg) var(--stv-space-lg);
    color: var(--stv-gray-600);
    line-height: 1.7;
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.stv-it-contact-hero {
    padding: calc(80px + var(--stv-space-3xl)) 0 var(--stv-space-2xl);
    background: var(--stv-gray-100);
    text-align: center;
}

.stv-it-contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--stv-space-xl);
}

.stv-it-contact-item {
    display: flex;
    gap: var(--stv-space-md);
}

.stv-it-contact-icon {
    width: 48px;
    height: 48px;
    background: var(--stv-primary-light);
    border-radius: var(--stv-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--stv-font-size-xl);
    color: var(--stv-primary);
    flex-shrink: 0;
}

.stv-it-contact-item h4 {
    font-size: var(--stv-font-size-base);
    font-weight: 700;
    color: var(--stv-dark);
    margin-bottom: var(--stv-space-xs);
}

.stv-it-contact-item p {
    font-size: var(--stv-font-size-sm);
    color: var(--stv-gray-600);
    margin: 0;
}

/* ==========================================
   PRIVACY PAGE
   ========================================== */
.stv-it-privacy {
    padding: calc(80px + var(--stv-space-3xl)) 0 var(--stv-space-3xl);
}

.stv-it-privacy h1 {
    font-size: var(--stv-font-size-4xl);
    font-weight: 800;
    color: var(--stv-dark);
    margin-bottom: var(--stv-space-lg);
}

.stv-it-privacy h2 {
    font-size: var(--stv-font-size-xl);
    font-weight: 700;
    color: var(--stv-dark);
    margin-top: var(--stv-space-2xl);
    margin-bottom: var(--stv-space-md);
}

.stv-it-privacy p,
.stv-it-privacy ul {
    color: var(--stv-gray-700);
    line-height: 1.8;
    margin-bottom: var(--stv-space-md);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 991px) {
    .stv-it-hero h1 {
        font-size: var(--stv-font-size-4xl);
    }

    .stv-it-hero-stats {
        flex-wrap: wrap;
        gap: var(--stv-space-xl);
    }

    .stv-it-section-title {
        font-size: var(--stv-font-size-3xl);
    }

    .stv-it-sidebar {
        position: static;
        margin-top: var(--stv-space-2xl);
    }
}

@media (max-width: 767px) {
    .stv-it-hero {
        padding: calc(80px + var(--stv-space-2xl)) 0 var(--stv-space-2xl);
        text-align: center;
    }

    .stv-it-hero h1 {
        font-size: var(--stv-font-size-3xl);
    }

    .stv-it-hero .lead {
        font-size: var(--stv-font-size-base);
        margin-left: auto;
        margin-right: auto;
    }

    .stv-it-hero-buttons {
        justify-content: center;
    }

    .stv-it-hero-stats {
        justify-content: center;
    }

    .stv-it-hero-visual {
        margin-top: var(--stv-space-2xl);
    }

    .stv-it-section {
        padding: var(--stv-space-2xl) 0;
    }

    .stv-it-section-title {
        font-size: var(--stv-font-size-2xl);
    }

    .stv-it-card {
        padding: var(--stv-space-lg);
    }

    .stv-it-cta h2 {
        font-size: var(--stv-font-size-2xl);
    }

    .stv-it-form-card {
        padding: var(--stv-space-lg);
    }

    .stv-it-about-hero h1 {
        font-size: var(--stv-font-size-3xl);
    }

    .stv-it-footer {
        padding: var(--stv-space-2xl) 0 var(--stv-space-lg);
    }
}

/* ==========================================
   ADDITIONAL COMPONENTS - Modern Design v2
   ========================================== */

/* Hero Title and Subtitle */
.stv-it-hero-title {
    color: var(--stv-white);
    font-size: var(--stv-font-size-5xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--stv-space-lg);
}

.stv-it-hero-highlight {
    background: var(--stv-accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stv-it-hero-subtitle {
    color: var(--stv-gray-400);
    font-size: var(--stv-font-size-xl);
    line-height: 1.7;
    margin-bottom: var(--stv-space-2xl);
    max-width: 540px;
}

.stv-it-hero-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--stv-space-md);
}

.stv-it-hero-benefit {
    display: flex;
    align-items: center;
    gap: var(--stv-space-md);
    color: var(--stv-gray-300);
    font-size: var(--stv-font-size-sm);
}

.stv-it-hero-benefit i {
    color: var(--stv-success);
}

.stv-it-hero-card-header {
    display: flex;
    align-items: center;
    gap: var(--stv-space-md);
    margin-bottom: var(--stv-space-xl);
    padding-bottom: var(--stv-space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--stv-white);
}

.stv-it-hero-card-header i {
    font-size: var(--stv-font-size-2xl);
    color: var(--stv-accent);
}

/* Page Hero (for inner pages) */
.stv-it-page-hero {
    padding: calc(80px + var(--stv-space-3xl)) 0 var(--stv-space-3xl);
    background: linear-gradient(135deg, var(--stv-gray-900) 0%, var(--stv-dark) 100%);
    position: relative;
    overflow: hidden;
}

.stv-it-page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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.02'%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");
}

.stv-it-page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.stv-it-page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--stv-space-sm);
    background: rgba(255, 255, 255, 0.1);
    color: var(--stv-white);
    font-size: var(--stv-font-size-sm);
    font-weight: 500;
    padding: var(--stv-space-sm) var(--stv-space-md);
    border-radius: var(--stv-radius-full);
    margin-bottom: var(--stv-space-lg);
}

.stv-it-page-hero-badge i {
    color: var(--stv-accent);
}

.stv-it-page-hero-title {
    color: var(--stv-white);
    font-size: var(--stv-font-size-4xl);
    font-weight: 800;
    margin-bottom: var(--stv-space-md);
}

.stv-it-page-hero-subtitle {
    color: var(--stv-gray-400);
    font-size: var(--stv-font-size-lg);
    max-width: 600px;
    margin: 0 auto;
}

/* Section Alt */
.stv-it-section-alt {
    background: var(--stv-gray-100);
}

/* Button Styles */
.stv-it-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--stv-space-sm);
    font-weight: 600;
    font-size: var(--stv-font-size-base);
    padding: var(--stv-space-md) var(--stv-space-xl);
    border-radius: var(--stv-radius-full);
    border: none;
    text-decoration: none;
    transition: var(--stv-transition);
    cursor: pointer;
}

.stv-it-btn-primary {
    background: var(--stv-primary-gradient);
    color: white !important;
    box-shadow: var(--stv-shadow);
}

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

.stv-it-btn-accent {
    background: var(--stv-accent-gradient);
    color: white !important;
    box-shadow: var(--stv-shadow);
}

.stv-it-btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: var(--stv-shadow-md);
    color: white;
}

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

.stv-it-btn-secondary:hover {
    background: var(--stv-primary-light);
}

.stv-it-btn-outline {
    background: transparent;
    color: var(--stv-white) !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.stv-it-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.stv-it-btn-lg {
    padding: var(--stv-space-md) var(--stv-space-2xl);
    font-size: var(--stv-font-size-lg);
}

.stv-it-btn-block {
    width: 100%;
    justify-content: center;
}

.stv-it-btn-submit {
    background: var(--stv-accent-gradient);
    color: white !important;
    width: 100%;
    justify-content: center;
    box-shadow: var(--stv-shadow-md);
}

.stv-it-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--stv-shadow-lg);
}

/* Card Hover Effect */
.stv-it-card-hover {
    transition: var(--stv-transition);
}

.stv-it-card-hover:hover {
    transform: translateY(-5px);
    box-shadow: var(--stv-shadow-lg);
}

/* Card Link */
.stv-it-card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--stv-space-sm);
    color: var(--stv-primary);
    font-weight: 600;
    font-size: var(--stv-font-size-sm);
    text-decoration: none;
    margin-top: var(--stv-space-md);
    transition: var(--stv-transition-fast);
}

.stv-it-card-link:hover {
    gap: var(--stv-space-md);
    color: var(--stv-primary-dark);
}

/* Step Card Improvements */
.stv-it-step-title {
    font-size: var(--stv-font-size-lg);
    font-weight: 700;
    color: var(--stv-dark);
    margin-bottom: var(--stv-space-sm);
}

.stv-it-step-text {
    font-size: var(--stv-font-size-base);
    color: var(--stv-gray-600);
    line-height: 1.6;
}

/* Feature Cards */
.stv-it-feature {
    text-align: center;
    padding: var(--stv-space-xl);
}

.stv-it-feature-icon {
    width: 64px;
    height: 64px;
    background: var(--stv-primary-light);
    border-radius: var(--stv-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--stv-space-lg);
    font-size: var(--stv-font-size-2xl);
    color: var(--stv-primary);
}

.stv-it-feature-title {
    font-size: var(--stv-font-size-lg);
    font-weight: 700;
    color: var(--stv-dark);
    margin-bottom: var(--stv-space-sm);
}

.stv-it-feature-text {
    font-size: var(--stv-font-size-sm);
    color: var(--stv-gray-600);
    line-height: 1.6;
}

/* Stats Section */
.stv-it-stats-section {
    background: var(--stv-primary-gradient);
    padding: var(--stv-space-3xl) 0;
}

.stv-it-stat {
    text-align: center;
    padding: var(--stv-space-lg);
}

.stv-it-stat-number {
    font-size: var(--stv-font-size-4xl);
    font-weight: 800;
    color: var(--stv-white);
    line-height: 1;
    margin-bottom: var(--stv-space-xs);
}

.stv-it-stat-label {
    font-size: var(--stv-font-size-sm);
    color: rgba(255, 255, 255, 0.8);
}

/* CTA Section Modern */
.stv-it-cta-section {
    background: linear-gradient(135deg, var(--stv-gray-900) 0%, var(--stv-dark) 100%);
    padding: var(--stv-space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.stv-it-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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");
}

.stv-it-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.stv-it-cta-title {
    font-size: var(--stv-font-size-4xl);
    font-weight: 800;
    color: var(--stv-white);
    margin-bottom: var(--stv-space-md);
}

.stv-it-cta-text {
    font-size: var(--stv-font-size-lg);
    color: var(--stv-gray-400);
    margin-bottom: var(--stv-space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stv-it-cta-badges {
    display: flex;
    justify-content: center;
    gap: var(--stv-space-xl);
    margin-top: var(--stv-space-xl);
    flex-wrap: wrap;
}

.stv-it-cta-badge {
    display: flex;
    align-items: center;
    gap: var(--stv-space-sm);
    color: var(--stv-gray-400);
    font-size: var(--stv-font-size-sm);
}

.stv-it-cta-badge i {
    color: var(--stv-success);
}

/* FAQ Modern Styles */
.stv-it-faq-category-header {
    display: flex;
    align-items: center;
    gap: var(--stv-space-md);
    margin-bottom: var(--stv-space-xl);
}

.stv-it-faq-category-icon {
    width: 48px;
    height: 48px;
    background: var(--stv-primary-light);
    border-radius: var(--stv-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--stv-font-size-xl);
    color: var(--stv-primary);
}

.stv-it-faq-category h3 {
    font-size: var(--stv-font-size-xl);
    font-weight: 700;
    color: var(--stv-dark);
    margin: 0;
}

.stv-it-faq-item {
    background: var(--stv-white);
    border: 1px solid var(--stv-gray-200);
    border-radius: var(--stv-radius-md);
    margin-bottom: var(--stv-space-md);
    overflow: hidden;
    transition: var(--stv-transition);
}

.stv-it-faq-item:hover {
    border-color: var(--stv-primary);
    box-shadow: var(--stv-shadow);
}

.stv-it-faq-question {
    display: flex;
    align-items: flex-start;
    gap: var(--stv-space-md);
    padding: var(--stv-space-lg);
    font-weight: 600;
    color: var(--stv-dark);
}

.stv-it-faq-question i {
    color: var(--stv-primary);
    margin-top: 0.2em;
}

.stv-it-faq-answer {
    padding: 0 var(--stv-space-lg) var(--stv-space-lg);
    padding-left: calc(var(--stv-space-lg) + var(--stv-space-md) + 1em);
    color: var(--stv-gray-600);
    line-height: 1.7;
}

.stv-it-faq-answer ul,
.stv-it-faq-answer ol {
    margin: var(--stv-space-md) 0;
    padding-left: var(--stv-space-lg);
}

.stv-it-faq-answer li {
    margin-bottom: var(--stv-space-sm);
}

.stv-it-faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--stv-space-md);
}

.stv-it-faq-cta-card {
    background: var(--stv-primary-gradient);
    color: var(--stv-white);
    border-radius: var(--stv-radius-xl);
    padding: var(--stv-space-2xl);
    text-align: center;
}

.stv-it-faq-cta-icon {
    font-size: var(--stv-font-size-4xl);
    margin-bottom: var(--stv-space-lg);
    opacity: 0.8;
}

.stv-it-faq-cta-card h3 {
    font-size: var(--stv-font-size-xl);
    font-weight: 700;
    margin-bottom: var(--stv-space-sm);
}

.stv-it-faq-cta-card p {
    font-size: var(--stv-font-size-base);
    opacity: 0.9;
    margin-bottom: var(--stv-space-lg);
}

/* Service Card Modern */
.stv-it-service-card {
    background: var(--stv-white);
    border-radius: var(--stv-radius-lg);
    padding: 0;
    box-shadow: var(--stv-shadow);
    border: 1px solid var(--stv-gray-200);
    transition: var(--stv-transition);
    height: 100%;
    overflow: hidden;
}

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

.stv-it-service-card-header {
    padding: var(--stv-space-lg);
    background: var(--stv-gray-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stv-it-service-badge {
    background: var(--stv-primary-gradient);
    color: white;
    font-size: var(--stv-font-size-xs);
    font-weight: 700;
    padding: var(--stv-space-xs) var(--stv-space-sm);
    border-radius: var(--stv-radius-sm);
}

.stv-it-service-icon {
    width: 48px;
    height: 48px;
    background: var(--stv-white);
    border-radius: var(--stv-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--stv-font-size-xl);
    color: var(--stv-primary);
    box-shadow: var(--stv-shadow-sm);
}

.stv-it-service-card-body {
    padding: var(--stv-space-xl);
}

.stv-it-service-title {
    font-size: var(--stv-font-size-lg);
    font-weight: 700;
    color: var(--stv-dark);
    margin-bottom: var(--stv-space-sm);
}

.stv-it-service-text {
    font-size: var(--stv-font-size-sm);
    color: var(--stv-gray-600);
    line-height: 1.6;
    margin-bottom: var(--stv-space-md);
}

.stv-it-service-features {
    list-style: none;
    padding: 0;
    margin: var(--stv-space-md) 0;
}

.stv-it-service-features li {
    display: flex;
    align-items: center;
    gap: var(--stv-space-sm);
    font-size: var(--stv-font-size-sm);
    color: var(--stv-gray-700);
    margin-bottom: var(--stv-space-sm);
}

.stv-it-service-features li i {
    color: var(--stv-success);
}

/* Info Box */
.stv-it-info-box {
    background: var(--stv-white);
    border-radius: var(--stv-radius-xl);
    padding: var(--stv-space-3xl);
    box-shadow: var(--stv-shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--stv-space-2xl);
    text-align: left;
}

.stv-it-info-box-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--stv-primary-light);
    border-radius: var(--stv-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--stv-font-size-3xl);
    color: var(--stv-primary);
}

.stv-it-info-box-content h3 {
    font-size: var(--stv-font-size-xl);
    font-weight: 700;
    color: var(--stv-dark);
    margin-bottom: var(--stv-space-sm);
}

.stv-it-info-box-content p {
    font-size: var(--stv-font-size-base);
    color: var(--stv-gray-600);
    margin-bottom: var(--stv-space-lg);
}

/* Contact Card */
.stv-it-contact-card {
    background: var(--stv-white);
    border-radius: var(--stv-radius-xl);
    overflow: hidden;
    box-shadow: var(--stv-shadow-lg);
}

.stv-it-contact-card-header {
    background: var(--stv-gray-100);
    padding: var(--stv-space-xl);
    border-bottom: 1px solid var(--stv-gray-200);
}

.stv-it-contact-card-header h4 {
    display: flex;
    align-items: center;
    gap: var(--stv-space-sm);
    font-size: var(--stv-font-size-lg);
    font-weight: 700;
    color: var(--stv-dark);
    margin-bottom: var(--stv-space-xs);
}

.stv-it-contact-card-header h4 i {
    color: var(--stv-primary);
}

.stv-it-contact-card-header p {
    font-size: var(--stv-font-size-sm);
    color: var(--stv-gray-600);
    margin: 0;
}

.stv-it-contact-card-body {
    padding: var(--stv-space-2xl);
}

/* About Page Modern */
.stv-it-about-content {
    padding-right: var(--stv-space-2xl);
}

.stv-it-about-title {
    font-size: var(--stv-font-size-3xl);
    font-weight: 800;
    color: var(--stv-dark);
    margin-bottom: var(--stv-space-lg);
}

.stv-it-about-lead {
    font-size: var(--stv-font-size-lg);
    color: var(--stv-gray-700);
    line-height: 1.7;
    margin-bottom: var(--stv-space-lg);
}

.stv-it-about-subtitle {
    font-size: var(--stv-font-size-2xl);
    font-weight: 700;
    color: var(--stv-dark);
    margin-top: var(--stv-space-3xl);
    margin-bottom: var(--stv-space-xl);
}

.stv-it-value-card {
    display: flex;
    align-items: flex-start;
    gap: var(--stv-space-md);
    padding: var(--stv-space-lg);
    background: var(--stv-white);
    border-radius: var(--stv-radius-lg);
    box-shadow: var(--stv-shadow);
    transition: var(--stv-transition);
    text-align: left;
}

.stv-it-value-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--stv-shadow-md);
}

.stv-it-value-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--stv-primary-gradient);
    border-radius: var(--stv-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--stv-font-size-lg);
    color: white;
    margin: 0;
}

.stv-it-value-content h5 {
    font-size: var(--stv-font-size-base);
    font-weight: 700;
    color: var(--stv-dark);
    margin-bottom: var(--stv-space-xs);
}

.stv-it-value-content p {
    font-size: var(--stv-font-size-sm);
    color: var(--stv-gray-600);
    margin: 0;
    line-height: 1.5;
}

/* Sidebar Modern */
.stv-it-sidebar {
    position: sticky;
    top: 100px;
}

.stv-it-sidebar-sticky {
    position: sticky;
    top: 100px;
}

.stv-it-sidebar-card {
    background: var(--stv-white);
    border-radius: var(--stv-radius-lg);
    padding: var(--stv-space-xl);
    box-shadow: var(--stv-shadow);
    margin-bottom: var(--stv-space-lg);
}

.stv-it-sidebar-card h5 {
    display: flex;
    align-items: center;
    gap: var(--stv-space-sm);
    font-size: var(--stv-font-size-base);
    font-weight: 700;
    color: var(--stv-dark);
    margin-bottom: var(--stv-space-md);
}

.stv-it-sidebar-card h5 i {
    color: var(--stv-primary);
}

.stv-it-sidebar-card p {
    font-size: var(--stv-font-size-sm);
    color: var(--stv-gray-600);
    line-height: 1.6;
    margin-bottom: var(--stv-space-md);
}

.stv-it-sidebar-cta {
    background: var(--stv-primary-light);
    text-align: center;
}

.stv-it-sidebar-cta-icon {
    font-size: var(--stv-font-size-3xl);
    color: var(--stv-primary);
    margin-bottom: var(--stv-space-md);
}

.stv-it-sidebar-why {
    border-left: 4px solid var(--stv-accent);
}

.stv-it-sidebar-security {
    text-align: center;
}

.stv-it-security-badge {
    width: 56px;
    height: 56px;
    background: var(--stv-success-light);
    border-radius: var(--stv-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--stv-space-md);
    font-size: var(--stv-font-size-xl);
    color: var(--stv-success);
}

.stv-it-sidebar-card h6 {
    font-size: var(--stv-font-size-base);
    font-weight: 700;
    color: var(--stv-dark);
    margin-bottom: var(--stv-space-sm);
}

.stv-it-sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stv-it-sidebar-links li {
    margin-bottom: var(--stv-space-sm);
}

.stv-it-sidebar-links a {
    display: flex;
    align-items: center;
    gap: var(--stv-space-sm);
    color: var(--stv-gray-700);
    font-size: var(--stv-font-size-sm);
    text-decoration: none;
    transition: var(--stv-transition-fast);
}

.stv-it-sidebar-links a:hover {
    color: var(--stv-primary);
}

.stv-it-sidebar-links a i {
    font-size: var(--stv-font-size-xs);
    color: var(--stv-primary);
}

/* Check List */
.stv-it-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stv-it-check-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--stv-space-sm);
    margin-bottom: var(--stv-space-sm);
    font-size: var(--stv-font-size-sm);
    color: var(--stv-gray-700);
}

.stv-it-check-list li i {
    color: var(--stv-success);
    margin-top: 0.15em;
}

/* Timeline */
.stv-it-timeline {
    display: flex;
    flex-direction: column;
    gap: var(--stv-space-md);
}

.stv-it-timeline-item {
    display: flex;
    align-items: flex-start;
    gap: var(--stv-space-md);
}

.stv-it-timeline-marker {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--stv-primary-gradient);
    color: white;
    border-radius: var(--stv-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--stv-font-size-xs);
    font-weight: 700;
}

.stv-it-timeline-content strong {
    display: block;
    font-size: var(--stv-font-size-sm);
    font-weight: 600;
    color: var(--stv-dark);
}

.stv-it-timeline-content span {
    font-size: var(--stv-font-size-xs);
    color: var(--stv-gray-500);
}

/* Form Hero */
.stv-it-form-hero {
    padding: calc(80px + var(--stv-space-3xl)) 0 var(--stv-space-2xl);
    background: linear-gradient(135deg, var(--stv-gray-900) 0%, var(--stv-dark) 100%);
    position: relative;
}

.stv-it-form-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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.02'%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");
}

.stv-it-form-hero-title {
    color: var(--stv-white);
    font-size: var(--stv-font-size-4xl);
    font-weight: 800;
    margin-bottom: var(--stv-space-md);
}

.stv-it-form-hero-subtitle {
    color: var(--stv-gray-400);
    font-size: var(--stv-font-size-lg);
    line-height: 1.7;
    margin-bottom: var(--stv-space-xl);
}

.stv-it-form-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--stv-space-md);
}

.stv-it-form-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--stv-space-sm);
    background: rgba(255, 255, 255, 0.1);
    color: var(--stv-white);
    font-size: var(--stv-font-size-sm);
    padding: var(--stv-space-sm) var(--stv-space-md);
    border-radius: var(--stv-radius-full);
}

.stv-it-form-hero-badge i {
    color: var(--stv-success);
}

.stv-it-form-hero-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--stv-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--stv-font-size-5xl);
    color: var(--stv-white);
}

/* Progress Section */
.stv-it-progress-section {
    background: var(--stv-white);
    padding: var(--stv-space-xl) 0;
    box-shadow: var(--stv-shadow);
}

.stv-it-progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--stv-space-md);
}

.stv-it-progress-step {
    display: flex;
    align-items: center;
    gap: var(--stv-space-sm);
    color: var(--stv-gray-500);
}

.stv-it-progress-step.active {
    color: var(--stv-primary);
}

.stv-it-progress-number {
    width: 32px;
    height: 32px;
    background: var(--stv-gray-200);
    color: var(--stv-gray-600);
    border-radius: var(--stv-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--stv-font-size-sm);
    font-weight: 700;
}

.stv-it-progress-step.active .stv-it-progress-number {
    background: var(--stv-primary-gradient);
    color: white;
}

.stv-it-progress-step span {
    font-size: var(--stv-font-size-sm);
    font-weight: 500;
}

.stv-it-progress-line {
    width: 60px;
    height: 2px;
    background: var(--stv-gray-300);
}

/* Form Inputs Modern */
.stv-it-form-input,
.stv-it-form-select,
.stv-it-form-textarea {
    width: 100%;
    padding: var(--stv-space-md);
    font-size: var(--stv-font-size-base);
    border: 2px solid var(--stv-gray-300);
    border-radius: var(--stv-radius-md);
    transition: var(--stv-transition-fast);
    background: var(--stv-white);
}

.stv-it-form-input:focus,
.stv-it-form-select:focus,
.stv-it-form-textarea:focus {
    outline: none;
    border-color: var(--stv-primary);
    box-shadow: 0 0 0 4px var(--stv-primary-light);
}

.stv-it-form-input-error {
    border-color: var(--stv-error);
}

.stv-it-form-error {
    color: var(--stv-error);
    font-size: var(--stv-font-size-sm);
    margin-top: var(--stv-space-xs);
}

.stv-it-form-hint {
    display: flex;
    align-items: center;
    gap: var(--stv-space-sm);
    font-size: var(--stv-font-size-sm);
    color: var(--stv-gray-500);
    margin-bottom: var(--stv-space-lg);
    padding: var(--stv-space-sm) var(--stv-space-md);
    background: var(--stv-gray-100);
    border-radius: var(--stv-radius);
}

.stv-it-form-hint i {
    color: var(--stv-primary);
}

.stv-it-form-card h5 {
    font-size: var(--stv-font-size-lg);
    font-weight: 700;
    color: var(--stv-dark);
    margin: 0;
}

.stv-it-form-card-privacy {
    background: var(--stv-gray-100);
}

/* Territory Notice */
.stv-it-territory-notice {
    display: flex;
    align-items: flex-start;
    gap: var(--stv-space-md);
    padding: var(--stv-space-lg);
    background: var(--stv-primary-light);
    border-radius: var(--stv-radius-md);
    margin-bottom: var(--stv-space-lg);
    border-left: 4px solid var(--stv-primary);
}

.stv-it-territory-notice > i {
    font-size: var(--stv-font-size-xl);
    color: var(--stv-primary);
}

.stv-it-territory-notice strong {
    display: block;
    color: var(--stv-dark);
    margin-bottom: var(--stv-space-xs);
}

.stv-it-territory-notice p {
    font-size: var(--stv-font-size-sm);
    color: var(--stv-gray-600);
    margin: 0;
}

/* Checkbox Group */
.stv-it-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--stv-space-md);
}

.stv-it-checkbox {
    display: flex;
    align-items: center;
    gap: var(--stv-space-sm);
    padding: var(--stv-space-md);
    background: var(--stv-gray-100);
    border-radius: var(--stv-radius);
    cursor: pointer;
    transition: var(--stv-transition-fast);
    font-size: var(--stv-font-size-sm);
    color: var(--stv-gray-700);
}

.stv-it-checkbox:hover {
    background: var(--stv-gray-200);
}

.stv-it-checkbox input {
    display: none;
}

.stv-it-checkbox-mark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--stv-gray-400);
    border-radius: var(--stv-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--stv-transition-fast);
}

.stv-it-checkbox input:checked + .stv-it-checkbox-mark {
    background: var(--stv-primary-gradient);
    border-color: var(--stv-primary);
}

.stv-it-checkbox input:checked + .stv-it-checkbox-mark::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free', 'FontAwesome';
    font-weight: 900;
    font-size: 10px;
    color: white;
}

.stv-it-checkbox i {
    color: var(--stv-gray-500);
}

.stv-it-checkbox-privacy {
    background: transparent;
    padding: 0;
    align-items: flex-start;
}

.stv-it-checkbox-privacy a {
    color: var(--stv-primary);
}

/* Alert */
.stv-it-alert {
    display: flex;
    align-items: center;
    gap: var(--stv-space-md);
    padding: var(--stv-space-lg);
    border-radius: var(--stv-radius-md);
    margin-bottom: var(--stv-space-xl);
}

.stv-it-alert-error {
    background: var(--stv-error-light);
    color: var(--stv-error);
}

.stv-it-alert-error i {
    font-size: var(--stv-font-size-xl);
}

/* Confirmation Section */
.stv-it-confirmation-section {
    padding: calc(80px + var(--stv-space-3xl)) 0 var(--stv-space-3xl);
    background: var(--stv-gray-100);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.stv-it-confirmation-card {
    background: var(--stv-white);
    border-radius: var(--stv-radius-xl);
    padding: var(--stv-space-3xl);
    box-shadow: var(--stv-shadow-lg);
    text-align: center;
}

.stv-it-confirmation-card-simple {
    max-width: 500px;
    margin: 0 auto;
}

.stv-it-confirmation-icon {
    width: 80px;
    height: 80px;
    background: var(--stv-success-light);
    border-radius: var(--stv-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--stv-space-xl);
}

.stv-it-confirmation-icon i {
    font-size: var(--stv-font-size-4xl);
    color: var(--stv-success);
}

.stv-it-confirmation-title {
    font-size: var(--stv-font-size-3xl);
    font-weight: 800;
    color: var(--stv-dark);
    margin-bottom: var(--stv-space-md);
}

.stv-it-confirmation-text {
    font-size: var(--stv-font-size-lg);
    color: var(--stv-gray-600);
    margin-bottom: var(--stv-space-xl);
    line-height: 1.6;
}

.stv-it-confirmation-reference {
    background: var(--stv-gray-100);
    padding: var(--stv-space-lg);
    border-radius: var(--stv-radius-md);
    margin-bottom: var(--stv-space-lg);
}

.stv-it-confirmation-reference span {
    display: block;
    font-size: var(--stv-font-size-sm);
    color: var(--stv-gray-600);
    margin-bottom: var(--stv-space-xs);
}

.stv-it-confirmation-reference strong {
    font-size: var(--stv-font-size-xl);
    color: var(--stv-primary);
}

.stv-it-confirmation-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--stv-space-sm);
    padding: var(--stv-space-md);
    background: var(--stv-success-light);
    border-radius: var(--stv-radius);
    margin-bottom: var(--stv-space-xl);
}

.stv-it-confirmation-email i {
    color: var(--stv-success);
}

.stv-it-confirmation-email p {
    margin: 0;
    font-size: var(--stv-font-size-sm);
    color: var(--stv-gray-700);
}

.stv-it-confirmation-steps {
    margin-bottom: var(--stv-space-2xl);
}

.stv-it-confirmation-steps h4 {
    font-size: var(--stv-font-size-lg);
    font-weight: 700;
    color: var(--stv-dark);
    margin-bottom: var(--stv-space-lg);
}

.stv-it-next-steps {
    display: flex;
    flex-direction: column;
    gap: var(--stv-space-md);
}

.stv-it-next-step {
    display: flex;
    align-items: flex-start;
    gap: var(--stv-space-md);
    text-align: left;
    padding: var(--stv-space-md);
    background: var(--stv-gray-100);
    border-radius: var(--stv-radius);
}

.stv-it-next-step-icon {
    width: 40px;
    height: 40px;
    background: var(--stv-primary-light);
    border-radius: var(--stv-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--stv-primary);
    flex-shrink: 0;
}

.stv-it-next-step-text strong {
    display: block;
    font-size: var(--stv-font-size-sm);
    color: var(--stv-dark);
    margin-bottom: var(--stv-space-xs);
}

.stv-it-next-step-text span {
    font-size: var(--stv-font-size-xs);
    color: var(--stv-gray-600);
}

.stv-it-confirmation-actions {
    display: flex;
    justify-content: center;
    gap: var(--stv-space-md);
    flex-wrap: wrap;
}

/* Responsive Adjustments for New Components */
@media (max-width: 991px) {
    .stv-it-page-hero-title {
        font-size: var(--stv-font-size-3xl);
    }

    .stv-it-info-box {
        flex-direction: column;
        text-align: center;
    }

    .stv-it-about-content {
        padding-right: 0;
    }

    .stv-it-progress-bar {
        flex-wrap: wrap;
    }

    .stv-it-progress-step span {
        display: none;
    }
}

@media (max-width: 767px) {
    .stv-it-hero-title {
        font-size: var(--stv-font-size-3xl);
    }

    .stv-it-page-hero {
        padding: calc(80px + var(--stv-space-xl)) 0 var(--stv-space-xl);
    }

    .stv-it-page-hero-title {
        font-size: var(--stv-font-size-2xl);
    }

    .stv-it-cta-title {
        font-size: var(--stv-font-size-2xl);
    }

    .stv-it-cta-badges {
        flex-direction: column;
        align-items: center;
        gap: var(--stv-space-sm);
    }

    .stv-it-form-hero-title {
        font-size: var(--stv-font-size-2xl);
    }

    .stv-it-confirmation-card {
        padding: var(--stv-space-xl);
    }

    .stv-it-confirmation-actions {
        flex-direction: column;
    }

    .stv-it-confirmation-actions .stv-it-btn {
        width: 100%;
        justify-content: center;
    }

    .stv-it-value-card {
        flex-direction: column;
        text-align: center;
    }

    .stv-it-value-icon {
        margin: 0 auto var(--stv-space-md);
    }

    .stv-it-checkbox-group {
        flex-direction: column;
    }

    .stv-it-checkbox {
        width: 100%;
    }
}

/* ==========================================
   HOMEPAGE PREMIUM STYLES
   ========================================== */

/* Hero Premium */
.stv-it-hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(100px + var(--stv-space-2xl)) 0 var(--stv-space-3xl);
    overflow: hidden;
}

.stv-it-hero-premium-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.stv-it-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0a1628 0%, #1a2744 50%, #0f1d32 100%);
}

.stv-it-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 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");
}

.stv-it-hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.stv-it-hero-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(255, 107, 53, 0.1));
    filter: blur(60px);
}

.stv-it-hero-shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.stv-it-hero-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
}

.stv-it-hero-shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 30%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), transparent);
}

.stv-it-hero-premium .container {
    position: relative;
    z-index: 2;
}

.stv-it-hero-premium-content {
    padding-right: var(--stv-space-2xl);
}

.stv-it-hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--stv-space-sm);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--stv-space-sm) var(--stv-space-md);
    border-radius: var(--stv-radius-full);
    margin-bottom: var(--stv-space-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stv-it-hero-trust-stars {
    display: flex;
    gap: 2px;
}

.stv-it-hero-trust-stars i {
    color: #FFD700;
    font-size: var(--stv-font-size-sm);
}

.stv-it-hero-trust-badge span {
    color: var(--stv-gray-300);
    font-size: var(--stv-font-size-sm);
    font-weight: 500;
}

.stv-it-hero-premium-title {
    color: var(--stv-white);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--stv-space-lg);
}

.stv-it-hero-premium-highlight {
    display: block;
    background: linear-gradient(135deg, var(--stv-accent) 0%, #F7931E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stv-it-hero-premium-subtitle {
    color: var(--stv-gray-400);
    font-size: var(--stv-font-size-lg);
    line-height: 1.7;
    margin-bottom: var(--stv-space-xl);
}

.stv-it-hero-premium-subtitle strong {
    color: var(--stv-white);
}

.stv-it-hero-premium-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--stv-space-lg);
    margin-bottom: var(--stv-space-2xl);
}

.stv-it-hero-premium-feature {
    display: flex;
    align-items: center;
    gap: var(--stv-space-sm);
    color: var(--stv-gray-300);
    font-size: var(--stv-font-size-sm);
}

.stv-it-hero-premium-feature-icon {
    width: 20px;
    height: 20px;
    background: var(--stv-success);
    border-radius: var(--stv-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: white;
}

.stv-it-hero-premium-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--stv-space-md);
}

/* Button Premium Styles */
.stv-it-btn-xl {
    padding: var(--stv-space-lg) var(--stv-space-2xl);
    font-size: var(--stv-font-size-lg);
}

.stv-it-btn-glow {
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.4);
}

.stv-it-btn-glow:hover {
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.6);
}

.stv-it-btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--stv-white) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stv-it-btn-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.stv-it-btn-white {
    background: var(--stv-white);
    color: var(--stv-dark) !important;
}

.stv-it-btn-white:hover {
    background: var(--stv-gray-100);
    transform: translateY(-3px);
}

/* Hero Premium Card */
.stv-it-hero-premium-card {
    position: relative;
}

.stv-it-hero-premium-card-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.3), rgba(255, 107, 53, 0.3));
    border-radius: calc(var(--stv-radius-xl) + 20px);
    filter: blur(40px);
    opacity: 0.5;
}

.stv-it-hero-premium-card-inner {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--stv-radius-xl);
    padding: var(--stv-space-2xl);
}

.stv-it-hero-premium-card-header {
    margin-bottom: var(--stv-space-xl);
}

.stv-it-hero-premium-card-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--stv-space-xs);
    background: var(--stv-accent-gradient);
    color: white;
    font-size: var(--stv-font-size-xs);
    font-weight: 600;
    padding: var(--stv-space-xs) var(--stv-space-sm);
    border-radius: var(--stv-radius-full);
    margin-bottom: var(--stv-space-md);
}

.stv-it-hero-premium-card-header h3 {
    color: var(--stv-white);
    font-size: var(--stv-font-size-xl);
    font-weight: 700;
    margin-bottom: var(--stv-space-xs);
}

.stv-it-hero-premium-card-header p {
    color: var(--stv-gray-400);
    font-size: var(--stv-font-size-sm);
    margin: 0;
}

/* Hero Mini Form */
.stv-it-hero-mini-form {
    display: flex;
    flex-direction: column;
    gap: var(--stv-space-md);
}

.stv-it-hero-mini-form-group {
    flex: 1;
}

.stv-it-hero-mini-form-row {
    display: flex;
    gap: var(--stv-space-md);
}

.stv-it-hero-mini-form-group label {
    display: flex;
    align-items: center;
    gap: var(--stv-space-xs);
    color: var(--stv-gray-400);
    font-size: var(--stv-font-size-xs);
    font-weight: 500;
    margin-bottom: var(--stv-space-xs);
}

.stv-it-hero-mini-form-group label i {
    color: var(--stv-primary);
}

.stv-it-hero-mini-input,
.stv-it-hero-mini-select {
    width: 100%;
    padding: var(--stv-space-md);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--stv-radius-md);
    color: var(--stv-white);
    font-size: var(--stv-font-size-sm);
    transition: var(--stv-transition-fast);
}

.stv-it-hero-mini-input::placeholder {
    color: var(--stv-gray-500);
}

.stv-it-hero-mini-select {
    cursor: pointer;
}

.stv-it-hero-mini-select option {
    background: var(--stv-dark);
    color: var(--stv-white);
}

.stv-it-hero-mini-input:focus,
.stv-it-hero-mini-select:focus {
    outline: none;
    border-color: var(--stv-primary);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.2);
}

.stv-it-hero-mini-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--stv-space-sm);
    width: 100%;
    padding: var(--stv-space-md) var(--stv-space-xl);
    background: var(--stv-accent-gradient);
    border: none;
    border-radius: var(--stv-radius-md);
    color: white;
    font-size: var(--stv-font-size-base);
    font-weight: 600;
    cursor: pointer;
    transition: var(--stv-transition);
}

.stv-it-hero-mini-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.stv-it-hero-mini-footer {
    margin-top: var(--stv-space-md);
    padding-top: var(--stv-space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stv-it-hero-mini-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--stv-space-sm);
    color: var(--stv-gray-500);
    font-size: var(--stv-font-size-xs);
}

.stv-it-hero-mini-secure i {
    color: var(--stv-success);
}

/* Hero Scroll Indicator */
.stv-it-hero-scroll {
    position: absolute;
    bottom: var(--stv-space-2xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.stv-it-hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--stv-space-sm);
    color: var(--stv-gray-500);
    text-decoration: none;
    font-size: var(--stv-font-size-xs);
    transition: var(--stv-transition);
}

.stv-it-hero-scroll a:hover {
    color: var(--stv-white);
}

.stv-it-hero-scroll i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(10px); }
    60% { transform: translateY(5px); }
}

/* Social Proof Bar */
.stv-it-social-proof {
    background: var(--stv-white);
    padding: var(--stv-space-xl) 0;
    box-shadow: var(--stv-shadow-lg);
    position: relative;
    z-index: 10;
}

.stv-it-social-proof-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--stv-space-xl);
}

.stv-it-social-proof-item {
    display: flex;
    align-items: center;
    gap: var(--stv-space-md);
}

.stv-it-social-proof-icon {
    width: 48px;
    height: 48px;
    background: var(--stv-primary-light);
    border-radius: var(--stv-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--stv-font-size-xl);
    color: var(--stv-primary);
}

.stv-it-social-proof-text {
    display: flex;
    flex-direction: column;
}

.stv-it-social-proof-text strong {
    font-size: var(--stv-font-size-xl);
    font-weight: 800;
    color: var(--stv-dark);
}

.stv-it-social-proof-text span {
    font-size: var(--stv-font-size-xs);
    color: var(--stv-gray-600);
}

.stv-it-social-proof-divider {
    width: 1px;
    height: 40px;
    background: var(--stv-gray-300);
}

/* Section Badge */
.stv-it-section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--stv-space-sm);
    background: var(--stv-primary-light);
    color: var(--stv-primary);
    font-size: var(--stv-font-size-sm);
    font-weight: 600;
    padding: var(--stv-space-sm) var(--stv-space-md);
    border-radius: var(--stv-radius-full);
    margin-bottom: var(--stv-space-md);
}

/* Timeline Horizontal */
.stv-it-timeline-horizontal {
    position: relative;
    padding-top: var(--stv-space-2xl);
}

.stv-it-timeline-line {
    position: absolute;
    top: calc(var(--stv-space-2xl) + 24px);
    left: 20%;
    right: 20%;
    height: 3px;
    background: var(--stv-gray-200);
}

.stv-it-timeline-step {
    text-align: center;
    position: relative;
    padding-top: var(--stv-space-3xl);
}

.stv-it-timeline-step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: var(--stv-primary-gradient);
    border-radius: var(--stv-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--stv-font-size-lg);
    font-weight: 700;
    box-shadow: var(--stv-shadow-md);
    z-index: 2;
}

.stv-it-timeline-step-icon {
    width: 64px;
    height: 64px;
    background: var(--stv-primary-light);
    border-radius: var(--stv-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--stv-font-size-2xl);
    color: var(--stv-primary);
    margin: 0 auto var(--stv-space-lg);
}

.stv-it-timeline-step h4 {
    font-size: var(--stv-font-size-lg);
    font-weight: 700;
    color: var(--stv-dark);
    margin-bottom: var(--stv-space-sm);
}

.stv-it-timeline-step p {
    font-size: var(--stv-font-size-sm);
    color: var(--stv-gray-600);
    line-height: 1.6;
    margin-bottom: var(--stv-space-md);
}

.stv-it-timeline-step-time {
    display: inline-flex;
    align-items: center;
    gap: var(--stv-space-xs);
    color: var(--stv-primary);
    font-size: var(--stv-font-size-xs);
    font-weight: 600;
}

/* Service Card Premium */
.stv-it-service-card-premium {
    position: relative;
    background: var(--stv-white);
    border-radius: var(--stv-radius-lg);
    padding: var(--stv-space-2xl);
    box-shadow: var(--stv-shadow);
    border: 1px solid var(--stv-gray-200);
    transition: var(--stv-transition);
    height: 100%;
}

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

.stv-it-service-card-premium-icon {
    width: 56px;
    height: 56px;
    background: var(--stv-primary-light);
    border-radius: var(--stv-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--stv-font-size-xl);
    color: var(--stv-primary);
    margin-bottom: var(--stv-space-lg);
}

.stv-it-service-card-premium-badge {
    position: absolute;
    top: var(--stv-space-lg);
    right: var(--stv-space-lg);
    background: var(--stv-accent-gradient);
    color: white;
    font-size: var(--stv-font-size-xs);
    font-weight: 600;
    padding: var(--stv-space-xs) var(--stv-space-sm);
    border-radius: var(--stv-radius-full);
}

.stv-it-service-card-premium-title {
    font-size: var(--stv-font-size-lg);
    font-weight: 700;
    color: var(--stv-dark);
    margin-bottom: var(--stv-space-sm);
}

.stv-it-service-card-premium-text {
    font-size: var(--stv-font-size-sm);
    color: var(--stv-gray-600);
    line-height: 1.6;
    margin-bottom: var(--stv-space-md);
}

.stv-it-service-card-premium-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--stv-space-lg);
}

.stv-it-service-card-premium-list li {
    display: flex;
    align-items: center;
    gap: var(--stv-space-sm);
    font-size: var(--stv-font-size-sm);
    color: var(--stv-gray-700);
    margin-bottom: var(--stv-space-sm);
}

.stv-it-service-card-premium-list li i {
    color: var(--stv-success);
    font-size: var(--stv-font-size-xs);
}

.stv-it-service-card-premium-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--stv-space-sm);
    color: var(--stv-primary);
    font-weight: 600;
    font-size: var(--stv-font-size-sm);
    text-decoration: none;
    transition: var(--stv-transition-fast);
}

.stv-it-service-card-premium-btn:hover {
    gap: var(--stv-space-md);
    color: var(--stv-primary-dark);
}

/* Why Us Section */
.stv-it-why-us-content {
    padding-right: var(--stv-space-2xl);
}

.stv-it-why-us-text {
    font-size: var(--stv-font-size-base);
    color: var(--stv-gray-600);
    line-height: 1.7;
    margin-bottom: var(--stv-space-xl);
}

.stv-it-why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--stv-space-lg);
}

.stv-it-why-us-card {
    background: var(--stv-white);
    border-radius: var(--stv-radius-lg);
    padding: var(--stv-space-xl);
    box-shadow: var(--stv-shadow);
    border: 1px solid var(--stv-gray-200);
    transition: var(--stv-transition);
}

.stv-it-why-us-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--stv-shadow-md);
}

.stv-it-why-us-card-icon {
    width: 48px;
    height: 48px;
    background: var(--stv-primary-gradient);
    border-radius: var(--stv-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--stv-font-size-lg);
    color: white;
    margin-bottom: var(--stv-space-md);
}

.stv-it-why-us-card h5 {
    font-size: var(--stv-font-size-base);
    font-weight: 700;
    color: var(--stv-dark);
    margin-bottom: var(--stv-space-xs);
}

.stv-it-why-us-card p {
    font-size: var(--stv-font-size-sm);
    color: var(--stv-gray-600);
    margin: 0;
    line-height: 1.5;
}

/* Testimonials */
.stv-it-testimonial-card {
    background: var(--stv-white);
    border-radius: var(--stv-radius-lg);
    padding: var(--stv-space-2xl);
    box-shadow: var(--stv-shadow);
    border: 1px solid var(--stv-gray-200);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.stv-it-testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--stv-space-md);
}

.stv-it-testimonial-stars i {
    color: #FFD700;
    font-size: var(--stv-font-size-base);
}

.stv-it-testimonial-text {
    font-size: var(--stv-font-size-base);
    color: var(--stv-gray-700);
    line-height: 1.7;
    font-style: italic;
    flex-grow: 1;
    margin-bottom: var(--stv-space-lg);
}

.stv-it-testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--stv-space-md);
    padding-top: var(--stv-space-md);
    border-top: 1px solid var(--stv-gray-200);
}

.stv-it-testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--stv-primary-gradient);
    border-radius: var(--stv-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: var(--stv-font-size-base);
}

.stv-it-testimonial-info strong {
    display: block;
    font-size: var(--stv-font-size-sm);
    color: var(--stv-dark);
}

.stv-it-testimonial-info span {
    font-size: var(--stv-font-size-xs);
    color: var(--stv-gray-500);
}

/* Territory Section */
.stv-it-territory-map {
    padding: var(--stv-space-2xl);
}

.stv-it-territory-map-inner {
    position: relative;
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--stv-primary-light) 0%, var(--stv-gray-100) 100%);
    border-radius: var(--stv-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.stv-it-territory-map-pin {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--stv-space-sm);
    animation: pulse 2s infinite;
}

.stv-it-territory-map-pin i {
    font-size: var(--stv-font-size-4xl);
    color: var(--stv-primary);
}

.stv-it-territory-map-pin span {
    font-weight: 700;
    color: var(--stv-dark);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.stv-it-territory-badge {
    position: absolute;
    bottom: var(--stv-space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: var(--stv-space-sm);
    background: var(--stv-white);
    padding: var(--stv-space-sm) var(--stv-space-md);
    border-radius: var(--stv-radius-full);
    box-shadow: var(--stv-shadow);
    font-size: var(--stv-font-size-sm);
    font-weight: 600;
    color: var(--stv-dark);
}

.stv-it-territory-badge i {
    color: var(--stv-success);
}

.stv-it-territory-content {
    padding-left: var(--stv-space-2xl);
}

.stv-it-territory-text {
    font-size: var(--stv-font-size-base);
    color: var(--stv-gray-600);
    line-height: 1.7;
    margin-bottom: var(--stv-space-xl);
}

.stv-it-territory-cities {
    display: flex;
    flex-wrap: wrap;
    gap: var(--stv-space-sm);
    margin-bottom: var(--stv-space-xl);
}

.stv-it-territory-city {
    display: inline-block;
    background: var(--stv-gray-100);
    padding: var(--stv-space-sm) var(--stv-space-md);
    border-radius: var(--stv-radius-full);
    font-size: var(--stv-font-size-sm);
    color: var(--stv-gray-700);
}

/* FAQ Accordion */
.stv-it-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: var(--stv-space-md);
}

.stv-it-faq-accordion-item {
    background: var(--stv-white);
    border: 1px solid var(--stv-gray-200);
    border-radius: var(--stv-radius-md);
    overflow: hidden;
    transition: var(--stv-transition);
}

.stv-it-faq-accordion-item:hover {
    border-color: var(--stv-primary);
}

.stv-it-faq-accordion-header {
    display: flex;
    align-items: center;
    gap: var(--stv-space-md);
    padding: var(--stv-space-lg);
    cursor: pointer;
}

.stv-it-faq-accordion-icon {
    width: 24px;
    height: 24px;
    background: var(--stv-primary-light);
    border-radius: var(--stv-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--stv-font-size-xs);
    color: var(--stv-primary);
    flex-shrink: 0;
}

.stv-it-faq-accordion-header h5 {
    font-size: var(--stv-font-size-base);
    font-weight: 600;
    color: var(--stv-dark);
    margin: 0;
}

.stv-it-faq-accordion-body {
    padding: 0 var(--stv-space-lg) var(--stv-space-lg);
    padding-left: calc(var(--stv-space-lg) + 24px + var(--stv-space-md));
}

.stv-it-faq-accordion-body p {
    font-size: var(--stv-font-size-sm);
    color: var(--stv-gray-600);
    line-height: 1.7;
    margin: 0;
}

/* CTA Premium */
.stv-it-cta-premium {
    position: relative;
    padding: var(--stv-space-4xl) 0;
    overflow: hidden;
}

.stv-it-cta-premium-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.stv-it-cta-premium-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--stv-primary) 0%, #0052CC 50%, #003D99 100%);
}

.stv-it-cta-premium-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 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.05'%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");
}

.stv-it-cta-premium-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.stv-it-cta-premium-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--stv-space-sm);
    background: rgba(255, 255, 255, 0.15);
    color: var(--stv-white);
    font-size: var(--stv-font-size-sm);
    font-weight: 600;
    padding: var(--stv-space-sm) var(--stv-space-md);
    border-radius: var(--stv-radius-full);
    margin-bottom: var(--stv-space-lg);
}

.stv-it-cta-premium-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--stv-white);
    margin-bottom: var(--stv-space-md);
    line-height: 1.2;
}

.stv-it-cta-premium-text {
    font-size: var(--stv-font-size-lg);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--stv-space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stv-it-cta-premium-buttons {
    margin-bottom: var(--stv-space-2xl);
}

.stv-it-cta-premium-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--stv-space-xl);
}

.stv-it-cta-premium-feature {
    display: flex;
    align-items: center;
    gap: var(--stv-space-sm);
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--stv-font-size-sm);
}

.stv-it-cta-premium-feature i {
    color: #4ADE80;
}

/* Responsive for Premium Homepage */
@media (max-width: 991px) {
    .stv-it-hero-premium {
        min-height: auto;
        padding: calc(100px + var(--stv-space-xl)) 0 var(--stv-space-2xl);
    }

    .stv-it-hero-premium-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: var(--stv-space-2xl);
    }

    .stv-it-hero-premium-features {
        justify-content: center;
    }

    .stv-it-hero-premium-cta {
        justify-content: center;
    }

    .stv-it-hero-scroll {
        display: none;
    }

    .stv-it-social-proof-inner {
        gap: var(--stv-space-lg);
    }

    .stv-it-social-proof-divider {
        display: none;
    }

    .stv-it-timeline-line {
        display: none;
    }

    .stv-it-timeline-step {
        padding-top: var(--stv-space-2xl);
        margin-bottom: var(--stv-space-xl);
    }

    .stv-it-why-us-content {
        padding-right: 0;
        margin-bottom: var(--stv-space-2xl);
    }

    .stv-it-why-us-grid {
        grid-template-columns: 1fr;
    }

    .stv-it-territory-map {
        padding: var(--stv-space-lg);
        margin-bottom: var(--stv-space-xl);
    }

    .stv-it-territory-content {
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .stv-it-hero-premium-title {
        font-size: var(--stv-font-size-3xl);
    }

    .stv-it-hero-premium-card-inner {
        padding: var(--stv-space-lg);
    }

    .stv-it-hero-mini-form-row {
        flex-direction: column;
    }

    .stv-it-social-proof-item {
        flex-direction: column;
        text-align: center;
    }

    .stv-it-cta-premium-title {
        font-size: var(--stv-font-size-2xl);
    }

    .stv-it-cta-premium-features {
        flex-direction: column;
        align-items: center;
    }
}
