@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* --- RESET & BASE --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #F4F6F9; /* Light Tech Background */
    color: #1A1C24; /* Deep Charcoal */
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

::selection {
    background: #00F0FF; /* Neon Cyan */
    color: #0B0E14;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    color: #0B0E14;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: #4A5060; /* Soft Grey for body */
    max-width: 65ch;
}

a {
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    color: inherit;
}

/* --- LAYOUT UTILITIES --- */
/* (a) Container Definition: Standard Pattern */
.mod__container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding-inline: clamp(1rem, 5vw, 4rem);
}

.mod__section {
    padding-block: clamp(4rem, 8vw, 8rem);
    width: 100%;
    position: relative;
}

/* --- COMPONENTS --- */

/* Header / Nav */
.mod__header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
}

.mod__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.mod__brand {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0B0E14;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mod__brand span {
    color: #00D2FF; /* Cyan accent */
}

.mod__nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.mod__nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: #4A5060;
    position: relative;
}

.mod__nav-link:hover {
    color: #00D2FF;
}

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

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

.mod__cta-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #0B0E14;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid #0B0E14;
}

.mod__cta-btn:hover {
    background-color: #00D2FF;
    border-color: #00D2FF;
    color: #0B0E14;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 210, 255, 0.3);
}

/* Hero Section */
.mod__hero {
    background: radial-gradient(circle at 90% 10%, #E0F7FA 0%, transparent 40%), #F4F6F9;
    padding-top: 160px; /* Account for fixed header */
    padding-bottom: 100px;
    overflow: hidden;
}

.mod__hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.mod__hero-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 210, 255, 0.1);
    color: #008BA3;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 210, 255, 0.2);
}

.mod__hero-img-wrapper {
    position: relative;
}

.mod__hero-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(11, 14, 20, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.mod__hero-img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Feature Grid */
.mod__grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mod__card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid #E8ECF1;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mod__card:hover {
    transform: translateY(-5px);
    border-color: #00D2FF;
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.1);
}

.mod__card-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #0B0E14;
}

/* Stats */
.mod__stats-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.mod__stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.mod__stat-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #00D2FF;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.mod__stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #8892A0;
    font-weight: 600;
}

/* FAQ */
.mod__faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
    border-top: 1px solid #E8ECF1;
}

.mod__faq-item {
    border-bottom: 1px solid #E8ECF1;
    padding: 1.5rem 0;
}

.mod__faq-question {
    font-weight: 600;
    font-size: 1.1rem;
    color: #0B0E14;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.mod__faq-answer {
    color: #4A5060;
    font-size: 0.95rem;
}

/* CTA Band */
.mod__cta-band {
    background: #0B0E14;
    color: #fff;
    text-align: center;
    border-radius: 16px;
    padding: 4rem 2rem;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.mod__cta-band::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.mod__cta-band h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.mod__cta-band p {
    color: #A0AAB5;
    margin: 0 auto 2rem;
}

.mod__cta-primary {
    background: #00D2FF;
    color: #0B0E14;
    padding: 1rem 2.5rem;
    font-weight: 700;
    border-radius: 6px;
    display: inline-block;
}

.mod__cta-primary:hover {
    background: #fff;
    transform: scale(1.05);
}

/* Footer */
.mod__footer {
    background-color: #0F1219;
    color: #8892A0;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.mod__footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.mod__footer-brand {
    font-size: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    color: #fff;
    margin-bottom: 1rem;
    display: block;
}

.mod__footer-col h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.mod__footer-links {
    list-style: none;
}

.mod__footer-links li {
    margin-bottom: 0.75rem;
}

.mod__footer-links a:hover {
    color: #00D2FF;
}

.mod__footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .mod__hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mod__hero-img-wrapper {
        display: none; /* Hide image on tablet/mobile for cleaner look */
    }

    .mod__nav-links {
        display: none; /* Simple hiding for this snippet */
    }
    
    .mod__footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .mod__stats-row {
        flex-direction: column;
        gap: 3rem;
    }
    
    .mod__footer-grid {
        grid-template-columns: 1fr;
    }
    
    .mod__footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
} *{box-sizing:border-box} body{margin:0} img,svg,video{max-width:100%;height:auto} 