/* 
 * EmergingTech Consulting Ltd - Corporate Website Styles
 * Design Aesthetic: Premium, Modern, Dark Mode/Tech-focused
 */

:root {
    /* Color Palette */
    --color-primary: #0B1F33;
    /* Deep Navy */
    --color-secondary: #111827;
    /* Midnight */
    --color-accent: #2563EB;
    /* Electric Blue */
    --color-accent-hover: #1d4ed8;
    --color-text-light: #F9FAFB;
    --color-text-muted: #9CA3AF;
    --color-text-dark: #1F2937;
    --color-bg-light: #F5F7FA;
    --color-bg-white: #FFFFFF;
    --color-border: #374151;

    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-medium: 0.3s ease-in-out;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: --font-body, system-ui, -apple-system, sans-serif;
    background-color: var(--color-primary);
    color: var(--color-text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-medium);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Utilities */
.text-center {
    text-align: center;
}

.highlight-text {
    color: var(--color-accent);
    background: linear-gradient(90deg, #60A5FA, #2563EB);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn--primary {
    background-color: var(--color-accent);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2), 0 2px 4px -1px rgba(37, 99, 235, 0.1);
}

.btn--primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

.btn--secondary {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text-light);
    backdrop-filter: blur(4px);
}

.btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(11, 31, 51, 0.85);
    /* specific hex with opacity */
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-medium);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: white;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__link {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.nav__link:hover {
    color: white;
}

.nav__cta {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

.mobile-nav-toggle {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    /* offset for fixed header */
    overflow: hidden;
}

.hero__bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(37, 99, 235, 0.15) 0%, rgba(11, 31, 51, 0) 60%),
        linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
    z-index: -1;
}

/* Abstract tech graphic overlay using CSS shapes/gradients */
.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: conic-gradient(from 180deg at 50% 50%, rgba(37, 99, 235, 0.1), transparent);
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
}

.hero__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    z-index: 10;
}

.hero__text {
    max-width: 700px;
}

