/* ==========================================================================
   Telos Private Office - Premium Family Office Website Styles
   ========================================================================== */

/* Root Variables - Telos Brand Colors (Exact from Brand Board) */
:root {
    /* Primary Brand Colors */
    --black: #000000;
    --telos-green: #8dc63f;      /* PANTONE 368 - Primary Brand Green */
    --telos-dark-green: #62b046;  /* Secondary Dark Green */
    --grey-30: #bcbec0;           /* 30% Grey from Brand Board */
    --white: #FFFFFF;
    --off-white: #F9F8F6;
    --light-gray: #E8E6E3;
    --medium-gray: #6C757D;
    --dark-gray: #2C3E50;
    
    /* Extended Brand Green Palette */
    --green-light: #8ac64f;       /* Light accent green */
    --green-bullets: #9aca3c;     /* Bullet point green */
    --green-teal: #3f95a6;        /* Teal accent */
    --green-yellow: #cbd12a;      /* Yellow-green accent */
    
    /* Legacy navy variables for section backgrounds */
    --navy: #1B3B6F;
    --navy-light: #2B4B7F;
    --navy-dark: #0B2B5F;
    
    /* Font families from Telos Brand Board */
    --font-headline: 'Quicksand', sans-serif;     /* Google Quicksand Regular */
    --font-subhead: 'Inter', sans-serif;          /* TT Norms Pro fallback to Inter */
    --font-body: 'Inter', sans-serif;             /* TT Norms Pro fallback to Inter */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(10, 31, 68, 0.1);
    --shadow-lg: 0 10px 40px rgba(10, 31, 68, 0.15);
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-gray);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headline);
    font-weight: 400;  /* Quicksand Regular as per brand board */
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p {
    margin-bottom: 1.25rem;
}

a {
    color: var(--telos-dark-green);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--telos-green);
}

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

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-brand a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--white);
    text-decoration: none;
}

.logo-image {
    height: 75px;
    width: auto;
    margin-bottom: 0;
}

.logo-telos {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--telos-green);
}

.logo-subtitle {
    font-size: 0.6rem;
    letter-spacing: 4px;
    color: var(--telos-green);
    text-transform: uppercase;
    margin-top: 2px;
    font-weight: 600;
    font-family: var(--font-body);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--telos-green);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.nav-cta {
    background: linear-gradient(135deg, var(--telos-dark-green) 0%, var(--telos-green) 100%);
    color: var(--black);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 700;
}

.nav-link.nav-cta::after {
    display: none;
}

.nav-link.nav-cta:hover {
    background: var(--telos-green);
    color: var(--black);
    box-shadow: 0 4px 15px rgba(132, 228, 63, 0.4);
}

/* Dropdown Menu Styles */
.nav-item {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--black);
    min-width: 220px;
    padding: 0.5rem 0;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.5rem;
    border: 1px solid rgba(141, 198, 63, 0.2);
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.nav-dropdown-link:hover {
    background: rgba(141, 198, 63, 0.1);
    border-left-color: var(--telos-green);
    color: var(--telos-green);
    padding-left: 1.75rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--telos-green);
    transition: var(--transition);
}

/* Hero Section with Gradient Background */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.48) 0%, rgba(10, 10, 10, 0.45) 40%, rgba(26, 42, 26, 0.4) 70%, rgba(98, 176, 70, 0.35) 100%), 
                url('../images/option5-ai-generated-1.jpg') center center/cover no-repeat;
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 0.0) 50%, rgba(0, 0, 0, 0.05) 100%);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    color: var(--white);
}

.hero-tagline {
    font-family: var(--font-headline);
    font-size: 3rem;
    letter-spacing: 4px;
    color: var(--telos-green);
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(141, 198, 63, 0.9);
    line-height: 1.3;
    display: block;
    animation: fadeInGlow 1.5s ease-in-out;
}

