/* ============================================================
   Profspect Website CSS
   Palette: Black · Grey · Baby Blue (#6FCBEF) · Teal (#2EE6C9)
   Style: Modern, bold, glassmorphism, In-Odyssey-style interactivity
   ============================================================ */

/* 1. ROOT DESIGN TOKENS
   ---------------------------------------------------------- */
:root {
    --ps-black:       #07080C;
    --ps-dark:        #0E1018;
    --ps-dark-2:      #171A26;
    --ps-dark-3:      #20243480;
    --ps-grey:        #8A93A6;
    --ps-grey-deep:   #5B6472;
    --ps-light:       #F5F8FB;
    --ps-light-2:     #ECF1F6;
    --ps-white:       #FFFFFF;

    --ps-blue:        #6FCBEF;
    --ps-blue-light:  #AEE6FA;
    --ps-blue-dark:   #3C9AC2;

    --ps-teal:        #2EE6C9;
    --ps-teal-light:  #8FF6E8;
    --ps-teal-dark:   #16A99A;

    --ps-border:      rgba(111, 203, 239, 0.18);
    --ps-glass-bg:    rgba(255, 255, 255, 0.045);
    --ps-glass-bg-2:  rgba(255, 255, 255, 0.07);
    --ps-glass-border:rgba(255, 255, 255, 0.10);
    --ps-glass-blur:  blur(20px) saturate(160%);

    --font-heading: 'Montserrat', sans-serif;
    --font-body:    'Montserrat', sans-serif;

    --radius-sm:   8px;
    --radius-md:   16px;
    --radius-lg:   28px;
    --radius-xl:   36px;
    --radius-full: 9999px;

    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-lift: 0 20px 56px rgba(0, 0, 0, 0.35);
    --shadow-glow: 0 0 48px rgba(111, 203, 239, 0.25);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. RESET & BASE
   ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background-color: var(--ps-black);
    color: var(--ps-white);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    padding-top: 76px;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

::selection { background: var(--ps-teal); color: var(--ps-black); }

/* 3. PAGE LOADER
   ---------------------------------------------------------- */
#loader-wrapper {
    position: fixed;
    inset: 0;
    background: var(--ps-black);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#loader-wrapper.hidden { opacity: 0; visibility: hidden; }

.loader-circle {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(111, 203, 239, 0.2);
    border-top-color: var(--ps-blue);
    border-right-color: var(--ps-teal);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* 4. NAVIGATION (glassmorphism, sits over every section)
   ---------------------------------------------------------- */
.glass-nav {
    background: rgba(7, 8, 12, 0.45);
    backdrop-filter: var(--ps-glass-blur);
    -webkit-backdrop-filter: var(--ps-glass-blur);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 0;
    transition: var(--transition);
}

.glass-nav.scrolled {
    background: rgba(7, 8, 12, 0.85);
    padding: 10px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    border-bottom-color: rgba(111, 203, 239, 0.12);
}

.navbar-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand-logo img {
    height: 34px;
    width: auto;
    display: block;
}

.navbar-brand-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--ps-white);
    letter-spacing: 0.5px;
}

.nav-pill {
    color: rgba(255, 255, 255, 0.7) !important;
    border: 1px solid rgba(111, 203, 239, 0.22);
    border-radius: var(--radius-full);
    padding: 7px 20px !important;
    margin: 0 4px;
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 0.3px;
    text-transform: lowercase;
    transition: var(--transition);
}

.nav-pill:hover,
.nav-pill.active {
    background: linear-gradient(135deg, var(--ps-blue), var(--ps-teal));
    border-color: transparent;
    color: var(--ps-black) !important;
    box-shadow: 0 8px 24px rgba(111, 203, 239, 0.3);
}

.nav-cta {
    background: linear-gradient(135deg, var(--ps-blue), var(--ps-teal));
    color: var(--ps-black) !important;
    border: none;
    padding: 9px 26px !important;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(46, 230, 201, 0.35);
}

.header-socials a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 1.1rem;
    transition: var(--transition);
}
.header-socials a:hover { color: var(--ps-teal); }

.navbar-toggler .mdi { color: var(--ps-white) !important; }

