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

:root {
    /* Colors - matching the main app */
    --primary: 15 23 42;
    /* slate-800 */
    --primary-hover: 30 41 59;
    /* slate-700 */
    --secondary: 245 158 11;
    /* amber-500 */
    --secondary-hover: 217 119 6;
    /* amber-600 */
    --accent: 16 185 129;
    /* emerald-500 */
    --background: 248 250 252;
    /* slate-50 */
    --surface: 255 255 255;
    /* white */
    --muted: 148 163 184;
    /* slate-400 */
    --muted-foreground: 100 116 139;
    /* slate-500 */
    --border: 226 232 240;
    /* slate-200 */
    --text: 15 23 42;
    /* slate-800 */
    --text-muted: 71 85 105;
    /* slate-600 */

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 6rem 0;
    --border-radius: 0.5rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: rgb(var(--text));
    background-color: rgb(var(--background));
}

/* Container and Layout */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: var(--section-padding);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: rgb(var(--text));
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: rgb(var(--text-muted));
    margin-bottom: 3rem;
}

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


/* --- Three Arches Logo Component (Global Scope) --- */
.three-arches-logo {
    position: relative;
    display: inline-block;
    transform: scale(0.75);
    transform-origin: center;
}

.three-arches-logo.xsmall {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 20px;
}

.three-arches-logo.small {
    width: 60px;
    height: 40px;
}

.three-arches-logo.medium {
    width: 120px;
    height: 80px;
}

.three-arches-logo.large {
    width: 180px;
    height: 120px;
}

.arch-element {
    position: absolute;
    border: 2px solid #D4AF37;
    border-bottom: 0;
    background: linear-gradient(180deg, rgba(210, 175, 55, 0.5), transparent);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: none;
}

.three-arches-logo.small .arch-element {
    width: 15px;
    height: 30px;
    border-radius: 9px 9px 0 0;
}

.three-arches-logo.medium .arch-element {
    width: 30px;
    height: 60px;
    border-radius: 18px 18px 0 0;
}

.three-arches-logo.large .arch-element {
    width: 45px;
    height: 90px;
    border-radius: 27px 27px 0 0;
}

.three-arches-logo.small .arch-element:nth-child(1) {
    left: 7.5px;
}

.three-arches-logo.small .arch-element:nth-child(2) {
    left: 22.5px;
}

.three-arches-logo.small .arch-element:nth-child(3) {
    left: 37.5px;
}

.three-arches-logo.medium .arch-element:nth-child(1) {
    left: 15px;
}

.three-arches-logo.medium .arch-element:nth-child(2) {
    left: 45px;
}

.three-arches-logo.medium .arch-element:nth-child(3) {
    left: 75px;
}

.three-arches-logo.large .arch-element:nth-child(1) {
    left: 22.5px;
}

.three-arches-logo.large .arch-element:nth-child(2) {
    left: 67.5px;
}

.three-arches-logo.large .arch-element:nth-child(3) {
    left: 112.5px;
}

.arch-foundation {
    position: absolute;
    background: #D4AF37;
    border-radius: 1px;
}

.three-arches-logo.small .arch-foundation {
    bottom: 5px;
    left: 5px;
    width: 50px;
    height: 2px;
}

.three-arches-logo.medium .arch-foundation {
    bottom: 9px;
    left: 10px;
    width: 100px;
    height: 2px;
}

.three-arches-logo.large .arch-foundation {
    bottom: 9px;
    left: 15px;
    width: 150px;
    height: 2px;
}

.interactive:hover .arch-element {
    animation: arch-hover 0.4s forwards ease;
    animation-delay: calc(var(--i) * 100ms);
}

@keyframes arch-hover {
    0% {
        transform: scale(1) translateY(0);
        box-shadow: none;
    }

    100% {
        transform: scale(1.05) translateY(1px);
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    }
}