.hero-title {
    font-family: var(--font-headline);
    font-size: 1.4rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
    border-left: 3px solid var(--telos-green);
    padding-left: 1.5rem;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.35rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-tagline-box {
    background: rgba(141, 198, 63, 0.15);
    border-left: 4px solid var(--telos-green);
    padding: 1.25rem 2rem;
    margin-bottom: 2.5rem;
    border-radius: 4px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(141, 198, 63, 0.2);
    display: inline-block;
    max-width: fit-content;
}

.hero-tagline-emphasized {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(141, 198, 63, 0.4);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.675rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--telos-dark-green) 0%, var(--telos-green) 100%);
    color: var(--black);
    font-weight: 700;
}

.btn-primary:hover {
    background: var(--telos-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(132, 228, 63, 0.4);
    color: var(--black);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--navy);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--navy);
}

.btn-outline-gold {
    background: transparent;
    color: var(--telos-green);
    border: 2px solid var(--telos-dark-green);
}

.btn-outline-gold:hover {
    background: linear-gradient(135deg, var(--telos-dark-green) 0%, var(--telos-green) 100%);
    color: var(--black);
    border-color: var(--telos-green);
}

.btn-gold {
    background: linear-gradient(135deg, var(--telos-dark-green) 0%, var(--telos-green) 100%);
    color: var(--black);
    font-weight: 700;
}

.btn-gold:hover {
    background: var(--telos-green);
    color: var(--black);
}

.btn-lg {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.center {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--telos-green);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-headline);
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

.section-intro {
    font-size: 1.2rem;
    color: var(--medium-gray);
    line-height: 1.7;
}

.large-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--dark-gray);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    padding: 8rem 0 5rem;
    margin-top: 80px;
    text-align: center;
    color: var(--white);
}

.page-label {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--telos-green);
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.page-title {
    font-family: var(--font-headline);
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

/* Background Variants */
.bg-navy {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: var(--white);
}

.bg-navy h2,
.bg-navy h3,
.bg-navy h4 {
    color: var(--white);
}

.bg-light {
    background: var(--off-white);
}

.bg-black {
    background: #000000;
    color: var(--white);
}

.bg-black h2,
.bg-black h3,
.bg-black h4 {
    color: var(--white);
}

.bg-black .section-label {
    color: var(--telos-green);
}

.bg-black .pillar-description {
    color: rgba(255, 255, 255, 0.85);
}

.bg-black .pillar-card h3,
.bg-black .pillar-card h4 {
    color: var(--black);
}

.bg-black .pillar-card .pillar-description {
    color: var(--medium-gray);
}

/* Value Proposition Section */
.value-prop {
    background: var(--off-white);
    padding: 4rem 0;
}

.value-prop .section-header {
    margin-bottom: 2.5rem;
}

.value-prop .section-title {
    font-size: 2.2rem;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.value-item {
    background: var(--white);
    padding: 1.75rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    color: var(--telos-green);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.value-item p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--medium-gray);
}

.value-solution {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

.solution-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.solution-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.solution-content p {
    font-size: 1rem;
    line-height: 1.6;
}

.solution-emphasis {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.3225rem;
    color: var(--telos-dark-green);
    font-style: italic;
    font-weight: 700;
    margin-top: 1.5rem;
}

.stat-quotes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-quote {
    padding: 3rem 2.5rem;
    background: radial-gradient(circle at top left, rgba(141, 198, 63, 0.08), rgba(98, 176, 70, 0.02));
    border-radius: 50% 50% 50% 50% / 20% 20% 20% 20%;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 8px 30px rgba(141, 198, 63, 0.1);
}

.stat-quote::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--telos-green), #62b046);
    border-radius: 50%;
    opacity: 0.15;
}

.stat-quote blockquote {
    margin: 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.stat-quote blockquote::before {
    content: '"';
    position: absolute;
    left: -15px;
    top: -20px;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--telos-green);
    opacity: 0.25;
    font-family: Georgia, serif;
}

.stat-quote blockquote p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark-gray);
    font-style: italic;
    margin-bottom: auto;
    flex-grow: 1;
}

.stat-quote cite {
    display: block;
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-style: normal;
    font-weight: 500;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .stat-quotes-grid {
        grid-template-columns: 1fr;
    }
}

.value-solution {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-top: 0;
}

/* Differentiator Section */
.differentiator {
    background: var(--white);
}

.diff-content {
    max-width: 900px;
    margin: 0 auto;
}

.diff-stats {
    display: flex;
    gap: 3rem;
    margin: 2.5rem 0;
}

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

