/* ============================================
   SoundEye Website - Squarespace-Matched Design
   ============================================ */

:root {
    --se-cyan: #4AC0E0;
    --se-teal: #2BA0C0;
    --se-teal-dark: #1E8AAA;
    --se-black: #1a1a1a;
    --se-text: #333333;
    --se-text-secondary: #555555;
    --se-text-light: #888888;
    --se-white: #ffffff;
    --se-off-white: #f9f9f9;
    --se-light-gray: #eeeeee;
    --se-border: #e0e0e0;
    --se-font-heading: 'Instrument Serif', Georgia, 'Times New Roman', serif;
    --se-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Global */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--se-font-body);
    color: var(--se-text);
    line-height: 1.7;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: var(--se-font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h4, h5, h6 {
    font-family: var(--se-font-body);
    font-weight: 700;
    line-height: 1.3;
}

a {
    color: var(--se-teal);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
    color: var(--se-teal);
}

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

/* ============================================
   NAVBAR - Cascaid-style frosted glass
   ============================================ */
.navbar {
    padding: 0;
    transition: all 0.4s ease;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin: 0.75rem 1rem 0;
    border-radius: 0;
}

.navbar > .container-fluid {
    padding: 0.3rem 1.5rem;
}

.navbar-transparent {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.96) !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    margin-top: 0;
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
}

.navbar-brand img {
    height: 50px;
}

