/* Font Face Declarations */
@font-face {
    font-family: 'Goldman Sans';
    src: url('fonts/goldman-sans/GoldmanSans_Rg.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Goldman Sans';
    src: url('fonts/goldman-sans/GoldmanSans_Bd.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Goldman Sans';
    src: url('fonts/goldman-sans/GoldmanSans_Lt.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Goldman Sans';
    src: url('fonts/goldman-sans/GoldmanSans_Md.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Goldman Sans';
    src: url('fonts/goldman-sans/GoldmanSans_It.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Golden State Serif';
    src: url('fonts/golden_state_serif/GoldenStateSerifPERSONAL-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Golden State Serif';
    src: url('fonts/golden_state_serif/GoldenStateSerifPERSONAL-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Golden State Serif';
    src: url('fonts/golden_state_serif/GoldenStateSerifPERSONAL-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

/* IBM Plex Sans Font Declarations */
@font-face {
    font-family: 'IBM Plex Sans';
    src: url('IBM_Plex_Sans 2/static/IBMPlexSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('IBM_Plex_Sans 2/static/IBMPlexSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('IBM_Plex_Sans 2/static/IBMPlexSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('IBM_Plex_Sans 2/static/IBMPlexSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

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

section {
    margin: 0;
    padding: 0;
}

:root {
    --primary-blue: #1e3a8a;
    --secondary-blue: #3b82f6;
    --accent-blue: #60a5fa;
    --light-blue: #dbeafe;
    --dark-blue: #1e40af;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --off-white: #f9fafb;
    /* Vanstadt-style colors */
    --navy-blue: #0B0F17;
    --midnight-blue: #1a1f2e;
    --text-on-dark: #F5F7FA;
    --text-on-light: #0B0F17;
    --muted-gray: #6b7280;
}

body {
    font-family: 'Goldman Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--off-white);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Golden State Serif', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-blue);
}

/* Navigation Bar */
.navbar,
body .navbar,
body.homepage .navbar,
.recruitment-page ~ .navbar,
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0 !important;
    height: 70px !important;
    min-height: 70px !important;
    max-height: 70px !important;
    backdrop-filter: none;
    opacity: 1 !important;
    overflow: hidden;
    box-sizing: border-box;
}

.nav-container,
body .nav-container,
body.homepage .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px !important;
    min-height: 70px !important;
    max-height: 70px !important;
    box-sizing: border-box;
}

.logo-link,
body .logo-link,
body.homepage .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 70px !important;
    max-height: 70px !important;
    min-height: 70px !important;
    flex-shrink: 0;
    box-sizing: border-box;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
}

.logo,
body .logo,
body.homepage .logo,
img.logo {
    height: 95px !important;
    max-height: 95px !important;
    width: auto !important;
    transition: transform 0.3s ease;
    object-fit: contain;
    display: block;
    box-sizing: border-box;
    padding: 0 !important;
    margin: 0 !important;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-link .logo {
    transform-origin: center center;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 0.9rem;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.25rem 0;
}

.nav-link:hover {
    color: var(--secondary-blue);
}

.nav-link.active {
    color: var(--secondary-blue);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--secondary-blue);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    text-align: center;
    margin-top: 70px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.3) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--light-blue);
    font-weight: 300;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: var(--light-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Main Content */
.main-content {
    padding: 4rem 0;
}

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

/* Force IBM Plex Sans for members page containers */
body.homepage .page-body .container {
    font-family: 'IBM Plex Sans', sans-serif !important;
}

.intro-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-blue);
}

.section-text {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
    line-height: 1.8;
}

/* Page Content Styles */
.page-content {
    margin-top: 70px;
    padding: 0;
    min-height: calc(100vh - 70px);
}

/* Make members page background white */
body.homepage .page-content {
    background-color: var(--white);
}

.page-header {
    text-align: left;
    padding: clamp(90px, 10vw, 140px) clamp(3rem, 6vw, 5rem);
    background-color: var(--white);
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-on-light);
    line-height: 1.2;
}

.page-subtitle {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1.125rem;
    color: var(--muted-gray);
    font-weight: 400;
}

.page-body {
    padding: 0 clamp(3rem, 6vw, 5rem) clamp(90px, 10vw, 140px);
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'IBM Plex Sans', sans-serif !important;
}

/* Footer */
.footer {
    background-color: #f5f5f5;
    color: var(--navy-blue);
    text-align: center;
    padding: 2rem 0;
    margin-top: 0;
    position: relative;
    width: 100%;
}

.footer p {
    font-size: 0.9rem;
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
    opacity: 1;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-icon {
    color: var(--navy-blue);
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.footer-icon svg {
    width: 24px;
    height: 24px;
}

.footer-logo {
    height: 32px;
    width: auto;
    opacity: 0.8;
    filter: brightness(0.3);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
    filter: brightness(0.4);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 1rem 0;
        display: block;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2.5rem;
    }
    
    .page-header {
        padding: 4rem 2rem;
    }
    
    .page-body {
        padding: 0 2rem 4rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .nav-container {
        padding: 0 1rem;
        height: 70px !important;
        min-height: 70px !important;
        max-height: 70px !important;
    }
    
    .navbar {
        height: 70px !important;
        min-height: 70px !important;
        max-height: 70px !important;
    }
    
    .logo-link {
        height: 70px !important;
        max-height: 70px !important;
    }
    
    .logo {
        height: 95px !important;
        max-height: 95px !important;
    }

    .container {
        padding: 0 1rem;
    }
}

/* ============================================
   HOMEPAGE-SPECIFIC STYLES (Vanstadt-style)
   ============================================ */

/* Homepage body uses IBM Plex Sans */
body.homepage {
    font-family: 'IBM Plex Sans', sans-serif;
}

/* Hero Section - Homepage */
.homepage-hero {
    position: relative;
    width: 100%;
    height: clamp(70vh, 85vh, 85vh);
    min-height: 600px;
    max-height: 900px;
    margin-top: 70px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.homepage-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 15, 23, 0.45) 0%, rgba(26, 31, 46, 0.55) 100%);
    z-index: 1;
}

.homepage-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 4rem;
}

.homepage-hero-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--text-on-dark);
    text-align: left;
    max-width: 800px;
    margin: 0;
}

/* Two-Column Section Container */
.two-column-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    width: 100%;
    margin: 0;
    padding: 0;
    gap: 0;
}

/* Who We Are Section */
.who-we-are-section {
    background-color: var(--white);
    padding: clamp(90px, 10vw, 140px) clamp(3rem, 6vw, 5rem) clamp(90px, 10vw, 140px) clamp(3rem, 6vw, 5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-label {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--muted-gray);
    margin-bottom: 1.5rem;
    display: block;
}

.who-we-are-text {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-on-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.btn-outline {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: var(--navy-blue);
    border: 1.5px solid var(--navy-blue);
    background: transparent;
    transition: background-color 0.2s ease, color 0.2s ease;
    align-self: flex-start;
}

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

/* Metrics Section */
.metrics-section {
    background-color: var(--navy-blue);
    background-image: url('images/banner.png?v=1');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: clamp(90px, 10vw, 140px) clamp(3rem, 6vw, 5rem) clamp(90px, 10vw, 140px) clamp(3rem, 6vw, 5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.metrics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(11, 15, 23, 0.6) 0%, rgba(11, 15, 23, 0.7) 100%);
    pointer-events: none;
    z-index: 1;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 4rem;
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

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

.metric-number {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 600;
    color: var(--text-on-dark);
    line-height: 1;
    margin-bottom: 0.75rem;
    display: block;
}

.metric-label {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(245, 247, 250, 0.8);
    line-height: 1.5;
    max-width: 200px;
    margin: 0 auto;
}

/* Image Tiles + Market Leadership Section */
.image-tiles-section {
    background-color: var(--white);
    padding: 0;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}

.image-tiles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    align-self: center;
}

.image-tile {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.image-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(11, 15, 23, 0.85) 0%, rgba(11, 15, 23, 0.3) 50%, transparent 100%);
    z-index: 1;
    transition: opacity 0.2s ease;
}

.image-tile:hover::before {
    opacity: 0.9;
}

.image-tile-title {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    z-index: 2;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-on-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.image-tile-title::after {
    content: '→';
    font-size: 0.875rem;
    transition: transform 0.2s ease;
}

.image-tile:hover .image-tile-title::after {
    transform: translateX(4px);
}

.market-leadership-section {
    background-color: var(--white);
    padding: 0 clamp(3rem, 6vw, 5rem) 0 clamp(3rem, 6vw, 5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.market-leadership-headline {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--text-on-light);
    margin-bottom: 2rem;
    max-width: 600px;
}

.market-leadership-text {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--muted-gray);
    max-width: 600px;
}

/* Content Container */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Responsive - Homepage */
@media (max-width: 968px) {
    .two-column-section {
        grid-template-columns: 1fr;
    }

    .who-we-are-section,
    .metrics-section,
    .image-tiles-section {
        padding: 0;
    }
    
    .market-leadership-section {
        padding: 0 2rem;
    }

    .homepage-hero-content {
        padding: 0 2rem;
    }

    .metrics-grid {
        gap: 2rem;
    }

    .image-tiles-grid {
        gap: 0;
    }
}

@media (max-width: 640px) {
    .homepage-hero {
        height: clamp(60vh, 70vh, 70vh);
        min-height: 500px;
    }

    .homepage-hero-title {
        font-size: 2.5rem;
    }
    
    .page-header {
        padding: 3rem 1.5rem;
    }
    
    .page-body {
        padding: 0 1.5rem 3rem;
    }
    
    .page-title {
        font-size: 2rem;
    }

    .who-we-are-section,
    .metrics-section,
    .image-tiles-section {
        padding: 0;
    }
    
    .market-leadership-section {
        padding: 0 1.5rem;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .image-tiles-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile-first: small phones and touch optimization */
@media (max-width: 480px) {
    .two-column-section {
        min-height: auto;
    }

    .homepage-hero {
        min-height: 400px;
        height: 55vh;
    }

    .homepage-hero-content {
        padding: 0 1.25rem;
    }

    .homepage-hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .who-we-are-section,
    .metrics-section {
        padding: 2.5rem 1.25rem;
    }

    .who-we-are-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .section-label {
        font-size: 0.7rem;
        letter-spacing: 0.1em;
        margin-bottom: 1rem;
    }

    .market-leadership-section {
        padding: 2.5rem 1.25rem;
    }

    .market-leadership-headline {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .market-leadership-text {
        font-size: 1rem;
    }

    .metrics-grid {
        gap: 2rem;
    }

    .metric-number {
        font-size: 2.5rem;
    }

    .metric-label {
        font-size: 0.8125rem;
        max-width: 100%;
    }

    .image-tile {
        aspect-ratio: 4/3;
    }

    .image-tile-title {
        font-size: 0.8125rem;
    }

    .footer {
        padding: 1.5rem 1rem;
        padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0));
    }

    .footer p {
        font-size: 0.8125rem;
        margin-bottom: 1rem;
    }

    .footer-links {
        gap: 1.25rem;
    }

    .footer-logo {
        height: 28px;
    }
}

/* Nav: touch-friendly hamburger and safe area */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-menu {
        padding: calc(2rem + env(safe-area-inset-top, 0)) 0 2rem 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.75rem;
    }

    .logo {
        height: 52px !important;
        max-height: 52px !important;
    }

    .logo-link {
        height: 52px !important;
        max-height: 52px !important;
    }
}

/* Touch: remove tap highlight on interactive elements */
a, button, .hamburger, .nav-link, .btn-outline, .image-tile {
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 640px) {
    .btn-outline {
        display: block;
        text-align: center;
        padding: 0.875rem 1.25rem;
    }
}

/* ============================================
   ABOUT PAGE SPECIFIC STYLES
   ============================================ */

/* About Hero Section */
.about-hero {
    position: relative;
    width: 100%;
    min-height: 85vh;
    margin-top: 70px;
    background-color: var(--navy-blue);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: flex-start;
    padding: clamp(60px, 8vw, 100px) clamp(3rem, 6vw, 5rem);
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(11, 15, 23, 0.4) 0%, rgba(11, 15, 23, 0.7) 50%, rgba(11, 15, 23, 0.9) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(85vh - 70px - 120px);
    height: 100%;
}

.about-hero-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: auto;
}

.about-hero-text-overlay {
    margin-top: auto;
    max-width: 800px;
    padding: 0;
    background: none;
    border-radius: 0;
    backdrop-filter: none;
}

.about-firm-name {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #FFFFFF;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.btn-interest-form {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: var(--navy-blue);
    background-color: var(--white);
    border: 1.5px solid var(--white);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-interest-form:hover {
    background-color: transparent;
    color: var(--white);
}

.about-content-text {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1.5rem;
    line-height: 1.85;
    color: #FFFFFF !important;
    margin: 0 0 2rem 0;
    font-weight: 300;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Learn More Button */
.btn-learn-more {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #FFFFFF;
    background-color: transparent;
    border: 1.5px solid #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.6s ease forwards;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.btn-learn-more:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typing animation cursor */
.typing-cursor {
    display: inline-block;
    width: 2px;
    height: 1.5em;
    background-color: #FFFFFF;
    margin-left: 2px;
    animation: blink 1s infinite;
    vertical-align: text-bottom;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* Services Section - Edge to Edge */
.services-section {
    width: 100%;
    background-color: var(--white);
    padding: 0;
    margin: 0;
}

.services-header {
    padding-top: clamp(80px, 10vw, 120px);
    padding-bottom: clamp(40px, 6vw, 60px);
    text-align: center;
}

.services-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-on-light);
    text-align: center;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.services-subtitle {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--muted-gray);
    text-align: center;
    margin: 0;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(2rem, 4vw, 4rem) clamp(40px, 6vw, 60px);
}

.service-card {
    padding: 2rem;
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 28px;
    height: 28px;
    color: var(--muted-gray);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.25s ease;
}

.service-card:hover .service-icon {
    color: var(--text-on-light);
}

.service-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-on-light);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.service-body {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    color: #4b5563;
    margin: 0;
    text-align: left;
    flex-grow: 1;
}

/* Placements Section */
.placements-section {
    background-color: var(--white);
    padding: clamp(40px, 6vw, 60px) 0;
    overflow: hidden;
}

.placements-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-on-light);
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ticker-container {
    width: 100%;
    overflow: hidden;
}

.ticker-row {
    display: flex;
    width: fit-content;
    margin-bottom: 2rem;
}

.ticker-row-1 {
    animation: ticker-left 40s linear infinite;
}

.ticker-row-2 {
    animation: ticker-right 45s linear infinite;
}

.ticker-row-3 {
    animation: ticker-left 50s linear infinite;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.placement-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.placement-logo:hover {
    opacity: 1;
}

@keyframes ticker-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes ticker-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* CTA Band */
.cta-band {
    background-color: var(--navy-blue);
    padding: clamp(60px, 8vw, 100px) clamp(3rem, 6vw, 5rem);
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.cta-text {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--text-on-dark);
    margin: 0;
}

.cta-button {
    margin-top: 0.5rem;
}

.cta-button {
    margin-top: 0.5rem;
}

/* Responsive - About Page */
@media (max-width: 968px) {
    .about-hero-top {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
    
    .about-hero {
        min-height: 85vh;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat !important;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 2rem 4rem;
    }
    
    .service-card {
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 10px;
    }
    
    .ticker-content {
        gap: 2rem;
    }
    
    .placement-logo {
        height: 40px;
    }
}

@media (max-width: 640px) {
    .about-hero {
        padding: 3rem 1.5rem;
        min-height: 85vh;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat !important;
    }
    
    .about-hero-content {
        min-height: calc(85vh - 70px - 60px);
    }
    
    .about-content-text {
        font-size: 1.25rem;
    }
    
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1.5rem 3rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .services-header {
        padding-top: 4rem;
        padding-bottom: 2rem;
    }
    
    .services-subtitle {
        font-size: 0.9375rem;
    }
    
    .placements-section {
        padding: 2.5rem 1rem 3rem;
    }

    .placements-title {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .ticker-row {
        margin-bottom: 1.5rem;
    }

    .ticker-content {
        gap: 2rem;
    }

    .placement-logo {
        height: 36px;
    }
    
    .cta-band {
        padding: 3rem 1.5rem;
    }
}

/* Placements: small phones */
@media (max-width: 480px) {
    .placements-section {
        padding: 2rem 0.75rem 2.5rem;
    }

    .placements-title {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
        letter-spacing: 0.03em;
    }

    .ticker-row {
        margin-bottom: 1.25rem;
    }

    .ticker-row-1 {
        animation-duration: 35s;
    }

    .ticker-row-2 {
        animation-duration: 40s;
    }

    .ticker-row-3 {
        animation-duration: 45s;
    }

    .ticker-content {
        gap: 1.5rem;
    }

    .placement-logo {
        height: 28px;
    }
}

/* ============================================
   EXECUTIVE BOARD / MEMBERS PAGE STYLES
   ============================================ */

.executive-board-section {
    padding: clamp(60px, 8vw, 100px) clamp(1rem, 2vw, 2rem);
    background-color: var(--white);
    font-family: 'IBM Plex Sans', sans-serif !important;
    max-width: 100%;
    margin: 0 auto;
}

/* Make entire members page background white */
body.homepage .page-content {
    background-color: var(--white);
}

body.homepage .page-body {
    background-color: var(--white);
}

.executive-board-section * {
    font-family: 'IBM Plex Sans', sans-serif !important;
}

.executive-board-title {
    font-family: 'IBM Plex Sans', sans-serif !important;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600;
    color: var(--text-on-light);
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 2.5vw, 2rem);
    width: 100%;
    max-width: 95%;
    margin: 0 auto;
    font-family: 'IBM Plex Sans', sans-serif !important;
}

.member-card {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    font-family: 'IBM Plex Sans', sans-serif;
    padding: 1.25rem;
    min-height: 720px;
}

.member-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.member-image-wrapper {
    width: 100%;
    height: 620px;
    overflow: hidden;
    background-color: var(--off-white);
    position: relative;
    border-radius: 0;
}

.member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
}

.member-image-andrew {
    object-position: center 32%;
}

.member-info {
    padding: 1rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-grow: 1;
    font-family: 'IBM Plex Sans', sans-serif !important;
}

.member-name {
    font-family: 'IBM Plex Sans', sans-serif !important;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-on-light);
    margin: 0;
    line-height: 1.3;
}

.member-role {
    font-family: 'IBM Plex Sans', sans-serif !important;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--muted-gray);
    margin: 0;
    line-height: 1.5;
}

.member-email {
    font-family: 'IBM Plex Sans', sans-serif !important;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--muted-gray);
    margin: 0;
    line-height: 1.5;
    word-break: break-word;
}