.stat-number {
    font-family: 'Quicksand', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--telos-green);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(132, 228, 63, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partnership-statement {
    margin: 2.5rem 0;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(141, 198, 63, 0.1), rgba(98, 176, 70, 0.1));
    border-left: 4px solid var(--telos-green);
    border-radius: 8px;
}

.partnership-statement p {
    font-family: var(--font-headline);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--black);
    line-height: 1.3;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Pillars Section */
.pillars {
    padding: 4.5rem 0;
}

.pillars .section-header {
    margin-bottom: 3rem;
}

.pillars .section-title {
    font-size: 2.35rem;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.pillar-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--telos-dark-green);
    display: flex;
    flex-direction: column;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pillar-number {
    font-family: 'Quicksand', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--telos-dark-green);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.pillar-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    height: auto;
    line-height: 1.2;
}

.pillar-description {
    margin-bottom: 1.25rem;
    color: var(--medium-gray);
    font-size: 0.95rem;
    height: 6rem;
    line-height: 1.6;
}

.pillar-features {
    list-style: none;
}

.pillar-features li {
    padding: 0.5rem 0;
    padding-left: 1.3rem;
    position: relative;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.pillar-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--telos-dark-green);
    font-weight: 700;
}

/* POWERplan Framework Visual */
.framework-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.framework-content {
    max-width: 600px;
}

.framework-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.power-pillars-diagram {
    position: relative;
    width: 400px;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
}