/* Nav links - uppercase, wide letter-spacing */
.navbar-nav .nav-link {
    font-family: var(--se-font-body);
    font-weight: 500;
    font-size: 0.7rem;
    color: var(--se-text) !important;
    padding: 0.5rem 1rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.navbar-nav .nav-link:hover {
    opacity: 0.5;
}

.navbar-nav .nav-link.active {
    font-weight: 600;
}

/* CTA button in nav - dark rectangular */
.btn-nav-cta {
    display: inline-block;
    font-family: var(--se-font-body);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.55rem 1.25rem;
    border: 2px solid var(--se-text);
    color: var(--se-white);
    background: var(--se-text);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
}

.btn-nav-cta:hover {
    background: transparent;
    color: var(--se-text) !important;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-pill-dark {
    display: inline-block;
    background-color: var(--se-black);
    color: var(--se-white);
    border: 2px solid var(--se-black);
    font-weight: 500;
    font-size: 0.8rem;
    padding: 0.7rem 1.75rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.btn-pill-dark:hover {
    background-color: #333;
    border-color: #333;
    color: var(--se-white);
}

.btn-pill-teal {
    display: inline-block;
    background-color: var(--se-teal);
    color: var(--se-white);
    border: 2px solid var(--se-teal);
    font-weight: 500;
    font-size: 0.8rem;
    padding: 0.7rem 1.75rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.btn-pill-teal:hover {
    background-color: var(--se-teal-dark);
    border-color: var(--se-teal-dark);
    color: var(--se-white);
}

.btn-pill-outline-white {
    display: inline-block;
    background: transparent;
    color: var(--se-white);
    border: 1.5px solid var(--se-white);
    font-weight: 500;
    font-size: 0.8rem;
    padding: 0.7rem 1.75rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.btn-pill-outline-white:hover {
    background: var(--se-white);
    color: var(--se-text);
}

.btn-pill-outline-dark {
    display: inline-block;
    background: transparent;
    color: var(--se-black);
    border: 1.5px solid var(--se-black);
    font-weight: 500;
    font-size: 0.8rem;
    padding: 0.7rem 1.75rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.btn-pill-outline-dark:hover {
    background: var(--se-black);
    color: var(--se-white);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    background-color: #2a3040;
    overflow: hidden;
    padding-bottom: 4rem;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Fallback when no video plays */
.hero-section:not(:has(.hero-video)) {
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0.15) 40%,
        rgba(0, 0, 0, 0.35) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.hero-section h1 {
    font-family: var(--se-font-heading);
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 400;
    color: var(--se-white);
    margin-bottom: 1rem;
    line-height: 1.05;
    letter-spacing: -0.01em;
}

.hero-section .hero-sub {
    font-family: var(--se-font-heading);
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.9rem, 1.3vw, 1.05rem);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    max-width: 550px;
}

.hero-section .hero-highlight {
    font-family: var(--se-font-heading);
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.9rem, 1.3vw, 1.05rem);
    font-weight: 400;
    margin-bottom: 2.5rem;
}

/* Large pill button for hero CTA */
.btn-pill-lg {
    font-size: 0.85rem !important;
    padding: 1rem 2.5rem !important;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 5rem 0;
}

.section-white {
    background-color: var(--se-white);
}

.section-light {
    background-color: var(--se-off-white);
}

.section-cyan {
    background-color: var(--se-cyan);
    color: var(--se-white);
}

.section-teal {
    background-color: var(--se-teal);
    color: var(--se-white);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-section {
    padding: 4rem 0;
    background: var(--se-white);
}

.trust-section h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.trust-section h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    line-height: 1.2;
    margin-bottom: 0;
    font-weight: 400;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: center;
}

.logo-grid .logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.logo-grid .logo-item img {
    max-height: 50px;
    max-width: 100%;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logo-grid .logo-item img:hover {
    opacity: 1;
}

.logo-placeholder {
    height: 45px;
    width: 100%;
    background: var(--se-light-gray);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--se-text-light);
    font-weight: 600;
}

/* ============================================
   PRIVACY SECTION
   ============================================ */
.privacy-section {
    padding: 0;
    background: var(--se-white);
}

.privacy-image {
    min-height: 500px;
    background: var(--se-light-gray);
    background-size: cover;
    background-position: center;
}

.privacy-image-placeholder {
    min-height: 500px;
    background: var(--se-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-image-placeholder i {
    font-size: 5rem;
    color: var(--se-border);
}

.privacy-content {
    padding: 4rem 3rem;
}

.privacy-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 2.5rem;
}

.privacy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.privacy-grid-item h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.privacy-grid-item p {
    font-size: 0.85rem;
    color: var(--se-text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   SOLUTIONS SECTION
   ============================================ */
.solutions-section {
    background-color: var(--se-cyan);
    color: var(--se-white);
    padding: 4rem 0;
}

.solutions-section h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 2rem;
    color: var(--se-white);
}

.solution-card {
    position: relative;
    overflow: hidden;
    height: 450px;
    background: var(--se-light-gray);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: transform 0.4s ease;
}

.solution-card:hover {
    transform: scale(1.02);
}

.solution-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
}

.solution-card-icon {
    position: relative;
    z-index: 2;
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.5);
}

.solution-card h3 {
    position: relative;
    z-index: 2;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--se-white);
    margin: 0;
}

.solutions-text {
    margin-top: 2rem;
    max-width: 500px;
}

.solutions-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

/* ============================================
   MISSION SECTION
   ============================================ */
.mission-section {
    background-color: var(--se-teal);
    color: var(--se-white);
    padding: 5rem 0;
}

.mission-section h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 400;
    line-height: 1.5;
    color: var(--se-white);
    max-width: 600px;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
    position: relative;
    padding: 6rem 0;
    background-color: #2a3040;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.newsletter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-section h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--se-white);
    margin-bottom: 0.5rem;
}

.newsletter-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 0;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--se-text);
    height: auto;
}

.newsletter-form .form-control::placeholder {
    color: var(--se-text-light);
}

.newsletter-form .form-control:focus {
    border-color: var(--se-teal);
    box-shadow: none;
    background: var(--se-white);
}

/* ============================================
   PAGE HEADERS (subpages)
   ============================================ */
.page-header {
    background-color: var(--se-teal);
    color: var(--se-white);
    padding: 12rem 0 6rem;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--se-white);
}

.page-header .lead {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    max-width: 550px;
    line-height: 1.7;
    font-family: var(--se-font-body);
}

.page-header .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--se-font-body);
    margin-bottom: 1rem;
    display: block;
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--se-text-secondary);
    font-size: 0.95rem;
    max-width: 600px;
    line-height: 1.7;
}

.section-subtitle.centered {
    margin: 0 auto 3rem;
}

.text-uppercase-sm {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    font-weight: 600;
    font-family: var(--se-font-body);
    color: var(--se-text-light);
}

/* ============================================
   VALUE CARDS (Philosophy)
   ============================================ */
.value-card {
    padding: 2rem;
    text-align: left;
    height: 100%;
}

.value-card .icon-lg {
    font-size: 1.75rem;
    color: var(--se-teal);
    margin-bottom: 1.25rem;
}

.value-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--se-text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   FEATURE LIST
   ============================================ */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--se-light-gray);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-list p {
    color: var(--se-text-secondary);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   PRIVACY ITEMS (LASSO page)
   ============================================ */
.privacy-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--se-light-gray);
}

.privacy-item:last-child {
    border-bottom: none;
}