/* --- Outer Card Styling (matches Tailwind look) --- */
.logo-card {
    background-color: rgba(23, 37, 84, 0.05);
    /* bg-blue-950/5 */
    backdrop-filter: blur(4px);
    /* backdrop-blur-sm */
    border: 1px solid rgba(148, 163, 184, 0.5);
    /* border-slate-400/50 */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    /* shadow-2xl */
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
}

.logo-card-small {
    background-color: rgba(23, 37, 84, 0.95);
    /* bg-blue-950/5 */
    backdrop-filter: blur(4px);
    /* backdrop-blur-sm */
    border: 1px solid rgba(148, 163, 184, 0.5);
    /* border-slate-400/50 */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    /* shadow-2xl */
    padding-top: 0.5rem;
    border-radius: 0.6rem;
    text-align: center;
}

.logo-gradient-box-small {
    display: inline-block;
    position: relative;
    background: linear-gradient(to bottom right, #1e293b, #334155);
    /* slate-800 to slate-700 */
    border-radius: 0.5rem;
}

/* --- Gradient Box & Border --- */
.logo-gradient-box {
    display: inline-block;
    position: relative;
    padding: 2rem;
    background: linear-gradient(to bottom right, #1e293b, #334155);
    /* slate-800 to slate-700 */
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.logo-border-overlay {
    position: absolute;
    inset: 0.5rem;
    border: 2px solid #facc15;
    /* yellow-500 */
    border-radius: 0.5rem;
    pointer-events: none;
}


.logo-border-overlay-small {
    position: absolute;
    inset: 0.2rem;
    margin-top: -0.5rem;
    border: 1px solid #facc15;
    /* yellow-500 */
    border-radius: 0.5rem;
    pointer-events: none;
}


/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background-color: rgb(var(--primary-hover));
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgb(var(--border));
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: rgb(var(--text));
}

/* Gordias Nexus Logo Styles */
.nav-logo {
    height: 40px;
    width: auto;
    max-width: 200px;
}

/* Three Arches Logo Web Component Styles */
three-arches-logo {
    display: inline-block;
    vertical-align: middle;
}

/* Navigation logo sizing */
.nav-brand three-arches-logo {
    width: 45px;
    height: 30px;
}

.nav-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.nav-subtitle {
    font-family: var(--font-serif);
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

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

.nav-link {
    text-decoration: none;
    color: rgb(var(--text-muted));
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: rgb(var(--primary));
}

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

.nav-cta {
    background-color: rgb(var(--primary));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-cta:hover {
    background-color: rgb(var(--primary-hover));
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: rgb(var(--text));
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, rgb(var(--background)) 0%, rgba(245, 158, 11, 0.05) 100%);
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-accent {
    color: rgb(var(--secondary));
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgb(var(--text-muted));
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-card {
    background-color: rgb(var(--surface));
    padding: 3rem 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    text-align: center;
    border: 3px solid rgb(var(--secondary));
    position: relative;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgb(var(--secondary)), rgb(var(--accent)));
    border-radius: 1rem;
    z-index: -1;
}

.hero-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

/* Hero section logo sizing */
.hero-card three-arches-logo {
    width: 120px;
    height: 80px;
    margin-bottom: 1rem;
}

.hero-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    color: rgb(var(--text-muted));
    font-size: 1.125rem;
}

/* Features Section */
.features {
    padding: var(--section-padding);
    background-color: rgb(var(--surface));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    padding: 1rem;
    background-color: rgba(var(--primary), 0.1);
    border-radius: 50%;
    color: rgb(var(--primary));
}

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

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: rgb(var(--text));
}

.feature-description {
    color: rgb(var(--text-muted));
    line-height: 1.6;
}

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, rgb(var(--background)) 0%, rgba(245, 158, 11, 0.05) 100%);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgb(var(--text-muted));
}

/* About Content */
.about-content {
    padding: var(--section-padding);
    background-color: rgb(var(--surface));
}

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

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

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: rgb(var(--text));
}