.pillar-circle {
    width: 100%;
    background: linear-gradient(135deg, var(--telos-dark-green) 0%, var(--telos-green) 100%);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 15px rgba(141, 198, 63, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pillar-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.pillar-circle:hover::before {
    left: 100%;
}

.pillar-circle:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 25px rgba(141, 198, 63, 0.5);
}

.pillar-letter {
    font-family: var(--font-headline);
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
    background: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.pillar-name {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.pillar-center {
    width: 100%;
    background: var(--black);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 1rem 0;
    border: 3px solid var(--telos-green);
    box-shadow: 0 6px 30px rgba(141, 198, 63, 0.4);
}

.pillar-center span {
    font-family: var(--font-headline);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--telos-green);
    display: block;
    letter-spacing: 4px;
}

.pillar-center small {
    font-size: 1.2rem;
    color: var(--white);
    font-style: italic;
    letter-spacing: 2px;
}

/* Individual Pillar Section Styles */
.pillar-section {
    position: relative;
}

.pillar-section.pillar-purpose {
    border-top: 4px solid var(--telos-green);
}

.pillar-section.pillar-ownership {
    background: var(--off-white);
}

.pillar-section.pillar-wealth {
    border-top: 4px solid var(--telos-green);
}

.pillar-section.pillar-education {
    background: var(--off-white);
}

.pillar-section.pillar-relationships {
    border-top: 4px solid var(--telos-green);
}

.pillar-content-layout {
    max-width: 1000px;
    margin: 0 auto;
}

.pillar-header-large {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.pillar-letter-large {
    background: linear-gradient(135deg, var(--telos-dark-green) 0%, var(--telos-green) 100%);
    color: var(--white);
    font-family: var(--font-headline);
    font-size: 4rem;
    font-weight: 700;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(141, 198, 63, 0.3);
    flex-shrink: 0;
}

.pillar-info-large {
    flex: 1;
}

.pillar-title-large {
    font-family: var(--font-headline);
    font-size: 2.5rem;
    color: var(--telos-dark-green);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.pillar-subtitle-large {
    font-size: 1.2rem;
    color: var(--medium-gray);
    font-style: italic;
}

.pillar-description-large {
    margin-bottom: 3rem;
}

.pillar-components {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.component-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--telos-green);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.component-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.component-card h4 {
    color: var(--telos-dark-green);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.pillar-outcome {
    background: linear-gradient(135deg, var(--telos-dark-green) 0%, var(--telos-green) 100%);
    padding: 2.5rem;
    border-radius: 12px;
    color: var(--white);
}

.pillar-outcome h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.pillar-outcome p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    line-height: 1.7;
}

.pillars-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Business Functions Section */
.business-functions {
    background: linear-gradient(135deg, #1a3a1a 0%, #2d5a2d 50%, #3d6d3d 100%);
    padding: 5rem 0;
}

.functions-box {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 3.5rem;
    border-radius: 12px;
    border: 2px solid var(--telos-dark-green);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.functions-header {
    text-align: center;
    margin-bottom: 3rem;
}

.functions-header h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.functions-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

.functions-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

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

.function-group h3 {
    color: var(--telos-green);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(132, 228, 63, 0.5);
}

.function-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.function-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}

.function-item.handled {
    background: rgba(101, 209, 0, 0.15);
    border: 2px solid var(--telos-dark-green);
    color: var(--white);
}

.function-item.handled:hover {
    background: rgba(132, 228, 63, 0.25);
    border-color: var(--telos-green);
}

.function-item.focus {
    background: linear-gradient(135deg, rgba(101, 209, 0, 0.3) 0%, rgba(132, 228, 63, 0.3) 100%);
    border: 3px solid var(--telos-green);
    color: var(--white);
    font-size: 1.3rem;
    padding: 1.75rem 2rem;
    box-shadow: 0 4px 20px rgba(132, 228, 63, 0.3);
}

.function-item.focus:hover {
    background: linear-gradient(135deg, rgba(101, 209, 0, 0.4) 0%, rgba(132, 228, 63, 0.4) 100%);
    box-shadow: 0 6px 25px rgba(132, 228, 63, 0.4);
}

.function-item:hover {
    transform: translateX(5px);
}

.function-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.function-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.divider-line {
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--telos-dark-green), var(--telos-green), transparent);
}

.divider-text {
    color: var(--telos-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid var(--telos-dark-green);
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(132, 228, 63, 0.3);
}

.functions-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.functions-footer p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    color: var(--white);
}

.cta-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 4rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1.25rem;
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
}

.cta-note {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.cta-action {
    margin-top: 2.5rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-subtext {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Footer */
.footer {
    background: #000000;
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

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

.footer-brand {
}

.footer-logo {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-image {
    height: 75px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-family: var(--font-headline);
    font-size: 1.1rem;
    color: var(--telos-green);
    font-style: italic;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(141, 198, 63, 0.4);
}

.footer-address {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--telos-green);
}

.footer-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-top: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

.footer-disclaimer {
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* White text utility */
.white-text {
    color: var(--white) !important;
}

/* Stat items for dark backgrounds */
.stat-item-white {
    text-align: center;
}

.stat-item-white .stat-number {
    font-family: 'Quicksand', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--telos-green);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(132, 228, 63, 0.5);
}

.stat-item-white .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content Layout */
.content-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.content-main {
    max-width: 800px;
}

.content-block {
    margin-bottom: 3rem;
}

.content-block h3 {
    margin-bottom: 1rem;
}

.quote-box {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--telos-dark-green);
    margin-top: 2rem;
}

.quote-box blockquote {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--navy);
    line-height: 1.6;
}

.stat-box {
    background: var(--off-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.stat-box-header {
    background: var(--navy);
    color: var(--white);
    padding: 1.25rem;
}

.stat-box-header h4 {
    color: var(--white);
    margin: 0;
}

.stat-box-content {
    padding: 2rem 1.5rem;
}

.stat-item-vertical {
    padding: 1.5rem 0;
}

.stat-number-large {
    font-family: 'Quicksand', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--telos-green);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(132, 228, 63, 0.5);
}

.stat-label-large {
    font-size: 0.95rem;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.stat-divider {
    height: 1px;
    background: var(--light-gray);
}

/* Timeline & Process Styles */
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

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

.timeline-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(101, 209, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--telos-green);
}

.timeline-icon svg {
    width: 40px;
    height: 40px;
}

.timeline-item h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.timeline-item p {
    color: rgba(255, 255, 255, 0.85);
}

/* D⁵ Process Timeline Horizontal */
.timeline-horizontal {
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: flex-start;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.timeline-phase {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.phase-marker {
    background: var(--telos-green);
    color: var(--black);
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 600;
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(141, 198, 63, 0.3);
    transition: var(--transition);
}

.phase-marker:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(141, 198, 63, 0.4);
}

.phase-bar {
    height: 40px;
    background: linear-gradient(135deg, var(--telos-dark-green) 0%, var(--telos-green) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    position: relative;
    overflow: hidden;
}

.phase-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.phase-months {
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

.phase-label {
    font-family: var(--font-headline);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-gray);
}

/* Phase Section Detail Styling */
.phase-section {
    border-top: 3px solid var(--telos-green);
}

.phase-content {
    max-width: 1000px;
    margin: 0 auto;
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.phase-number {
    background: var(--telos-green);
    color: var(--black);
    font-family: var(--font-headline);
    font-size: 2.5rem;
    font-weight: 600;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(141, 198, 63, 0.3);
    flex-shrink: 0;
}

.phase-info {
    flex: 1;
}

.phase-title {
    margin-bottom: 0.5rem;
    color: var(--black);
}

.phase-timeline {
    color: var(--telos-dark-green);
    font-weight: 600;
    font-size: 1.1rem;
}

.phase-description {
    margin-bottom: 3rem;
}

.phase-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 1200px) {
    .phase-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.phase-detail-card {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--telos-green);
}

.phase-detail-card h4 {
    color: var(--telos-dark-green);
    margin-bottom: 1rem;
}

.phase-detail-card ul {
    list-style: none;
    padding: 0;
}

.phase-detail-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.phase-detail-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--telos-green);
    font-weight: bold;
}

/* Partnership Diagram Large */
.partnership-visual {
    margin-top: 4rem;
}

.partnership-diagram-large {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 12px;
}

.pd-row {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    flex-wrap: wrap;
}

.pd-row-center {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.pd-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid var(--telos-dark-green);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    min-width: 150px;
}

.pd-box.pd-family {
    color: var(--white);
    font-size: 0.95rem;
}

.pd-box.pd-telos {
    background: linear-gradient(135deg, var(--telos-dark-green) 0%, var(--telos-green) 100%);
    color: var(--black);
    min-width: 300px;
    border: none;
    font-weight: 700;
}

.pd-box small {
    font-size: 0.75rem;
    display: block;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.pd-connector {
    display: flex;
    justify-content: center;
    padding: 1.5rem 0;
}

.pd-line {
    width: 2px;
    height: 40px;
    background: var(--gold);
}

/* Difference Grid */
.difference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.difference-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.difference-header {
    background: var(--navy);
    color: var(--white);
    padding: 1.75rem 2rem;
}

.difference-header h3 {
    color: var(--white);
    margin: 0;
}

.difference-content {
    padding: 2rem;
}

.difference-content ul {
    list-style: none;
    margin: 1.5rem 0;
}

.difference-content ul li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--light-gray);
}

.difference-content ul li:last-child {
    border-bottom: none;
}

.difference-content ul li strong {
    color: var(--navy);
}

.difference-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
}

.difference-emphasis {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: var(--off-white);
    border-left: 4px solid var(--gold);
    font-weight: 600;
    color: var(--navy);
}

/* Focus Grid */
.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

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

.focus-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    color: var(--telos-dark-green);
}

.focus-icon svg {
    width: 100%;
    height: 100%;
}

.focus-item h3 {
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    max-width: 500px;
}

.assessment-info,
.contact-details {
    margin: 2.5rem 0;
}

.assessment-info h3,
.contact-details h3 {
    margin-bottom: 1rem;
}

.assessment-info ul {
    list-style: none;
    margin: 1rem 0;
}

.assessment-info ul li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.assessment-info ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.note {
    font-size: 0.95rem;
    color: var(--medium-gray);
    font-style: italic;
    margin-top: 1rem;
}

.disclaimer {
    margin-top: 2rem;
    padding: 1.25rem;
    background: var(--off-white);
    border-left: 4px solid var(--gold);
    font-size: 0.95rem;
}

.contact-form-container {
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--navy);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--light-gray);
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--gold);
}

