/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Quantico:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,100..900;1,100..900&display=swap');

/* CSS Variables & Reset */
:root {
    --primary-blue: #3A86FF;
    --dark-bg: #0A0A0F;
    --light-bg: #FFFFFF;
    --dark-secondary: #151520;
    --dark-tertiary: #1A1A2E;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0C0;
    --text-tertiary: #707085;
    --border-color: #2A2A40;
    --dashed-border: #3A86FF;
    --success-green: #4CAF50;
    --warning-amber: #FF9800;
    --mono-font: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
    --system-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', system-ui, sans-serif;
    --title-font: 'Quantico', 'SF Mono', 'Monaco', monospace;
    --title-font-2: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --section-title-size: clamp(1.2rem, 1.8vw, 1.6rem);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

html {
    overflow-x: hidden;
}

body {
    font-family: var(--system-font);
    line-height: 1.6;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    max-width: 100vw;
}

/* News Ticker */
.news-ticker {
    background: linear-gradient(90deg, #D2691E 0%, #FF8C00 50%, #D2691E 100%);
    color: white;
    padding: 8px 16px;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
}

.news-ticker:hover {
    background: linear-gradient(90deg, #B8651E 0%, #E07B00 50%, #B8651E 100%);
}

.news-content {
    display: inline-block;
    font-family: var(--mono-font);
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 100%;
    line-height: 1.4;
}

@keyframes scroll-left {
    0% {
        transform: translate3d(100%, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* Header styles */
.header {
    background: white;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #f0f0f0;
    position: fixed;
    top: 28px;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 8px auto 0 auto;
    padding: 0 32px;
    height: 60px;
}

.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
}

.logo-img {
    height: 32px;
    width: auto;
    max-width: none;
    filter: none;
    display: block;
}

.nav-desktop {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 48px;
    margin: 0;
    padding: 0;
    align-items: center;
    height: 100%;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 0 4px;
    position: relative;
    font-family: var(--mono-font);
    text-transform: uppercase;
    letter-spacing: 1px;
    height: 100%;
    display: flex;
    align-items: center;
}

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

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

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

.header-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-talk-to-us {
    background: #000;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--mono-font);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-talk-to-us:hover {
    background: #333;
    transform: translateY(-1px);
}

/* Mobile menu styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
    border-radius: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
    display: none;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: none;
    box-shadow: none;
}

.nav-mobile.active {
    display: block;
}

.nav-mobile-list {
    list-style: none;
    padding: 16px 32px;
    margin: 0;
}

.nav-mobile-list li {
    margin-bottom: 12px;
}

.nav-mobile-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    display: block;
    padding: 12px 0;
    transition: color 0.3s ease;
    font-family: var(--mono-font);
    text-transform: uppercase;
    letter-spacing: 1px;
    min-height: 44px;
    display: flex;
    align-items: center;
}

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

/* Main content offset for fixed header */
body {
    margin-top: 88px; /* 28px news ticker + 60px header */
}

/* Hero Section */
.hero {
    min-height: 98vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, var(--dark-bg) 0%, var(--dark-bg) 60%, #1a237e 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px 0 32px;
    position: relative;
    z-index: 2;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.6fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.hero-text {
    padding: 0;
}

.hero-text h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 34px;
    color: var(--text-primary);
    font-family: var(--title-font-2);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-line {
    display: inline-block;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 32px;
    line-height: 1.7;
    font-family: var(--system-font);
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 0;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    font-family: var(--mono-font);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: #2563EB;
    color: white;
}

.btn-primary::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url('/static/Right_arrow_Icon_Black.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 8px;
    filter: brightness(0) invert(1);
    transform: rotate(-45deg);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    padding: 14px 30px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    font-family: var(--mono-font);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    background-color: rgba(58, 134, 255, 0.1);
}

.btn-secondary.back-button {
    color: #333 !important;
}

.btn-secondary.back-button:hover {
    color: var(--primary-blue) !important;
}

.back-button::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('/static/Right_arrow_Icon_Black.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 8px;
    transform: rotate(180deg);
    transition: all 0.2s ease;
    vertical-align: middle;
}

.back-button:hover::before {
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(215deg) brightness(102%) contrast(97%);
    transform: rotate(180deg) scale(1.1);
}

/* Hero Visual - Dynamic Points Only */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ascii-art {
        display: none;
    }
    
.dynamic-points {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.point {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.point:nth-child(odd) {
    animation-delay: -2s;
}

.point:nth-child(3n) {
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) translateX(0); 
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-30px) translateX(20px); 
        opacity: 0.8;
    }
}

/* Expanded Hero Animation Content */
.hero-expanded-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 32px 0 32px;
    min-height:0vh;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    /* 
       The following transition property ensures that any changes to 
       properties like opacity or transform on .hero-expanded-container 
       will animate smoothly over 2 seconds with an 'ease-out' timing function.
       This creates a visually appealing effect when the container appears or moves.
    */
    transition: all 500ms ease-out;
}

.hero-expanded-container.active {
    opacity: 1;
    transform: translateY(0);
}

.convergence-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    height: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 32px;
}

.convergence-text {
    padding: 0 0 0 20px;
    opacity: 0;
    transform: translateX(50px);
    /*
       The clamp() CSS function takes three arguments: a minimum value, a preferred value, and a maximum value.
       In the example font-size: clamp(1.5rem, 4vw, 3rem);
       - 1.5rem is the minimum font size allowed.
       - 4vw is the preferred (scalable) font size based on 4% of the viewport width.
       - 3rem is the maximum font size allowed.
       The browser will use the preferred value (4vw) as long as it stays between the minimum (1.5rem) and maximum (3rem).
    */
    transition: all 0.5s ease-out 0.3s;
    max-width: 800px;
    order: 2;
}

.hero-expanded-container.active .convergence-text {
    opacity: 1;
    transform: translateX(0);
}

.convergence-title {
    font-size: var(--section-title-size);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 24px;
    color: var(--text-primary);
    font-family: var(--title-font-2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.convergence-subtitle {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.6;
    font-family: var(--system-font);
}

.device-shapes-container {
    position: relative;
    height: 300px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 60px;
    order: 1;
}
    
.device-shape {
        position: relative;
    background: rgba(58, 134, 255, 0.1);
    border: 3px double var(--primary-blue);
    border-radius: 8px;
    padding: 10px;
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    transition: all 0.5s ease-out;
}

.device-shape.show {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.server-shape {
    order: 1;
}

.server-shape .device-canvas {
    width: 220px;
    height: 160px;
}

.desktop-shape {
    order: 2;
}

.desktop-shape .device-canvas {
    width: 180px;
    height: 130px;
}


/* Device shapes show when individually triggered */

.device-label {
    font-family: var(--mono-font);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-blue);
    margin-bottom: 10px;
    text-align: center;
}

.device-canvas {
    display: block;
    border-radius: 4px;
}

.convergence-canvas {
    display: none;
}

/* Server Shape Colors */
.server-shape {
    border-color: var(--primary-blue);
    background: rgba(58, 134, 255, 0.1);
}

.server-shape .device-label {
    color: var(--primary-blue);
}

/* Desktop Shape Colors */
.desktop-shape {
    border-color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
}

.desktop-shape .device-label {
    color: #4CAF50;
}


/* Dot Transition */
.dot-transition {
    position: relative;
    height: 30px;
    background: var(--dark-bg);
    overflow: hidden;
    z-index: 10;
}

.dot-transition::before {
    content: '';
        position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Line 1 (even) */
        radial-gradient(circle at 0% 7.5%, white 12px, transparent 12px),
        /* Line 2 (odd - offset) */
        radial-gradient(circle at 35% 22.5%, white 12px, transparent 12px),
        /* Line 3 (even) */
        radial-gradient(circle at 0% 37.5%, white 12px, transparent 12px),
        /* Line 4 (odd - offset) */
        radial-gradient(circle at 35% 52.5%, white 12px, transparent 12px),
        /* Line 5 (even) */
        radial-gradient(circle at 0% 67.5%, white 12px, transparent 12px),
        /* Line 6 (odd - offset) */
        radial-gradient(circle at 35% 82.5%, white 12px, transparent 12px),
        /* Line 7 (even) */
        radial-gradient(circle at 0% 97.5%, white 12px, transparent 12px),
        /* Line 8 (odd - offset) */
        radial-gradient(circle at 35% 112.5%, white 12px, transparent 12px);
    background-size: 
        140px 10px, /* Even lines spacing - more black space */
        140px 10px, /* Odd lines spacing - more black space */
        140px 10px,
        140px 10px,
        140px 10px,
        140px 10px,
        140px 10px,
        140px 10px;
    background-repeat: repeat-x;
}

/* Content Sections - White Background */
.content-section {
    background: white;
    border-bottom: 1px solid #e5e5e5;
    padding: 60px 0;
}

.content-section:last-of-type {
    border-bottom: none;
}

.content-section > * {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.section-title {
    font-size: var(--section-title-size);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 24px;
    color: #333;
    font-family: var(--title-font-2);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}

/* .section-content inherits from .content-section > * */

.section-content p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 24px;
    max-width: 800px;
    width: 100%;
    line-height: 1.6;
    text-align: left;
    font-family: var(--system-font);
}

/* Enterprise Services Section */
.enterprise-services {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.enterprise-service {
    background: #f8f9fa;
    border: 3px solid;
    border-radius: 8px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 350px;
}

.service-servers {
    border-color: var(--primary-blue);
    background: rgba(58, 134, 255, 0.03);
}

.service-workstations {
    border-color: #4CAF50;
    background: rgba(76, 175, 80, 0.03);
}

.service-applications {
    border-color: #9333EA;
    background: rgba(147, 51, 234, 0.03);
}

.service-header {
    margin-bottom: 8px;
}

.service-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    font-family: var(--title-font-2);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.service-servers .service-title {
    color: var(--primary-blue);
}

.service-workstations .service-title {
    color: #4CAF50;
}

.service-applications .service-title {
    color: #9333EA;
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
    font-family: var(--system-font);
}

.service-case-study {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.case-study-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
    font-style: italic;
    margin: 0 0 12px 0;
    font-family: var(--system-font);
}

.case-study-source {
    font-size: 0.85rem;
    color: #888;
    font-weight: 600;
    margin: 0;
    font-family: var(--mono-font);
}

.service-status {
    margin-top: auto;
    padding-top: 20px;
}

.status-text {
    font-size: 1rem;
    color: #333;
    margin: 0;
    font-family: var(--system-font);
}

.status-link {
    color: var(--primary-blue);
    text-decoration: underline;
    font-weight: 600;
}

.status-link:hover {
    color: #2563EB;
}

/* Research Section */
.research-content {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 60px;
    align-items: start;
}

.research-content .section-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.research-content .section-content p {
    width: 100%;
}

.research-content .section-content strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.results-note {
    font-style: italic;
    font-size: 1rem;
    color: #888;
    margin-bottom: 0;
}

/* Vision Section */
.vision-content {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vision-content .section-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.vision-content .section-content p {
    width: 100%;
}

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

.vision-image {
    width: 85%;
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 50px;
    border-radius: 12px;
}

/* Performance Chart */
.research-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.performance-chart {
    width: 100%;
    max-width: 500px;
    background: #f8f9fa;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    padding: 32px;
}

.performance-chart h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    font-family: var(--mono-font);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chart-container {
    position: relative;
}

.chart-bars {
    display: flex;
    justify-content: space-around;
    align-items: end;
    height: 280px;
    margin-bottom: 20px;
    padding-top: 30px;
    position: relative;
}

.bar-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.bar {
    width: 45px;
    border-radius: 6px 6px 0 0;
    transition: all 0.3s ease;
}

.bar.eagle {
    height: 88px;
    background: #CC5500;
    animation: growBarEagle 1.5s ease-out;
}

.bar.vanilla {
    height: 92px;
    background: #666;
    animation: growBarVanilla 1.8s ease-out;
}

.bar.exxa {
    height: 184px;
    background: var(--primary-blue);
    animation: growBarExxa 2.1s ease-out;
}



@keyframes growBarEagle {
    from { height: 0px; }
    to { height: 88px; }
}

@keyframes growBarVanilla {
    from { height: 0px; }
    to { height: 92px; }
}

@keyframes growBarExxa {
    from { height: 0px; }
    to { height: 184px; }
}



.bar-label {
    font-size: 0.9rem;
    color: #666;
    font-family: var(--mono-font);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bar-value {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    font-family: var(--mono-font);
}

.chart-info {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid #e5e5e5;
}

.chart-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    font-family: var(--mono-font);
}

.chart-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

.section-content strong {
    color: var(--primary-blue);
    font-weight: 700;
}

/* Trust Section - Dark Theme */
.trust-section {
    background: var(--dark-bg);
    padding: 80px 0;
}

.trust-section > * {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.trust-section .section-title {
    color: var(--text-primary);
}

.trust-section .section-content p {
    color: var(--text-primary);
}

/* Trust Logos Layout */
.trust-logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 20px;
}

.logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.trust-logo {
    height: 60px;
    width: auto;
    opacity: 0.98;
    transition: opacity 0.3s ease;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
    object-fit: contain;
}

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

/* Next Steps Section */
.next-steps-content {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.next-step-item {
    display: flex;
    align-items: baseline;
    gap: 20px;
    width: 100%;
}

.next-step-question {
    font-size: var(--section-title-size);
    color: #333;
    font-weight: 600;
    white-space: nowrap;
    min-width: fit-content;
    line-height: 1.2;
}

.next-step-dots {
    flex: 1;
    height: 1em;
    position: relative;
    background: white;
    overflow: hidden;
    margin-bottom: 0.2em;
}

.next-step-dots::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 8px;
    transform: translateY(-50%);
    background-image: repeating-linear-gradient(
        to right,
        #333 0px,
        #333 8px,
        transparent 8px,
        transparent 24px
    );
    transition: all 0.3s ease;
}

.next-step-item:hover .next-step-dots::before {
    background-image: repeating-linear-gradient(
        to right,
        var(--primary-blue) 0px,
        var(--primary-blue) 8px,
        transparent 8px,
        transparent 24px
    );
}

.next-step-button {
    color: var(--primary-blue);
    text-decoration: underline;
    font-weight: bold;
    font-size: var(--section-title-size);
    white-space: nowrap;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.next-step-button:hover {
    color: var(--primary-blue);
    text-decoration: underline;
    opacity: 0.8;
}

/* Legal Pages */
.terms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.terms-container h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: #333;
    font-family: var(--title-font-2);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}

.terms-container h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 32px 0 16px 0;
    color: #333;
    font-family: var(--title-font-2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.terms-container p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.6;
    font-family: var(--system-font);
    width: 70%;
    max-width: none;
}

.terms-container ul {
    margin: 16px 0;
    padding-left: 24px;
}

.terms-container li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.6;
    font-family: var(--system-font);
}

.terms-container a {
    color: var(--primary-blue);
    text-decoration: none;
}

.terms-container a:hover {
    text-decoration: underline;
}

/* Careers Page */
.careers-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px 0 32px;
}

.careers-container h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: #333;
    font-family: var(--title-font-2);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left !important;
    width: 100%;
    max-width: none;
}

.careers-container h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 40px 0 16px 0;
    color: #333;
    font-family: var(--title-font-2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left !important;
    width: 100%;
    max-width: none;
}

.careers-container h4 {
    text-align: left !important;
    width: 100%;
    max-width: none;
}

.careers-container p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.6;
    font-family: var(--system-font);
    width: 100%;
    max-width: none;
    text-align: justify;
}

.careers-container > div > div > div[style*="text-align: center"] {
    margin-left: auto;
    margin-right: auto;
}

.careers-container img {
    display: block;
    margin-left: 0;
    margin-right: auto;
}


.careers-container ul {
    margin: 16px 0;
    padding-left: 24px;
    width: 100%;
    max-width: none;
}

.careers-container > .btn-secondary {
    margin-bottom: 40px;
    display: inline-block;
}

.careers-container li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.6;
    font-family: var(--system-font);
    text-align: justify;
}

.careers-container a {
    color: var(--primary-blue);
    text-decoration: none;
}

.careers-container a:hover {
    text-decoration: underline;
}

/* Blog Posts List */
.blog-posts-list {
    list-style: disc;
    margin: 24px 0;
    padding-left: 24px;
}

.blog-posts-list li {
    font-size: 1.125rem;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.6;
    font-family: var(--system-font);
}

.blog-post-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-post-link:hover {
    text-decoration: underline;
    color: #2563EB;
}

.blog-post-date {
    font-family: var(--mono-font);
    font-weight: 600;
    color: #333;
}

/* Blog Post Images */

.seagle-img-small {
    width: 70%;
    max-width: 650px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    object-fit: contain;
}

/* Blog Post References */
.references-list {
    margin-top: 24px;
    width: 100%;
    max-width: none;
}

.reference-item {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    font-family: var(--system-font);
    text-align: left;
    width: 100%;
}

.reference-item em {
    font-style: italic;
}

.reference-link {
    color: var(--primary-blue);
    text-decoration: none;
    word-break: break-all;
    font-family: var(--mono-font);
    font-size: 0.9rem;
}

.reference-link:hover {
    text-decoration: underline;
}

/* Positions Table */
.positions-table-container {
    width: 100%;
    max-width: none;
    overflow-x: auto;
    margin: 24px 0 40px 0;
}

.positions-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-family: var(--mono-font);
    font-size: 1rem;
    border: 2px solid #333;
    background: white;
    color: #333;
}

.positions-table th {
    font-weight: 600;
    font-family: var(--mono-font);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 12px;
    text-align: left;
    border-bottom: 2px solid #333;
    border-right: 1px solid #333;
    color: #333;
    background: white;
    font-size: 0.9rem;
}

.positions-table th:last-child {
    border-right: none;
}

.positions-table td {
    padding: 16px 12px;
    border-bottom: 1px solid #333;
    border-right: 1px solid #333;
    vertical-align: middle;
    background: white;
    color: #333;
}

.positions-table td:last-child {
    border-right: none;
}

.positions-table tr:last-child td {
    border-bottom: none;
}

.positions-table tbody tr:hover {
    background-color: #f8f9fa;
}

.positions-table tbody tr:hover td {
    background-color: #f8f9fa;
}

.positions-table td strong {
    color: #333;
    font-family: var(--mono-font);
    font-weight: 600;
}

.position-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

.position-link:hover {
    color: var(--primary-blue);
}

.position-link:hover strong {
    color: var(--primary-blue);
}



/* Status and Contract Badges */
.status-badge, .contract-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid;
}