/* Products dropdown */
.nav-products-menu {
    background: rgba(14, 16, 24, 0.97);
    backdrop-filter: var(--ps-glass-blur);
    border: 1px solid var(--ps-glass-border);
    border-radius: var(--radius-md);
    padding: 10px;
    min-width: 240px;
    margin-top: 12px !important;
}
.nav-products-menu .dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}
.nav-products-menu .dropdown-item:hover,
.nav-products-menu .dropdown-item:focus {
    background: rgba(111, 203, 239, 0.12);
    color: var(--ps-white);
}
.nav-products-menu .dropdown-item i { font-size: 1.1rem; color: var(--ps-teal); }
.nav-products-menu hr { border-color: rgba(255,255,255,0.08); margin: 6px 0; }

/* 5. HERO SECTION
   ---------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: var(--ps-black);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Grid background */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(111, 203, 239, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(111, 203, 239, 0.045) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, #000 40%, transparent 100%);
    mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, #000 40%, transparent 100%);
    z-index: 0;
}

.hero-glow {
    position: absolute;
    width: 720px;
    height: 720px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 32% 35%, rgba(111, 203, 239, 0.45) 0%, transparent 55%),
        radial-gradient(circle at 68% 62%, rgba(46, 230, 201, 0.35) 0%, transparent 50%);
    filter: blur(90px);
    pointer-events: none;
    animation: glow-pulse 9s ease-in-out infinite;
    z-index: 0;
}

@keyframes glow-pulse {
    0%, 100% { transform: scale(1) translateY(0); opacity: 0.85; }
    50%       { transform: scale(1.12) translateY(-24px); opacity: 1; }
}

#hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 920px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ps-glass-bg-2);
    border: 1px solid var(--ps-glass-border);
    backdrop-filter: var(--ps-glass-blur);
    -webkit-backdrop-filter: var(--ps-glass-blur);
    color: var(--ps-blue-light);
    padding: 7px 20px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--ps-teal);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
    box-shadow: 0 0 8px var(--ps-teal);
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-headline {
    font-size: clamp(2.6rem, 6.2vw, 5.2rem);
    font-weight: 800;
    line-height: 1.08;
    color: var(--ps-white);
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
}

.hero-headline .gradient-text,
.gradient-text {
    background: linear-gradient(135deg, var(--ps-blue) 0%, var(--ps-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.6);
    max-width: 660px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-ps-primary {
    background: linear-gradient(135deg, var(--ps-blue) 0%, var(--ps-teal) 100%);
    color: var(--ps-black);
    border: none;
    padding: 14px 36px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-ps-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(46, 230, 201, 0.35);
    color: var(--ps-black);
}

.btn-ps-outline {
    background: var(--ps-glass-bg);
    backdrop-filter: var(--ps-glass-blur);
    -webkit-backdrop-filter: var(--ps-glass-blur);
    color: rgba(255, 255, 255, 0.85);
    border: 1.5px solid var(--ps-glass-border);
    padding: 14px 36px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-ps-outline:hover {
    border-color: var(--ps-teal);
    color: var(--ps-teal-light);
    background: rgba(46, 230, 201, 0.08);
}

.btn-ps-white {
    background: var(--ps-white);
    color: var(--ps-black);
    padding: 14px 36px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-ps-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
    color: var(--ps-black);
}

.btn-ps-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: var(--ps-white);
    padding: 14px 36px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-ps-ghost:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Hero stats bar */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    flex-wrap: wrap;
}

.hero-stat-item { text-align: center; }
.hero-stat-number {
    display: block;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--ps-white);
    line-height: 1;
    margin-bottom: 4px;
}
.hero-stat-number > span:last-child { color: var(--ps-teal); }
.hero-stat-label {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Scroll cue */
.scroll-cue {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.scroll-cue i {
    font-size: 1.4rem;
    animation: bounce-down 2s ease-in-out infinite;
    color: var(--ps-blue);
}
@keyframes bounce-down {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(8px); opacity: 1; }
}

/* 5b. PAGE HERO (inner pages)
   ---------------------------------------------------------- */
.page-hero {
    position: relative;
    background: var(--ps-black);
    overflow: hidden;
    padding: 170px 0 90px;
    text-align: center;
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(111, 203, 239, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(111, 203, 239, 0.045) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, #000 40%, transparent 100%);
    mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, #000 40%, transparent 100%);
    z-index: 0;
}
.page-hero .hero-glow {
    width: 480px;
    height: 480px;
    top: -140px;
}
.page-hero-content {
    position: relative;
    z-index: 10;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.page-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 1.25rem;
    color: var(--ps-white);
}
.page-hero .tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--ps-glass-bg-2);
    border: 1px solid var(--ps-glass-border);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 7px 18px;
    border-radius: var(--radius-full);
}

/* 6. SECTION UTILITIES
   ---------------------------------------------------------- */
.section-light  { background: var(--ps-white); color: var(--ps-black); }
.section-soft   { background: var(--ps-light); color: var(--ps-black); }
.section-dark   { background: var(--ps-dark); color: var(--ps-white); }
.section-darker { background: var(--ps-black); color: var(--ps-white); }

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--ps-teal-dark);
    margin-bottom: 0.75rem;
}
.section-dark .section-label,
.section-darker .section-label { color: var(--ps-teal); }

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.section-title .text-blue { color: var(--ps-blue); }
.section-title .text-teal { color: var(--ps-teal); }

