/*
Theme Name: Deutschlandvisum Theme
Author: Deutschlandvisum Team
Version: 1.0
Description: Custom theme for Deutschlandvisum.com with premium design system.
*/

/* Navigation Styles */
.site-navigation ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-navigation a {
    font-weight: 600;
    color: var(--gray-600);
}

.site-navigation a:hover {
    color: var(--primary);
}

:root {

    /* Colors */
    --primary: #ef4444;
    --primary-dark: #dc2626;
    --primary-subtle: #fee2e2;
    --accent-blue: #3b82f6;
    --accent-green: #10b981;
    --accent-purple: #8b5cf6;
    --accent-yellow: #fbbf24;
    --white: #fff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Shadows */
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, .25);

    /* Spacing */
    --space-2: .5rem;
    --space-3: .75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;

    /* Radius */
    --radius-md: .5rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(.4, 0, .2, 1);
    --transition-base: 300ms cubic-bezier(.4, 0, .2, 1);
    --transition-smooth: 400ms cubic-bezier(.4, 0, .6, 1);
}

/* Global Reset & Base */
* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    margin: 0;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    line-height: 1.2;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

/* Utility Classes (Extracted from TIR HTML) */
.ultimate-guide-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

/* Hero Section */
.modern-hero {
    background: var(--white);
    padding: var(--space-16) var(--space-8);
    margin-bottom: var(--space-12);
    overflow: hidden;
    border-bottom: 1px solid var(--gray-200);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 980px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
    color: var(--gray-800);
    padding: var(--space-2) var(--space-6);
    border-radius: var(--radius-full);
    font-size: .875rem;
    font-weight: 650;
    margin-bottom: var(--space-6);
    border: 1px solid rgba(251, 191, 36, .28);
    box-shadow: 0 4px 12px rgba(251, 191, 36, .16);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 850;
    line-height: 1.1;
    margin-bottom: var(--space-6);
    background: linear-gradient(135deg, var(--gray-900), var(--gray-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: var(--gray-600);
    max-width: 760px;
    margin: 0 auto var(--space-8);
}

.hero-cta-group {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4) var(--space-8);
    border-radius: .75rem;
    font-size: 1rem;
    font-weight: 650;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 14px rgba(239, 68, 68, .35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(239, 68, 68, .28);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--gray-900);
    border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
}

.btn-outline:hover {
    background: var(--gray-900);
    color: var(--white);
    border-color: var(--gray-900);
    transform: translateY(-2px);
}

/* Hero Image */
.hero-image-container {
    position: relative;
    margin: var(--space-12) 0;
    max-width: 100%;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    overflow: hidden;
}

.hero-image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border: 2px dashed var(--gray-300);
}

.hero-image-placeholder-content {
    text-align: center;
    padding: var(--space-8);
}

.hero-image-placeholder-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-500);
    margin-bottom: var(--space-2);
}

.hero-image-placeholder-text {
    font-size: 1rem;
    color: var(--gray-600);
}

.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-8);
    background: linear-gradient(to top, rgba(0, 0, 0, .7), transparent);
    color: var(--white);
    transform: translateY(100%);
    transition: transform var(--transition-smooth);
}

.hero-image-container:hover .hero-image-overlay {
    transform: translateY(0);
}

.hero-image-overlay-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: var(--space-2);
}

/* Quick Nav */
.quick-nav {
    background: var(--white);
    padding: var(--space-8);
    margin-bottom: var(--space-12);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.quick-nav-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-6);
    text-align: center;
}

.quick-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-3);
}

.quick-nav-pill {
    background: var(--gray-50);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-full);
    text-align: center;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.quick-nav-pill:hover {
    background: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.quick-nav-pill a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 650;
    font-size: .95rem;
    display: block;
}

.quick-nav-pill:hover a {
    color: var(--primary);
}

/* Cards & Layout */
.glass-card {
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .3);
    padding: var(--space-10) var(--space-8);
    margin: 0 0 var(--space-8) 0;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(239, 68, 68, .18);
}