/* Responsive - Executive Board */
@media (max-width: 968px) {
    .members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .member-image-wrapper {
        height: 460px;
    }
}

@media (max-width: 640px) {
    .executive-board-section {
        padding: 2rem 1rem 3rem;
    }
    
    .members-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .member-card {
        min-height: 0;
        padding: 0;
        overflow: hidden;
    }
    
    .member-image-wrapper {
        height: auto;
        aspect-ratio: 3 / 4.25;
        overflow: hidden;
    }
    
    .member-image,
    .member-image-andrew {
        object-fit: cover;
        object-position: center top;
    }
    
    .member-info {
        padding: 1rem 1rem 1.25rem;
    }
    
    .executive-board-title {
        margin-bottom: 2rem;
        padding: 0 0.25rem;
    }
}

@media (max-width: 480px) {
    .executive-board-section {
        padding: 1.5rem 0.75rem 2.5rem;
    }
    
    .member-image-wrapper {
        aspect-ratio: 4 / 5.25;
    }
    
    .member-info {
        padding: 0.875rem 0.75rem 1rem;
    }
    
    .member-name {
        font-size: 0.9375rem;
    }
    
    .member-role,
    .member-email {
        font-size: 0.8125rem;
    }
}

/* ============================================
   LOGIN PAGE STYLES
   ============================================ */

