:root {
    --bg-dark: #050505;
    --bg-light: #F6F9FC;
    --bg-teal: #0B1C22;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --brand-red: #ff3b30;
    --brand-orange: #F15A24;
    --font-main: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --glass-bg: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(255, 255, 255, 0.15);
}

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

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

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-main);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* --- GLOBAL IMAGE CONSTRAINTS --- */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- TYPOGRAPHY --- */
h1 {
    font-size: clamp(2.6rem, 6vw + 1rem, 5.5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -3px;
    text-transform: uppercase;
    margin-bottom: 30px;
}
h2 {
    font-size: clamp(2rem, 4vw + 1rem, 4rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1;
}
p { font-size: 1.1rem; line-height: 1.6; color: #aaa; }
a { text-decoration: none; transition: 0.3s; }

/* Italicized Text Styling */
em {
    font-style: italic;
    color: #fff;
    font-weight: 500;
}

/* TWO-TONE TEXT */
.text-white { color: white; }
.text-grey { color: #666; }
.text-grey-dark { color: #555; }

/* Responsive heading sizing overrides */
.hero .metallic-heading,
.hero h1.metallic-heading {
    font-size: clamp(2.6rem, 6vw + 1.2rem, 5.5rem) !important;
    text-wrap: balance;
}

.featured-content .featured-heading {
    font-size: clamp(2.4rem, 5vw + 1.4rem, 5rem) !important;
    text-wrap: balance;
}

.section-video .discover-heading {
    font-size: clamp(2.2rem, 5vw + 1rem, 4.2rem) !important;
    text-wrap: balance;
}

.section-light .light-heading {
    font-size: clamp(2rem, 4vw + 1rem, 3.6rem) !important;
    text-wrap: balance;
}

.section-light .why-choose-heading {
    font-size: clamp(2.2rem, 5vw + 1.2rem, 4.5rem) !important;
    white-space: normal !important;
    text-wrap: balance;
}

.section-get-started .metallic-heading {
    font-size: clamp(2.2rem, 5vw + 1.2rem, 4.2rem) !important;
    text-wrap: balance;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 16px 36px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 6px;
    cursor: pointer;
    min-height: 44px; /* Minimum touch target */
    min-width: 44px;
    text-align: center;
}
.btn-primary {
    background: var(--brand-red);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 59, 48, 0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(255, 59, 48, 0.5); }

.btn-outline-black {
    background: transparent;
    color: #000;
    border: 2px solid #000;
    padding: 12px 30px;
    font-weight: 800;
}
.btn-outline-black:hover { background: black; color: white; }

/* --- HEADER --- */
header {
    position: fixed; width: 100%; top: 0; z-index: 1000; padding: 26px 0;
    background: #050505;
    backdrop-filter: none;
    border-bottom: none;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    width: 100%;
}

/* LOGO & NAV BUTTON */
.logo {
    font-weight: 900;
    font-size: 1.9rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 0px;
}
.logo-icon { color: white; font-size: 2.1rem; }

.logo-icon-img {
    width: 85px;
    height: 75px;
    vertical-align: middle;
    margin-right: -10px;
    max-width: none; /* Override global img rule */
    flex-shrink: 0;
}

.logo-footer-img {
    width: 60px;
    height: 60px;
    vertical-align: middle;
    margin-right: -10px;
    margin-bottom: 5px;
    max-width: none; /* Override global img rule */
    flex-shrink: 0;
}

header .btn-primary {
    padding: 20px 45px;
    font-size: 1rem;
}

/* --- PILL STYLES --- */
.pill-dark {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
}

.pill-light {
    background: #E6F4FA; /* Light Blue Background Highlight */
    color: #0B1C22;
    padding: 12px 28px; /* Increased padding */
    text-transform: uppercase;
    font-size: 1rem; /* Increased font size */
    font-weight: 600;
    font-family: monospace; /* Adds the "Code/Tech" look from the goal image */
    letter-spacing: 1px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 30px;
}

/* --- MERGED HERO SECTION --- */
.hero {
    /* Large padding to accommodate both sections */
    padding-top: 180px;
    padding-bottom: 140px; 
    text-align: center;
    position: relative;
    background-color: var(--bg-dark);
    
    /* ONE UNIFIED BACKGROUND FOR SEAMLESS BLENDING */
    background-image: 
        /* 1. Top Left Light */
        radial-gradient(circle at 15% 20%, rgba(79, 172, 254, 0.08) 0%, transparent 30%),
        
        /* 2. Top Right Light */
        radial-gradient(circle at 85% 20%, rgba(79, 172, 254, 0.08) 0%, transparent 20%),
        
        /* 3. Middle Wash (Behind Dashboard) */
        radial-gradient(circle at 50% 40%, rgba(79, 172, 254, 0.05) 0%, transparent 10%),
        
        /* 4. Bottom Right Wash (Backlighting the Logos) - This replaces the old separate gradient */
        radial-gradient(ellipse at 80% 90%, rgba(79, 172, 254, 0.15) 0%, transparent 30%);
}

/* Ensure the hero text styles remain consistent */
.hero p { 
    font-size: 1.25rem; 
    max-width: 820px; 
    margin: 0 auto 30px auto; 
    color: #bbb; 
}

.hero-visual-wrapper {
    position: relative; max-width: 1000px; margin: 60px auto 0; height: 500px;
}
.dashboard-preview {
    width: 100%; height: 100%;
    background: #0f0f0f;
    border: 1px solid #222;
    border-radius: 24px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 -30px 100px rgba(0,0,0,0.9), inset 0 0 50px rgba(0,0,0,0.5);
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.placeholder-text { color: #333; font-weight: 600; letter-spacing: 1px; }

.dashboard-graph-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

/* GLASS CARDS */
.floating-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    padding: 12px;
    border-radius: 16px;
    display: flex; align-items: center; gap: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    z-index: 10;
    min-width: 180px;
}
.float-left-center { top: 50%; transform: translateY(-50%); left: -40px; }
.float-top-right { top: -30px; right: -40px; }
.float-bottom-right { bottom: -30px; right: 50px; }
.footer-float-left { top: -40px; left: 10%; }
.footer-float-right { top: -40px; right: 10%; }

.icon-box {
    width: 45px; height: 45px;
    background: #111;
    border: 1px solid #333;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: inset 0 0 10px rgba(255,255,255,0.05);
}
.glass-text { text-align: left; font-size: 0.8rem; line-height: 1.4; color: #ddd; }
.glass-text strong { color: white; font-size: 0.9rem; }

.no-wrap { white-space: nowrap; }

.section-label {
    text-transform: uppercase; font-size: 0.75rem; letter-spacing: 3px; color: #555; margin-bottom: 20px;
}

.featured-heading {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.6rem, 6vw + 1rem, 6rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.featured-heading .text-grey-dark {
    /* Changed from #555 to a transparent white.
       This creates that "dim," subtle metallic gray look. */
    color: rgba(255, 255, 255, 0.4);
}
.featured-heading .text-white { color: #ffffff; }

.featured-subtext {
    color: #e0e0e0;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 180px;
    letter-spacing: 0.5px;
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 90px;
    flex-wrap: wrap;
    padding-top: 25px;
}
.logo-item {
    font-size: 2.6rem;
    line-height: 1.1;
    color: #fff;
    opacity: 1;
}

/* Custom Logo Fonts */
.font-script { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 400; font-size: 2.2rem; }
.font-serif { font-family: 'Playfair Display', serif; font-weight: 400; font-size: 2.6rem; letter-spacing: 1px; }
.font-sans-wide { font-family: 'Inter', sans-serif; font-weight: 300; letter-spacing: 4px; font-size: 2.4rem; }
.font-serif-bold { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 2.4rem; letter-spacing: 2px; }
.font-tech { font-family: monospace; font-weight: 600; font-size: 2.1rem; letter-spacing: 1px; text-transform: uppercase; }

/* --- VIDEO SECTION --- */
.section-video {
    background-color: #ffffff;
    padding: 120px 0 140px 0;
    position: relative;
    background-image: none;
    overflow-x: hidden;
}

.discover-heading {
    font-size: clamp(2.2rem, 4vw + 1.4rem, 4.5rem);
    font-weight: 800;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin: 0;
}

.discover-heading.text-black { color: #000000; }
.discover-heading.text-silver {
    color: #b0b0b0;
    margin-bottom: 60px;
    white-space: nowrap;
}

.video-wrapper { display: flex; justify-content: center; margin-bottom: 60px; }
.video-placeholder {
    width: 900px; height: 500px;
    background: #000; border-radius: 20px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}
.play-icon {
    font-size: 2rem; color: white; width: 80px; height: 80px;
    background: var(--brand-red); border-radius: 20px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(255, 59, 48, 0.4);
}

.video-bottom-btn { margin-top: 50px; }
.video-bottom-btn .btn { padding: 20px 50px; font-size: 1rem; }

/* --- LIGHT THEME --- */
.section-light { background-color: var(--bg-light); color: var(--text-dark); padding: 0px 0 100px 0; position: relative; }
.light-heading { color: black; margin: 25px 0; }
.light-subtext { color: #555; max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* BENTO GRID */
.bento-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-top: 70px; }
.bento-card {
    background-color: #000000; color: white; border-radius: 24px;
    overflow: hidden; display: flex; flex-direction: column; justify-content: space-between;
    transition: transform 0.3s ease;
    border: 1px solid #222;
}
.bento-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

.bento-image {
    height: 280px; background: #111; color: #555;
    display: flex; align-items: center; justify-content: center;
    border-radius: 24px; position: relative; margin: 6px;
    background-size: cover; background-position: center;
}
.img-placeholder-text { opacity: 0.3; font-weight: 600; }

.mini-icon-overlay {
    position: absolute; top: 20px; left: 20px;
    background: rgba(0,0,0,0.7); backdrop-filter: blur(10px);
    width: 45px; height: 45px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.2); color: white; font-size: 1.1rem;
}

.bento-content { padding: 35px 30px; text-align: left; }
.bento-content h3 { font-size: 1.6rem; color: white; margin-bottom: 12px; }
.bento-content p { color: #999; font-size: 1rem; line-height: 1.6; }

/* WHITE CARDS */
.columns-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; margin-top: 60px; }

.white-card {
    background: #F6F9FC; /* Very light blue/white background */
    padding: 50px 40px; /* Increased padding */
    border-radius: 20px;
    box-shadow: none; /* Removed shadow to match flat look of goal */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: 0.3s;
    /* This adds the light blue border from the goal image */
    border: 2px solid #DCEBF5;
    /* This ensures all cards are tall and uniform */
    min-height: 420px;
}

.white-card:hover {
    border-color: var(--brand-red);
    transform: translateY(-5px);
}

.white-card p {
    color: #1a1a1a;
    font-size: 1.6rem; /* Much larger text */
    line-height: 1.4;
    font-weight: 500;
    margin-top: 20px;
}

.number-box {
    width: 65px; /* Increased from 50px */
    height: 65px; /* Increased from 50px */
    background: var(--brand-red);
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 25px;
    font-size: 1.5rem; /* Larger number font */
    box-shadow: 0 10px 20px rgba(255, 59, 48, 0.25);
}

/* --- NEW: Specific Huge Heading for this section --- */
.why-choose-heading {
    font-size: clamp(2.4rem, 5vw + 1rem, 5rem); /* Massive size */
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
    color: #000;
    margin-top: 15px;
    margin-bottom: 25px;
}

/* --- FOOTER --- */
.section-footer { background: var(--bg-dark); padding: 120px 0 80px 0; position: relative; border-top: 1px solid #222; }
.footer-heading { margin-bottom: 40px; }

.form-container { max-width: 700px; width: 100%; margin: 70px auto 0; text-align: left; }

.input-group { position: relative; margin-bottom: 50px; }
.input-group input, .input-group textarea {
    width: 100%; background: transparent; border: none; border-bottom: 1px solid #444;
    padding: 15px 0; color: white; font-size: 1.2rem; font-family: inherit;
    transition: 0.3s;
}
.input-group input:focus, .input-group textarea:focus { outline: none; border-bottom: 1px solid white; }
.input-group label {
    position: absolute; top: -25px; left: 0;
    font-size: 0.85rem; color: #888; font-weight: 500;
}

.checkbox-group { display: flex; gap: 15px; margin-bottom: 50px; align-items: flex-start;}
.checkbox-group input { margin-top: 4px; transform: scale(1.2); }
.checkbox-group label { font-size: 0.8rem; color: #777; line-height: 1.5; }
.btn-block { width: 100%; padding: 20px; font-size: 1rem; }

.contact-info { margin-top: 100px; text-align: center; color: #777; font-size: 0.95rem; line-height: 1.8; }

/* Utilities */
.container { max-width: 1200px; margin: 0 auto; padding: 0 25px; }
.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.text-center { text-align: center; }
.mb-large { margin-bottom: 80px; }

/* =========================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ========================================= */

/* Tablet/Desktop Adjustments */
@media (max-width: 1200px) {
    .container { padding: 0 40px; }
    .discover-heading { font-size: 3.5rem; }
    .video-placeholder { width: 100%; height: 400px; }
    .bento-grid { gap: 20px; }
}

/* Mobile Zoom-Out & Visible Scatter Fix */
@media (max-width: 1024px) {
    .section-get-started {
        position: relative;
        height: 100vh;      /* Full viewport height */
        min-height: 600px;  /* Minimum height to prevent squishing */
        overflow: hidden;   /* Cleanly cut off edges */
        padding: 0;
        display: block;
    }

    .scatter-container {
        width: 100%;
        height: 100%;
        position: relative;
    }

    /* 1. Center the Text & Bring to Front */
    .center-cta {
        position: absolute;
        top: 10%;
        left: 50%;
        transform: translate(-50%, -50%); /* Dead center */
        width: 100%;
        padding: 0 15px;
        z-index: 50; /* Highest priority - Text is KING */
    }

    .metallic-heading {
        font-size: 2.8rem;
        line-height: 1;
        margin-bottom: 20px;
    }

    /* 2. Scale items down to 50% size */
    .scatter-item {
        position: absolute !important;
        transform: scale(0.5) !important; /* Make them half size */
        z-index: 10;
        opacity: 0.7; /* Make them slightly see-through so text pops */
        transform-origin: center center; /* Scale from their own center */
    }

    /* 3. Position them INSIDE the screen (No negative offsets) */
    
    /* Top Left - Hands (Shifted down a bit so it's visible) */
    .pos-top-left { 
        top: 10%; 
        left: 2%; 
        transform: translate(-5%, 0%) scale(0.7) !important;

    }
    
    /* Top Right - Laptop (Shifted down and left) */
    .pos-top-right { 
        top: 15%; 
        right: 2%; 
    }

    /* Middle Left - Shield (Moves to upper-mid) */
    .pos-mid-left { 
        top: 35%; 
        left: -10%; /* Slight overhang is okay */
        transform: translate(-20%, 10%) scale(0.8) !important;
    }
    
    /* Middle Right - Cloud (Lifted to top) */
    .pos-mid-right { 
        top: -5%; 
        right: 0%; 
        transform: translate(-25%, -110%) scale(0.70) !important;
    }

    /* Bottom Left - Person */
    .pos-bot-left { 
        top: auto;
        bottom: 10%; 
        left: 2%;
        transform: translate(0%, -25%) scale(0.75) !important;
 
    }
    
    /* Bottom Right - Chip */
    .pos-bot-right { 
        top: auto;
        bottom: 12%; 
        right: 2%;
        transform: translate(35%, -40%) scale(0.8) !important;
 
    }
}

/* Tablet Portrait */
@media (max-width: 992px) {
    /* Typography */
    h1 { font-size: 3.5rem; letter-spacing: -1px; }
    h2 { font-size: 2.8rem; }
    .featured-heading { font-size: 3.5rem; }
    .discover-heading { font-size: 3rem; }
    .why-choose-heading { font-size: 3.5rem; }
    .metallic-heading { font-size: 3.5rem; }

    /* Logo Grid */
    .logo-grid { gap: 40px; }
    .logo-item { font-size: 2rem; }

    /* Bento Grid - Stack to Single Column */
    .bento-grid { grid-template-columns: 1fr; gap: 20px; }

    /* Columns Grid - Stack to 2 columns */
    .columns-grid { grid-template-columns: 1fr 1fr; gap: 25px; }

    /* Floating Cards - Hide on tablets */
    .floating-card { display: none; }

    /* Scattered Grid */
    .scatter-item { opacity: 0.3; }
    .center-cta { z-index: 50; }
}

/* Mobile Landscape & Small Tablets */
@media (max-width: 768px) {
    /* Container */
    .container { padding: 0 20px; }

    /* Typography - Drastically Reduce Sizes */
    h1 {
        font-size: 2.5rem;
        letter-spacing: -1px;
        line-height: 1.1;
        margin-bottom: 20px;
    }
    h2 {
        font-size: 2rem;
        letter-spacing: -1px;
    }
    p { font-size: 1rem; line-height: 1.5; }

    /* Header */
    header { padding: 20px 0; }
    .logo { font-size: 1.3rem; letter-spacing: 1px; }
    .logo-icon-img { width: 50px; height: 45px; margin-right: -5px; }
    header .btn-primary {
        padding: 12px 24px;
        font-size: 0.8rem;
    }

    /* Hero Section */
    .hero {
        padding-top: 120px;
        padding-bottom: 80px;
    }
    .hero p {
        font-size: 1rem;
        padding: 0 10px;
    }
    .pill-dark, .pill-light {
        font-size: 0.75rem;
        padding: 6px 12px;
        margin-bottom: 20px;
    }

    /* Hero Visual */
    .hero-visual-wrapper {
        max-width: 100%;
        height: 300px;
        margin-top: 40px;
    }
    .dashboard-preview { border-radius: 16px; }

    /* Featured Section */
    .featured-heading {
        font-size: 2.2rem;
        letter-spacing: -1px;
        margin-bottom: 15px;
    }
    .featured-subtext {
        font-size: 0.95rem;
        margin-bottom: 60px;
        padding: 0 10px;
    }

    /* Logo Grid */
    .logo-grid {
        gap: 30px;
        padding-top: 15px;
    }
    .logo-item { font-size: 1.5rem; }
    .font-script { font-size: 1.4rem; }
    .font-serif { font-size: 1.6rem; }
    .font-sans-wide { font-size: 1.5rem; letter-spacing: 2px; }
    .font-serif-bold { font-size: 1.5rem; }
    .font-tech { font-size: 1.3rem; }

    /* Video Section */
    .section-video { padding: 80px 0 100px 0; }
    .discover-heading {
        font-size: 2rem;
        white-space: normal;
        line-height: 1.1;
    }
    .video-placeholder {
        width: 100%;
        height: 250px;
        border-radius: 12px;
    }
    .play-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    .video-bottom-btn { margin-top: 30px; }
    .video-bottom-btn .btn {
        padding: 14px 32px;
        font-size: 0.85rem;
    }

    /* Light Section */
    .section-light { padding: 60px 0 80px 0; }
    .why-choose-heading {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
    .light-subtext {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    /* Bento Grid - Full Width Single Column */
    .bento-grid {
        margin-top: 40px;
        gap: 20px;
    }
    .bento-image { height: 200px; }
    .bento-content { padding: 25px 20px; }
    .bento-content h3 { font-size: 1.3rem; }
    .bento-content p { font-size: 0.9rem; }

    /* White Cards - Single Column */
    .columns-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    .white-card {
        min-height: auto;
        padding: 35px 25px;
    }
    .white-card p {
        font-size: 1.2rem;
        line-height: 1.5;
    }
    .number-box {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    /* Scattered Grid Section */
    .section-get-started {
        min-height: auto;
        padding: 70px 0;
        overflow: visible;
    }
    .scatter-container {
        height: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        align-items: center;
        padding: 0 10px;
    }
    .metallic-heading {
        font-size: 2.2rem;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    .center-cta {
        margin-bottom: 6px;
        order: 0;
    }
    .center-cta .btn-primary {
        padding: 14px 32px;
        font-size: 0.85rem;
    }
    .scatter-item {
        display: block;
        position: static;
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }
    .scatter-item.img-card {
        aspect-ratio: 4 / 3;
        background-size: cover;
        background-position: center;
    }
    .scatter-item.feature-card {
        width: 100%;
        height: auto;
        min-height: 120px;
    }

    /* Contact Section */
    .section-contact-white { padding: 80px 0; }
    .contact-heading {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    .form-container-white {
        padding: 0 20px;
        max-width: 100%;
    }
    .input-group-light { margin-bottom: 35px; }
    .input-group-light input,
    .input-group-light textarea {
        font-size: 1rem;
        padding: 8px 0;
    }
    .input-group-light label {
        font-size: 0.75rem;
        top: -18px;
    }
    .checkbox-row {
        margin-bottom: 20px;
        gap: 10px;
    }
    .checkbox-row label { font-size: 0.75rem; }
    .btn-block {
        padding: 16px;
        font-size: 0.9rem;
    }

    /* Footer */
    .contact-info { margin-top: 60px; }
    .footer-logo-center {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    .logo-footer-img {
        width: 45px;
        height: 45px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .footer-link { font-size: 0.85rem; }
    .footer-copyright { font-size: 0.85rem; }

    /* Legal Links */
    .legal-links-container {
        flex-direction: column;
        gap: 15px;
        margin: 20px 0 30px 0;
    }
}

/* Mobile Portrait - Extra Small Devices */
@media (max-width: 480px) {
    /* Container - Extra Tight */
    .container { padding: 0 15px; }

    /* Ultra-compact Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    p { font-size: 0.95rem; }

    /* Header */
    .logo {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }
    .logo-icon-img {
        width: 35px;
        height: 32px;
        margin-right: -3px;
    }
    header .btn-primary {
        padding: 10px 16px;
        font-size: 0.65rem;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }

    /* Hero */
    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    .hero p {
        font-size: 0.95rem;
    }
    .featured-heading {
        font-size: 1.8rem;
        line-height: 1;
    }
    .featured-subtext {
        font-size: 0.9rem;
        margin-bottom: 40px;
    }
    .hero-visual-wrapper {
        height: 250px;
        margin-top: 30px;
    }

    /* Logo Grid - Smaller */
    .logo-grid {
        gap: 15px;
        padding: 10px;
    }
    .logo-item { font-size: 1.1rem; }
    .font-script { font-size: 1.1rem; }
    .font-serif { font-size: 1.2rem; }
    .font-sans-wide { font-size: 1.1rem; letter-spacing: 1px; }
    .font-serif-bold { font-size: 1.2rem; }
    .font-tech { font-size: 1rem; }

    /* Video Section */
    .discover-heading {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    .video-placeholder { height: 180px; }
    .play-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    /* Why Choose */
    .why-choose-heading {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    .white-card {
        padding: 30px 20px;
    }
    .white-card p {
        font-size: 1rem;
        line-height: 1.4;
    }
    .number-box {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    /* Bento Grid */
    .bento-image { height: 180px; }
    .bento-content { padding: 20px 15px; }
    .bento-content h3 { font-size: 1.2rem; }
    .bento-content p { font-size: 0.85rem; }

    /* Metallic Heading */
    .metallic-heading {
        font-size: 1.6rem;
        line-height: 1.1;
        padding: 0 10px;
    }
    .section-get-started { min-height: 80vh; }

    /* Contact */
    .contact-heading {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    .form-container-white {
        padding: 0 15px;
    }
    .input-group-light input,
    .input-group-light textarea {
        font-size: 0.95rem;
    }
    .checkbox-row label {
        font-size: 0.7rem;
        line-height: 1.4;
    }
    .btn-block {
        padding: 14px;
        font-size: 0.85rem;
    }

    /* Footer */
    .footer-logo-center {
        font-size: 1rem;
    }
    .logo-footer-img {
        width: 38px;
        height: 38px;
    }
    .contact-info p {
        font-size: 0.85rem;
    }
}

/* =========================================
   NEW SECTION: GET STARTED (SCATTERED GRID)
   ========================================= */

.section-get-started {
    position: relative;
    width: 100%;
    /* 140vh ensures the section is taller than the screen, requiring scroll */
    min-height: 140vh;
    overflow: hidden; /* Cuts off images hanging off the side */
    display: flex;
    justify-content: center;
    align-items: center;

    /* DEEP NAVY GRADIENT BACKGROUND */
    background: radial-gradient(circle at center, #0B1822 0%, #020608 70%);
}

.scatter-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 100vh; /* The grid elements stick to this viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- CENTER TYPOGRAPHY --- */
.center-cta {
    position: relative;
    z-index: 20;
    text-align: center;
}

.metallic-heading {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.4rem, 6vw + 0.8rem, 5rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 40px;

    /* THE METALLIC GRADIENT FILL */
    background: linear-gradient(to bottom, #ffffff 20%, #7d8c96 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metallic-heading-dark {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.95;

    /* BLACK TO GREY METALLIC GRADIENT - STRONGER */
    background: linear-gradient(to bottom, #000000 0%, #5a6c78 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- SCATTERED ITEMS (SATELLITES) --- */
.scatter-item {
    position: absolute;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}
.scatter-item:hover {
    transform: scale(1.02);
    z-index: 15;
}

/* 1. IMAGE CARDS */
.img-card {
    background: #111;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.05);
}
.img-card .placeholder-label {
    color: rgba(255,255,255,0.3);
    font-weight: 600;
}
/* You will replace background-image here with your real images */

/* 2. FEATURE CARDS (Dark Navy Boxes) */
.feature-card {
    background: #060F14; /* Very dark navy */
    border: 1px solid rgba(255,255,255,0.08); /* Subtle border */
    padding: 20px;
    width: 220px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(10px);
}

.inner-icon-box {
    width: 40px; height: 40px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Specific Glow Colors for Icons */
.glow-blue { box-shadow: 0 0 15px rgba(0, 100, 255, 0.3); }
.glow-cyan { box-shadow: 0 0 15px rgba(0, 255, 255, 0.2); }
.glow-purple { box-shadow: 0 0 15px rgba(150, 0, 255, 0.3); }

.card-text {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.3;
}
.card-text strong { color: white; display: block; font-size: 1rem; }

/* --- POSITIONING MAP (The 1:1 Layout) --- */

/* Top Left - Hands Image */
.pos-top-left {
    top: 5%;
    left: 2%;
    width: 300px; height: 200px;
}

/* Middle Left - Shield Card */
.pos-mid-left {
    top: 45%;
    left: 8%;
}

/* Bottom Left - Person Image */
.pos-bot-left {
    bottom: 5%;
    left: -50px; /* Cuts off slightly */
    width: 350px; height: 250px;
}

/* Top Right - Laptop Image */
.pos-top-right {
    top: 10%;
    right: -50px; /* Cuts off slightly */
    width: 320px; height: 220px;
}

/* Middle Right - Cloud Card */
.pos-mid-right {
    top: 40%;
    right: 1%;
}

/* Bottom Right - Chip Card */
.pos-bot-right {
    bottom: 15%;
    right: 15%;
}


/* =========================================
   NEW SECTION: CONTACT (WHITE BACKGROUND)
   ========================================= */

.section-contact-white {
    background-color: #ffffff;
    padding: 120px 0;
    color: #000;
    position: relative;
    z-index: 2; /* Sits on top */
}

.contact-heading {
    color: black;
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.form-container-white {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.input-group-light {
    position: relative;
    margin-bottom: 45px;
}

.input-group-light input,
.input-group-light textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ddd; /* Light grey line */
    padding: 10px 0;
    font-size: 1.1rem;
    color: #000;
    font-family: inherit;
    outline: none;
    transition: 0.3s;
}

.input-group-light label {
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 0.85rem;
    color: #888;
    font-weight: 600;
}

.required-asterisk {
    color: #ff3b30;
}

.input-group-light input:focus,
.input-group-light textarea:focus {
    border-bottom: 1px solid #000; /* Black line on focus */
}

/* Error styling for validation */
.input-group-light .input-error {
    border-bottom: 2px solid #ff3b30;
}

.input-group-light .error-message {
    display: block;
    color: #ff3b30;
    font-size: 0.8rem;
    margin-top: 5px;
    font-weight: 500;
}

/* Checkbox specific for white bg */
.checkbox-group.light-mode label {
    color: #555;
}

.contact-info.dark-text p {
    color: #444;
}

/* Footer top section (above line) */
.footer-top {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

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

.footer-logo-center {
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

/* Footer separator line */
.footer-separator {
    width: 100vw;
    height: 1px;
    background-color: #000;
    margin: 0 0 30px 0;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Footer bottom section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-self: start;
}

.footer-link {
    color: #000;
    text-decoration: underline;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.footer-copyright {
    color: #000;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Form submission messages */
.form-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message-box {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Disabled button state */
.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* --- NEW CONTACT FORM STYLES --- */

/* Align checkbox with top of text */
.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    text-align: left;
}

/* Style the actual checkbox box */
.checkbox-row input[type="checkbox"] {
    margin-top: 5px; /* Pushes box down slightly to match first line of text */
    transform: scale(1.3); /* Makes the box a bit bigger */
    flex-shrink: 0; /* Prevents box from getting squished */
    cursor: pointer;
    accent-color: var(--brand-orange); /* Makes the checkmark orange when clicked */
}

/* Style the paragraph text */
.checkbox-row label {
    font-size: 0.85rem;
    color: #333; /* Darker grey for readability */
    line-height: 1.5;
    cursor: pointer;
}

/* Container for the Privacy/Terms links */
.legal-links-container {
    display: flex;
    justify-content: center;
    gap: 60px; /* Space between the two links */
    margin: 30px 0 40px 0;
}

/* The actual link styling */
.legal-link {
    color: var(--brand-orange);
    text-decoration: underline;
    font-size: 0.95rem;
    font-weight: 500;
}

.legal-link:hover {
    color: #d1400e; /* Slightly darker orange on hover */
}

/* UPDATE: Override the submit button to match the Orange buttons */
.form-container-white .btn-primary {
    background-color: var(--brand-orange);
    box-shadow: 0 4px 15px rgba(241, 90, 36, 0.3);
    border-radius: 6px; /* Match the rounded corners of other buttons */
}

.form-container-white .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(241, 90, 36, 0.5);
}