.card-header {
    display: flex;
    align-items: start;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-6);
    border-bottom: 2px solid var(--gray-100);
}

.card-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
    line-height: 1.2;
}

.card-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    font-size: .875rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(239, 68, 68, .22);
}

/* Highlight Boxes */
.highlight-box {
    padding: var(--space-6) var(--space-8);
    border-radius: var(--radius-xl);
    margin: var(--space-6) 0;
    border-left: 4px solid;
    transition: all var(--transition-base);
}

.highlight-box:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.highlight-box-warning {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-color: var(--accent-yellow);
    color: #92400e;
}

.highlight-box-info {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-color: var(--accent-blue);
    color: #1e40af;
}

.highlight-box-success {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border-color: var(--accent-green);
    color: #065f46;
}

.highlight-box-error {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border-color: var(--primary);
    color: #991b1b;
}

.highlight-box h4 {
    font-weight: 900;
    margin-bottom: var(--space-3);
    font-size: 1.1rem;
}

/* Features */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    margin: var(--space-8) 0;
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent-purple));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 850;
    color: var(--gray-900);
    margin-bottom: var(--space-3);
}

.feature-description {
    color: var(--gray-600);
    line-height: 1.65;
}

/* Table */
.premium-table-container {
    overflow-x: auto;
    margin: var(--space-8) 0;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.premium-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    overflow: hidden;
}

.premium-table thead {
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
    color: var(--white);
}

.premium-table th {
    padding: var(--space-5) var(--space-6);
    text-align: left;
    font-weight: 850;
    font-size: .9rem;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.premium-table td {
    padding: var(--space-5) var(--space-6);
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
    vertical-align: top;
}

.premium-table tbody tr {
    transition: all var(--transition-base);
}

.premium-table tbody tr:hover {
    background: linear-gradient(90deg, var(--gray-50), var(--white));
    transform: scale(1.01);
}

.table-highlight {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0) !important;
    font-weight: 700;
    color: #065f46;
}

.table-accent {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe) !important;
    font-weight: 700;
    color: #1e40af;
}

/* Timeline */
.timeline-container {
    position: relative;
    margin: var(--space-12) 0;
    padding-left: 4rem;
}

.timeline-line {
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary), var(--accent-purple));
    opacity: .25;
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-10);
}

.timeline-marker {
    position: absolute;
    left: -55px;
    top: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(239, 68, 68, .22);
    transition: all var(--transition-base);
    z-index: 2;
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.08);
}

.timeline-content {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-6) var(--space-8);
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

.timeline-item:hover .timeline-content {
    border-color: var(--primary);
    transform: translateX(10px);
    box-shadow: var(--shadow-xl);
}

.timeline-title {
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: var(--space-3);
}

.timeline-description {
    color: var(--gray-600);
    line-height: 1.7;
}

/* Accordion */
.accordion-container {
    margin: var(--space-8) 0;
}

.accordion-item {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-4);
    overflow: hidden;
    transition: all var(--transition-base);
}

.accordion-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.accordion-header {
    padding: var(--space-6) var(--space-8);
    background: var(--gray-50);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-base);
    user-select: none;
}

.accordion-header:hover {
    background: var(--gray-100);
}

.accordion-item.active .accordion-header {
    background: linear-gradient(135deg, var(--primary-subtle), var(--white));
}

.accordion-title {
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--gray-900);
}

.accordion-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--gray-600);
    transition: all var(--transition-base);
}

.accordion-item.active .accordion-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s var(--transition-smooth), padding .5s var(--transition-smooth);
    padding: 0 var(--space-8);
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
    padding: var(--space-6) var(--space-8);
}

.accordion-text {
    color: var(--gray-700);
    line-height: 1.75;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
    color: var(--white);
    padding: var(--space-16) var(--space-10);
    margin: var(--space-16) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(239, 68, 68, .08) 0%, transparent 70%);
    animation: ctaPulse 4s infinite;
}