.status-open {
    color: #16a34a;
    border-color: #16a34a;
    background-color: rgba(22, 163, 74, 0.1);
    font-family: var(--mono-font);
}

.status-soon {
    color: #d97706;
    border-color: #d97706;
    background-color: rgba(217, 119, 6, 0.1);
    font-family: var(--mono-font);
}

.contract-fulltime {
    color: #1a1a1a;
    border-color: #1a1a1a;
    background-color: rgba(26, 26, 26, 0.1);
    font-family: var(--mono-font);
}

.contract-internship {
    color: #7c3aed;
    border-color: #7c3aed;
    background-color: rgba(124, 58, 237, 0.1);
    font-family: var(--mono-font);
}

.location-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #6b7280;
    color: #6b7280;
    border-color: #6b7280;
    background-color: rgba(107, 114, 128, 0.1);
    font-family: var(--mono-font);
}

.apply-link {
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid var(--primary-blue);
    border-radius: 0;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    font-family: var(--mono-font);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    background: transparent;
}

.apply-link:hover {
    background-color: var(--primary-blue);
    color: white;
    text-decoration: none;
}

.apply-link::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url('/static/Right_arrow_Icon_Black.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 6px;
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(215deg) brightness(102%) contrast(97%);
    transform: rotate(-45deg);
    transition: filter 0.2s ease;
}