.content-section p {
    margin-bottom: 1.5rem;
    color: rgb(var(--text-muted));
    line-height: 1.7;
}

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

.pillar {
    padding: 1.5rem;
    background-color: rgb(var(--background));
    border-radius: var(--border-radius);
    border-left: 4px solid rgb(var(--secondary));
}

.pillar h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: rgb(var(--text));
}

.benefits-list {
    list-style: none;
    margin-top: 1.5rem;
}

.benefits-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: rgb(var(--text-muted));
    line-height: 1.6;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: rgb(var(--accent));
    font-weight: bold;
}

.benefits-list strong {
    color: rgb(var(--text));
}

/* Sidebar */
.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background-color: rgb(var(--background));
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgb(var(--border));
}

.sidebar-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: rgb(var(--text));
}

.stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(var(--primary));
    font-family: var(--font-serif);
}

.stat-label {
    color: rgb(var(--text-muted));
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.industry-list {
    list-style: none;
}

.industry-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgb(var(--border));
    color: rgb(var(--text-muted));
}

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

/* Contact Content */
.contact-content {
    padding: var(--section-padding);
    background-color: rgb(var(--surface));
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: rgb(var(--text));
}

.form-header p {
    color: rgb(var(--text-muted));
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: rgb(var(--text));
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid rgb(var(--border));
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background-color: rgb(var(--surface));
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgb(var(--primary));
    box-shadow: 0 0 0 3px rgba(var(--primary), 0.1);
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background-color: rgb(var(--background));
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgb(var(--border));
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: rgb(var(--text));
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: rgb(var(--primary));
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item a {
    color: rgb(var(--primary));
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.next-steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.next-steps-list li {
    counter-increment: step-counter;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
    color: rgb(var(--text-muted));
}

.next-steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgb(var(--primary));
    color: white;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

/* CTA Section */
.cta {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgb(var(--primary)) 0%, rgb(var(--primary-hover)) 100%);
    color: white;
    text-align: center;
}

.gordias-pre-footer {
    background-color: rgb(15, 23, 42);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta .btn-primary {
    background-color: rgb(var(--secondary));
    color: rgb(var(--text));
}

.cta .btn-primary:hover {
    background-color: rgb(var(--secondary-hover));
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: rgb(var(--text));
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flexbox;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    height: 28px;
    width: auto;
    max-width: 150px;
    filter: brightness(0) invert(1);
}

.footer-title {
    display: flex;
    align-items: center;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: white;
}

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

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 1rem;
    left: 85%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 1000;
    transition: var(--transition);
}

.floating-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: .5rem .5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    background-color: rgba(15, 23, 42, 0.5);
    border: 1px solid #d4af37;
}

.floating-btn-icon {
    width: 18px;
    height: 18px;
}

.floating-btn-primary {
    color: #d4af37;
}