.privacy-item h5 {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

.privacy-item p {
    color: var(--se-text-secondary);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   LASSO FEATURES
   ============================================ */
.lasso-feature {
    text-align: left;
    padding: 1.75rem;
    background: var(--se-white);
    border: 1px solid var(--se-light-gray);
    height: 100%;
}

.lasso-feature .icon {
    font-size: 1.5rem;
    color: var(--se-teal);
    margin-bottom: 1rem;
}

.lasso-feature h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.lasso-feature p {
    color: var(--se-text-secondary);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.feature-card {
    background: var(--se-white);
    padding: 2rem;
    border: 1px solid var(--se-light-gray);
    height: 100%;
}

.feature-card .icon {
    font-size: 1.5rem;
    color: var(--se-teal);
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--se-text-secondary);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   TESTIMONIAL
   ============================================ */
.testimonial-section {
    padding: 5rem 0;
    background: var(--se-off-white);
}

.testimonial blockquote {
    font-family: var(--se-font-heading);
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-style: italic;
    font-weight: 400;
    color: var(--se-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    max-width: 650px;
}

.testimonial .source {
    font-family: var(--se-font-body);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--se-text-secondary);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background-color: var(--se-teal);
    color: var(--se-white);
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.75rem;
    color: var(--se-white);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    font-family: var(--se-font-body);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form .form-control {
    padding: 0.75rem 1rem;
    border: 1px solid var(--se-border);
    border-radius: 0;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--se-teal);
    box-shadow: none;
}

.contact-form .form-label {
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--se-text-secondary);
    margin-bottom: 0.5rem;
}

.contact-form textarea.form-control {
    min-height: 120px;
}

/* ============================================
   OFFICE CARDS
   ============================================ */
.office-card {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--se-light-gray);
}

.office-card:last-child {
    border-bottom: none;
}

.office-card h5 {
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.35rem;
    color: var(--se-text);
}

.office-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--se-text-secondary);
    line-height: 1.6;
}

/* ============================================
   FOOTER - LIGHT STYLE (matches Squarespace)
   ============================================ */
.site-footer {
    background-color: var(--se-white);
    color: var(--se-text);
    padding: 3rem 0;
    border-top: 1px solid var(--se-light-gray);
}

.site-footer h5 {
    font-family: var(--se-font-body);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    color: var(--se-text);
}

.site-footer p {
    font-size: 0.8rem;
    line-height: 1.7;
    color: var(--se-text-secondary);
}

.site-footer a {
    color: var(--se-teal);
    font-size: 0.8rem;
}

.site-footer a:hover {
    opacity: 0.7;
    color: var(--se-teal);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.25rem;
}

.footer-company {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--se-text);
}

/* ============================================
   MEGA DROPDOWN
   ============================================ */
.nav-dropdown {
    position: relative;
}

.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 480px;
    background: var(--se-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.04),
        0 16px 40px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    transform: translateX(-50%) translateY(16px);
    z-index: 1001;
    pointer-events: none;
}

.nav-dropdown:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(8px);
    pointer-events: auto;
}

.mega-dropdown-inner {
    display: flex;
}

.mega-divider {
    width: 1px;
    background: var(--se-light-gray);
}

.mega-col {
    flex: 1;
    padding: 1.5rem;
}

/* Overview link - left column */
.mega-overview-link {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border-radius: 4px;
    transition: background 0.2s ease;
    text-decoration: none;
    height: 100%;
    justify-content: center;
}

.mega-overview-link:hover {
    background: var(--se-off-white);
    opacity: 1;
}

.mega-label {
    font-family: var(--se-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--se-text);
    display: block;
    margin-bottom: 0.5rem;
}

.mega-desc {
    font-size: 0.8rem;
    color: var(--se-text-light);
    line-height: 1.5;
    display: block;
    margin-bottom: 0.75rem;
}

.mega-arrow {
    font-size: 1rem;
    color: var(--se-teal);
    transition: transform 0.2s ease;
}

.mega-overview-link:hover .mega-arrow {
    transform: translateX(4px);
}

/* Product links - right column */
.mega-heading {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--se-text-light);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--se-light-gray);
}

.mega-link {
    display: block;
    padding: 0.65rem 0.75rem;
    border-radius: 4px;
    transition: background 0.2s ease;
    text-decoration: none;
    margin-bottom: 0.25rem;
}

.mega-link:hover {
    background: var(--se-off-white);
    opacity: 1;
}

