/* ==========================================================================
   BergStars — Swiss Institutional Banking Aesthetic
   ========================================================================== */

/* ---------- CSS Variables ---------- */
:root {
    --color-bg:         #ffffff;
    --color-bg-alt:     #f5f6f7;
    --color-bg-card:    #ffffff;
    --color-bg-card-hover: #f9fafb;
    --color-surface:    #f0f1f2;
    --color-border:     #e2e4e7;
    --color-border-light: #eceef0;
    --color-accent:     #1B365D;
    --color-accent-light: #2A5A8C;
    --color-accent-dark:  #142B4A;
    --color-accent-glow:  rgba(27, 54, 93, 0.12);
    --color-gold:       #B8960C;
    --color-charcoal:   #2C3338;
    --color-text:       #69727d;
    --color-text-muted: #69727d;
    --color-text-dim:   #999fa5;
    --color-white:      #ffffff;
    --color-heading:    #000000;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --container-max: 1200px;
    --container-padding: 2rem;

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-accent-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

::selection {
    background: var(--color-accent);
    color: var(--color-bg);
}

/* ---------- Container ---------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-heading);
}

.gold {
    color: var(--color-accent);
}

.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn-gold {
    background: var(--color-charcoal);
    color: #ffffff;
}

.btn-gold:hover {
    background: #3d4247;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(44, 51, 56, 0.18);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--color-charcoal);
    border: 1px solid var(--color-charcoal);
}

.btn-outline:hover {
    background: var(--color-charcoal);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(44, 51, 56, 0.12);
    transform: translateY(-1px);
}

.btn-lg {
    padding: 1.1rem 2.8rem;
    font-size: 0.95rem;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all var(--transition-base);
    background: rgba(44, 51, 56, 0.95);
    backdrop-filter: blur(10px);
}

.site-header.scrolled {
    padding: 0.8rem 0;
    background: rgba(44, 51, 56, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.02em;
}

.logo-text--footer {
    font-size: 1.8rem;
}

.logo-img {
    height: 32px;
    width: auto;
}

.logo-img--footer {
    height: 36px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links li a {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color var(--transition-fast);
    text-decoration: none;
}

.nav-links li a:hover {
    color: var(--color-accent);
}

.header-cta {
    padding: 0.65rem 1.6rem;
    font-size: 0.8rem;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition-base);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(27, 54, 93, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(27, 54, 93, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, #2C3338 0%, #232729 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="0.5" width="100" height="100"/></svg>');
    background-size: 100px 100px;
}

.hero-particles {
    display: none;
}

.hero-content {
    position: relative;
    max-width: 800px;
    padding-top: 6rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.2rem;
    background: rgba(27, 54, 93, 0.08);
    border: 1px solid rgba(27, 54, 93, 0.2);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent-light);
    margin-bottom: 2rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--color-accent-light);
    border-radius: 50%;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 1; }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-rotate {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin: 1.2rem 0 0.5rem;
    letter-spacing: 0.01em;
}

.rotate-static {
    color: rgba(255, 255, 255, 0.4);
    margin-right: 0.3em;
}

.rotate-dynamic {
    color: var(--color-accent-light);
    transition: opacity 0.4s ease;
    display: inline-block;
}

.rotate-dynamic.fade-out {
    opacity: 0;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 650px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-dim);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color var(--transition-fast);
    animation: float 3s ease-in-out infinite;
}

.scroll-indicator:hover {
    color: var(--color-accent);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ==========================================================================
   Sections (General)
   ========================================================================== */
.section {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--color-accent);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.2rem;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.section-about {
    background: var(--color-bg-alt);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    color: var(--color-text-muted);
    margin-bottom: 1.2rem;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-card {
    display: flex;
    gap: 1.2rem;
    padding: 1.2rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.highlight-card:hover {
    border-color: var(--color-accent);
    background: var(--color-bg-card-hover);
    transform: translateX(2px);
}

.highlight-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.highlight-card h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.highlight-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    padding: 2.5rem 2rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-accent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover {
    border-color: rgba(27, 54, 93, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card--featured {
    border-color: rgba(27, 54, 93, 0.3);
    background: linear-gradient(180deg, rgba(27, 54, 93, 0.04) 0%, var(--color-bg-card) 100%);
}

.service-card--featured::before {
    opacity: 1;
}

.service-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(27, 54, 93, 0.1);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.service-icon {
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card > p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.service-features li {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    padding-left: 1.2rem;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    background: var(--color-accent);
    border-radius: 50%;
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.section-stats {
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    position: relative;
}

.stat-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--color-border);
}

.stat-card:last-child::after {
    display: none;
}

.stat-value {
    font-family: var(--font-body);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.4rem;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-bar {
    width: 30px;
    height: 1px;
    background: var(--color-accent);
    margin: 0.8rem auto 0;
    opacity: 0.3;
}

/* ==========================================================================
   Approach Section
   ========================================================================== */
.approach-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.approach-timeline::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, var(--color-accent), var(--color-border));
}

.approach-step {
    display: flex;
    gap: 2.5rem;
    padding-bottom: 3rem;
    position: relative;
}

.approach-step:last-child {
    padding-bottom: 0;
}

.step-marker {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    border: 1px solid var(--color-accent);
    position: relative;
    z-index: 1;
}

.step-marker span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-accent);
}

.step-content h3 {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    padding-top: 0.3rem;
}

.step-content p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================================================
   For Founders Section
   ========================================================================== */
.section-founders {
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
}

.founders-content .lead {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 3rem;
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.founders-item {
    padding: 2rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all var(--transition-base);
    position: relative;
}

.founders-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--color-accent);
}

.founders-item:hover {
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.founders-item h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-heading);
}