.login-page-wrapper {
    min-height: calc(100vh - 70px);
    background-color: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    width: 100%;
    padding: 4rem 0;
    box-sizing: border-box;
}

.login-container {
    width: 100%;
    max-width: 480px;
    padding: 0 2rem;
    box-sizing: border-box;
}

.login-form-wrapper {
    width: 100%;
    background-color: var(--white);
    padding: 3.5rem 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-radius: 2px;
}

.login-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-on-light);
    margin-bottom: 2.5rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.login-form {
    width: 100%;
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-label {
    display: block;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--muted-gray);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-on-light);
    background-color: var(--white);
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: var(--navy-blue);
    box-shadow: 0 0 0 3px rgba(11, 15, 23, 0.05);
}

.form-input::placeholder {
    color: rgba(107, 114, 128, 0.5);
    font-family: 'IBM Plex Sans', sans-serif;
}

.form-error {
    display: none;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #dc2626;
    margin-bottom: 1.25rem;
    padding: 0.75rem 1rem;
    background-color: rgba(220, 38, 38, 0.05);
    border-left: 3px solid #dc2626;
}

.btn-login {
    width: 100%;
    padding: 1rem 2rem;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    background-color: var(--navy-blue);
    border: 1.5px solid var(--navy-blue);
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
}