.floating-btn-primary:hover {
    background-color: rgb(var(--primary));
    color: #D4AF37;
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.floating-btn-secondary {
    background-color: rgba(255, 255, 255, 0.95);
    color: rgb(var(--primary));
}

.floating-btn-secondary:hover {
    background-color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* Hide floating buttons when scrolled to hero section */
.floating-actions.hidden {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(20px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid rgb(var(--border));
    }

    .nav-menu .nav-link:last-of-type {
        border-bottom: none;
    }

    .nav-menu .nav-cta {
        margin-top: 1rem;
        text-align: center;
    }

    .nav-toggle {
        display: flex;
    }

    /* Mobile navigation toggle animation */
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        align-items: center;
        gap: 2rem;
    }

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

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

    .content-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .container {
        padding: 0 1rem;
    }

    .approach-pillars {
        grid-template-columns: 1fr;
    }

    /* --- Outer Card Styling (matches Tailwind look) --- */
    .logo-card {
        background-color: rgba(23, 37, 84, 0.05);
        /* bg-blue-950/5 */
        backdrop-filter: blur(4px);
        /* backdrop-blur-sm */
        border: 1px solid rgba(148, 163, 184, 0.5);
        /* border-slate-400/50 */
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        /* shadow-2xl */
        padding: 2rem;
        border-radius: 0.5rem;
        text-align: center;
    }

    /* --- Gradient Box & Border --- */
    .logo-gradient-box {
        display: inline-block;
        position: relative;
        padding: 1rem;
        background: linear-gradient(to bottom right, #1e293b, #334155);
        /* slate-800 to slate-700 */
        border-radius: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .logo-border-overlay {
        position: absolute;
        inset: 0.0rem;
        border: 2px solid #facc15;
        /* yellow-500 */
        border-radius: 0.5rem;
        pointer-events: none;
    }

    /* --- Three Arches Logo Component --- */
    .three-arches-logo {
        position: relative;
        display: display-box;
        transform: scale(0.75);
        transform-origin: center;
    }

    /* Size Variants */
    .three-arches-logo.small {
        width: 60px;
        height: 40px;
    }

    .three-arches-logo.medium {
        width: 120px;
        height: 80px;
    }

    .three-arches-logo.large {
        width: 180px;
        height: 120px;
    }

    /* Arch Elements */
    .arch-element {
        position: absolute;
        border: 2px solid #D4AF37;
        border-bottom: 0;
        background: linear-gradient(180deg, rgba(210, 175, 55, 0.5), transparent);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        animation: none;
    }

    .three-arches-logo.small .arch-element {
        width: 15px;
        height: 30px;
        border-radius: 9px 9px 0 0;
    }

    .three-arches-logo.medium .arch-element {
        width: 30px;
        height: 60px;
        border-radius: 18px 18px 0 0;
    }

    .three-arches-logo.large .arch-element {
        width: 45px;
        height: 90px;
        border-radius: 27px 27px 0 0;
    }

    /* Positioning */
    .three-arches-logo.small .arch-element:nth-child(1) {
        left: 7.5px;
    }

    .three-arches-logo.small .arch-element:nth-child(2) {
        left: 22.5px;
    }

    .three-arches-logo.small .arch-element:nth-child(3) {
        left: 37.5px;
    }

    .three-arches-logo.medium .arch-element:nth-child(1) {
        left: 15px;
    }

    .three-arches-logo.medium .arch-element:nth-child(2) {
        left: 45px;
    }

    .three-arches-logo.medium .arch-element:nth-child(3) {
        left: 75px;
    }

    .three-arches-logo.large .arch-element:nth-child(1) {
        left: 22.5px;
    }

    .three-arches-logo.large .arch-element:nth-child(2) {
        left: 67.5px;
    }

    .three-arches-logo.large .arch-element:nth-child(3) {
        left: 112.5px;
    }

    /* Foundation Bar */
    .arch-foundation {
        position: relative;
        background: #D4AF37;
        border-radius: 1px;
    }

    .three-arches-logo.small .arch-foundation {
        bottom: 5px;
        left: 5px;
        width: 50px;
        height: 2px;
    }

    .three-arches-logo.medium .arch-foundation {
        bottom: 9px;
        left: 10px;
        width: 100px;
        height: 2px;
    }

    .three-arches-logo.large .arch-foundation {
        bottom: 9px;
        left: 15px;
        width: 150px;
        height: 2px;
    }

    /* --- Hover Animation (CSS-only) --- */
    .interactive:hover .arch-element {
        animation: arch-hover 0.4s forwards ease;
        animation-delay: calc(var(--i) * 100ms);
    }

    @keyframes arch-hover {
        0% {
            transform: scale(1) translateY(0);
            box-shadow: none;
        }

        100% {
            transform: scale(1.05) translateY(1px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
        }
    }

}

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

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

    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .hero-actions .btn {
        display: flex;

        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    /* Adjust floating buttons for mobile */
    .floating-actions {
        flex-direction: column;
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        transform: none;
    }

    .floating-btn {
        justify-content: center;
        width: 100%;
    }

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

    .arches-artwork {
        position: relative;
    }

    .arches-artwork.small {
        width: 60px;
        height: 40px;
    }

    .arches-artwork.medium {
        width: 120px;
        height: 80px;
    }

    .arches-artwork.large {
        width: 180px;
        height: 120px;
    }

    .arch-element {
        position: absolute;
        border: 2px solid #D4AF37;
        border-bottom: 0;
        background: linear-gradient(180deg, rgba(210, 175, 55, 0.5), transparent);
        transition: all 0.3s ease;
    }

    .arches-artwork.small .arch-element {
        width: 15px;
        height: 30px;
        border-radius: 9px 9px 0 0;
    }

    .arches-artwork.medium .arch-element {
        width: 30px;
        height: 60px;
        border-radius: 18px 18px 0 0;
    }

    .arches-artwork.large .arch-element {
        width: 45px;
        height: 90px;
        border-radius: 27px 27px 0 0;
    }

    .arches-artwork .arch-element:nth-child(1) {
        left: 12.5%;
    }

    .arches-artwork .arch-element:nth-child(2) {
        left: 37.5%;
    }

    .arches-artwork .arch-element:nth-child(3) {
        left: 62.5%;
    }

    .arch-foundation {
        position: absolute;
        background: #D4AF37;
        border-radius: 1px;
    }

    .arches-artwork.small .arch-foundation {
        bottom: 5px;
        left: 5px;
        width: 50px;
        height: 2px;
    }

    .arches-artwork.medium .arch-foundation {
        bottom: 9px;
        left: 10px;
        width: 100px;
        height: 2px;
    }

    .arches-artwork.large .arch-foundation {
        bottom: 9px;
        left: 15px;
        width: 150px;
        height: 2px;
    }

    .logo-card {
        background-color: rgba(23, 37, 84, 0.05);
        /* Tailwind: bg-blue-950/5 */
        backdrop-filter: blur(4px);
        /* Tailwind: backdrop-blur-sm */
        border: 1px solid rgba(148, 163, 184, 0.5);
        /* Tailwind: border-slate-400/50 */
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        /* Tailwind: shadow-2xl */
        padding: 2rem;
        border-radius: 0.5rem;
        text-align: center;
    }

    .logo-gradient-box {
        display: inline-block;
        position: relative;
        padding: 2rem;
        background: linear-gradient(to bottom right, #1e293b, #334155);
        /* Tailwind: from-slate-800 to-slate-700 */
        border-radius: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .logo-border-overlay {
        position: absolute;
        inset: 0.5rem;
        /* Tailwind: inset-2 */
        border: 2px solid #FACC15;
        /* Tailwind: border-yellow-500 */
        border-radius: 0.5rem;
        pointer-events: none;
    }

    .scaled-logo {
        transform: scale(0.75);
        /* Tailwind: scale-75 */
        transform-origin: center;
    }

    /* --- Outer Card Styling (matches Tailwind look) --- */
    .logo-card {
        background-color: rgba(23, 37, 84, 0.05);
        /* bg-blue-950/5 */
        backdrop-filter: blur(4px);
        /* backdrop-blur-sm */
        border: 1px solid rgba(148, 163, 184, 0.5);
        /* border-slate-400/50 */
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        /* shadow-2xl */
        padding: 2rem;
        border-radius: 0.5rem;
        text-align: center;
    }

    /* --- Gradient Box & Border --- */
    .logo-gradient-box {
        display: inline-block;
        position: relative;
        padding: 2rem;
        background: linear-gradient(to bottom right, #1e293b, #334155);
        /* slate-800 to slate-700 */
        border-radius: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .logo-border-overlay {
        position: absolute;
        inset: 0.5rem;
        border: 2px solid #facc15;
        /* yellow-500 */
        border-radius: 0.5rem;
        pointer-events: none;
    }

    /* --- Three Arches Logo Component --- */
    .three-arches-logo {
        position: relative;
        display: inline-block;
        transform: scale(0.75);
        transform-origin: center;
    }

    /* Size Variants */
    .three-arches-logo.small {
        width: 60px;
        height: 40px;
    }

    .three-arches-logo.medium {
        width: 120px;
        height: 80px;
    }

    .three-arches-logo.large {
        width: 180px;
        height: 120px;
    }

    /* Arch Elements */
    .arch-element {
        position: absolute;
        border: 2px solid #D4AF37;
        border-bottom: 0;
        background: linear-gradient(180deg, rgba(210, 175, 55, 0.5), transparent);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        animation: none;
    }

    .three-arches-logo.small .arch-element {
        width: 15px;
        height: 30px;
        border-radius: 9px 9px 0 0;
    }

    .three-arches-logo.medium .arch-element {
        width: 30px;
        height: 60px;
        border-radius: 18px 18px 0 0;
    }

    .three-arches-logo.large .arch-element {
        width: 45px;
        height: 90px;
        border-radius: 27px 27px 0 0;
    }

    /* Positioning */
    .three-arches-logo.small .arch-element:nth-child(1) {
        left: 7.5px;
    }

    .three-arches-logo.small .arch-element:nth-child(2) {
        left: 22.5px;
    }

    .three-arches-logo.small .arch-element:nth-child(3) {
        left: 37.5px;
    }

    .three-arches-logo.medium .arch-element:nth-child(1) {
        left: 15px;
    }

    .three-arches-logo.medium .arch-element:nth-child(2) {
        left: 45px;
    }

    .three-arches-logo.medium .arch-element:nth-child(3) {
        left: 75px;
    }

    .three-arches-logo.large .arch-element:nth-child(1) {
        left: 22.5px;
    }

    .three-arches-logo.large .arch-element:nth-child(2) {
        left: 67.5px;
    }

    .three-arches-logo.large .arch-element:nth-child(3) {
        left: 112.5px;
    }

    /* Foundation Bar */
    .arch-foundation {
        position: absolute;
        background: #D4AF37;
        border-radius: 1px;
    }

    .three-arches-logo.small .arch-foundation {
        bottom: 5px;
        left: 5px;
        width: 50px;
        height: 2px;
    }

    .three-arches-logo.medium .arch-foundation {
        bottom: 9px;
        left: 10px;
        width: 100px;
        height: 2px;
    }

    .three-arches-logo.large .arch-foundation {
        bottom: 9px;
        left: 15px;
        width: 150px;
        height: 2px;
    }

    /* --- Hover Animation (CSS-only) --- */
    .interactive:hover .arch-element {
        animation: arch-hover 0.4s forwards ease;
        animation-delay: calc(var(--i) * 100ms);
    }

    @keyframes arch-hover {
        0% {
            transform: scale(1) translateY(0);
            box-shadow: none;
        }

        100% {
            transform: scale(1.05) translateY(1px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
        }
    }

}

/* Hero Section - Additional styles */
.hero-subtitle-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-blue-600);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--color-neutral-700);
    margin-bottom: 2rem;
}

/* Mission Section */
.mission-section {
    padding: 8rem 0;
    background: var(--slate-50);
    color: #1e293b;
}

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

.mission-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--slate-50);
    max-width: 800px;
    margin: 0 auto 5rem auto;
}

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

.priority-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 3rem 2rem;
    color: #1e293b;
    text-align: center;
    transition: all 0.3s ease;
}

.priority-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
}

.priority-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-blue-600), var(--color-blue-700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 auto 2rem;
}

.priority-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.priority-card p {
    color: var(--color-neutral-200);
    line-height: 1.6;
}

/* Partners Section */
.partners-section {
    padding: 8rem 0;
    background: var(--color-blue-50);
}

.partners-content {
    max-width: 1200px;
    margin: 0 auto;
}

.partners-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.partners-column {
    text-align: center;
}

.partners-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-neutral-900);
    margin-bottom: 1rem;
}