.contact-form textarea {
    resize: vertical;
}

.form-actions {
    margin-top: 2rem;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--medium-gray);
    text-align: center;
}

/* Criteria & Network Grids */
.criteria-grid,
.network-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.criteria-card,
.network-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.criteria-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--telos-dark-green) 0%, var(--telos-green) 100%);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.criteria-card h3,
.network-item h3 {
    margin-bottom: 1rem;
}

.content-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Structure & Investment Styles */
.structure-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.structure-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.structure-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border: 1px solid rgba(101, 209, 0, 0.3);
}

.structure-item h3 {
    color: var(--telos-green);
    margin-bottom: 1rem;
}

.structure-item p {
    color: rgba(255, 255, 255, 0.85);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

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

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--telos-dark-green) 0%, var(--telos-green) 100%);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
}

.process-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--off-white);
    border-left: 4px solid var(--telos-dark-green);
    border-radius: 4px;
}

.investment-overview {
    max-width: 900px;
    margin: 0 auto;
}

.investment-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.investment-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.investment-item h3 {
    margin-bottom: 1rem;
    color: var(--navy);
}

/* Leader Profile */
.leader-profile {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-member-header {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--telos-dark-green);
}

.team-member-header h3 {
    color: var(--black);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.team-title {
    color: var(--telos-dark-green);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
}

.team-member-bio p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--dark-gray);
}