.section-desc {
    font-size: 1.05rem;
    color: var(--ps-grey-deep);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-dark .section-desc,
.section-darker .section-desc { color: rgba(255, 255, 255, 0.6); }

.ps-divider {
    width: 52px;
    height: 3px;
    background: linear-gradient(90deg, var(--ps-blue), var(--ps-teal));
    border: none;
    border-radius: var(--radius-full);
    margin: 1rem auto 0;
}
.ps-divider.start { margin: 1rem 0 0; }

/* 7. GLASS / FEATURE CARDS
   ---------------------------------------------------------- */
.glass-card {
    background: var(--ps-glass-bg);
    border: 1px solid var(--ps-glass-border);
    backdrop-filter: var(--ps-glass-blur);
    -webkit-backdrop-filter: var(--ps-glass-blur);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--ps-glass-bg);
    border: 1px solid var(--ps-glass-border);
    backdrop-filter: var(--ps-glass-blur);
    -webkit-backdrop-filter: var(--ps-glass-blur);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.section-light .feature-card,
.section-soft .feature-card {
    background: var(--ps-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-card);
    backdrop-filter: none;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ps-blue), var(--ps-teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lift);
    border-color: rgba(111, 203, 239, 0.3);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.icon-blue { background: rgba(111, 203, 239, 0.12); color: var(--ps-blue); }
.icon-teal { background: rgba(46, 230, 201, 0.12); color: var(--ps-teal); }
.icon-grey { background: rgba(255, 255, 255, 0.06); color: var(--ps-white); }

.section-light .icon-grey,
.section-soft .icon-grey { background: rgba(10,11,16,0.06); color: var(--ps-black); }

.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--ps-grey);
    line-height: 1.7;
    margin: 0;
}
.section-light .feature-card p,
.section-soft .feature-card p { color: var(--ps-grey-deep); }
.section-light .feature-card h4,
.section-soft .feature-card h4 { color: var(--ps-black); }

/* 8. PRODUCTS SHOWCASE
   ---------------------------------------------------------- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.product-card {
    position: relative;
    background: var(--ps-glass-bg);
    border: 1px solid var(--ps-glass-border);
    backdrop-filter: var(--ps-glass-blur);
    -webkit-backdrop-filter: var(--ps-glass-blur);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    text-align: center;
    overflow: hidden;
    transition: var(--transition);
}

.product-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    background: radial-gradient(circle at 50% 0%, rgba(111, 203, 239, 0.16), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(111, 203, 239, 0.35);
    box-shadow: var(--shadow-lift);
}
.product-card:hover::after { opacity: 1; }

.product-logo-badge {
    width: 116px;
    height: 116px;
    border-radius: var(--radius-lg);
    background: var(--ps-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
    padding: 18px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1;
}
.product-logo-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
    position: relative;
    z-index: 1;
}

.product-tagline {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ps-teal);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.product-card p.product-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 1.75rem;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.product-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    border: 1.5px solid var(--ps-glass-border);
    color: var(--ps-white);
    background: rgba(255, 255, 255, 0.04);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    align-self: center;
}
.product-link:hover {
    background: linear-gradient(135deg, var(--ps-blue), var(--ps-teal));
    color: var(--ps-black);
    border-color: transparent;
    box-shadow: 0 10px 28px rgba(111, 203, 239, 0.3);
}
.product-link.disabled {
    opacity: 0.55;
    cursor: default;
    pointer-events: none;
}

.product-badge {
    position: absolute;
    top: 22px;
    right: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--ps-glass-border);
    color: var(--ps-blue-light);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    z-index: 2;
}

/* 9. STATS / COUNTERS
   ---------------------------------------------------------- */