.founders-item ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.founders-item ul li {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.6;
}

.founders-item ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    background: var(--color-accent);
    border-radius: 50%;
}

.founders-item ul li a {
    color: var(--color-accent);
    font-weight: 500;
}

.founders-item ul li a:hover {
    color: var(--color-accent-light);
}

@media (max-width: 768px) {
    .founders-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.section-cta {
    padding: 6rem 0;
}

.cta-card {
    text-align: center;
    padding: 5rem 3rem;
    background: linear-gradient(135deg, rgba(27, 54, 93, 0.06) 0%, rgba(27, 54, 93, 0.02) 100%);
    border: 1px solid rgba(27, 54, 93, 0.15);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--color-accent);
}

.cta-card h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1.2rem;
}

.cta-card p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    padding: 5rem 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--color-border);
}

.footer-brand .logo-img--footer {
    display: block;
}

.footer-tagline {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 280px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-white);
    margin-bottom: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a,
.footer-col ul li span {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: var(--color-accent);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.footer-contact li svg {
    flex-shrink: 0;
    margin-top: 0.2rem;
    color: var(--color-accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.footer-bottom p {
    color: var(--color-text-dim);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--color-text-dim);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--color-accent);
}

/* ==========================================================================
   Scroll Reveal Animation
   ========================================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(2) { animation-delay: 0.15s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.45s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Page Template (Generic)
   ========================================================================== */
.page-header {
    padding: 10rem 0 4rem;
    text-align: center;
    background: var(--color-bg-alt);
    border-bottom: 1px solid var(--color-border);
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.page-content {
    padding: 4rem 0;
}

.page-content .container {
    max-width: 800px;
}

.page-content p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.page-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
}

.page-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 0.8rem;
}

