/* ============================================
   LANDING PAGE CSS - SRC Software
   ============================================ */

:root {
    --primary-dark: #1e3a8a;
    --primary: #2563eb;
    --secondary: #0d9488;
    --secondary-light: #14b8a6;
    --dark-bg: #0f172a;
}

/* Reset */
.landing-nav,
.landing-nav *,
.landing-footer,
.landing-footer * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
}

/* ============================================
   NAVBAR
   ============================================ */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    background: transparent;
}

    .landing-nav.scrolled {
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(20px);
        padding: 0.75rem 2rem;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    }

.landing-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Brand */
.landing-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.landing-brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb, #0d9488);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.landing-brand-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: white;
}

    .landing-brand-text span {
        color: #34d399;
        font-weight: 500;
    }

/* Nav Links */
.landing-nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

    .landing-nav-links a {
        color: rgba(255, 255, 255, 0.85);
        text-decoration: none;
        font-size: 0.875rem;
        font-weight: 500;
        transition: color 0.2s ease;
        position: relative;
    }

        .landing-nav-links a:hover,
        .landing-nav-links a.active {
            color: white;
        }

            .landing-nav-links a.active::after {
                content: '';
                position: absolute;
                bottom: -4px;
                left: 0;
                width: 100%;
                height: 2px;
                background: #34d399;
                border-radius: 2px;
            }

/* Nav Actions */
.landing-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Buttons */
.btn-landing-primary,
.btn-landing-outline {
    padding: 0.5rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    cursor: pointer;
    border: none;
}

.btn-landing-primary {
    background: linear-gradient(135deg, #2563eb, #1e3a8a);
    color: white;
}

    .btn-landing-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
        color: white;
    }

.btn-landing-outline {
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: white;
    background: transparent;
}

    .btn-landing-outline:hover {
        background: white;
        color: #1e3a8a;
        border-color: white;
    }

.w-100 {
    width: 100%;
}

/* Mobile Button */
.landing-mobile-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.landing-mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #0f172a;
    z-index: 1100;
    padding: 1.5rem;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .landing-mobile-menu.open {
        right: 0;
    }

.landing-mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
}

.landing-mobile-close {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-mobile-links {
    list-style: none;
    margin-bottom: 2rem;
}

    .landing-mobile-links li {
        margin-bottom: 0.5rem;
    }

    .landing-mobile-links a {
        display: block;
        padding: 0.75rem 1rem;
        color: rgba(255,255,255,0.8);
        text-decoration: none;
        font-size: 1rem;
        font-weight: 500;
        border-radius: 0.75rem;
        transition: all 0.2s ease;
    }

        .landing-mobile-links a:hover {
            background: rgba(255,255,255,0.1);
            color: white;
        }

.landing-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
}

.landing-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .landing-mobile-overlay.show {
        opacity: 1;
        visibility: visible;
    }

/* ============================================
   HERO SECTION (Home)
   ============================================ */
.landing-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 40%, #2563eb 70%, #0d9488 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 2rem 4rem;
}

    .landing-hero::before {
        content: '';
        position: absolute;
        width: 800px;
        height: 800px;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 50%;
        top: -300px;
        right: -200px;
        animation: floatShape 20s ease-in-out infinite;
        pointer-events: none;
    }

    .landing-hero::after {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 50%;
        bottom: -200px;
        left: -100px;
        animation: floatShape 25s ease-in-out infinite reverse;
        pointer-events: none;
    }

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(40px, -40px) rotate(120deg);
    }

    66% {
        transform: translate(-30px, 30px) rotate(240deg);
    }
}

.landing-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.landing-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.landing-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

    .landing-hero-content h1 span {
        background: linear-gradient(135deg, #34d399, #14b8a6);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.landing-hero-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.landing-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-hero {
    padding: 0.875rem 2rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hero-primary {
    background: white;
    color: #1e3a8a;
}

    .btn-hero-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        color: #1e3a8a;
    }

.btn-hero-outline {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
}

    .btn-hero-outline:hover {
        background: white;
        color: #1e3a8a;
        border-color: white;
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

.landing-hero-stats {
    display: flex;
    gap: 2rem;
}

.landing-hero-stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #34d399;
    margin-bottom: 0.25rem;
}

.landing-hero-stat p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Hero Dashboard Mockup */
.landing-hero-visual {
    display: flex;
    justify-content: center;
}

.landing-dashboard-mock {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
    max-width: 500px;
}

.landing-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

    .landing-dashboard-header span {
        color: white;
        font-weight: 600;
        font-size: 0.875rem;
    }

    .landing-dashboard-header i {
        color: #34d399;
    }

.landing-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 120px;
    margin-bottom: 1rem;
}

