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


/* * ==========================================
         * ROOT VARIABLES (LOCKED - NO CHANGES)
         * ========================================== */

:root {
    /* Colors */
    --satya-blue: #0047AB;
    --satya-blue-dark: #002A66;
    --satya-gold: #C5A059;
    /* Backgrounds */
    /* --bg-body: #FFFFFF; */
    --bg-body: #eef1f4;
    --bg-glass: rgba(255, 255, 255, 0.95);
    /* Text */
    --text-main: #0B0F19;
    --text-grey: #4B5563;
    /* Dimensions */
    --nav-height: 95px;
    --grey: #525252;
}


/* * ==========================================
         * GLOBAL RESET & TYPOGRAPHY
         * ========================================== */

html {
    background-color: #ffffff;
    /* FORCE WHITE BASE */
    height: 100%;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
    margin: 0;
}

@media(max-width:750px) {

    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }
}


/* ... existing styles ... */


/* * ==========================================
         * SCROLL FIX (Essential)
         * ========================================== */

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
    /* Disable native smooth scroll to fix jerkiness */
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}


/* Added Global Heading Styles */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-grey);
    font-size: 1rem;
    line-height: 1.7;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}


/* HERO SECTION */
#arch-hero-simple {
    position: relative;
    height: 60vh;
    /* Fixed 60vh height */
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    /* Vertically Center */
    background-color: #000;
}

/* Fixed Background Image */
.simple-bg-fixed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/backgrounds/simple-bg.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
    filter: brightness(0.7);
}

/* Overlay */
.simple-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

/* Container for Alignment */
.simple-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
    /* Left Align */
}

.simple-content {
    max-width: 700px;
    color: white;
}

.simple-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(28px, 3vw, 50px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    margin-top: 20px;
    color: white;
}


@media(max-width:550px) {
    .simple-title {
        font-size: clamp(21px, 2vw, 30px);
        margin-top: 40px;
    }
}

.simple-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
    border-left: 3px solid var(--satya-gold);
    padding-left: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    #arch-hero-simple {
        height: 50vh;
    }

    .simple-bg-fixed {
        background-attachment: scroll;
    }

    /* Mobile fix */
    .simple-container {
        padding: 0 20px;
    }

    .simple-desc {
        font-size: 16px;
    }
}





#product-downloads {
    padding: 50px 0;
    background-color: #FFFFFF;
    /* Clean White BG */
    border: 1px solid #eee;
    /* Box look like screenshot */
    margin: 50px auto;
    max-width: 1400px;
    /* Constrain width like screenshot box */
    border-radius: 4px;
}

.container {
    padding: 0 40px;
}

.download-header {
    text-align: center;
    margin-bottom: 50px;
}

.download-title {
    font-family: 'Syne', sans-serif;
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-main);
    margin-bottom: 10px;
}

.download-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    color: #666;
}

/* GRID LAYOUT */
.download-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 Columns like screenshot */
    gap: 20px;
    /* Space between buttons */
}

/* BUTTON STYLE (Exact Match) */
.download-btn {
    background-color: var(--satya-blue-dark);
    /* Dark Blue */
    color: white;
    padding: 15px 20px;
    border-radius: 4px;
    /* Sharp/Slight round corners */
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.download-btn:hover {
    background-color: var(--satya-blue);
    /* Lighter Blue on Hover */
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 71, 171, 0.2);
}

.btn-text {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-icon i {
    font-size: 16px;
    color: white;
    /* White Icon */
    transition: 0.3s;
}

.download-btn:hover .btn-icon i {
    transform: translateY(2px);
    /* Small bounce on hover */
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .download-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .download-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 550px) {
    .download-grid {
        grid-template-columns: 1fr;
    }

    /* Stack on mobile */
    #product-downloads {
        padding: 60px 0;
        border: none;
    }


    .download-title {
        font-size: 28px;
    }

}