.mega-link-title {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--se-text);
    letter-spacing: 0.04em;
    margin-bottom: 0.15rem;
}

.mega-link-desc {
    display: block;
    font-size: 0.72rem;
    color: var(--se-text-light);
    line-height: 1.4;
}

/* Mobile dropdown */
@media (max-width: 991.98px) {
    .mega-dropdown {
        position: static;
        transform: none;
        width: 100%;
        box-shadow: none;
        border: none;
        border-top: 1px solid var(--se-light-gray);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
    }

    .nav-dropdown:hover .mega-dropdown,
    .nav-dropdown.show .mega-dropdown {
        display: block;
        transform: none;
    }

    .mega-dropdown-inner {
        flex-direction: column;
    }

    .mega-divider {
        width: 100%;
        height: 1px;
    }

    .mega-col {
        padding: 1rem;
    }

    .mega-overview-link {
        padding: 0.75rem;
    }
}

/* ============================================
   TEAM CARDS
   ============================================ */
.team-card {
    text-align: center;
}

.team-photo {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--se-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.team-photo i {
    font-size: 3rem;
    color: var(--se-border);
}

.team-info h4 {
    font-family: var(--se-font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--se-teal);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-bio {
    font-size: 0.85rem;
    color: var(--se-text-secondary);
    line-height: 1.7;
}

/* ============================================
   TIMELINE SCROLL SECTION
   ============================================ */
.timeline-section {
    position: relative;
}

.timeline {
    position: relative;
    padding-left: 80px;
}

.timeline-track {
    position: absolute;
    left: 48px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--se-light-gray);
}

.timeline-progress {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background: var(--se-teal);
    transition: height 0.05s linear;
}

.timeline-item {
    position: relative;
    padding-bottom: 4rem;
    opacity: 0.3;
    transition: opacity 0.4s ease;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item.is-active {
    opacity: 1;
}

.timeline-number {
    position: absolute;
    left: -80px;
    top: 0;
    width: 48px;
    text-align: right;
    font-family: var(--se-font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--se-text-light);
    line-height: 1.3;
    transition: color 0.4s ease;
}

.timeline-item.is-active .timeline-number {
    color: var(--se-teal);
}

.timeline-content h4 {
    font-family: var(--se-font-body);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--se-text);
}

.timeline-subtitle {
    font-size: 0.8rem;
    color: var(--se-teal);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.timeline-content p:last-child {
    font-size: 0.9rem;
    color: var(--se-text-secondary);
    line-height: 1.75;
    margin-bottom: 0;
}

/* Sticky image alongside timeline */
.timeline-sticky {
    position: sticky;
    top: 140px;
    height: fit-content;
}

.timeline-sticky-img {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--se-off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.timeline-sticky-img i {
    font-size: 5rem;
    color: var(--se-border);
}

/* Mobile timeline */
@media (max-width: 991.98px) {
    .timeline {
        padding-left: 50px;
    }

    .timeline-track {
        left: 28px;
    }

    .timeline-number {
        left: -50px;
        width: 28px;
        font-size: 0.9rem;
    }

    .timeline-item {
        padding-bottom: 3rem;
    }
}

/* Image placeholder helper */
.img-placeholder {
    background: var(--se-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-placeholder i {
    color: var(--se-border);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
    .navbar {
        margin: 0;
        border-radius: 0;
    }

    .navbar .navbar-collapse {
        padding: 1rem 0;
    }

    .btn-nav-cta {
        display: inline-block;
        margin-top: 0.75rem;
    }

    .hero-section {
        height: 85vh;
        min-height: 500px;
        padding-bottom: 3rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .page-header {
        padding: 10rem 0 4rem;
    }

    .privacy-content {
        padding: 3rem 1.5rem;
    }

    .privacy-grid {
        grid-template-columns: 1fr;
    }

    .privacy-image-placeholder,
    .privacy-image {
        min-height: 350px;
    }

    .solution-card {
        height: 350px;
    }

    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        height: 80vh;
        min-height: 450px;
        padding-bottom: 2rem;
    }

    .section {
        padding: 3rem 0;
    }

    .hero-section h1 {
        font-size: 2.25rem;
    }

    .btn-pill-lg {
        padding: 0.85rem 2rem !important;
    }

    .privacy-content {
        padding: 2rem 1rem;
    }

    .solution-card {
        height: 300px;
    }

    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-form .row {
        gap: 0.5rem;
    }

    .mission-section h2 {
        font-size: 1.25rem;
    }
}