.team-member-image {
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 8px;
}

.team-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 50%;
    transition: var(--transition);
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.team-member:hover .team-photo {
    transform: scale(1.05);
}

.team-stats-compact {
    background: var(--off-white);
    padding: 0.75rem;
    border-radius: 6px;
    margin-bottom: 0;
    border-left: 3px solid var(--telos-green);
}

.stat-compact {
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    line-height: 1.5;
    min-height: 50px;
    display: flex;
    flex-direction: column;
}

.stat-compact:last-child {
    margin-bottom: 0;
}

.stat-compact strong {
    color: var(--telos-dark-green);
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
}

.team-quote {
    font-style: italic;
    color: var(--telos-dark-green);
    font-size: 0.95rem;
    margin-bottom: 1.5rem !important;
    padding-left: 1rem;
    border-left: 3px solid var(--telos-green);
}

.leader-image {
    position: sticky;
    top: 120px;
}

.leader-photo {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.leader-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(10, 31, 68, 0.2);
}

.placeholder-image {
    width: 100%;
    aspect-ratio: 1;
    background: var(--light-gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--medium-gray);
}

.placeholder-image svg {
    width: 50%;
    height: 50%;
}

.leader-content h2 {
    margin-bottom: 0.5rem;
}

.leader-title {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.leader-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--off-white);
    border-radius: 8px;
    border-left: 4px solid var(--telos-green);
}

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

.stat-item strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--telos-dark-green);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    margin: 0;
}

.leader-bio {
    margin-bottom: 2.5rem;
}

.leader-quote {
    background: var(--off-white);
    padding: 2rem;
    border-left: 4px solid var(--gold);
    margin: 2.5rem 0;
}

.leader-expertise {
    margin: 2.5rem 0;
}

.leader-expertise ul {
    list-style: none;
    margin-top: 1rem;
}

.leader-expertise ul li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.leader-expertise ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* Insights Grid */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.insight-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.insight-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: var(--white);
    padding: 3rem;
}

.insight-card.featured h2 {
    color: var(--white);
}

.insight-category {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--telos-green);
    font-weight: 600;
    margin-bottom: 1rem;
}

.insight-card h2,
.insight-card h3 {
    margin-bottom: 1rem;
}

.insight-card p {
    margin-bottom: 1.5rem;
    color: var(--medium-gray);
}

.insight-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.insight-link {
    color: var(--telos-dark-green);
    font-weight: 600;
    font-size: 0.95rem;
}

.insight-link:hover {
    color: var(--telos-green);
}

/* Newsletter Section */
.newsletter-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-content h2 {
    margin-bottom: 1rem;
}

.form-inline {
    display: flex;
    gap: 1rem;
}

.form-inline input {
    flex: 1;
    padding: 0.9rem;
    border: 2px solid var(--light-gray);
    border-radius: 4px;
    font-size: 1rem;
}

.form-inline input:focus {
    outline: none;
    border-color: var(--gold);
}

/* Team Card Links */
.team-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.team-card-link .team-member {
    cursor: pointer;
}

