/* 
  Nouo Flow - Main Stylesheet 
  Pure CSS3 / No Frameworks
*/

:root {
    /* Colors */
    --primary-blue: #00baff;
    --primary-purple: #b95cff;
    --primary-pink: #ff006f;
    --primary-yellow: #ffd900;

    --text-dark: #000000;
    --text-light: #ffffff;
    --bg-light: #ffffff;

    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Quicksand', sans-serif;

    /* Font Sizes - Desktop Reference */
    --h1-size: 64px;
    --h2-size: 48px;
    --h3-size: 32px;
    --body-size: 16px;
    --small-size: 14px;

    /* Spacing */
    --container-width: 1440px;
    --section-padding: 100px 20px;
    --grid-gap: 20px;

    /* Transitions */
    --transition-fast: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
/*    background-color: var(--bg-light);*/
	background-image: linear-gradient(to left, #bcbec1, #c6c8cb, #d0d2d5, #dbdddf, #e5e7e9);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
svg {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity var(--transition-fast);
}

ul {
    list-style: none;
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 200;
    /* ExtraLight based on design */
}

.w30p {
	width: 30%;
}

.w70p {
	width: 70%;
}

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

.text-uppercase {
    text-transform: uppercase;
}

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section {
    padding: var(--section-padding);
}

.grid {
    display: grid;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-20 {
    gap: 20px;
}

.gap-40 {
    gap: 40px;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    :root {
        --h1-size: 40px;
        --h2-size: 32px;
        --section-padding: 60px 20px;
    }
}

/* ---------------------------------------------------------
   HEADER STYLES
--------------------------------------------------------- */
#main-header {
    position: relative;
    width: 100%;
    border-bottom: 1px solid transparent;
    z-index: 1000;
}

/* Logo Sizing */
.logo svg {
    height: 48px;
    width: auto;
}

/* Desktop Navigation */
.desktop-nav {
    display: block;
}

.desktop-nav ul li a {
    font-size: var(--small-size);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.desktop-nav ul li a:hover {
    color: var(--primary-blue);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
}

/* Mobile Nav Structure (Hidden on Desktop) */
.mobile-nav {
    display: none;
    /* FORCE HIDDEN ON DESKTOP */
    position: absolute;
    top: 88px;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: 1000;
}

/* Checkbox Hack for Mobile Menu */
#mobile-menu-checkbox {
    display: none;
}

#mobile-menu-checkbox:checked~.mobile-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1024px) {
    .desktop-nav {
        display: none !important;
        /* Hide Desktop Nav on Mobile/Tablet */
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-nav {
        display: block;
        /* Allow it to be shown when checked */
    }
}

/* ---------------------------------------------------------
   HERO SECTION
--------------------------------------------------------- */
.hero-container-v2 {
    display: grid;
    grid-template-columns: 1.2fr 475px;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    margin-bottom: 24px;
    font-size: var(--fs-h1);
}

.hero-desc {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 300;
}

/* --- HERO GRID SYSTEM (5x4) --- */
.hero-grid-wrapper {
    /* Fixed aspect ratio container for desktop accuracy */
    width: 475px;
    height: 381px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: var(--grid-gap-hero);
    padding: var(--grid-gap-hero);
    /* Padding around to match design */
}

.grid-cell {
    width: 100%;
    height: 100%;
    border-radius: var(--hero-cell-radius);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* ---------------------------------------------------------
   COGNITIVE DESIGN SECTION
--------------------------------------------------------- */
#cognitive {
	
}

#cognitive .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.cognitive-left {
    position: sticky;
    top: 100px;
    align-self: start;
}

.cognitive-title {
    font-size: var(--h2-size);
    text-transform: uppercase;
    margin-bottom: 20px;
	border-radius: 20px;

}

.cognitive-subtitle {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.4;
}

.cognitive-right {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.cognitive-card h3 {
    font-size: var(--h3-size);
    margin-bottom: 20px;
}

.cognitive-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.cognitive-blur {
	padding: 2rem;
	border-radius: 20px;
	border: 1px solid rgba(124, 118, 118, 0.20);
	background: rgba(181, 174, 164, 0.10);
	backdrop-filter: blur(13.050000190734863px);
}

/* Responsive Cognitive */
@media (max-width: 1024px) {
    #cognitive .container {
        grid-template-columns: 1fr;
    }

    .cognitive-left {
        position: static;
        margin-bottom: 40px;
    }
}

/* ---------------------------------------------------------
   HOW IT WORKS SECTION
--------------------------------------------------------- */
#how-it-works .container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

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

.how-title {
    font-size: var(--h2-size);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.how-subtitle {
    font-size: 20px;
    font-weight: 300;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.how-step {
    display: flex;
    flex-direction: column;
    gap: 20px;	
	border-radius: 20px;
	border: 1px solid rgba(124, 118, 118, 0.20);
	background: rgba(181, 174, 164, 0.20);
	backdrop-filter: blur(13.050000190734863px);
	padding: 2rem;
}

.step-image {
    border-radius: 20px;
    height: 330px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.step-image img {
    max-width: 100%;
    height: auto;
}

.step-number-title {
    font-size: 32px;
    font-weight: 500;
    margin-top: 10px;
}

.step-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Responsive How It Works */
@media (max-width: 1024px) {
    .how-steps {
        grid-template-columns: 1fr;
        /* Stack on mobile/tablet */
        gap: 60px;
    }
}

/* ---------------------------------------------------------
   SCOPE & SERVICES SECTION
--------------------------------------------------------- */
#scope {
	
	background: transparent url('resources/scope-bg-pattern.svg') no-repeat scroll top left;
	background-size: auto 100%;
}

#scope .container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

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

.scope-title {
    font-size: var(--h1-size);
    /* 64px as per design */
    font-weight: 200;
    /* ExtraLight */
    text-transform: uppercase;
    margin-bottom: 20px;
}

.scope-subtitle {
    font-size: 16px;
}

.scope-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
	padding: 80px 200px;
    /*background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(22px);
    border-radius: 20px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);*/
	border-radius: 20px;
	opacity: 0.8;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(22px);
	width: 80%;
	align-self: center;
}


.scope-column {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Offset the second column to create masonry feel */
.scope-column.offset {
    padding-top: 180px;
}

.scope-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.scope-card-header {
    height: 20px;
    width: 100%;
    margin-bottom: -40px;
    position: relative;
	z-index:-2;
}

/* Specific Border Colors */
.border-blue {
    background-color: var(--primary-blue);
    width: 60%;
}

.border-purple {
    background-color: var(--primary-purple);
    width: 80%;
}

.border-pink {
    background-color: var(--primary-pink);
    width: 50%;
}

.border-yellow {
    background-color: var(--primary-yellow);
    width: 70%;
}

.scope-card-title {
    font-size: 48px;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 10px;
}

.scope-card-title span {
    display: block;
}

.scope-card-subtitle {
    font-size: 20px;
    font-weight: 500;
}

.scope-card-content p {
    font-size: 15px;
    margin-bottom: 10px;
}

.scope-card-content ul {
    list-style-type: disc;
    padding-left: 20px;
}

.scope-card-content li {
    margin-bottom: 10px;
    font-size: 15px;
}

/* Responsive Scope */
@media (max-width: 1024px) {
    .scope-grid {
        grid-template-columns: 1fr;
        /* Stack */
        padding: 30px;
		
    }

    .scope-column.offset {
        padding-top: 0;
    }

    .scope-card-title {
        font-size: 32px;
    }
}

/* ---------------------------------------------------------
   PRICING SECTION
--------------------------------------------------------- */
#pricing .container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.pricing-header {
    text-align: center;
}

.pricing-title {
    font-size: var(--h2-size);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.pricing-subtitle {
    font-size: 20px;
    font-weight: 300;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* Better sizing for desktop */
    gap: 20px;
}

.pricing-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-highlight {
    height: 10px;
    width: 100%;
}

.bg-blue {
    background-color: var(--primary-blue);
}

.bg-purple {
    background-color: var(--primary-purple);
}

.bg-pink {
    background-color: var(--primary-pink);
}

.bg-yellow {
    background-color: var(--primary-yellow);
}

.pricing-content {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 20px;
}

.pricing-card-title {
    font-size: 24px;
    font-weight: 700;
}

.pricing-desc {
    font-size: 14px;
    color: #666;
    min-height: 40px;
}

.pricing-features {
    font-size: 14px;
    flex-grow: 1;
}

.pricing-features ul {
    list-style-type: disc;
    padding-left: 20px;
}

.pricing-features li {
    margin-bottom: 8px;
}

.pricing-footer {
    padding: 20px;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-100);
}

.price-global {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.price-local {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.btn-price {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    background: black;
    color: white;
    border-radius: 8px;
    margin-top: 15px;
    font-weight: 600;
}

.btn-price:hover {
    opacity: 0.8;
}

.pricing-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.pricing-info-card {
    background: var(--gray-100);
    padding: 40px;
    border-radius: 20px;
}
.pricing-info-card img {
	padding: 20px;
}

.pricing-vignette {
	display: inline-block;
	width: 48%;
}
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }

    .pricing-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------------------------------------------------------
   FOOTER STYLES
--------------------------------------------------------- */
#contact {
    text-align: center;
}

#contact h2 {
    font-size: var(--h1-size);
    margin-bottom: 20px;
}

#contact a {
    font-size: 24px;
    font-weight: 300;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 5px;
    display: inline-block;
    color: white;
    text-decoration: none;
}

#contact a:hover {
    border-bottom-color: white;
}

/* Final Responsive Tweaks */
@media (max-width: 768px) {
    #contact h2 {
        font-size: 40px;
    }

    #contact a {
        font-size: 20px;
    }
}