.landing-chart-bar {
    flex: 1;
    background: linear-gradient(180deg, #34d399, #0d9488);
    border-radius: 0.5rem 0.5rem 0 0;
    animation: barGrow 1s ease-out forwards;
    transform-origin: bottom;
}

    .landing-chart-bar:nth-child(1) {
        height: 60%;
        animation-delay: 0.1s;
    }

    .landing-chart-bar:nth-child(2) {
        height: 85%;
        animation-delay: 0.2s;
    }

    .landing-chart-bar:nth-child(3) {
        height: 45%;
        animation-delay: 0.3s;
    }

    .landing-chart-bar:nth-child(4) {
        height: 95%;
        animation-delay: 0.4s;
    }

    .landing-chart-bar:nth-child(5) {
        height: 70%;
        animation-delay: 0.5s;
    }

    .landing-chart-bar:nth-child(6) {
        height: 55%;
        animation-delay: 0.6s;
    }

    .landing-chart-bar:nth-child(7) {
        height: 80%;
        animation-delay: 0.7s;
    }

@keyframes barGrow {
    from {
        transform: scaleY(0);
        opacity: 0;
    }

    to {
        transform: scaleY(1);
        opacity: 1;
    }
}

.landing-dashboard-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.landing-dash-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 0.75rem;
}

    .landing-dash-card small {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.6875rem;
    }

    .landing-dash-card h4 {
        color: white;
        font-size: 1.25rem;
        margin: 0.25rem 0 0;
        font-weight: 700;
    }

/* ============================================
   SECTION STYLES (Shared)
   ============================================ */
.landing-section {
    padding: 6rem 2rem;
}

.landing-section-gray {
    background: #f8fafc;
}

.landing-section-white {
    background: white;
}

.landing-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.landing-section-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    border-radius: 2rem;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.landing-section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
}

.landing-section-header p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   FEATURES GRID
   ============================================ */
.landing-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.landing-feature-card {
    background: white;
    border-radius: 1.25rem;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

    .landing-feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        border-color: #0d9488;
    }