.btn-login:hover {
    background-color: rgba(11, 15, 23, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(11, 15, 23, 0.2);
}

.btn-login:active {
    transform: translateY(0);
}

@media (max-width: 640px) {
    .login-page-wrapper {
        padding: 2rem 0;
        min-height: auto;
    }
    
    .login-container {
        padding: 0 1.5rem;
        max-width: 100%;
    }
    
    .login-form-wrapper {
        padding: 2.5rem 2rem;
    }
    
    .login-title {
        font-size: 1.75rem;
    }
}

/* ============================================
   CLIENTS PAGE STYLES
   ============================================ */

/* Compact Header Section */
.clients-header {
    background-color: var(--white);
    padding: clamp(80px, 10vw, 120px) 0 clamp(50px, 6vw, 70px);
    margin-top: 70px;
}

.clients-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(2rem, 4vw, 4rem);
    text-align: center;
}

.clients-section-label {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--muted-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 1rem;
}

.clients-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    color: var(--text-on-light);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.clients-subtitle {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--muted-gray);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.clients-header-divider {
    width: 60px;
    height: 2px;
    background-color: var(--navy-blue);
    margin: 0 auto;
}

/* Logo Wall Section */
.clients-logo-wall {
    background-color: var(--white);
    padding: clamp(50px, 6vw, 80px) 0 clamp(20px, 3vw, 30px) 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.logo-wall-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(2rem, 4vw, 4rem);
}