.hero__headline {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero__subheadline {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    font-weight: 400;
}

.hero__cta-group {
    display: flex;
    gap: 1rem;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.arrow-down {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, white, transparent);
    animation: scrollPulsate 2s infinite;
}

@keyframes scrollPulsate {
    0% {
        transform: scaleY(1);
        opacity: 1;
        transform-origin: top;
    }

    50% {
        transform: scaleY(0.5);
        opacity: 0.5;
        transform-origin: top;
    }

    100% {
        transform: scaleY(1);
        opacity: 1;
        transform-origin: top;
    }
}

/* Client Logo Banner */
.logos {
    background-color: var(--color-bg-light);
    padding: var(--spacing-ld) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
    padding: 6rem 0;
}

.logos__headline {
    text-align: center;
    color: var(--color-text-dark);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.7;
    margin-bottom: 2rem;
}

.logos__scroller {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logos__track {
    display: flex;
    gap: 4rem;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
    align-items: center;
}

.logo-item {
    opacity: 0.6;
    filter: grayscale(100%);
    transition: var(--transition-medium);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* Prevent logos from shrinking */
    margin: 0 2rem;
}

.logo-item img {
    height: 100px;
    /* 2x size - adjust this value to change logo size */
    width: auto;
    max-width: none;
    /* Allow image to take full width of height */
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.logo-item:hover img {
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Problem Section */
.problem {
    background-color: white;
    color: var(--color-text-dark);
    padding: var(--spacing-xl) 0;
}

.problem__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.problem__header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.problem__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.problem__description .lead {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.problem__description p {
    color: #4B5563;
    font-size: 1.125rem;
}

.problem__list-wrapper {
    background-color: var(--color-bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.problem__subtitle {
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

.problem__list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.problem__list li:last-child {
    margin-bottom: 0;
}

.icon-check {
    color: #EF4444;
    /* Red for cross */
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}

/* Services */
.services {
    background-color: var(--color-bg-light);
    padding: var(--spacing-xl) 0;
    color: var(--color-text-dark);
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: var(--transition-medium);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--color-bg-light);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.service-card p {
    color: #4B5563;
    margin-bottom: 1.5rem;
}

.service-card__list {
    border-top: 1px solid var(--color-bg-light);
    padding-top: 1.5rem;
}

.service-card__list li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #4B5563;
    padding-left: 1.2rem;
    position: relative;
}

.service-card__list li::before {
    content: '•';
    color: var(--color-accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Experience */
.experience {
    background-color: var(--color-secondary);
    padding: var(--spacing-xl) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.experience__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.experience-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-medium);
}

.experience-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(37, 99, 235, 0.3);
}

.experience-card__icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.experience-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: white;
}

.experience-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Differentiator (Why EmergingTech) */
.differentiator {
    background-color: white;
    color: var(--color-text-dark);
    padding: var(--spacing-xl) 0;
}

.differentiator__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.diff-item {
    text-align: center;
    padding: 1rem;
}

.diff-item__number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.diff-item__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.diff-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.diff-item p {
    font-size: 0.9rem;
    color: #4B5563;
}

/* Methodology / How We Work */
.methodology {
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    padding: var(--spacing-xl) 0;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 4rem auto 0;
    padding: 2rem 0;
}

.timeline__line {
    position: absolute;
    top: 55px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #E5E7EB;
    z-index: 0;
}

/* For responsive timeline, we might need a vertical one on mobile, but horizontal for desktop */
.timeline {
    display: flex;
    justify-content: space-between;
}

.timeline__step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.timeline__marker {
    width: 50px;
    height: 50px;
    background-color: white;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 0 4px var(--color-bg-light);
}

.timeline__content h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.timeline__content p {
    font-size: 0.85rem;
    color: #6B7280;
    padding: 0 0.5rem;
}

/* CTA Section */
.cta {
    background-color: var(--color-primary);
    padding: var(--spacing-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* subtle pattern overlay for CTA */
.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(#2563EB 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.05;
}

.cta__container {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.cta__headline {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta__subheadline {
    font-size: 1.5rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
}

/* Footer */
.footer {
    background-color: #071524;
    padding: 5rem 0 2rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer__brand .logo {
    color: white;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer__brand p {
    max-width: 300px;
}

.footer__links {
    display: flex;
    gap: 2rem;
}

.footer__links a:hover {
    color: var(--color-accent);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero__headline {
        font-size: 2.75rem;
    }

    .problem__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .differentiator__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header__container {
        padding: 0 1rem;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--color-secondary);
        z-index: 1001;
        transition: 0.3s ease-in-out;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        padding: 6rem 2rem;
    }

    .nav.active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        align-items: flex-start;
    }

    .mobile-nav-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1002;
    }

    .mobile-nav-toggle .bar {
        display: block;
        width: 25px;
        height: 2px;
        background-color: white;
        margin: 5px 0;
        transition: 0.3s;
    }

    /* Animate hamburger to X */
    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 5px);
    }

    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -5px);
    }

    .hero {
        padding-top: 120px;
        text-align: center;
    }

    .hero__content {
        flex-direction: column;
    }

    .hero__cta-group {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .timeline {
        flex-direction: column;
        padding-left: 20px;
    }

    .timeline__line {
        width: 2px;
        height: 100%;
        top: 0;
        left: 45px;
        /* Adjust based on markers */
    }

    .timeline__step {
        flex-direction: row;
        text-align: left;
        margin-bottom: 2rem;
        gap: 1.5rem;
    }

    .timeline__marker {
        min-width: 50px;
        /* prevent shrinking */
    }

    .cta__headline {
        font-size: 2rem;
    }
}

/* Hero Image Styles */
.hero__image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
}

.hero__image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero__image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

@media (max-width: 992px) {
    .hero__content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 3rem;
    }

    .hero__image {
        width: 100%;
        justify-content: center;
        margin-bottom: 2rem;
    }

    .hero__image img {
        transform: none;
        max-width: 80%;
    }

    .hero__text {
        max-width: 100%;
        margin: 0 auto;
    }
}

/* About Section */
.about {
    background-color: white;
    padding: var(--spacing-xl) 0;
    color: var(--color-text-dark);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.about__image-col {
    position: relative;
}

.about__portrait {
    width: 100%;
    aspect-ratio: 1 / 1.1;
    background-color: #E5E7EB;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 2rem;
    position: relative;
}

.portrait-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F3F4F6;
    color: #9CA3AF;
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px dashed #D1D5DB;
}

.about__exp-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    font-weight: 600;
}

.about__logos {
    display: flex;
    gap: 1.5rem;
    filter: grayscale(100%);
    opacity: 0.6;
}

.exp-logo {
    font-size: 0.8rem;
    font-weight: 700;
    color: #4B5563;
    border: 1px solid #E5E7EB;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
}

.about__headline {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-weight: 600;
}

.about__name {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
    line-height: 1.1;
}

.about__title {
    font-size: 1.125rem;
    color: #6B7280;
    /* Slate 500 */
    margin-bottom: 2rem;
    font-weight: 400;
}

.about__bio p {
    margin-bottom: 1.5rem;
    color: #374151;
    /* Gray 700 */
    font-size: 1.05rem;
    line-height: 1.7;
}

.about__expertise {
    margin-top: 3rem;
    background-color: #F8FAFC;
    /* Very light slate bg */
    padding: 2rem;
    border-radius: 8px;
    border-left: 3px solid var(--color-accent);
}

.about__expertise h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.expertise__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 2rem;
    list-style: none;
}

.expertise__list li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.9rem;
    color: #4B5563;
}

.expertise__list li::before {
    content: '•';
    color: var(--color-accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.about__signature {
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #E5E7EB;
    padding-top: 2rem;
}

.about__signature p {
    font-family: var(--font-heading);
    /* Or a script font if user wants signature style, sticking to clean style per request */
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    font-style: italic;
}

.about__linkedin {
    color: #0A66C2;
    /* LinkedIn Blue */
    opacity: 0.8;
    transition: opacity 0.2s;
}

.about__linkedin:hover {
    opacity: 1;
}

.hero__cta-group {
    justify-content: center;
}
}

/* About Section */
.about {
    background-color: white;
    padding: var(--spacing-xl) 0;
    color: var(--color-text-dark);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.about__image-col {
    position: relative;
}

.about__portrait {
    width: 100%;
    aspect-ratio: 1 / 1.1;
    background-color: #E5E7EB;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 2rem;
    position: relative;
}

.portrait-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F3F4F6;
    color: #9CA3AF;
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px dashed #D1D5DB;
}

.portrait-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.exp-logo-img {
    height: 36px;
    /* Similar visual weight to text */
    width: auto;
    object-fit: contain;
    border: 1px solid #E5E7EB;
    padding: 4px 8px;
    border-radius: 4px;
    background: white;
}

.about__exp-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    font-weight: 600;
}

.exp-logo {
    font-size: 0.8rem;
    font-weight: 700;
    color: #4B5563;
    border: 1px solid #E5E7EB;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
}

.about__headline {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-weight: 600;
}

.about__name {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
    line-height: 1.1;
}

.about__title {
    font-size: 1.125rem;
    color: #6B7280;
    /* Slate 500 */
    margin-bottom: 2rem;
    font-weight: 400;
}

.about__bio p {
    margin-bottom: 1.5rem;
    color: #374151;
    /* Gray 700 */
    font-size: 1.05rem;
    line-height: 1.7;
}

.about__expertise {
    margin-top: 3rem;
    background-color: #F8FAFC;
    /* Very light slate bg */
    padding: 2rem;
    border-radius: 8px;
    border-left: 3px solid var(--color-accent);
}

.about__expertise h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.expertise__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 2rem;
    list-style: none;
}