.landing-feature-icon {
    width: 55px;
    height: 55px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.icon-blue {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}

.icon-green {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.icon-purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.icon-orange {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.icon-teal {
    background: rgba(13, 148, 136, 0.1);
    color: #0d9488;
}

.icon-red {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
}

.landing-feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.landing-feature-card p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   PRICING GRID
   ============================================ */
.landing-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.landing-pricing-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

    .landing-pricing-card.featured {
        border-color: #2563eb;
        box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
        transform: scale(1.05);
    }

    .landing-pricing-card:hover {
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    }

.landing-pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2563eb, #1e3a8a);
    color: white;
    padding: 0.375rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.landing-pricing-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.landing-pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

    .landing-pricing-price span {
        font-size: 1rem;
        font-weight: 500;
        color: #64748b;
    }

.landing-pricing-desc {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.landing-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
}

    .landing-pricing-features li {
        padding: 0.5rem 0;
        font-size: 0.875rem;
        color: #475569;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

        .landing-pricing-features li i {
            color: #10b981;
            font-size: 0.875rem;
        }

.btn-pricing {
    display: block;
    padding: 0.75rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-pricing-primary {
    background: linear-gradient(135deg, #2563eb, #1e3a8a);
    color: white;
}

    .btn-pricing-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
        color: white;
    }

.btn-pricing-outline {
    border: 2px solid #e2e8f0;
    color: #0f172a;
}

    .btn-pricing-outline:hover {
        border-color: #2563eb;
        color: #2563eb;
    }

/* ============================================
   ABOUT PAGE
   ============================================ */
.landing-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.landing-about-image {
    background: linear-gradient(135deg, #2563eb, #0d9488);
    border-radius: 1.5rem;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

    .landing-about-image i {
        font-size: 8rem;
        color: rgba(255, 255, 255, 0.3);
    }

.landing-about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
}

.landing-about-content p {
    font-size: 1.0625rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.landing-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.landing-value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

    .landing-value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    }

    .landing-value-card i {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: #2563eb;
    }

    .landing-value-card h4 {
        font-size: 1rem;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 0.5rem;
    }

    .landing-value-card p {
        font-size: 0.8125rem;
        color: #64748b;
        margin: 0;
    }

/* ============================================
   CONTACT PAGE
   ============================================ */
.landing-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.landing-contact-info h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
}

.landing-contact-info > p {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.landing-contact-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

    .landing-contact-detail i {
        width: 40px;
        height: 40px;
        background: rgba(37, 99, 235, 0.1);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #2563eb;
        flex-shrink: 0;
    }

    .landing-contact-detail h5 {
        font-size: 0.9375rem;
        font-weight: 600;
        color: #0f172a;
        margin-bottom: 0.125rem;
    }

    .landing-contact-detail p {
        font-size: 0.875rem;
        color: #64748b;
        margin: 0;
    }

.landing-contact-form {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

    .landing-contact-form h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 1.5rem;
    }

    .landing-contact-form .form-group {
        margin-bottom: 1.25rem;
    }

    .landing-contact-form label {
        display: block;
        font-size: 0.8125rem;
        font-weight: 600;
        color: #334155;
        margin-bottom: 0.375rem;
    }

    .landing-contact-form input,
    .landing-contact-form textarea {
        width: 100%;
        padding: 0.75rem 1rem;
        border: 1.5px solid #e2e8f0;
        border-radius: 0.75rem;
        font-size: 0.9375rem;
        font-family: inherit;
        transition: all 0.2s ease;
    }

        .landing-contact-form input:focus,
        .landing-contact-form textarea:focus {
            outline: none;
            border-color: #0d9488;
            box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
        }

    .landing-contact-form .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

/* ============================================
   CTA SECTION
   ============================================ */
.landing-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    text-align: center;
}

    .landing-cta h2 {
        font-size: 2.5rem;
        font-weight: 800;
        color: white;
        margin-bottom: 1rem;
    }

    .landing-cta p {
        font-size: 1.125rem;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 2rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

/* ============================================
   PAGE HEADER (Internal Pages)
   ============================================ */
.landing-page-header {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    padding: 8rem 2rem 4rem;
    text-align: center;
    color: white;
}

    .landing-page-header h1 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 1rem;
    }

    .landing-page-header p {
        font-size: 1.125rem;
        color: rgba(255, 255, 255, 0.8);
        max-width: 600px;
        margin: 0 auto;
    }

/* ============================================
   FOOTER
   ============================================ */
.landing-footer {
    background: #0f172a;
    padding: 4rem 2rem 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.landing-footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.landing-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.landing-footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

    .landing-footer-logo i {
        font-size: 1.5rem;
        color: #34d399;
    }

    .landing-footer-logo span {
        font-size: 1.25rem;
        font-weight: 700;
        color: white;
    }

.landing-footer-brand p {
    font-size: 0.875rem;
    line-height: 1.6;
}

.landing-footer-col h4 {
    color: white;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.landing-footer-col ul {
    list-style: none;
}

    .landing-footer-col ul li {
        margin-bottom: 0.75rem;
    }

        .landing-footer-col ul li a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.2s ease;
        }

            .landing-footer-col ul li a:hover {
                color: white;
            }

.landing-footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
}

    .landing-footer-bottom p {
        margin: 0;
    }

.landing-footer-social {
    display: flex;
    gap: 0.75rem;
}

    .landing-footer-social a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: all 0.2s ease;
    }

        .landing-footer-social a:hover {
            background: #2563eb;
            color: white;
        }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .landing-hero-grid,
    .landing-about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .landing-hero-content h1 {
        font-size: 2.5rem;
    }

    .landing-hero-stats {
        justify-content: center;
    }

    .landing-hero-buttons {
        justify-content: center;
    }

    .landing-hero-visual {
        display: none;
    }

    .landing-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .landing-pricing-card.featured {
        transform: scale(1);
    }

    .landing-contact-grid {
        grid-template-columns: 1fr;
    }

    .landing-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .landing-nav-links {
        display: none;
    }

    .landing-mobile-btn {
        display: block;
    }

    .landing-hero-content h1 {
        font-size: 2rem;
    }

    .landing-features-grid {
        grid-template-columns: 1fr;
    }

    .landing-section-header h2 {
        font-size: 1.75rem;
    }

    .landing-hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .landing-values-grid {
        grid-template-columns: 1fr;
    }

    .landing-contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .landing-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .landing-footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .landing-page-header h1 {
        font-size: 2rem;
    }

    .landing-about-content h2 {
        font-size: 1.75rem;
    }
}