@keyframes ctaPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .5;
    }

    50% {
        transform: scale(1.1);
        opacity: .85;
    }
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(1.6rem, 4vw, 2.3rem);
    font-weight: 950;
    margin-bottom: var(--space-4);
}

.cta-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    opacity: .92;
    margin-bottom: var(--space-8);
}

.cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* FAB */
.fab {
    position: fixed;
    bottom: var(--space-8);
    right: var(--space-8);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    box-shadow: var(--shadow-xl);
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 900;
}

.fab:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: var(--shadow-2xl);
}

/* Animation Utils */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all .8s var(--transition-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent-purple));
    z-index: 9999;
    transition: width var(--transition-fast);
    box-shadow: 0 0 10px rgba(239, 68, 68, .35);
}

/* Media Queries */
@media (max-width: 1024px) {
    .modern-hero {
        padding: var(--space-12) var(--space-6);
    }

    .timeline-container {
        padding-left: 3rem;
    }
}

@media (max-width: 768px) {
    .modern-hero {
        padding: var(--space-10) var(--space-5);
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .timeline-container {
        padding-left: 2rem;
    }

    .timeline-marker {
        width: 50px;
        height: 50px;
        left: -40px;
        font-size: 1.1rem;
    }

    .cta-section {
        padding: var(--space-10) var(--space-6);
    }

    .cta-buttons {
        flex-direction: column;
    }

    .fab {
        bottom: var(--space-5);
        right: var(--space-5);
        width: 50px;
        height: 50px;
    }
}

@media print {

    .fab,
    .scroll-progress {
        display: none !important;
    }
}

/* ==========================================
   HOMEPAGE STYLES (dv-* classes)
   ========================================== */

/* Container */
.dv-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Section */
.dv-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 6rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, #fafafa 0%, #f0f4f8 100%);
}

.dv-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.dv-hero-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(239, 68, 68, 0.08) 0%, transparent 70%);
    animation: pulse-slow 8s ease-in-out infinite;
}

.dv-hero-gradient-2 {
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    animation: pulse-slow 10s ease-in-out infinite reverse;
}

@keyframes pulse-slow {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.dv-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .dv-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .dv-hero {
        min-height: auto;
        padding: 4rem 0;
    }
}

.dv-hero-content {
    max-width: 600px;
}

/* Floating Elements */
.dv-float-element {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 100px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    z-index: 10;
    animation: float 6s ease-in-out infinite;
}

.dv-float-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.dv-float-2 {
    top: 35%;
    right: 3%;
    animation-delay: 2s;
}

.dv-float-3 {
    bottom: 25%;
    left: 8%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.dv-float-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.dv-float-icon-red {
    background: #fee2e2;
    color: #dc2626;
}

.dv-float-icon-blue {
    background: #dbeafe;
    color: #2563eb;
}

.dv-float-icon-green {
    background: #d1fae5;
    color: #059669;
}

@media (max-width: 1200px) {
    .dv-float-element {
        display: none;
    }
}

/* Badge */
.dv-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(239, 68, 68, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.dv-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Typography */
.dv-h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
}

.dv-h1-accent {
    background: linear-gradient(135deg, var(--primary), #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dv-h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--gray-900);
    margin: 0 0 1rem 0;
    letter-spacing: -0.01em;
}

.dv-lead {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0 0 2rem 0;
    max-width: 540px;
}

.dv-overline {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

/* CTA Group */
.dv-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Buttons */
.dv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dv-btn-primary {
    background: linear-gradient(135deg, var(--primary), #dc2626);
    color: white;
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.4);
}

.dv-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.5);
    color: white;
}

.dv-btn-outline {
    background: white;
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
}

.dv-btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.dv-btn-icon {
    width: 18px;
    height: 18px;
}

/* Hero Card */
.dv-hero-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dv-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-100);
}

.dv-card-title {
    font-weight: 700;
    color: var(--gray-900);
}