.page-content ul, .page-content ol {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.page-content li {
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   404 Page
   ========================================================================== */
.page-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-404 h1 {
    font-size: 8rem;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 1rem;
}

.page-404 p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card:nth-child(2)::after {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1.25rem;
    }

    .section {
        padding: 5rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    /* Header mobile */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--color-bg-alt);
        border-left: 1px solid var(--color-border);
        padding: 6rem 2rem 2rem;
        transition: right var(--transition-slow);
        z-index: 999;
    }

    .main-nav.open {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
    }

    .nav-links li a {
        display: block;
        padding: 1rem 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--color-border);
    }

    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    /* Hero mobile */
    .hero-content {
        padding-top: 6rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-scroll {
        display: none;
    }

    /* Stats mobile */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .stat-card {
        padding: 2rem 1rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .stat-card::after {
        display: none;
    }

    /* Approach mobile */
    .approach-timeline::before {
        left: 24px;
    }

    .step-marker {
        width: 48px;
        height: 48px;
    }

    .approach-step {
        gap: 1.5rem;
    }

    /* CTA mobile */
    .cta-card {
        padding: 3rem 1.5rem;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
    }

    /* Footer mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }
}

/* ==========================================================================
   WordPress-specific overrides
   ========================================================================== */
.wp-block-image {
    margin-bottom: 1.5rem;
}

.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.alignwide {
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
}

/* Mobile overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   Hero Trust Badges
   ========================================================================== */
.hero-trust {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.hero-trust-item svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

/* ==========================================================================
   Mission / Vision Section
   ========================================================================== */
.section-mission {
    padding: 6rem 0;
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-card {
    padding: 2.5rem;
    border: 1px solid var(--color-border);
    background: var(--color-bg-card);
    position: relative;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--color-accent);
}

.mission-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.mission-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-text);
}
/* ==========================================================================
   Service Stats (inside service cards)
   ========================================================================== */
.service-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--color-border);
}

.service-stat strong {
    display: block;
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.2rem;
}

.service-stat span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   Stats Secondary Row
   ========================================================================== */
.stats-secondary {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--color-border);
}

.stat-inline {
    text-align: center;
}

.stat-inline-value {
    display: block;
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 0.3rem;
    letter-spacing: -0.01em;
}

.stat-inline-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   Portfolio Section
   ========================================================================== */