.logo-wall-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-on-light);
    text-align: center;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.logo-wall-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.logo-wall-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.logo-wall-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Featured Clients Section */
.featured-clients-section {
    background-color: var(--white);
    padding: clamp(20px, 3vw, 30px) 0 clamp(20px, 3vw, 30px) 0;
}

.featured-clients-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(2rem, 4vw, 4rem);
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.featured-client-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: center;
    padding: 2.5rem;
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
}

.featured-client-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.12);
}

.featured-client-reverse {
    grid-template-columns: 1fr 280px;
}

.featured-client-reverse .featured-client-logo-wrapper {
    order: 2;
}

.featured-client-reverse .featured-client-content {
    order: 1;
}

.featured-client-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    padding: 1rem;
}

.featured-client-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.featured-client-content {
    display: flex;
    flex-direction: column;
}

.featured-client-name {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-on-light);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured-client-description {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    color: #4b5563;
    margin: 0;
}

/* More Clients Grid Section */
.more-clients-section {
    background-color: var(--white);
    padding: clamp(10px, 2vw, 20px) 0 clamp(60px, 8vw, 100px);
}

.more-clients-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(2rem, 4vw, 4rem);
}

.more-clients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.client-card {
    padding: 2rem;
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
    height: 100%;
}

.client-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.12);
}