.partners-subtitle {
    font-size: 1.125rem;
    color: var(--color-neutral-600);
    margin-bottom: 3rem;
    line-height: 1.5;
}

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

.partner-logo {
    height: 80px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: grayscale(50%);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Additional Mobile Responsive Styles */
@media (max-width: 768px) {
    .partners-row {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .partner-logo {
        height: 60px;
    }

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

    .hero-subtitle-large {
        font-size: 1.25rem;
    }

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

/* Talent Network Page Styles */
.talent-managers {
    padding: 6rem 0;
    background: var(--color-neutral-50);
}

.talent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.talent-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.talent-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.talent-photo {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--color-blue-100);
}

.talent-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.talent-status {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--color-green-500);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.talent-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-neutral-900);
    margin-bottom: 0.5rem;
    text-align: center;
}

.talent-title {
    color: var(--color-blue-600);
    font-weight: 500;
    text-align: center;
    margin-bottom: 1.5rem;
}

.talent-description {
    color: var(--color-neutral-600);
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

.talent-specializations h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-neutral-900);
}

.specialization-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tag {
    background: var(--color-blue-100);
    color: var(--color-blue-700);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.talent-stats {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid var(--color-neutral-200);
    padding-top: 1.5rem;
}

.talent-stats .stat {
    text-align: center;
}

.talent-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-blue-600);
    display: block;
}