.section-portfolio {
    background: var(--color-bg-alt);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.portfolio-card {
    padding: 2rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.portfolio-card:hover {
    border-color: rgba(27, 54, 93, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.portfolio-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    background: rgba(27, 54, 93, 0.08);
    padding: 0.3rem 0.8rem;
    margin-bottom: 1rem;
}

.portfolio-card h3 {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.portfolio-card > p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.portfolio-results {
    display: flex;
    gap: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--color-border);
}

.portfolio-result {
    text-align: center;
}

.portfolio-result strong {
    display: block;
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.2rem;
}

.portfolio-result span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* ==========================================================================
   Team Section
   ========================================================================== */
.section-team {
    background: var(--color-bg-alt);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.team-card:hover {
    border-color: rgba(27, 54, 93, 0.3);
    transform: translateY(-2px);
}

.team-avatar {
    margin-bottom: 1.5rem;
}

.team-avatar-placeholder {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(27, 54, 93, 0.12), rgba(27, 54, 93, 0.04));
    border: 1px solid rgba(27, 54, 93, 0.2);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-accent);
}

.team-card h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.team-role {
    display: block;
    font-size: 0.8rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.team-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.section-testimonials {
    background: var(--color-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    padding: 2rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    border-color: rgba(27, 54, 93, 0.3);
}

.testimonial-stars {
    display: flex;
    gap: 0.2rem;
    color: var(--color-gold);
    margin-bottom: 1.2rem;
}

.testimonial-card blockquote {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: var(--color-heading);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   Insights Section
   ========================================================================== */
.section-insights {
    background: var(--color-bg-alt);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.insight-card {
    padding: 2rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.insight-card:hover {
    border-color: rgba(27, 54, 93, 0.3);
    transform: translateY(-2px);
}

.insight-date {
    font-size: 0.75rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
}

.insight-card h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.insight-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.insight-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.insight-link:hover {
    color: var(--color-accent-light);
}

/* ==========================================================================
   CTA Address
   ========================================================================== */
.cta-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    color: var(--color-text-dim);
    font-size: 0.85rem;
}

.cta-address svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

/* ==========================================================================
   Text Utilities
   ========================================================================== */
.text-center {
    text-align: center;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info-card {
    padding: 2rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    margin-bottom: 1.5rem;
}

.contact-info-card h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.contact-info-card p,
.contact-info-card a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--color-accent);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    transition: all var(--transition-fast);
}

.social-link:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

/* ==========================================================================
   Responsive additions for new sections
   ========================================================================== */
@media (max-width: 1024px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .insights-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .stats-secondary {
        flex-wrap: wrap;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-trust {
        flex-direction: column;
        gap: 0.8rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-results {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .service-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ==========================================================================
   Page Header (enhanced for subpages)
   ========================================================================== */
.page-header-desc {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 1rem auto 0;
    line-height: 1.8;
}

/* ==========================================================================
   Values Grid
   ========================================================================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    padding: 2rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.value-card:hover {
    border-color: rgba(27, 54, 93, 0.3);
    transform: translateY(-2px);
}

.value-card h3 {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.value-card .service-number {
    margin-bottom: 1rem;
}

/* ==========================================================================
   Careers Openings
   ========================================================================== */
.careers-openings {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.career-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(27, 54, 93, 0.03);
    border: 1px solid var(--color-border);
}

.career-title {
    font-weight: 600;
    color: var(--color-heading);
    font-size: 0.9rem;
}

.career-type {
    font-size: 0.75rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   Service Detail Pages
   ========================================================================== */
.service-detail-header {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.service-detail-header .service-number {
    flex-shrink: 0;
    line-height: 1;
}

.service-detail-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 0.8rem;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.service-detail-content p {
    color: var(--color-text-muted);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.service-detail-content h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin: 2rem 0 1rem;
}

.service-detail-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-detail-stats .stat-card {
    padding: 2rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    text-align: center;
}

/* ==========================================================================
   Responsive for new sections
   ========================================================================== */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-detail-stats .stat-card {
        flex: 1;
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-header {
        flex-direction: column;
        gap: 1rem;
    }

    .careers-openings {
        flex-direction: column;
    }
}

/* ==========================================================================
   Case Study Pages
   ========================================================================== */
.case-study {
    max-width: 1000px;
    margin: 0 auto;
}

.case-study-header {
    margin-bottom: 2.5rem;
}

.case-study-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-top: 0.8rem;
}

.case-study-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.case-study-content h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 2rem 0 0.8rem;
    color: var(--color-accent);
}

.case-study-content h3:first-child {
    margin-top: 0;
}

.case-study-content p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.case-study-results {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 120px;
}

.result-card {
    padding: 1.5rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    text-align: center;
}

.result-card strong {
    display: block;
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.3rem;
}

.result-card span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

@media (max-width: 768px) {
    .case-study-grid {
        grid-template-columns: 1fr;
    }

    .case-study-results {
        flex-direction: row;
        flex-wrap: wrap;
        position: static;
    }

    .result-card {
        flex: 1;
        min-width: 120px;
    }
}

/* ==========================================================================
   Office Gallery
   ========================================================================== */
.office-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.office-img {
    height: 300px;
    background-size: cover;
    background-position: center;
    background-color: var(--color-bg-alt);
    position: relative;
}

.office-img::after {
    content: 'Office Image';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-dim);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--color-bg-alt);
}

.office-img[style*="url"] {
    background-color: transparent;
}

.office-img[style*="url"]::after {
    display: none;
}

@media (max-width: 768px) {
    .office-gallery {
        grid-template-columns: 1fr;
    }

    .office-img {
        height: 200px;
    }
}

/* ==========================================================================
   LIGHT THEME — Dark Section Overrides (Header, Hero, Footer)
   ========================================================================== */

/* --- Logo: clip-path crops subtitle from bottom of logo PNG --- */

/* --- Header: always dark, white text/logo --- */
.site-header {
    color: #ffffff;
}

.nav-links li a {
    color: rgba(255, 255, 255, 0.8) !important;
}

.nav-links li a:hover {
    color: var(--color-accent-light) !important;
}

.mobile-toggle span {
    background: #ffffff;
}

.header-cta {
    background: var(--color-accent);
    color: #ffffff;
    border: none;
}

.header-cta:hover {
    background: var(--color-accent-light);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(27, 54, 93, 0.2);
}

/* --- Hero: dark section --- */
.hero {
    background: #2C3338;
    color: #ffffff;
}

.hero-title {
    color: #ffffff;
}

.hero-title .gold {
    color: var(--color-accent-light);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.hero-badge {
    background: rgba(27, 54, 93, 0.15);
    border-color: rgba(42, 90, 140, 0.3);
    color: var(--color-accent-light);
}

.hero-trust {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.hero-trust-item {
    color: rgba(255, 255, 255, 0.6);
}

.hero-trust-item svg {
    color: var(--color-accent-light);
}

.hero .btn-gold {
    background: var(--color-accent);
    color: #ffffff;
}

.hero .btn-gold:hover {
    background: var(--color-accent-light);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(27, 54, 93, 0.25);
}

.hero .btn-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: none;
}

.scroll-indicator {
    color: rgba(255, 255, 255, 0.4);
}

.scroll-indicator:hover {
    color: var(--color-accent-light);
}

/* --- Content sections: light card styling --- */
.service-card,
.portfolio-card,
.highlight-card,
.testimonial-card,
.insight-card,
.mission-card,
.value-card,
.contact-info-card,
.result-card,
.career-item {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.portfolio-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.insight-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.service-card:hover,
.portfolio-card:hover,
.testimonial-card:hover,
.insight-card:hover {
    border-color: var(--color-accent);
}

/* Gold accent elements on light bg */
.section-label::after {
    background: var(--color-accent);
}

.service-number {
    color: rgba(27, 54, 93, 0.12);
}

.portfolio-tag {
    background: rgba(27, 54, 93, 0.06);
    color: var(--color-accent-dark);
}

/* --- CTA section on light bg --- */
.cta-card {
    background: linear-gradient(135deg, rgba(27, 54, 93, 0.03) 0%, rgba(27, 54, 93, 0.05) 100%);
    border-color: var(--color-border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
}

.cta-card::before {
    background: var(--color-accent);
}

/* --- Mission section --- */
.section-mission {
    border-color: var(--color-border);
}

.mission-card h3 {
    color: var(--color-charcoal);
}

/* --- Stats section --- */
.section-stats {
    border-color: var(--color-border);
}

.stats-secondary {
    border-top-color: var(--color-border);
}

/* --- Footer: dark section --- */
.site-footer {
    background: #2C3338;
    border-top: none;
    color: #c2cbd2;
}

.site-footer h4 {
    color: #ffffff;
}

.site-footer .footer-col ul li a,
.site-footer .footer-col ul li span {
    color: #c2cbd2;
}

.site-footer .footer-col ul li a:hover {
    color: var(--color-accent-light);
}

.site-footer .footer-tagline {
    color: #c2cbd2;
}

.site-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer .footer-bottom p {
    color: #999fa5;
}

.site-footer .footer-legal a {
    color: #999fa5;
}

.site-footer .footer-legal a:hover {
    color: var(--color-accent-light);
}

.footer-top {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.footer-contact li svg {
    color: var(--color-accent-light);
}

/* --- Mobile nav: light panel --- */
@media (max-width: 768px) {
    .main-nav {
        background: #ffffff;
        border-left: 1px solid var(--color-border);
    }

    .main-nav .nav-links li a {
        color: var(--color-charcoal) !important;
        border-bottom-color: var(--color-border);
    }

    .main-nav .nav-links li a:hover {
        color: var(--color-accent) !important;
    }

    .mobile-toggle.active span {
        background: var(--color-charcoal);
    }
}

/* --- Step marker on light bg --- */
.step-marker {
    background: #ffffff;
}

.approach-timeline::before {
    background: linear-gradient(180deg, var(--color-accent), var(--color-border));
}

/* --- Selection --- */
::selection {
    background: var(--color-accent);
    color: #ffffff;
}

/* --- Service card featured on light bg --- */
.service-card--featured {
    border-color: var(--color-accent);
    background: linear-gradient(180deg, rgba(27, 54, 93, 0.03) 0%, #ffffff 100%);
}

/* --- Link color in content --- */
a {
    color: var(--color-accent-dark);
}

a:hover {
    color: var(--color-accent);
}

/* --- Form inputs on light bg --- */
.contact-form input,
.contact-form textarea,
.contact-form select {
    background: #ffffff;
    border-color: var(--color-border);
    color: var(--color-charcoal);
}

/* --- Social links on light bg --- */
.social-link {
    border-color: var(--color-border);
    color: var(--color-text-muted);
}

.social-link:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}