.client-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    margin-bottom: 1.5rem;
    padding: 0.5rem;
}

.client-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.client-name {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-on-light);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.client-description {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    color: #4b5563;
    margin: 0;
    flex-grow: 1;
}

/* Clients CTA Section */
.clients-cta-section {
    background-color: var(--navy-blue);
    padding: clamp(60px, 8vw, 100px) clamp(2rem, 4vw, 4rem);
}

.clients-cta-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.clients-cta-left {
    display: flex;
    align-items: center;
}

.clients-cta-headline {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--text-on-dark);
    margin: 0;
    line-height: 1.2;
}

.clients-cta-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.clients-cta-subtext {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(245, 247, 250, 0.8);
    line-height: 1.6;
    margin: 0;
}

.btn-cta-client {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: var(--navy-blue);
    background-color: var(--white);
    border: 1.5px solid var(--white);
    border-radius: 2px;
    transition: all 0.25s ease;
    align-self: flex-start;
}

.btn-cta-client:hover {
    background-color: transparent;
    color: var(--white);
    transform: translateY(-1px);
}

/* Responsive - Clients Page */
@media (max-width: 968px) {
    .logo-wall-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .featured-client-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-client-reverse {
        grid-template-columns: 1fr;
    }
    
    .featured-client-reverse .featured-client-logo-wrapper {
        order: 1;
    }
    
    .featured-client-reverse .featured-client-content {
        order: 2;
    }
    
    .featured-client-logo-wrapper {
        height: 100px;
    }
    
    .more-clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .clients-cta-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .clients-cta-right {
        align-items: center;
    }
    
    .btn-cta-client {
        align-self: center;
    }
}

@media (max-width: 640px) {
    .clients-header {
        padding: 4rem 0 3rem;
    }
    
    .clients-title {
        font-size: 2rem;
    }
    
    .clients-subtitle {
        font-size: 1rem;
    }
    
    .logo-wall-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .logo-wall-item {
        height: 80px;
    }
    
    .featured-clients-section {
        padding: 3rem 0;
    }
    
    .featured-client-card {
        padding: 2rem 1.5rem;
    }
    
    .featured-client-name {
        font-size: 1.25rem;
    }
    
    .more-clients-grid {
        grid-template-columns: 1fr;
    }
    
    .client-card {
        padding: 1.5rem;
    }
    
    .clients-cta-section {
        padding: 3rem 1.5rem;
    }
    
    .clients-cta-headline {
        font-size: 1.75rem;
    }
}

/* ============================================
   RECRUITMENT PAGE - TRAVEL THEME TIMELINE
   ============================================ */

.recruitment-page {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    position: relative;
    overflow: hidden;
    font-family: 'IBM Plex Sans', sans-serif;
}

/* Sky Background with Clouds */
.recruitment-sky-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        #e8f4f8 0%, 
        #d1e9f1 25%, 
        #b8dce8 50%, 
        #9fcfdf 75%, 
        #86c2d6 100%);
    z-index: 0;
    overflow: hidden;
}