.talent-stats .stat-label {
    font-size: 0.875rem;
    color: var(--color-neutral-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Talent Pool Overview */
.talent-pool-overview {
    padding: 6rem 0;
    background: white;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-category {
    background: var(--color-blue-50);
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
}

.expertise-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-neutral-900);
    margin-bottom: 2rem;
}

.expertise-list {
    list-style: none;
    padding: 0;
}

.expertise-list li {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: white;
    border-radius: 0.5rem;
    color: var(--color-neutral-700);
    transition: all 0.2s ease;
}

.expertise-list li:hover {
    background: var(--color-blue-100);
    color: var(--color-blue-700);
}

/* Executive Team Styles */
.executive-team {
    padding: 6rem 0;
    background: var(--color-neutral-50);
}

.team-grid {
    display: grid;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.executive-card {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    transition: all 0.3s ease;
}

.executive-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.executive-photo {
    width: 100%;
    height: 300px;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--color-neutral-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.executive-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.executive-photo.placeholder {
    background: linear-gradient(135deg, var(--color-blue-600), var(--color-blue-700));
}

.placeholder-initials {
    font-size: 4rem;
    font-weight: 700;
    color: white;
}

.executive-name {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-neutral-900);
    margin-bottom: 0.5rem;
}

.executive-title {
    color: var(--color-blue-600);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.executive-bio {
    margin-bottom: 2rem;
}

.executive-bio p {
    color: var(--color-neutral-700);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.executive-expertise h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-neutral-900);
    margin-bottom: 1rem;
}

.executive-expertise ul {
    list-style: none;
    padding: 0;
}

.executive-expertise li {
    color: var(--color-neutral-700);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.executive-expertise li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-blue-600);
    font-weight: bold;
}

/* Company Values */
.company-values {
    padding: 6rem 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--color-blue-50);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--color-blue-600), var(--color-blue-700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

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

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-neutral-900);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--color-neutral-600);
    line-height: 1.6;
}

/* CTA Actions */
.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .talent-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .talent-card {
        padding: 2rem;
    }

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

    .executive-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .executive-photo {
        height: 250px;
        width: 250px;
        margin: 0 auto;
    }

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

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

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