.team-card-link:hover .team-member {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-card-link:hover .team-photo {
    transform: scale(1.05);
}

/* Profile Detail Pages */
.back-link {
    display: inline-flex;
    align-items: center;
    color: var(--telos-dark-green);
    font-weight: 500;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--telos-green);
}

.profile-detail {
    max-width: 900px;
    margin: 0 auto;
}

.profile-main-image {
    text-align: center;
    margin-bottom: 3rem;
}

.profile-photo-large {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.profile-stats-bar {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    background: var(--off-white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    border-left: 4px solid var(--telos-green);
}

.profile-stats-bar .stat-item {
    text-align: center;
    flex: 1;
}

.profile-stats-bar .stat-item strong {
    display: block;
    color: var(--telos-dark-green);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-stats-bar .stat-item p {
    color: var(--dark-gray);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.profile-bio-full {
    margin-bottom: 3rem;
}

.profile-bio-full p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.quote-text {
    font-style: italic;
    color: var(--telos-dark-green);
    padding-left: 2rem;
    border-left: 4px solid var(--telos-green);
    font-size: 1.2rem !important;
}

.profile-gallery {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--off-white);
    border-radius: 8px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-placeholder {
    color: var(--medium-gray);
    font-style: italic;
    text-align: center;
    padding: 2rem;
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.profile-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

/* Circular Placeholder for Team Members Without Photos */
.placeholder-image-circle {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, var(--telos-dark-green) 0%, var(--telos-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.placeholder-image-circle svg {
    width: 50%;
    height: 50%;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 1.3rem;
        padding-left: 1.2rem;
        border-left-width: 2.5px;
    }
    
    .diff-content,
    .content-layout,
    .contact-layout,
    .leader-profile,
    .newsletter-section,
    .framework-intro {
        grid-template-columns: 1fr;
    }
    
    .power-pillars-diagram {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pillar-components {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        margin-top: 70px;
        min-height: 80vh;
    }
    
    .hero-tagline {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    
    .hero-title {
        font-size: 1.1rem;
        padding-left: 1rem;
        border-left-width: 2px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .partnership-statement {
        padding: 1.5rem 2rem;
    }
    
    .partnership-statement p {
        font-size: 1.1rem;
    }
    
    .pillars-grid,
    .value-grid,
    .difference-grid,
    .focus-grid,
    .criteria-grid,
    .network-grid,
    .insights-grid,
    .phase-details-grid {
        grid-template-columns: 1fr;
    }
    
    .pillar-description {
        height: auto;
    }
    
    .pillar-title {
        height: auto;
    }
    
    .timeline-horizontal {
        flex-direction: column;
        gap: 2rem;
    }
    
    .timeline-phase {
        width: 100%;
    }
    
    .phase-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .phase-number {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .pillar-header-large {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .pillar-letter-large {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }
    
    .pillar-title-large {
        font-size: 2rem;
    }
    
    .power-pillars-diagram {
        height: auto;
        padding: 1rem 0;
    }
    
    .pillar-circle {
        padding: 1.25rem 1.5rem;
    }
    
    .pillar-letter {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }
    
    .pillar-name {
        font-size: 1.2rem;
    }
    
    .functions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .function-divider {
        flex-direction: row;
        justify-content: center;
    }
    
    .divider-line {
        width: 80px;
        height: 2px;
        background: linear-gradient(to right, transparent, var(--gold), transparent);
    }
    
    .functions-box {
        padding: 2.5rem 2rem;
    }
    
    .diff-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 2.5rem 1.5rem;
    }
    
    .form-inline {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 1rem;
        padding-left: 0.75rem;
        border-left-width: 2px;
        letter-spacing: 1px;
    }
    
    .btn {
        padding: 0.6rem 1.125rem;
        font-size: 0.7rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .partnership-statement {
        padding: 1.25rem 1.5rem;
        margin: 2rem 0;
    }
    
    .partnership-statement p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInGlow {
    0% {
        opacity: 0;
        transform: translateY(-10px);
        text-shadow: 0 0 0 rgba(141, 198, 63, 0);
    }
    50% {
        text-shadow: 0 3px 20px rgba(141, 198, 63, 1);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        text-shadow: 0 3px 15px rgba(141, 198, 63, 0.8);
    }
}