/* CSS Variables - Color Palette based on Visor Pro Light Theme & Asetemet */
:root {
    --bg-primary: #F6F8FA; /* Light industrial background */
    --bg-surface: rgba(255, 255, 255, 0.7); /* Glassmorphism base */
    --bg-surface-solid: #FFFFFF;
    
    --accent-primary: #6d344c; /* Burgundy/Granate Asetemet */
    --accent-hover: #522739;
    --accent-secondary: #95ca18; /* Green/Verde Asetemet */
    
    --text-primary: #1F2328;
    --text-secondary: #656D76;
    
    --border-color: rgba(208, 215, 222, 0.5); /* Semi-transparent border for glass */
    --border-solid: #D0D7DE;
    
    --shadow-soft: 0 8px 32px rgba(31, 35, 40, 0.04);
    --shadow-medium: 0 16px 48px rgba(31, 35, 40, 0.08);
    
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Gradients */
    --gradient-brand: linear-gradient(135deg, #6d344c 0%, #95ca18 100%);
    --gradient-burgundy: linear-gradient(135deg, #6d344c 0%, #8b4361 100%);
    --gradient-green: linear-gradient(135deg, #95ca18 0%, #b3e636 100%);
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
}

p {
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: var(--accent-primary);
    transition: all 0.2s ease;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: white;
    box-shadow: 0 4px 14px rgba(9, 105, 218, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(9, 105, 218, 0.4);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--border-solid);
}

.btn-secondary:hover {
    background-color: rgba(0,0,0,0.03);
    border-color: var(--text-secondary);
}

/* Glassmorphism Classes */
.glass-panel {
    background: var(--bg-surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

/* Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: #4B5563; /* Subtle gray for rest state */
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    color: #111827; /* Dark text on hover */
    background-color: rgba(0, 0, 0, 0.04); /* Subtle pill effect */
}

.nav-links a.active {
    color: var(--accent-primary);
    background-color: rgba(109, 52, 76, 0.08); /* Light primary background */
    font-weight: 600;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 180px;
    padding-bottom: 100px;
    text-align: center;
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(9, 105, 218, 0.1) 0%, rgba(246, 248, 250, 0) 70%);
    z-index: -1;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(9, 105, 218, 0.1);
    color: var(--accent-primary);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 56px;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 48px auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
}

/* Mockup Windows */
.mockup-window {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
}

.mockup-header {
    background: rgba(255,255,255,0.5);
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background-color: #FF5F56; }
.dot.yellow { background-color: #FFBD2E; }
.dot.green { background-color: #27C93F; }

.mockup-body {
    background: #FFFFFF;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.placeholder-img {
    background-color: #EAEEF2;
    border: 2px dashed #D0D7DE;
}

.placeholder-text {
    font-weight: 500;
    color: var(--text-secondary);
}

/* Social Proof */
.social-proof {
    padding: 40px 0 80px;
    text-align: center;
}

.social-proof p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 24px;
}

.logos-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    opacity: 0.6;
    filter: grayscale(100%);
}

.logo-item {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

/* Solutions Section */
.solutions-section {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px auto;
}

.section-header h2 {
    font-size: 36px;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.feature-card {
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

/* Reporting Section */
.reporting-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.reporting-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px auto;
}

.reporting-header h2 {
    font-size: 40px;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.reporting-header p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.reporting-bullets {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.reporting-bullet-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-primary);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.reporting-bullet-item span {
    color: var(--accent-secondary);
    font-weight: 700;
}

.reporting-showcase {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.reporting-showcase .mockup-body {
    background: #FAFAFA;
    height: auto;
    overflow: hidden;
}

.reporting-showcase img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Enterprise Contact Section */
.cta-section {
    padding: 100px 0 120px;
    background-color: #F9FAFB;
    border-top: 1px solid var(--border-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.contact-info-card {
    padding: 48px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-card h2 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #111827;
}

.contact-info-card p {
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #4B5563;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-method-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-primary);
    stroke-width: 2;
}

.contact-details h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6B7280;
    margin-bottom: 4px;
}

.contact-details p {
    font-size: 15px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 0;
}

.badge-asetemet-cert {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.badge-asetemet-cert img {
    height: 36px;
}

.badge-asetemet-cert div p {
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-form-card {
    padding: 40px;
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
}

.contact-form-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #111827;
}

.contact-form-card p.form-subtitle {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 28px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #4B5563;
}

.glass-input, .glass-select, .glass-textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    background: #FFFFFF;
    font-size: 14px;
    font-family: var(--font-main);
    color: #111827;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.glass-textarea {
    resize: vertical;
    min-height: 100px;
}

.glass-input:focus, .glass-select:focus, .glass-textarea:focus {
    border-color: var(--accent-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(109, 52, 76, 0.15);
}

.form-privacy-note {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    background-color: #FFFFFF;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand p {
    font-size: 14px;
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--text-primary);
}

/* Animations - Option A: Scroll Fade Up */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }

    .features-grid, .reporting-content {
        grid-template-columns: 1fr;
    }
    
    .hero-title { font-size: 42px; }
    
    .cta-form form {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .desktop-nav { display: none; }
    
    .hero { padding-top: 140px; }
    .hero-title { font-size: 36px; }
    
    .mockup-body { height: 300px; }
    
    .cta-box { padding: 40px 24px; }
    
    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

/* RESPONSIVE DESIGN - MOBILE & TABLET */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
}

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

    .hero-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .hero-buttons { justify-content: center; }
    .hero { padding: 8rem 0 4rem; }
    .demo-section .container { grid-template-columns: 1fr; gap: 3rem; }
    .demo-info { padding-right: 0; text-align: center; }
    .demo-info ul { align-items: center; display: inline-block; text-align: left; }
    .nav-container { padding: 0 1.5rem; }
    
    /* Footer stacking */
    footer .container > div {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
        text-align: center;
    }
    footer ul {
        align-items: center;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    
    .hero { min-height: auto; }
    
    /* Mobile Menu */
    .mobile-menu-btn { display: block; }
    .nav-links { 
        display: none; 
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
        gap: 1.5rem;
        border-top: 1px solid rgba(0,0,0,0.1);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links a {
        font-size: 1.15rem;
        text-align: center;
        padding: 1rem;
    }
    
    /* Buttons */
    .btn { width: 100%; justify-content: center; margin-bottom: 1rem; }
}