.expertise__list li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.9rem;
    color: #4B5563;
}

.expertise__list li::before {
    content: '•';
    color: var(--color-accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.about__signature {
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #E5E7EB;
    padding-top: 2rem;
}

.about__signature p {
    font-family: var(--font-heading);
    /* Or a script font if user wants signature style, sticking to clean style per request */
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    font-style: italic;
}

.about__linkedin {
    color: #0A66C2;
    /* LinkedIn Blue */
    opacity: 0.8;
    transition: opacity 0.2s;
}

.about__linkedin:hover {
    opacity: 1;
}

@media (max-width: 900px) {
    .about__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about__image-col {
        max-width: 400px;
        margin: 0 auto;
    }

    .expertise__list {
        grid-template-columns: 1fr;
    }
}

/* About Page Intro */
.about-intro {
    background-color: var(--color-bg-dark);
    color: white;
    padding: 8rem 0 6rem;
    /* Adjusted for fixed header */
}

.about-intro__container {
    max-width: 900px;
    margin: 0 auto;
}

.about-intro__headline {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 3rem;
}

.about-intro__text p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.about-intro__text .highlight-paragraph {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 3rem 0;
    border-left: 4px solid var(--color-accent);
    padding-left: 1.5rem;
}

/* About Page Logos */
.about__logos--large {
    align-items: center;
    gap: 2rem;
}

.about__logos--large .exp-logo-img {
    height: 60px;
    /* Increased from 36px */
    padding: 8px 12px;
}

.exp-logo-link {
    display: inline-block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 4px;
}

.exp-logo-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .about-intro__headline {
        font-size: 2.25rem;
    }

    .about-intro__text p {
        font-size: 1.1rem;
    }
}