.dv-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #d1fae5;
    color: #059669;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

.dv-status-dot {
    width: 6px;
    height: 6px;
    background: #059669;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Steps List */
.dv-steps-list {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.dv-step-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.dv-step-item:last-child {
    border-bottom: none;
}

.dv-step-num {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), #dc2626);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.dv-step-content h4 {
    margin: 0 0 0.25rem 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-900);
}

.dv-step-content p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* Contact Row */
.dv-contact-row {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
}

.dv-contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gray-50);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.2s;
}

.dv-contact-chip:hover {
    background: var(--gray-100);
    color: var(--gray-800);
}

.dv-contact-chip svg {
    width: 16px;
    height: 16px;
}

/* Stats Section */
.dv-stats-bar {
    background: white;
    padding: 3rem 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.dv-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .dv-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dv-stat-card {
    text-align: center;
}

.dv-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.dv-stat-number span {
    color: var(--primary);
}

.dv-stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* Jobs Section */
.dv-jobs-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

.dv-section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.dv-section-header p {
    color: var(--gray-600);
    margin: 0;
}

.dv-jobs-marquee {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.dv-jobs-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll-left 30s linear infinite;
    width: max-content;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.dv-job-card {
    flex-shrink: 0;
    width: 280px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
}

.dv-job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dv-job-tag {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
}

.dv-job-image {
    height: 120px;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    position: relative;
}

.dv-job-content {
    padding: 1rem;
}

.dv-job-title {
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-900);
}

.dv-job-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* Services Section */
.dv-services {
    padding: 5rem 0;
    background: white;
}

.dv-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .dv-services-grid {
        grid-template-columns: 1fr;
    }
}

.dv-service-card {
    perspective: 1000px;
}

.dv-service-card-inner {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
    height: 100%;
}

.dv-service-card:hover .dv-service-card-inner {
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.1);
    transform: translateY(-8px);
}

.dv-service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.dv-service-card h3 {
    margin: 0 0 0.75rem 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.dv-service-card p {
    margin: 0 0 1rem 0;
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

.dv-service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

.dv-service-link:hover {
    gap: 0.75rem;
}

/* Testimonials */
.dv-testimonials {
    padding: 5rem 0;
    background: var(--gray-50);
}

.dv-testimonials-marquee {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.dv-testimonials-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll-left 40s linear infinite;
    width: max-content;
}

.dv-testimonial-card {
    flex-shrink: 0;
    width: 350px;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-100);
}

.dv-testimonial-quote {
    font-size: 3rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.dv-testimonial-text {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.dv-testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dv-testimonial-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), #f97316);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.dv-testimonial-name {
    font-weight: 700;
    color: var(--gray-900);
    font-size: 0.9rem;
}

.dv-testimonial-role {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* Contact Section */
.dv-contact {
    padding: 5rem 0;
    background: white;
}

.dv-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) {
    .dv-contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.dv-contact-info p {
    color: var(--gray-600);
    margin: 0 0 2rem 0;
}

.dv-contact-channels {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dv-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--gray-50);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s;
}

.dv-contact-item:hover {
    background: var(--gray-100);
    transform: translateX(4px);
}

.dv-contact-label {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.dv-contact-value {
    font-weight: 600;
    color: var(--gray-900);
}

.dv-cta-card {
    background: linear-gradient(135deg, var(--gray-900), #1e293b);
    border-radius: 24px;
    padding: 3rem;
    color: white;
}

.dv-cta-card h3 {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
}

.dv-cta-card p {
    margin: 0 0 1.5rem 0;
    opacity: 0.8;
    line-height: 1.6;
}

/* Reveal Animations */
.dv-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.dv-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.dv-reveal-delay-1 {
    transition-delay: 0.1s;
}

.dv-reveal-delay-2 {
    transition-delay: 0.2s;
}

.dv-reveal-delay-3 {
    transition-delay: 0.3s;
}