/* Cloud Animations */
.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 100px;
    opacity: 0.5;
    animation: float 30s infinite ease-in-out;
}

.cloud:before,
.cloud:after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 100px;
}

.cloud-1 {
    width: 180px;
    height: 70px;
    top: 10%;
    left: 12%;
    animation-delay: 0s;
    opacity: 0.4;
}

.cloud-1:before {
    width: 70px;
    height: 70px;
    top: -30px;
    left: 15px;
}

.cloud-1:after {
    width: 80px;
    height: 80px;
    top: -40px;
    right: 12px;
}

.cloud-2 {
    width: 200px;
    height: 80px;
    top: 15%;
    right: 18%;
    animation-delay: -5s;
    opacity: 0.45;
}

.cloud-2:before {
    width: 85px;
    height: 85px;
    top: -35px;
    left: 20px;
}

.cloud-2:after {
    width: 95px;
    height: 95px;
    top: -45px;
    right: 18px;
}

.cloud-3 {
    width: 220px;
    height: 90px;
    top: 65%;
    left: 8%;
    animation-delay: -10s;
    opacity: 0.5;
}

.cloud-3:before {
    width: 100px;
    height: 100px;
    top: -45px;
    left: 25px;
}

.cloud-3:after {
    width: 110px;
    height: 110px;
    top: -55px;
    right: 22px;
}

.cloud-4 {
    width: 190px;
    height: 75px;
    top: 45%;
    right: 15%;
    animation-delay: -15s;
    opacity: 0.42;
}

.cloud-4:before {
    width: 80px;
    height: 80px;
    top: -35px;
    left: 18px;
}

.cloud-4:after {
    width: 90px;
    height: 90px;
    top: -45px;
    right: 16px;
}

.cloud-5 {
    width: 170px;
    height: 70px;
    top: 80%;
    left: 25%;
    animation-delay: -8s;
    opacity: 0.4;
}

.cloud-5:before {
    width: 75px;
    height: 75px;
    top: -32px;
    left: 18px;
}

.cloud-5:after {
    width: 85px;
    height: 85px;
    top: -42px;
    right: 16px;
}

@keyframes float {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    33% {
        transform: translateX(30px) translateY(-10px);
    }
    66% {
        transform: translateX(-20px) translateY(10px);
    }
}

/* Airplanes */
.airplane {
    position: absolute;
    color: rgba(59, 130, 246, 0.4);
    z-index: 1;
}

.airplane-1 {
    top: 15%;
    left: 5%;
    width: 120px;
    height: 60px;
    animation: fly 30s infinite linear;
}

.airplane-2 {
    bottom: 20%;
    right: 8%;
    width: 100px;
    height: 50px;
    animation: fly 35s infinite linear reverse;
}

.airplane-3 {
    top: 50%;
    left: -150px;
    width: 80px;
    height: 40px;
    animation: fly 40s infinite linear;
    animation-delay: -10s;
}

.airplane svg {
    width: 100%;
    height: 100%;
}

.contrail {
    position: absolute;
    width: 200px;
    height: 2px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.6), transparent);
    top: 50%;
    left: -150px;
    transform: translateY(-50%);
}

@keyframes fly {
    0% {
        transform: translateX(-200px) translateY(0);
    }
    50% {
        transform: translateX(calc(100vw + 200px)) translateY(-30px);
    }
    100% {
        transform: translateX(calc(200vw + 200px)) translateY(0);
    }
}

/* Birds Animation */
.bird {
    position: absolute;
    color: rgba(59, 130, 246, 0.25);
    z-index: 1;
}

.bird svg {
    width: 100%;
    height: 100%;
}

.bird-1 {
    top: 25%;
    left: -100px;
    width: 60px;
    height: 30px;
    animation: flyBird 25s infinite linear;
}

.bird-2 {
    top: 45%;
    left: -100px;
    width: 50px;
    height: 25px;
    animation: flyBird 30s infinite linear;
    animation-delay: -8s;
}

.bird-3 {
    top: 70%;
    left: -100px;
    width: 55px;
    height: 28px;
    animation: flyBird 28s infinite linear;
    animation-delay: -15s;
}

@keyframes flyBird {
    0% {
        transform: translateX(-100px) translateY(0);
    }
    25% {
        transform: translateX(calc(25vw + 50px)) translateY(-15px);
    }
    50% {
        transform: translateX(calc(50vw + 100px)) translateY(10px);
    }
    75% {
        transform: translateX(calc(75vw + 150px)) translateY(-10px);
    }
    100% {
        transform: translateX(calc(100vw + 200px)) translateY(0);
    }
}