.stat-card {
    background: var(--ps-glass-bg);
    border: 1px solid var(--ps-glass-border);
    backdrop-filter: var(--ps-glass-blur);
    -webkit-backdrop-filter: var(--ps-glass-blur);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--ps-teal);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

.stat-card-number {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--ps-white);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-card-number > span:last-child { color: var(--ps-teal); }
.stat-card-label { font-size: 0.82rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1.5px; }

/* 10. PILLARS / APPROACH (light section)
   ---------------------------------------------------------- */
.pillar-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.pillar-num {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(111,203,239,0.12), rgba(46,230,201,0.12));
    border: 1px solid var(--ps-border);
    color: var(--ps-blue-dark);
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pillar-item h5 { font-weight: 700; margin-bottom: 6px; }
.pillar-item p { color: var(--ps-grey-deep); font-size: 0.92rem; margin: 0; line-height: 1.7; }

/* 11. TEAM / FOUNDER BIOS
   ---------------------------------------------------------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.team-card {
    background: var(--ps-glass-bg);
    border: 1px solid var(--ps-glass-border);
    backdrop-filter: var(--ps-glass-blur);
    -webkit-backdrop-filter: var(--ps-glass-blur);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(111, 203, 239, 0.3);
    box-shadow: var(--shadow-lift);
}

.team-photo-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 4.2;
    overflow: hidden;
}

.team-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.team-card:hover .team-photo-wrap img { transform: scale(1.06); }

.team-photo-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(7,8,12,0.92) 100%);
}

.team-info {
    padding: 22px 26px 28px;
    text-align: center;
    position: relative;
}

.team-name {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.team-role {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    background: linear-gradient(135deg, var(--ps-blue), var(--ps-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
}

.team-bio {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin-bottom: 16px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}
.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--ps-glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
    font-size: 0.95rem;
}
.team-social a:hover {
    background: linear-gradient(135deg, var(--ps-blue), var(--ps-teal));
    color: var(--ps-black);
    border-color: transparent;
}

/* 12. CTA BAND
   ---------------------------------------------------------- */
.cta-band {
    background: linear-gradient(135deg, var(--ps-blue) 0%, var(--ps-teal-dark) 55%, var(--ps-black) 100%);
    position: relative;
    overflow: hidden;
    padding: 90px 0;
}

.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,0,0,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.05) 1px, transparent 1px);
    background-size: 48px 48px;
}

.cta-band .cta-content { position: relative; z-index: 1; }

.cta-band h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--ps-black);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.cta-band p { color: rgba(7,8,12,0.7); font-size: 1.1rem; margin-bottom: 2rem; }

.cta-band .btn-ps-ghost {
    background: rgba(7,8,12,0.12);
    color: var(--ps-black);
    border: 1.5px solid rgba(7,8,12,0.3);
}
.cta-band .btn-ps-ghost:hover {
    background: rgba(7,8,12,0.2);
    border-color: rgba(7,8,12,0.5);
}

/* 13. FOOTER
   ---------------------------------------------------------- */
.ps-footer {
    background: var(--ps-black);
    border-top: 1px solid rgba(111, 203, 239, 0.12);
    padding: 64px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.ps-footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.ps-footer-brand img { height: 38px; }
.ps-footer-brand .brand-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ps-white);
    letter-spacing: 0.5px;
}

.ps-footer p.brand-desc {
    font-size: 0.88rem;
    line-height: 1.75;
    max-width: 320px;
    color: rgba(255,255,255,0.5);
}

.ps-footer-heading {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ps-white);
    margin-bottom: 20px;
}

.ps-footer ul { list-style: none; padding: 0; margin: 0; }
.ps-footer ul li { margin-bottom: 10px; }
.ps-footer ul li a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.ps-footer ul li a:hover { color: var(--ps-teal); padding-left: 4px; }
.ps-footer ul li a i { font-size: 0.85rem; opacity: 0.7; }