.apply-link:hover::after {
    filter: brightness(0) invert(1);
}

/* Benefits List */
.benefits-list {
    margin: 24px 0;
    width: 100%;
    max-width: none;
}

.benefit-item {
    margin-bottom: 24px;
}

.benefit-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    color: var(--primary-blue);
    font-family: var(--mono-font);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefit-item p {
    margin: 0;
    font-size: 1.125rem;
    color: #333;
    line-height: 1.6;
    font-family: var(--system-font);
}

.benefit-item ul {
    margin-top: 8px;
    margin-bottom: 0;
}

/* Core Values Box */
.core-values-box {
    border: 3px double #5b5b5b;
    padding: 32px;
    position: relative;
    margin: 40px 0;
    background: white;
    width: 100%;
    max-width: none;
}

.core-values-title {
    position: absolute;
    top: -15px;
        left: 50%;
        transform: translateX(-50%);
    background-color: white;
    padding: 0 16px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    font-family: var(--title-font-2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.core-values-list {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.core-values-list li {
    margin-bottom: 20px;
    padding-left: 0;
    font-size: 1.125rem;
    line-height: 1.6;
}

.core-values-list li:last-child {
    margin-bottom: 0;
}

/* Job Detail Pages - Simplified */
.job-details-simple {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
    justify-content: flex-start;
    font-family: var(--mono-font);
}

.job-detail-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.job-detail-title {
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--mono-font);
}

/* Apply Button */
.apply-button-container {
    margin: 32px 0 40px 0;
}

.apply-now-button {
    background: var(--primary-blue);
    color: white !important;
    border: 2px solid var(--primary-blue);
    padding: 16px 32px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    font-family: var(--mono-font);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.apply-now-button:hover {
    background: #2563EB;
    color: white !important;
}

.apply-now-button::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url('/static/Right_arrow_Icon_Black.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 8px;
    filter: brightness(0) invert(1);
    transform: rotate(-45deg);
    transition: filter 0.2s ease;
}

.apply-now-button:hover::after {
    filter: brightness(0) invert(1);
}

.careers-container h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 24px 0 12px 0;
    color: #333;
    font-family: var(--title-font-2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.back-to-careers {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e5e5e5;

}

.back-to-blog {
    margin-top: 48px;
    padding-top: 32px;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    border-top: 0.5px solid white;
    padding: 40px 0 100px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.footer-content {
    display: flex;
    align-items: flex-end;
    gap: 60px;
    justify-content: space-between;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    align-items: center;
}

.footer-newsletter h3 {
    font-size: 1rem;
    font-weight: 400;
    color: white;
    font-family: var(--system-font);
    margin: 0;
}

.newsletter-form {
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: center;
}

.email-input-container {
    position: relative;
    min-width: 50px;
    width: 100%;
}

.email-input {
    width: 100%;
    padding: 12px 16px 12px 55px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    font-family: var(--system-font);
}

.email-input::placeholder {
    color: var(--text-tertiary);
}

.email-input:focus {
    border-color: white;
    background: rgba(255, 255, 255, 0.15);
}

.email-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 24px;
}

.footer-social {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 46px;
}

.footer-social a {
    color: white;
    text-decoration: none;
    font-family: var(--system-font);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-blue);
}

.footer-legal {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    height: 46px;
}

.footer-legal a {
    color: white;
    text-decoration: none;
    font-family: var(--system-font);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-blue);
}

/* Responsive Design */
@media (max-width: 1650px) {
    .header-container {
        padding: 0 24px;
    }
    
    .hero-container {
        padding: 0 24px;
    }
    
    .content-section > *,
    .trust-section > * {
        padding: 0 24px;
    }
    
    .footer-container {
        padding: 0 24px;
    }
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-visual {
        height: 80px;
    }
    
    /* Careers Container Medium */
    .careers-container {
        padding: 0 24px 0 24px;
    }
    
    .careers-container h1,
    .careers-container h3,
    .careers-container h4,
    .careers-container p,
    .careers-container ul,
    .references-list,
    .seagle-img-row {
        width: 100%;
    }
    
    .logo-img {
        height: 24px;
    }
    
    .btn-talk-to-us {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    /* News ticker on medium screens */
    .news-ticker {
        padding: 8px 16px;
    }
    
    .news-content {
        font-size: 11px;
        white-space: normal;
        word-break: break-word;
    }
    
    .section-title,
    .convergence-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .convergence-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .convergence-text {
        order: 1;
        margin-bottom: 40px;
        max-width: 100%;
        transform: translateY(-30px);
    }
    
    .research-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vision-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Enterprise Services Responsive */
    .enterprise-services {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
        margin: 40px auto 0;
    }
    
    .enterprise-service {
        min-height: auto;
        padding: 24px;
    }
    
    /* Blog Post Images Tablet */
    .seagle-img-small {
        width: 60%;
        max-width: 500px;
    }
    
    /* Careers Container Tablet */
    .careers-container {
        padding: 0 20px 0 20px;
    }
    
    .careers-container h1,
    .careers-container h3,
    .careers-container h4,
    .careers-container p,
    .careers-container ul,
    .references-list,
    .seagle-img-row {
        width: 100%;
        text-align: justify;
    }
    
    .careers-container h1,
    .careers-container h3,
    .careers-container h4 {
        text-align: left !important;
    }
    
    .seagle-img-row + p {
        width: 100%;
    }
    
    .performance-chart {
        max-width: 450px;
    }
    
    .next-steps-content {
        gap: 30px;
    }
    
    .next-step-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .next-step-question {
        white-space: normal;
        text-align: left;
        font-size: clamp(1.1rem, 4vw, 1.4rem);
    }
    
    .next-step-dots {
        width: 100%;
        height: 1em;
    }
    
    .next-step-button {
        font-size: clamp(1.1rem, 4vw, 1.4rem);
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        text-align: center;
    }
    
    .footer-newsletter,
    .footer-social,
    .footer-legal {
        flex: none;
        width: 100%;
        justify-content: center;
        height: auto;
    }
    
    .footer-newsletter {
        order: 1;
        align-items: center;
    }
    
    .footer-social {
        order: 2;
    }
    
    .footer-legal {
        order: 3;
        justify-content: center;
    }
}


@media (max-width: 768px) {
    /* Hide news ticker on mobile */
    .news-ticker {
        display: none;
    }
    
    /* Adjust header position since no ticker */
    .header {
        top: 0;
        border-bottom: none;
        box-shadow: none;
        border: none;
        padding-bottom: 0;
    }
    
    .header-container {
        padding: 0 20px;
        margin: 0 auto;
        border: none;
        background: white;
    }
    
    .header::after {
        content: '';
        display: block;
        height: 2px;
        background: white;
        position: absolute;
        bottom: -2px;
        left: 0;
        right: 0;
        z-index: 1001;
    }
    
    .content-section > *,
    .trust-section > * {
        padding: 0 20px;
    }
    
    .content-section,
    .trust-section {
        padding: 50px 0;
    }
    
    .hero-cta {
        width: 100%;
    }
    
    .logos-row {
        gap: 40px;
    }
    
    .trust-logo {
        height: 50px;
    }
    
    /* Job Detail Pages Tablet */
    .job-details-simple {
        gap: 30px;
    }
    
    .job-detail-title {
        font-size: 0.85rem;
    }
    
    .apply-now-button {
        padding: 14px 28px;
        font-size: 13px;
    }
    
    /* Hero adjustments */
    .hero {
        margin-top: -1px;
    }
    
    .hero-container {
        padding: 80px 20px 0 20px;
        min-height: 80vh;
    }
    
    .hero-visual {
        height: 60px;
    }
    
    .logo-img {
        height: 24px;
    }
    
    .btn-talk-to-us {
        padding: 10px 16px;
        font-size: 10px;
    }
    
    .mobile-menu-toggle {
        padding: 12px;
    }
    
    .hamburger-line {
        width: 26px;
        height: 3px;
    }
    
    /* Adjust body margin for no news ticker, just header */
    body {
        margin-top: 60px;
    }
    
    /* Expanded Hero Responsive */
    .hero-expanded-container {
        padding: 40px 20px;
    }
    
    .convergence-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .convergence-text {
        order: 1;
        margin-bottom: 40px;
        max-width: 100%;
        transform: translateY(-30px);
    }

    
    .hero-expanded-container.active .convergence-text {
        transform: translateY(0);
    }
    
    .device-shapes-container {
        order: 2;
        justify-content: center;
        flex-direction: column;
        gap: 30px;
        height: auto;
    }
    
    .convergence-title {
        margin-bottom: 20px;
    }
    
    .convergence-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 0;
    }
    
    .device-shapes-container {
        order: 2;
        height: auto;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 30px;
        margin-top: 40px;
        width: 100%;
        max-width: 100%;
    }
    
    .device-shape {
        margin: 0;
        max-width: 90%;
    }
    
    .server-shape .device-canvas,
    .desktop-shape .device-canvas {
        width: 150px;
        height: 100px;
        max-width: 100%;
    }
    
    .device-label {
        font-size: 12px;
    }
    
    /* Hide convergence canvas on mobile */
    .convergence-canvas {
        display: none;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-line {
        white-space: normal;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 16px;
    }
    
    .btn-primary, .btn-secondary {
        justify-content: center;
        text-align: center;
        width: 100%;
    }
    
    .section-title,
    .convergence-title {
        font-size: 1.8rem;
    }
    
    .research-content .section-content {
        gap: 0;
    }
    
    .vision-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .vision-image {
        width: 90%;
        max-width: 400px;
        border-radius: 12px;
    }
    
    .performance-chart {
        max-width: 100%;
        width: 100%;
        padding: 20px 16px;
    }
    
    .chart-bars {
        height: 220px;
        padding-top: 20px;
    }
    
    .bar {
        width: 32px;
    }
    
    .bar-label {
        font-size: 0.75rem;
    }
    
    .bar-value {
        font-size: 0.85rem;
    }
    
    .performance-chart h4 {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }
    
    .chart-title {
        font-size: 0.85rem;
    }
    
    .chart-subtitle {
        font-size: 0.75rem;
    }
    
    .bar.eagle {
        height: 70px;
    }
    
    .bar.vanilla {
        height: 74px;
    }
    
    .bar.exxa {
        height: 148px;
    }
    
    @keyframes growBarEagle {
        from { height: 0px; }
        to { height: 70px; }
    }
    
    @keyframes growBarVanilla {
        from { height: 0px; }
        to { height: 74px; }
    }
    
    @keyframes growBarExxa {
        from { height: 0px; }
        to { height: 148px; }
    }
    
    .team-placeholder {
        grid-template-columns: 1fr;
    }
    
    .email-input-container {
        min-width: 50px;
        max-width: 400px;
        width: 100%;
    }
    
    .footer-social {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-social a {
        padding: 8px 12px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-legal a {
        padding: 8px 12px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

/* Trust Logos Responsive - Medium Screens */
@media (max-width: 600px) {
    .trust-logos {
        flex-direction: column;
        gap: 25px;
    }
    
    .logos-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
        max-width: 400px;
    }
    
    .trust-logo {
        height: 45px;
    }
    
    /* Careers Page Medium Screens */
    .careers-container p {
        width: 85%;
    }
    
    .benefit-item p {
        font-size: 1rem;
    }
    
    .benefit-item strong {
        font-size: 0.95rem;
    }
    
    .positions-table-container {
        width: 85%;
    }
    
    .core-values-box {
        width: 85%;
    }
    
    .positions-table {
        font-size: 0.9rem;
    }
    
    .positions-table th,
    .positions-table td {
        padding: 14px 10px;
    }
    
    .positions-table th {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 16px;
    }
    
    .header::after {
        height: 3px;
        bottom: -3px;
    }
    
    .content-section > *,
    .trust-section > * {
        padding: 0 16px;
    }
    
    .hero {
        margin-top: -2px;
    }
    
    .hero-container {
        padding: 0 16px;
    }
    
    .footer-container {
        padding: 0 16px;
    }
    
    .hero-container {
        padding: 100px 16px 0 16px;
        min-height: 70vh;
    }
    
    .hero-visual {
        height: 40px;
    }
    
    .logo-img {
        height: 24px;
    }
    
    .btn-talk-to-us {
        padding: 10px 16px;
        font-size: 10px;
    }
    
    .mobile-menu-toggle {
        padding: 12px;
    }
    
    .hamburger-line {
        width: 24px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-line {
        white-space: normal;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .email-input {
        width: 100%;
    }
    
    .section-title,
    .convergence-title {
        font-size: clamp(1.2rem, 5vw, 1.5rem);
    }
    
    /* Adjust body margin for no news ticker, just header */
    body {
        margin-top: 60px;
    }
    
    .convergence-title {
        margin-bottom: 16px;
    }
    
    .convergence-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .trust-logos {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
    
    .logos-row {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 300px;
    }
    
    .trust-logo {
        height: 30px;
        width: auto;
        max-width: 100px;
        flex-shrink: 1;
        object-fit: contain;
    }
    
    /* Legal Pages Mobile */
    .terms-container {
        padding: 0 16px;
    }
    
    .terms-container h1 {
        font-size: 2rem;
        margin-bottom: 24px;
    }
    
    .terms-container h3 {
        font-size: 1.25rem;
        margin: 24px 0 12px 0;
    }
    
    .terms-container p,
    .terms-container li {
        font-size: 1rem;
    }
    
    /* Careers Page Mobile */
    .careers-container {
        padding: 0 16px 0 16px;
    }
    
    .careers-container h1,
    .careers-container h3,
    .careers-container h4,
    .careers-container p,
    .careers-container ul,
    .careers-container li,
    .references-list,
    .seagle-img-row {
        width: 100%;
        text-align: justify;
    }
    
    .careers-container h1,
    .careers-container h3,
    .careers-container h4 {
        text-align: left !important;
    }
    
    .reference-item {
        text-align: left;
    }
    
    .seagle-img-row + p {
        width: 100%;
    }
    
    .careers-container h1 {
        font-size: 2rem;
        margin-bottom: 24px;
    }
    
    .careers-container h3 {
        font-size: 1.25rem;
        margin: 24px 0 12px 0;
    }
    
    .careers-container p,
    .careers-container li {
        font-size: 1rem;
    }
    
    /* Blog Posts Mobile */
    .blog-posts-list li {
        font-size: 1rem;
    }
    
    .blog-post-link {
        display: block;
        padding: 4px 0;
    }
    
    /* Blog Post Images Mobile */
    .seagle-img-small {
        width: 100%;
        max-width: 100%;
    }
    
    .benefit-item p {
        font-size: 1rem;
    }
    
    .benefit-item strong {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
    
    .positions-table-container {
        width: 100%;
    }
    
    .positions-table {
        font-size: 0.85rem;
        border: 1px solid #333;
    }
    
    .positions-table th,
    .positions-table td {
        padding: 12px 8px;
        font-size: 0.8rem;
    }
    
    .positions-table th {
        font-size: 0.75rem;
    }
    
    .status-badge, .contract-badge, .location-badge {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
    
    .apply-link::after {
        width: 10px;
        height: 10px;
        margin-left: 4px;
    }
    
    .core-values-box {
        padding: 20px;
        margin: 24px 0;
        width: 100%;
    }
    
    .core-values-title {
        font-size: 1.25rem;
        padding: 0 12px;
    }
    
    /* Job Detail Pages Mobile */
    .job-details-simple {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .job-detail-column {
        gap: 8px;
    }
    
    .job-detail-title {
        font-size: 0.8rem;
    }
    
    .apply-now-button {
        padding: 12px 24px;
        font-size: 12px;
        width: 100%;
        justify-content: center;
    }
    
    .apply-now-button::after {
        width: 12px;
        height: 12px;
        margin-left: 6px;
    }
    
    .careers-container h4 {
        font-size: 1.1rem;
        margin: 16px 0 8px 0;
    }
    
    .back-to-careers {
        margin-top: 32px;
        padding-top: 24px;
    }
    
    .convergence-text {
        margin-bottom: 40px;
        padding-bottom: 20px;
    }
    
    .content-section,
    .trust-section {
        padding: 40px 0;
    }
    
    .section-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Enterprise Services Mobile */
    .enterprise-services {
        padding: 0 16px;
        gap: 24px;
        margin: 30px auto 0;
    }
    
    .enterprise-service {
        padding: 20px;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-description {
        font-size: 0.95rem;
    }
    
    .case-study-text {
        font-size: 0.9rem;
    }
    
    .footer-newsletter {
        gap: 12px;
    }
    
    .email-input-container {
        min-width: 50px;
        max-width: 400px;
        width: 100%;
    }
    
    .footer-social {
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .footer-social a {
        padding: 10px 12px;
        min-height: 44px;
    }
    
    .footer-legal {
        gap: 8px;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-legal a {
        padding: 10px 12px;
        min-height: 44px;
    }
}