/* Floating Paper Elements */
.floating-paper {
    position: absolute;
    font-size: 2rem;
    opacity: 0.15;
    z-index: 1;
    animation: floatPaper 20s infinite ease-in-out;
}

.paper-1 {
    top: 30%;
    right: 15%;
    animation-delay: 0s;
}

.paper-2 {
    top: 60%;
    left: 20%;
    animation-delay: -7s;
}

.paper-3 {
    top: 80%;
    right: 30%;
    animation-delay: -14s;
}

@keyframes floatPaper {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) translateX(20px) rotate(10deg);
    }
    50% {
        transform: translateY(-15px) translateX(-15px) rotate(-10deg);
    }
    75% {
        transform: translateY(-40px) translateX(10px) rotate(5deg);
    }
}

/* Header Section */
.recruitment-header {
    position: relative;
    z-index: 2;
    padding: 0 2rem 0.5rem;
    text-align: center;
}

.recruitment-header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.recruitment-logo-block {
    width: 300px;
    height: auto;
    max-width: 400px;
    margin: -1.5rem 0 -2.5rem 0;
    z-index: 3;
}

.recruitment-stamp-image {
    position: absolute;
    top: 4rem;
    right: 15%;
    width: 180px;
    height: auto;
    max-width: 200px;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
    transform: rotate(-8deg);
    transition: transform 0.3s ease, filter 0.3s ease;
    z-index: 3;
}

.recruitment-stamp-image:hover {
    transform: rotate(-5deg) scale(1.05);
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.2));
}

.recruitment-main-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--navy-blue);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: -2rem 0 0.25rem 0;
}

.recruitment-subtitle {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 500;
    color: var(--navy-blue);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Timeline Container */
.recruitment-timeline-container {
    position: relative;
    z-index: 2;
    padding: 2rem 2rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.recruitment-timeline {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Timeline Stage */
.timeline-stage {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.timeline-stage:hover {
    transform: translateX(10px);
}

.timeline-stage-hover {
    transform: translateX(10px);
}

/* Postage Stamp */
.timeline-stamp {
    position: relative;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.stamp-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    position: relative;
    transition: transform 0.3s ease;
}

.timeline-stage:hover .stamp-image {
    transform: scale(1.1) rotate(5deg);
}

/* Timeline Card */
.timeline-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.timeline-stage:hover .timeline-card {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.3);
}

.timeline-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    font-family: 'IBM Plex Sans', sans-serif;
}

.timeline-day {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--muted-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.timeline-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-blue);
}

.timeline-divider {
    width: 2px;
    height: 50px;
    background: var(--navy-blue);
    opacity: 0.2;
}

.timeline-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.timeline-event {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.timeline-note {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-gray);
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 968px) {
    .recruitment-stamp-image {
        position: relative;
        top: auto;
        right: auto;
        margin: 0 auto 2rem;
        transform: rotate(-5deg);
    }

    .airplane-3,
    .bird,
    .floating-paper {
        display: none;
    }

    .recruitment-header {
        padding: 2rem 1rem;
    }

    .recruitment-timeline-container {
        padding: 2rem 1rem 4rem;
    }

    .timeline-stage {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .timeline-card {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .timeline-date {
        flex-direction: row;
        gap: 1rem;
        align-items: center;
    }

    .timeline-divider {
        width: 50px;
        height: 2px;
    }

    .airplane {
        display: none;
    }
}

@media (max-width: 640px) {
    .recruitment-main-title {
        font-size: 2rem;
    }

    .recruitment-subtitle {
        font-size: 1rem;
    }

    .timeline-stamp {
        width: 80px;
        height: 80px;
    }

    .timeline-card {
        padding: 1.25rem 1.5rem;
    }

    .timeline-event {
        font-size: 1.25rem;
    }
}

/* Floating Interest Form */
.floating-interest-form {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    animation: floatUp 0.6s ease-out;
}

.interest-form-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 1.25rem 1.75rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-width: 220px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.interest-form-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.interest-form-text {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--navy-blue);
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

.interest-form-button {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: var(--white);
    background-color: var(--navy-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 1.5px solid var(--navy-blue);
}

.interest-form-button:hover {
    background-color: transparent;
    color: var(--navy-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 15, 23, 0.2);
}

@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .floating-interest-form {
        bottom: 1.5rem;
        right: 1rem;
        left: 1rem;
    }

    .interest-form-content {
        min-width: auto;
        width: 100%;
        padding: 1rem 1.5rem;
    }
}