.ps-footer-contact p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.ps-footer-contact i { color: var(--ps-teal); font-size: 1.05rem; }

.ps-footer-bottom {
    margin-top: 48px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.ps-footer-bottom small { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

.ps-footer-legal a {
    color: rgba(255,255,255,0.35);
    transition: var(--transition);
}
.ps-footer-legal a:hover { color: var(--ps-teal); }
.ps-footer-legal-sep { margin: 0 8px; opacity: 0.4; }
.ps-footer-legal #footer-manage-cookies { cursor: pointer; }

.footer-socials a {
    color: rgba(255,255,255,0.4);
    font-size: 1.15rem;
    margin: 0 8px;
    transition: var(--transition);
}
.footer-socials a:hover { color: var(--ps-blue); }

/* 14. UTILITY CLASSES
   ---------------------------------------------------------- */
.text-blue   { color: var(--ps-blue) !important; }
.text-teal   { color: var(--ps-teal) !important; }
.text-ps-muted { color: var(--ps-grey) !important; }
.bg-ps-dark  { background: var(--ps-dark) !important; }
.bg-ps-light { background: var(--ps-light) !important; }

.rounded-ps  { border-radius: var(--radius-lg) !important; }
.rounded-pill-ps { border-radius: var(--radius-full) !important; }

/* 15. INTERACTIVITY (scroll-reveal, counters, back-to-top)
   ---------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.4s; }
.reveal-d6 { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Back to top floating button */
.back-to-top {
    position: fixed;
    bottom: 32px;
    left: 32px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ps-glass-bg-2);
    backdrop-filter: var(--ps-glass-blur);
    -webkit-backdrop-filter: var(--ps-glass-blur);
    color: var(--ps-white);
    border: 1px solid var(--ps-glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--transition);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover {
    background: linear-gradient(135deg, var(--ps-blue), var(--ps-teal));
    color: var(--ps-black);
    border-color: transparent;
}

/* 16. CONTACT FORM (glass)
   ---------------------------------------------------------- */
.ps-form-control {
    border: 1px solid var(--ps-glass-border);
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.9rem;
    color: var(--ps-white);
    width: 100%;
    transition: border-color 0.2s, background 0.2s;
}
.ps-form-control::placeholder { color: rgba(255,255,255,0.35); }
.ps-form-control:focus {
    outline: none;
    border-color: var(--ps-teal);
    background: rgba(255,255,255,0.07);
}
.ps-form-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 6px;
    display: block;
}
select.ps-form-control option { background: var(--ps-dark-2); color: var(--ps-white); }

/* 17. COOKIE CONSENT BANNER
   ---------------------------------------------------------- */
.cookie-consent {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    max-width: 920px;
    margin: 0 auto;
    background: var(--ps-glass-bg-2);
    border: 1px solid var(--ps-glass-border);
    backdrop-filter: var(--ps-glass-blur);
    -webkit-backdrop-filter: var(--ps-glass-blur);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lift);
    padding: 24px 28px;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s;
}
.cookie-consent.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.cookie-consent-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}
.cookie-consent-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(46, 230, 201, 0.12);
    color: var(--ps-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.cookie-consent-text { flex: 1 1 320px; }
.cookie-consent-text h6 {
    margin: 0 0 4px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--ps-white);
}
.cookie-consent-text p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}
.cookie-consent-text a { color: var(--ps-blue-light); text-decoration: underline; }
.cookie-consent-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.cookie-consent-actions .btn-ps-outline,
.cookie-consent-actions .btn-ps-primary {
    padding: 10px 24px;
    font-size: 0.82rem;
}

/* 18. RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 992px) {
    body { padding-top: 68px; }
}

@media (max-width: 768px) {
    .hero-headline { letter-spacing: -0.5px; }
    .hero-stats { gap: 32px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .feature-grid, .products-grid, .team-grid { grid-template-columns: 1fr; }
    .pillar-item { flex-direction: column; }

    .cookie-consent {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 20px;
    }
    .cookie-consent-inner { flex-direction: column; align-items: stretch; text-align: center; }
    .cookie-consent-icon { margin: 0 auto; }
    .cookie-consent-actions { justify-content: center; }
}
