/* ============================================
   LANDING PAGE - MODERN VISUAL DESIGN
   Inspired by: Stripe, Linear, Vercel, Notion
   Mobile-first, Danish Construction Industry
   ============================================ */

/* ============================================
   BASE & RESET
   ============================================ */

.landing-page {
    background: #ffffff;
    scroll-behavior: smooth;
}

/* ============================================
   NAVIGATION - Sticky with Scroll Shadow
   ============================================ */

.landing-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.03);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo-img {
    height: 36px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo-img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: #64748b;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-link:hover::after {
    width: 100%;
}

/* Navigation buttons container */
.nav-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Signup button - Outlined style */
.nav-signup-btn {
    background: transparent;
    color: #2563eb;
    padding: 10px 24px;
    border: 2px solid #2563eb;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 44px;
    display: flex;
    align-items: center;
}

.nav-signup-btn:hover {
    background: #eff6ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.1);
}

/* Login button - Primary filled style */
.nav-cta-btn {
    background: #2563eb;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 44px;
    display: flex;
    align-items: center;
}

.nav-cta-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.2), 0 4px 6px -4px rgba(37, 99, 235, 0.1);
}

/* Mobile responsiveness for nav buttons */
@media (max-width: 480px) {
    .nav-signup-btn,
    .nav-cta-btn {
        padding: 8px 16px;
        font-size: 14px;
        min-height: 40px;
    }

    .nav-buttons {
        gap: 8px;
    }
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

/* ============================================
   HERO SECTION - Gradient Background & Glow
   ============================================ */

.hero-section {
    position: relative;
    padding: 80px 24px 120px;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.hero-bg-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 100px;
    color: #2563eb;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out;
}

.hero-title {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.hero-subtitle {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.hero-cta-primary {
    background: #2563eb;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    min-height: 56px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3), 0 2px 4px -2px rgba(37, 99, 235, 0.2);
}

.hero-cta-primary:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.25), 0 8px 10px -6px rgba(37, 99, 235, 0.15);
}

.hero-cta-primary:active {
    transform: translateY(-1px);
}

.hero-cta-secondary {
    color: #64748b;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    min-height: 56px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-cta-secondary:hover {
    color: #2563eb;
    border-color: rgba(37, 99, 235, 0.2);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.trust-item {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.6s ease-out 0.5s backwards;
}

.hero-image-wrapper {
    position: relative;
}

.hero-phone-img {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
    transition: transform 0.5s ease;
}

.hero-phone-img:hover {
    transform: translateY(-10px) scale(1.02);
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Wave separator */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat;
    background-size: cover;
}

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

@media (min-width: 768px) {
    .hero-section {
        padding: 120px 24px 160px;
    }

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

    .hero-content {
        text-align: left;
    }

    .hero-title {
        font-size: 56px;
    }

    .hero-subtitle {
        font-size: 20px;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-cta-group {
        flex-direction: row;
        justify-content: flex-start;
    }

    .hero-trust {
        justify-content: flex-start;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 64px;
    }
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */

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

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-title-light {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .section-title,
    .section-title-light {
        font-size: 48px;
    }

    .section-subtitle {
        font-size: 20px;
    }
}

/* ============================================
   PROBLEM SECTION - Modern Card Design
   ============================================ */

.problem-section {
    padding: 120px 24px;
    background: #ffffff;
}

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

.problem-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.problem-card:hover {
    border-color: #2563eb;
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
}

.problem-card:hover::before {
    transform: scaleX(1);
}

.problem-card.highlighted {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-color: rgba(37, 99, 235, 0.3);
}

.problem-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.problem-card:hover .problem-icon {
    transform: scale(1.1) rotate(5deg);
}

.problem-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.problem-text {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .problem-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

/* ============================================
   SOLUTION SECTION - Asymmetric Layout
   ============================================ */

.solution-section {
    padding: 120px 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.solution-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
}

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

.step-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.step-visual:hover {
    transform: scale(1.03);
}

.step-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.step-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
}

.step-content {
    padding: 24px;
}

.step-number {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #ffffff;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
}

.step-title {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.step-text {
    font-size: 17px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-features li {
    color: #64748b;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-features li::before {
    content: '✓';
    color: #059669;
    font-weight: 700;
    font-size: 18px;
}

@media (min-width: 768px) {
    .solution-step.step-left {
        grid-template-columns: 1fr 1fr;
    }

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

    .solution-step.step-right .step-visual {
        order: 2;
    }

    .solution-step.step-right .step-content {
        order: 1;
    }
}

/* ============================================
   FEATURES SECTION - Modern Grid
   ============================================ */

.features-section {
    padding: 120px 24px;
    background: #ffffff;
    position: relative;
}

.features-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20px 20px, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    border-color: transparent;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.15) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #ffffff;
    transform: scale(1.1);
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.feature-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   TRUST SECTION - Gradient Background
   ============================================ */

.trust-section {
    padding: 120px 24px;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    position: relative;
    overflow: hidden;
}

.trust-bg-gradient {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.trust-section .section-container {
    position: relative;
    z-index: 1;
}

.trust-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 64px;
}

.trust-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.trust-stat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 64px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.testimonial-quote {
    color: #2563eb;
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 17px;
    color: #0f172a;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(37, 99, 235, 0.2);
}

.author-name {
    font-weight: 700;
    color: #0f172a;
    font-size: 16px;
}

.author-location {
    font-size: 14px;
    color: #64748b;
}

.compliance-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.compliance-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.compliance-badge:hover {
    background: rgba(255, 255, 255, 0.2);
}

.badge-icon {
    width: 32px;
    height: 32px;
    background: #059669;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-text {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
}

@media (min-width: 768px) {
    .trust-stats {
        grid-template-columns: repeat(3, 1fr);
    }

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

/* ============================================
   FAQ SECTION - Accordion Cards
   ============================================ */

.faq-section {
    padding: 120px 24px;
    background: #f8fafc;
}

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

.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: #2563eb;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.03);
    transform: translateY(-4px);
}

.faq-question {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.faq-answer {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

/* ============================================
   COMPARISON TABLE - Modern Design
   ============================================ */

.comparison-section {
    padding: 120px 24px;
    background: #ffffff;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
}

.comparison-table thead th {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    padding: 20px 16px;
    text-align: center;
    border-bottom: none;
}

.comparison-table thead th:first-child {
    text-align: left;
    background: #1e40af;
}

.comparison-table thead th.highlight-col {
    background: #059669;
    position: relative;
}

.comparison-table thead th.highlight-col::after {
    content: '⭐ Bedst';
    position: absolute;
    top: -8px;
    right: 8px;
    background: #fbbf24;
    color: #0f172a;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e2e8f0;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody tr:nth-child(even) {
    background: #f8fafc;
}

.comparison-table tbody td {
    padding: 20px 16px;
    text-align: center;
    font-size: 15px;
    color: #64748b;
}

.comparison-table tbody td.feature-name {
    text-align: left;
    font-weight: 600;
    color: #0f172a;
}

.comparison-table tbody td.highlight-col {
    background: rgba(5, 150, 105, 0.05);
    color: #059669;
    font-weight: 700;
}

.check-icon {
    color: #059669;
    font-size: 20px;
    font-weight: 700;
}

.cross-icon {
    color: #ef4444;
    font-size: 20px;
    font-weight: 700;
}

@media (max-width: 767px) {
    .comparison-table {
        font-size: 14px;
    }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 12px 8px;
    }
}

/* ============================================
   FINAL CTA SECTION - Urgency Box
   ============================================ */

.final-cta-section {
    padding: 120px 24px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.final-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-cta-title {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.final-cta-text {
    font-size: 20px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 32px;
}

.urgency-box {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.15) 100%);
    border: 2px solid #fbbf24;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.urgency-box:hover {
    transform: scale(1.02);
}

.urgency-box svg {
    flex-shrink: 0;
    color: #d97706;
    width: 32px;
    height: 32px;
}

.urgency-box p {
    color: #78350f;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

.final-cta-btn {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #ffffff;
    padding: 20px 48px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    min-height: 64px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3), 0 4px 6px -4px rgba(37, 99, 235, 0.2);
    margin-bottom: 16px;
}

.final-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.4);
}

.final-cta-btn:active {
    transform: translateY(-2px);
}

.final-cta-note {
    color: #64748b;
    font-size: 14px;
}

@media (min-width: 768px) {
    .final-cta-title {
        font-size: 52px;
    }
}

/* ============================================
   FOOTER - Modern Multi-Column
   ============================================ */

.landing-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    padding: 64px 24px 32px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 32px;
}

.footer-brand {
    text-align: center;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin: 0;
}

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

.footer-column {
    text-align: center;
}

.footer-heading {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
}

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.footer-made-in {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: 2fr 3fr;
        gap: 64px;
    }

    .footer-brand {
        text-align: left;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-column {
        text-align: left;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ============================================
   UTILITY CLASSES & RESPONSIVE
   ============================================ */

@media (max-width: 767px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title,
    .section-title-light {
        font-size: 32px;
    }

    .final-cta-title {
        font-size: 32px;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .landing-nav,
    .hero-cta-group,
    .final-cta-section,
    .landing-footer {
        display: none;
    }
}
