/* Font Face Definitions */
@font-face {
    font-family: 'Big Shoulders';
    src: url('../assets/fonts/Big_Shoulders/BigShoulders-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../assets/fonts/Poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../assets/fonts/Poppins/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../assets/fonts/Poppins/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

/* CSS Variables */
:root {
    /* Colors */
    --color-primary: #D3FE39;
    /* Neon Green/Yellow from SVG */
    --color-dark: #181818;
    /* Dark Grey from SVG */
    --color-black: #070803;
    /* Deeper black for backgrounds */
    --color-white: #FFFFFF;
    --color-off-white: #F9F6EF;

    /* Fonts */
    --font-heading: 'Big Shoulders', sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* Spacing System */
    --spacing-xs: 0.5rem;
    /* 8px */
    --spacing-sm: 1rem;
    /* 16px */
    --spacing-md: 2rem;
    /* 32px */
    --spacing-lg: 4rem;
    /* 64px */
    --spacing-xl: 8rem;
    /* 128px */

    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
}

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

html {
    overflow-x: hidden;
    width: 100%;
    background-color: #070803;
}

body {
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    /* Bold default for headings */
    text-transform: uppercase;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utility Classes */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

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

.btn-primary:hover {
    background-color: #c0e820;
    /* Slightly darker/different on hover */
}

/* Typography Utilities */
.text-highlight {
    color: var(--color-primary);
}

/* Header Styles */
.header {
    height: var(--header-height);
    background-color: var(--color-dark);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 32px;
    /* Matches SVG height */
}

.nav-list {
    display: flex;
    gap: var(--spacing-md);
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-white);
}

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

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 11;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section Styles */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-image: url('../assets/hero image.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    /* Align content to bottom as per design */
    padding-bottom: var(--spacing-xl);
    text-align: center;
}

.hero-breadcrumb {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-family: var(--font-body);
    font-weight: 400;
    z-index: 3;
    display: none;
    /* Hidden on desktop, shown on mobile */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(7, 8, 3, 0.3) 0%, rgba(7, 8, 3, 1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 16px;
    padding-right: 16px;
}

.hero .container.hero-content,
.hero .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    font-weight: 400;
    text-transform: inherit;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--color-off-white);
}

/* About Hero Section */
.about-hero {
    padding: 0 0 var(--spacing-xl);
    background-color: #070803;
}

.about-hero .container {
    max-width: 100%;
    padding: 0;
}

.about-hero-shell {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 16px;
    overflow: hidden;
    background: #070803;
    box-shadow: 0 20px 40px rgba(7, 8, 3, 0.5);
    width: 100%;
    position: relative;
}


.about-hero-panel {
    padding: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--spacing-sm);
    background: #070803;
    padding-left: calc((100vw - var(--container-width)) / 2 + var(--spacing-sm));
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.5px;
}

.about-hero-description {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    color: var(--color-off-white);
    line-height: 140%;
    max-width: 520px;
}

.about-hero-description strong {
    color: var(--color-white);
    font-weight: 600;
}

.about-hero-media {
    min-height: 420px;
    background: #070803;
    position: relative;
    overflow: hidden;
}

.about-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 8, 3, 0) 50%, #070803 100%),
        linear-gradient(270deg, rgba(7, 8, 3, 0) 50%, #070803 100%);
    pointer-events: none;
}

/* About What Sets Us Apart */
.about-diff {
    padding: 24px;
    background-color: #070803;
}

.about-diff .container {
    max-width: 100%;
    padding: 0;
}

.about-diff-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.5fr);
    gap: var(--spacing-lg);
    padding: 48px calc(max(0px, (100vw - var(--container-width)) / 2 + var(--spacing-sm) - 24px));
    border-radius: 16px;
    background:
        radial-gradient(circle at 35% 40%, rgba(187, 205, 160, 0.7) 0%, rgba(120, 140, 98, 0.45) 45%, rgba(28, 38, 26, 0.95) 70%),
        linear-gradient(110deg, rgba(20, 30, 24, 0.95) 0%, rgba(64, 80, 58, 0.9) 45%, rgba(20, 28, 18, 0.95) 100%);
    box-shadow: 0 18px 40px rgba(7, 8, 3, 0.5);
    width: 100%;
}

.about-diff-panel {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    justify-content: center;
}

.about-diff-title {
    font-size: 2.5rem;
    font-weight: 500;
    text-transform: none;
    color: var(--color-white);
}

.about-diff-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-off-white);
    max-width: 420px;
}

.about-diff-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-self: center;
}

.about-diff-card {
    background: var(--color-primary);
    color: var(--color-dark);
    border-radius: 12px;
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 10px 20px rgba(7, 8, 3, 0.18);
}

.about-diff-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: none;
}

.about-diff-card p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* About Mission */
.about-mission {
    padding: var(--spacing-lg) 0;
    background-color: #070803;
}

.about-mission-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-xl);
}

.about-mission-title {
    font-size: 2.5rem;
    color: var(--color-primary);
    text-transform: none;
    font-weight: 500;
    flex-shrink: 0;
}

.about-mission-description {
    max-width: 560px;
    color: var(--color-white);
    font-size: 1rem;
    line-height: 1.6;
}

/* About Journey */
.about-journey {
    padding: var(--spacing-lg) 0;
    background-color: #070803;
}

.about-journey .container {
    max-width: 100%;
    padding: 0;
}

.about-journey-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 24px;
    align-items: center;
    background: var(--color-primary);
    border-radius: 12px;
    padding: 8px calc((100vw - var(--container-width)) / 2 + var(--spacing-sm));
    width: 100%;
    height: 396px;
    box-shadow: 0 18px 40px rgba(7, 8, 3, 0.45);
}

.about-journey-content {
    color: #102012;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.about-journey-title {
    font-size: 2.5rem;
    font-weight: 500;
    text-transform: none;
    color: #102012;
}

.about-journey-content p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-journey-content strong {
    font-weight: 600;
}

.about-journey-media {
    border-radius: 12px;
    overflow: hidden;
    padding: 2px;
    background: transparent;
}

.about-journey-media img {
    width: 736.35888671875px;
    height: 380px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

/* Core Values Section */
.core-values {
    padding: var(--spacing-xl) 0;
    background-color: #070803;
    background-image: url('../assets/grid.png');
    background-size: 320px;
    background-repeat: repeat;
}

.core-values-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.core-values-title {
    font-size: 2.5rem;
    font-weight: 500;
    text-transform: none;
    color: var(--color-primary);
}

.core-values-intro {
    max-width: 680px;
    color: var(--color-white);
    font-size: 0.95rem;
    line-height: 1.6;
}

.core-values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-sm);
}

.core-values-card {
    background: linear-gradient(135deg, rgba(28, 38, 22, 0.95) 0%, rgba(21, 26, 16, 0.95) 100%);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 200px;
    box-shadow: 0 16px 30px rgba(7, 8, 3, 0.45);
}

.core-values-index {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
}

.core-values-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: none;
    color: var(--color-white);
}

.core-values-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.core-values-note {
    max-width: 860px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Industries Hero Section */
.industries-hero {
    padding: var(--spacing-lg) 0;
    background-color: #070803;
}

.industries-hero-shell {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: var(--container-width);
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    background: #070803;
    box-shadow: 0 20px 40px rgba(7, 8, 3, 0.5);
}

.industries-hero-panel {
    padding: 64px 64px 64px 0;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--spacing-sm);
    background: #070803;
}

.industries-hero-kicker {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.industries-hero-title {
    font-size: 4rem;
    text-transform: none;
    font-weight: 400;
    line-height: 1.05;
}

.industries-hero-title span {
    color: var(--color-primary);
}

.industries-hero-description {
    font-size: 1.125rem;
    color: var(--color-off-white);
    line-height: 1.6;
    max-width: 540px;
}

.industries-hero-media {
    min-height: 420px;
    background: #070803;
    position: relative;
    overflow: hidden;
}

.industries-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industries-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 8, 3, 0) 50%, #070803 100%),
        linear-gradient(270deg, rgba(7, 8, 3, 0) 50%, #070803 100%);
    pointer-events: none;
}

/* Logo Strip Styles */
.logo-strip {
    background-color: var(--color-black);
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: var(--spacing-md) 0;
}

.logo-track {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
}

.logo-item {
    flex: 1;
    display: flex;
    justify-content: center;
    border-right: 1px solid #333;
    padding: 0 var(--spacing-sm);
}

.logo-item:last-child {
    border-right: none;
}

.logo-item img {
    height: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

/* Client Item Styles */
.client-item {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: var(--spacing-sm);
}

.client-icon {
    font-size: 24px;
    color: var(--color-primary);
    opacity: 0.9;
}

.client-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.client-name {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--color-white);
    text-align: center;
    text-transform: uppercase;
}

.client-industry {
    font-size: 0.75rem;
    color: var(--color-off-white);
    opacity: 0.7;
    text-align: center;
}

/* What We Do Section Styles */
.what-we-do {
    background-color: var(--color-black);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.section-title {
    color: var(--color-primary);
    font-size: 3rem;
    /* "What We Do" looks big */
    margin-bottom: var(--spacing-md);
    text-transform: capitalize;
    font-weight: 400;
    /* Regular weight */
}

.section-description {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    color: var(--color-white);
    font-size: 1.125rem;
    line-height: 1.8;
}

.what-we-do-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    max-width: 800px;
    /* Reduced from 1000px to match text width */
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(7, 8, 3, 0.5);
}

.what-we-do-image img {
    width: 100%;
    height: auto;
    display: block;
}

.what-we-do-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, transparent 0%, var(--color-black) 100%);
    pointer-events: none;
}

/* Stats Section Styles */
.stats-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-black);
}

.stats-box {
    /* Refined gradient to match the screenshot's mossy green left side */
    background: linear-gradient(90deg, rgba(53, 74, 40, 0.8) 0%, rgba(26, 34, 20, 0.8) 40%, rgba(7, 8, 3, 0.8) 100%);
    backdrop-filter: blur(112px);
    position: relative;
    border-radius: 12px;
    padding: 56px 80px;
    /* 56px vertical, generous horizontal */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(7, 8, 3, 0.5);
    width: 100%;
    max-width: 100%;
    margin: 0;
}

/* Enhanced Glow */
.stats-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(211, 254, 57, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.stats-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-xl);
    position: relative;
    z-index: 1;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.stats-text {
    flex: 1;
    max-width: 450px;
    padding-right: var(--spacing-md);
}

.stats-text h2 {
    font-size: 3.5rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    text-transform: none;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -1px;
}

.stats-text p {
    color: var(--color-off-white);
    opacity: 0.8;
    font-size: 0.875rem;
    line-height: 1.5;
    max-width: 300px;
}

.stats-grid {
    flex: 0 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
    width: 100%;
    max-width: 550px;
}

.stat-card {
    padding: 24px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    width: 362px;
    height: 143px;
    box-sizing: border-box;
}

.stat-card h3 {
    font-family: var(--font-body);
    font-size: 56px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0;
    margin-bottom: 0;
    /* Numbers look like Poppins in screenshot? Or Big Shoulders? */
    /* Screenshot numbers look standard sans-serif, possibly Poppins */
}

.stat-card p {
    font-size: 0.75rem;
    line-height: 1.4;
    font-family: var(--font-body);
    font-weight: 500;
}

.card-white {
    background-color: var(--color-white);
    color: var(--color-dark);
}

.card-green {
    background-color: var(--color-primary);
    color: var(--color-dark);
}

/* Industries We Serve Section */
.industries-section {
    padding: var(--spacing-xl) var(--spacing-sm);
    background-color: var(--color-black);
    background-image: url('../assets/industries we server background.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.industries-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
}

.industries-header h2 {
    font-size: 3rem;
    color: var(--color-white);
    text-transform: none;
    font-weight: 400;
    line-height: 1;
    flex-shrink: 0;
}

.industries-header p {
    max-width: 450px;
    color: var(--color-off-white);
    font-size: 1rem;
    line-height: 1.6;
    text-align: right;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    max-width: var(--container-width);
    margin: 0 auto;
}

.industry-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(98, 130, 0, 0.20);
    backdrop-filter: blur(112px);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(211, 254, 57, 0.2);
}

.industry-title {
    display: flex;
    align-items: center;
    gap: 16px;
}

.industry-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(211, 254, 57, 0.2);
    border-radius: 6px;
    padding: 0;
}

.industry-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.industry-card h3 {
    font-size: 1.25rem;
    color: var(--color-white);
    font-weight: 500;
    text-transform: none;
    font-family: var(--font-body);
}

.industry-card p {
    color: var(--color-off-white);
    font-size: 0.875rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Built on Strong Values Section */
.values-section {
    padding: var(--spacing-lg) var(--spacing-sm);
    background-color: var(--color-black);
}

.values-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 8px;
    border-radius: 12px;
    background: #D3FE39;
    backdrop-filter: blur(22px);
    max-width: 1340px;
    margin: 0 auto;
}

.values-content {
    display: flex;
    gap: 24px;
    align-items: stretch;
    width: 100%;
}

.values-text {
    flex: 0 0 45%;
    background: #D3FE39;
    border-radius: 8px;
    padding: 24px;
}

.values-text h2 {
    font-size: 2.5rem;
    color: var(--color-dark);
    text-transform: none;
    font-weight: 400;
    margin-bottom: 16px;
}

.values-intro {
    color: var(--color-dark);
    font-size: 0.95rem;
    margin-bottom: 56px;
    line-height: 1.5;
}

.value-card {
    display: flex;
    padding: 24px;
    align-items: flex-start;
    gap: 16px;
    border-radius: 8px;
    background: #0A3033;
    margin-bottom: 12px;
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.value-icon img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.value-content {
    flex: 1;
}

.value-card h3 {
    font-size: 1rem;
    color: var(--color-white);
    text-transform: none;
    font-weight: 500;
    font-family: var(--font-body);
    margin-bottom: 8px;
}

.value-card p {
    color: var(--color-off-white);
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0.85;
}

.values-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 500px;
}

.values-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Our Approach Section */
.approach-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-black);
}

.approach-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-xl);
}

.approach-content h2 {
    font-size: 3rem;
    color: var(--color-primary);
    text-transform: none;
    font-weight: 400;
    flex-shrink: 0;
}

.approach-content p {
    max-width: 600px;
    color: var(--color-off-white);
    font-size: 1rem;
    line-height: 1.7;
}

/* Why Industry-Focused BPO Matters Section */
.why-industry-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-black);
}

.why-industry-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-xl);
    max-width: var(--container-width);
    margin: 0 auto;
}

.why-industry-title {
    font-size: 3rem;
    color: var(--color-primary);
    text-transform: none;
    font-weight: 400;
    flex-shrink: 0;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.why-industry-description {
    max-width: 600px;
    color: var(--color-white);
    font-size: 1rem;
    line-height: 1.7;
    font-family: var(--font-body);
}

/* Services Grid Section */
.services-grid-section {
    padding: 24px;
    background: #070803;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.service-card {
    background: #FFFFFF1A;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 362px;
    min-height: 123px;
    box-sizing: border-box;
}

.service-card p {
    color: var(--color-white);
    font-size: 0.875rem;
    line-height: 1.6;
    font-family: var(--font-body);
    margin: 0;
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
    background: rgba(211, 254, 57, 0.2);
    border-radius: 6px;
    padding: 4px;
}

.service-icon.material-icons {
    font-size: 24px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.service-title {
    font-size: 1.125rem;
    color: var(--color-primary);
    font-weight: 500;
    text-transform: none;
    font-family: var(--font-heading);
    margin: 0;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-list li {
    color: var(--color-white);
    font-size: 0.875rem;
    line-height: 1.6;
    font-family: var(--font-body);
    position: relative;
    padding-left: 20px;
}

.service-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 1.2rem;
    line-height: 1;
}

/* Why Choose Section */
.why-choose-section {
    padding: 56px 146px;
    background-color: #070803;
    background-image: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    max-width: 1415.62px;
    margin: clamp(24px, 4vw, 56px) auto;
    box-sizing: border-box;
}

.why-choose-section .container {
    padding: 0;
    max-width: 100%;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1148px;
    margin: 0 auto;
    align-items: flex-start;
}

.why-choose-content .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 0;
}

.why-choose-content .service-card {
    width: 100%;
    max-width: 362px;
    background: #CBFF12;
    gap: 16px;
    box-shadow: 0 12px 30px rgba(18, 28, 12, 0.15);
}

.why-choose-title {
    font-size: 3rem;
    color: #f6fff2;
    text-transform: none;
    font-weight: 400;
    font-family: var(--font-heading);
    line-height: 1.2;
    margin: 0;
}

.why-choose-description {
    color: #eef6e9;
    font-size: 1rem;
    line-height: 1.7;
    font-family: var(--font-body);
    margin: 0;
}

.why-choose-section .service-title {
    color: #1d2a17;
}

.why-choose-section .service-card p {
    color: #1d2a17;
}

.why-choose-section .service-icon {
    display: none;
}

/* How We Add Value Section */
.how-we-add-value-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-black);
    padding-left: 50px;
    padding-right: 50px;
}

.how-we-add-value-box {
    background-color: var(--color-primary);
    border-radius: 12px;
    padding: 8px;
    width: 1340px;
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
    backdrop-filter: blur(44px);
}

.how-we-add-value-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    padding: 16px;
}

.how-we-add-value-title {
    font-size: 2.5rem;
    color: var(--color-dark);
    text-transform: none;
    font-weight: 500;
    font-family: var(--font-heading);
    line-height: 1.2;
    margin: 0;
}

.how-we-add-value-description {
    color: var(--color-dark);
    font-size: 1rem;
    line-height: 1.7;
    font-family: var(--font-body);
    margin: 0;
}

.how-we-add-value-image {
    border-radius: 8px;
    overflow: hidden;
    width: 628.67px;
    height: 249px;
    flex-shrink: 0;
}

.how-we-add-value-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

/* Contact Us Section */
.contact-section {
    padding: 24px;
    background-color: var(--color-black);
    width: 100%;
    box-sizing: border-box;
}

.contact-box {
    background-image: url('../assets/green cloud desktop.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: var(--spacing-xl) calc(max(0px, (100vw - var(--container-width)) / 2 + var(--spacing-sm) - 24px));
    width: 100%;
    box-sizing: border-box;
}

.contact-content {
    display: flex;
    gap: var(--spacing-xl);
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
}

.contact-info {
    flex: 1;
    max-width: 450px;
}

.contact-info h2 {
    font-family: 'Big Shoulders', sans-serif;
    font-size: 48px;
    font-weight: 400;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.contact-info>p {
    color: var(--color-off-white);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    color: var(--color-white);
}

.contact-item img {
    width: 24px;
    height: 24px;
    opacity: 0.8;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item span {
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-form {
    flex: 1;
    max-width: 500px;
    margin: 0 auto;
}

.contact-alert {
    margin: 12px 0 16px;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.contact-alert.success {
    background: rgba(164, 214, 33, 0.15);
    border: 1px solid rgba(164, 214, 33, 0.5);
    color: #d9f2a3;
}

.contact-alert.error {
    background: rgba(255, 92, 92, 0.15);
    border: 1px solid rgba(255, 92, 92, 0.5);
    color: #ffd1d1;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.contact-form .form-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form .form-label {
    display: block;
    position: relative;
    width: 100%;
}

.contact-form .form-label>span {
    position: absolute;
    left: 20px;
    top: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    pointer-events: none;
    z-index: 1;
    font-family: var(--font-body);
    transition: opacity 0.3s ease;
}

.contact-form .form-label .asterisk {
    color: #FF0000;
    margin-left: 2px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    height: 64px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(30, 50, 25, 0.3);
    padding: 16px 20px;
    padding-top: 20px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(30, 50, 25, 0.4);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: transparent;
}

.contact-form input:focus~span,
.contact-form textarea:focus~span,
.contact-form input:not(:placeholder-shown)~span,
.contact-form textarea:not(:placeholder-shown)~span {
    opacity: 0;
}

.contact-form textarea {
    min-height: 120px;
    height: 120px;
    resize: vertical;
    padding-top: 20px;
}

.btn-submit {
    background-color: #070803;
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 8px;
}

.btn-submit:hover {
    background-color: #1a1a1a;
}

/* Footer */
.footer {
    background-color: #070803;
    padding: 0;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.footer-gradient {
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, rgba(53, 74, 40, 1), rgba(40, 60, 30, 0.8), rgba(30, 50, 20, 0.6));
    margin-bottom: 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg) var(--spacing-md);
    gap: var(--spacing-lg);
    width: 100%;
    box-sizing: border-box;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    width: 100%;
}

.footer-logo-text {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.footer-logo-img {
    width: auto;
    height: auto;
    max-width: 100%;
    display: block;
}

.footer .social-icons {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.footer .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    width: 32px;
    height: 32px;
}

.footer .social-icons a:hover {
    opacity: 0.8;
}

.footer .social-icons img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.footer-nav-link {
    color: var(--color-white);
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 400;
    text-decoration: none;
    text-transform: capitalize;
    transition: opacity 0.3s ease;
    text-align: center;
}

.footer-nav-link:hover {
    opacity: 0.8;
}

.footer-services {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.footer-service-link {
    color: var(--color-white);
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 400;
    text-decoration: none;
    text-transform: capitalize;
    transition: opacity 0.3s ease;
    text-align: center;
}

.footer-service-link:hover {
    opacity: 0.8;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    width: 100%;
    margin-top: 0;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    justify-content: center;
    color: var(--color-white);
    font-size: 0.875rem;
    line-height: 1.5;
    text-align: center;
    max-width: 100%;
    flex-wrap: wrap;
}

.footer-contact-item img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    filter: brightness(0) invert(1);
}

.footer-contact-item span {
    color: var(--color-white);
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    flex: 1;
    min-width: 0;
}

/* Desktop Footer Layout */
@media (min-width: 769px) {
    .footer-content {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        padding: var(--spacing-xl) clamp(16px, 2rem, var(--spacing-md));
        gap: clamp(16px, 2rem, var(--spacing-lg));
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-md);
        flex: 0 1 auto;
        min-width: 0;
        max-width: 100%;
    }

    .footer-logo-text {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .footer-logo-img {
        height: 40px;
        width: auto;
    }

    .footer .social-icons {
        justify-content: flex-start;
    }

    .footer-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        flex: 0 1 auto;
        min-width: 0;
        max-width: 100%;
    }

    .footer-nav-link {
        text-align: left;
        color: var(--color-white);
        font-size: 0.875rem;
        font-family: var(--font-body);
        font-weight: 400;
        text-decoration: none;
        transition: opacity 0.3s ease;
    }

    .footer-services {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        flex: 0 1 auto;
        min-width: 0;
        max-width: 100%;
    }

    .footer-service-link {
        text-align: left;
        color: var(--color-white);
        font-size: 0.875rem;
        font-family: var(--font-body);
        font-weight: 400;
        text-decoration: none;
        transition: opacity 0.3s ease;
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
        flex: 0 1 auto;
        min-width: 0;
        max-width: 100%;
    }

    .footer-contact-item {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        justify-content: flex-start;
        color: var(--color-white);
        font-size: 0.875rem;
        line-height: 1.5;
        text-align: left;
        flex-wrap: wrap;
        max-width: 100%;
        box-sizing: border-box;
    }

    .footer-contact-item span {
        text-align: left;
        word-wrap: break-word;
        overflow-wrap: break-word;
        min-width: 0;
        flex: 1 1 auto;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: var(--color-dark);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 10;
        padding: var(--spacing-md) 0;
        box-shadow: 0 4px 6px rgba(7, 8, 3, 0.3);
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0 var(--spacing-sm);
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link {
        display: block;
        padding: var(--spacing-sm) 0;
        font-size: 1rem;
    }

    /* Mobile Header */
    .header {
        height: 60px;
        padding: 0 20px;
    }

    .header-container {
        padding: 0;
    }

    .logo img {
        height: 28px;
    }

    .btn-primary {
        padding: 10px 16px;
        font-size: 0.875rem;
    }

    /* Mobile Hero Section - Matching Figma Design */
    .hero {
        height: 100vh;
        min-height: 100vh;
        align-items: flex-end;
        justify-content: flex-start;
        padding: 0;
        padding-bottom: 80px;
        text-align: left;
    }

    .hero-breadcrumb {
        display: block;
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.6);
        font-family: var(--font-body);
        font-weight: 400;
        z-index: 3;
    }

    .hero-overlay {
        background: rgba(7, 8, 3, 0.6);
        /* Darker overlay for better text readability */
    }

    .hero .container {
        padding: 0;
        width: 100%;
        max-width: 100%;
    }

    .hero-content {
        position: absolute;
        top: 357px;
        left: 50%;
        transform: translateX(-50%) rotate(0deg);
        width: 320px;
        height: 263px;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 0;
        padding-bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 40px;
        opacity: 1;
        margin: 0;
    }

    .hero-title {
        font-family: 'Big Shoulders', sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 32px;
        line-height: 110.00000000000001%;
        letter-spacing: 0%;
        text-align: center;
        margin: 0;
        color: var(--color-white);
        width: 100%;
    }

    .hero-title .text-highlight {
        font-family: 'Big Shoulders', sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 32px;
        line-height: 110.00000000000001%;
        letter-spacing: 0%;
        text-align: center;
        color: var(--color-primary);
    }

    .hero-description {
        font-family: 'Poppins', sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 14px;
        line-height: 140%;
        letter-spacing: 0%;
        text-align: center;
        color: var(--color-white);
        width: 100%;
        margin: 0;
    }

    /* Mobile About Hero Section */
    .about-hero {
        padding: var(--spacing-lg) 0;
    }

    .about-hero-shell {
        grid-template-columns: 1fr;
    }

    .about-hero-panel {
        padding: 32px 24px;
    }

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

    .about-hero-description {
        font-size: 0.95rem;
    }

    .about-hero-media {
        min-height: 300px;
    }

    .about-diff-shell {
        grid-template-columns: 1fr;
        padding: 28px 22px;
        gap: var(--spacing-md);
    }

    .about-diff-title {
        font-size: 2rem;
    }

    .about-diff-description {
        max-width: 100%;
        font-size: 0.9rem;
    }

    .about-diff-grid {
        grid-template-columns: 1fr;
    }

    .about-diff-card {
        padding: 18px 20px;
    }

    .about-mission-content {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .about-mission-title {
        font-size: 2rem;
    }

    .about-mission-description {
        max-width: 100%;
    }

    .about-journey-shell {
        grid-template-columns: 1fr;
        padding: 32px 24px;
    }

    .about-journey-title {
        font-size: 2rem;
    }

    .core-values {
        padding: var(--spacing-lg) 0;
    }

    .core-values-title {
        font-size: 2rem;
    }

    .core-values-grid {
        grid-template-columns: 1fr;
    }

    .core-values-card {
        padding: 24px;
    }

    /* Mobile Industries Hero */
    .industries-hero {
        padding: 0;
    }

    .industries-hero-shell {
        grid-template-columns: 1fr;
        border-radius: 0;
        position: relative;
        background: transparent;
        box-shadow: none;
    }

    .industries-hero-media {
        min-height: 70vh;
        position: relative;
        z-index: 0;
    }

    .industries-hero-shell::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 75%;
        background: linear-gradient(to top, rgba(7, 8, 3, 0.96) 0%, rgba(7, 8, 3, 0.3) 55%, rgba(7, 8, 3, 0) 100%);
        pointer-events: none;
        z-index: 1;
    }

    .industries-hero-panel {
        position: absolute;
        left: 50%;
        bottom: 32px;
        transform: translateX(-50%);
        width: calc(100% - 48px);
        padding: 0;
        background: transparent;
        text-align: center;
        z-index: 2;
    }

    .industries-hero-kicker {
        display: none;
    }

    .industries-hero-title {
        font-size: 2.2rem;
    }

    .industries-hero-description {
        font-size: 0.9rem;
    }

    /* Mobile Logo Strip - Grid Layout */
    .logo-strip {
        padding: var(--spacing-sm) 0;
    }

    .logo-track {
        padding: 0 16px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        width: 100%;
        max-width: 100%;
    }

    .logo-item {
        padding: var(--spacing-sm);
        display: flex;
        justify-content: center;
        align-items: center;
        border-right: 1px solid #333;
        border-bottom: 1px solid #333;
    }

    .logo-item:nth-child(3n) {
        border-right: none;
    }

    .logo-item:nth-last-child(-n+3) {
        border-bottom: none;
    }

    .logo-item img {
        height: 16px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }

    /* Mobile Client Item Styles */
    .client-item {
        flex-direction: column;
        gap: 6px;
        padding: var(--spacing-xs);
    }

    .client-icon {
        font-size: 20px;
    }

    .client-name {
        font-family: var(--font-heading);
        font-size: 1.5rem;
        font-weight: 400;
        text-transform: uppercase;
    }

    .client-industry {
        font-size: 0.65rem;
    }

    .industries-header {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .industries-header p {
        text-align: left;
    }

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

    /* Mobile Services Grid */
    .services-grid-section {
        padding: 24px 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-card {
        width: 100%;
        padding: 18px 16px;
        background: linear-gradient(90deg, rgba(88, 104, 65, 0.95) 0%, rgba(54, 66, 40, 0.92) 100%);
        border-radius: 10px;
        box-shadow: 0 8px 18px rgba(7, 8, 3, 0.35);
    }

    .service-card-header {
        gap: 10px;
    }

    .service-icon {
        width: 18px;
        height: 18px;
        font-size: 12px;
        background: #d3fe39;
        color: #1d2a17;
        border-radius: 3px;
        padding: 0;
    }

    .service-title {
        font-size: 1.2rem;
        color: #f6fff2;
    }

    .service-list li {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.85);
    }

    .service-list li::before {
        color: #f6fff2;
    }

    /* Mobile Why Choose Section */
    .why-choose-section {
        background-image: none;
        background-color: #070803;
        padding: 0;
        margin: 0;
        height: 100vh;
        border-radius: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .why-choose-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 320px;
        height: 274px;
        padding: 0 16px;
        gap: 30px;
        margin: 0 auto;
        text-align: center;
    }

    .why-choose-title {
        font-family: 'Big Shoulders Display', 'Big Shoulders', sans-serif;
        font-size: 40px;
        font-weight: 400;
        line-height: 120%;
        text-align: center;
        color: #D3FE39;
    }

    .why-choose-description {
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        font-weight: 400;
        line-height: 150%;
        text-align: center;
    }

    /* Mobile How We Add Value Section */
    .how-we-add-value-section {
        padding-left: var(--spacing-sm);
        padding-right: var(--spacing-sm);
    }

    .how-we-add-value-box {
        grid-template-columns: 1fr;
        padding: 8px;
        gap: 24px;
        width: 100%;
    }

    .how-we-add-value-content {
        padding: 16px;
    }

    .how-we-add-value-title {
        font-size: 2rem;
    }

    .how-we-add-value-description {
        font-size: 0.9rem;
    }

    .how-we-add-value-image {
        width: 100%;
        height: auto;
        min-height: 249px;
        max-width: 100%;
        order: -1;
    }

    .how-we-add-value-image img {
        width: 100%;
        height: auto;
        min-height: 249px;
        object-fit: cover;
    }

    /* Mobile Stats Section */
    .stats-section {
        padding: var(--spacing-md) 16px;
    }

    .stats-box {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .stats-content {
        flex-direction: column;
        gap: var(--spacing-md);
        align-items: stretch;
    }

    .stats-text {
        max-width: 100%;
        padding-right: 0;
        text-align: center;
    }

    .stats-text h2 {
        font-size: 2rem;
        margin-bottom: var(--spacing-sm);
        text-align: center;
    }

    .stats-text p {
        max-width: 100%;
        text-align: center;
        font-size: 0.875rem;
    }

    .stats-grid {
        max-width: 100%;
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        width: 100%;
    }

    .stat-card {
        padding: 20px;
        min-height: auto;
        text-align: left;
    }

    .stat-card h3 {
        font-size: 2rem;
        margin-bottom: 8px;
        text-align: left;
    }

    .stat-card p {
        font-size: 0.875rem;
        text-align: left;
        line-height: 1.5;
    }

    /* Mobile Values Section */
    .values-section {
        padding: var(--spacing-md) 16px;
        /* Small, consistent dark grey margin on sides */
    }

    .values-box {
        padding: 32px 24px;
        /* Generous internal padding within neon-green container */
        border-radius: 0 0 16px 16px;
        /* Rounded bottom corners only */
        background: #D3FE39;
    }

    .values-content {
        display: flex;
        flex-direction: column;
        gap: 0;
        /* Remove default gap, use specific margins */
    }

    .values-text {
        display: contents;
        /* Children participate in parent flex layout */
    }

    .values-text h2 {
        font-family: 'Big Shoulders', sans-serif;
        font-size: 32px;
        font-weight: 500;
        /* Medium */
        font-style: normal;
        color: #1A3D00;
        /* Very dark green/almost black */
        line-height: 150%;
        letter-spacing: 0%;
        vertical-align: middle;
        margin-bottom: 16px;
        /* Clear vertical gap after title */
        text-align: left;
        order: 1;
    }

    .values-intro {
        color: #1A3D00;
        /* Very dark green/almost black */
        font-size: 0.95rem;
        margin-bottom: 24px;
        /* Significant vertical space before image */
        text-align: left;
        line-height: 1.5;
        order: 2;
    }

    .value-card {
        display: flex;
        align-items: flex-start;
        background: #0C302B;
        /* Dark teal/dark green */
        padding: 24px;
        /* Ample internal padding on all sides */
        margin-bottom: 16px;
        /* Consistent, moderate vertical gap between boxes */
        border-radius: 12px;
        gap: 16px;
        /* Noticeable horizontal gap between icon and text */
        order: 4;
        /* Cards come after image */
    }

    .value-card:last-child {
        margin-bottom: 0;
    }

    .value-icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        align-self: flex-start;
        margin-top: 0;
        /* Align with title text */
    }

    .value-icon img {
        width: 24px;
        height: 24px;
        object-fit: contain;
        display: block;
        filter: brightness(0) invert(1);
        /* Make all icons white outlines */
    }

    /* Excellence icon - first card - white outline with green border */
    .value-card:nth-child(1) .value-icon {
        border: none;
        padding: 0;
    }

    .value-card:nth-child(1) .value-icon img {
        filter: brightness(0) saturate(100%) invert(83%) sepia(98%) saturate(1352%) hue-rotate(67deg) brightness(101%) contrast(101%);
        /* Convert to #D3FE39 lime green */
        -webkit-filter: brightness(0) saturate(100%) invert(83%) sepia(98%) saturate(1352%) hue-rotate(67deg) brightness(101%) contrast(101%);
        background: none;
        border: 0.94px solid #D3FE39;
        box-sizing: border-box;
    }

    /* Commitment icon - second card - white outline, no border or background */
    .value-card:nth-child(2) .value-icon img {
        filter: brightness(0) invert(1);
        /* White outline */
        background: none;
        border: none;
    }

    /* Honesty icon - third card - white outline, no border or background */
    .value-card:nth-child(3) .value-icon img {
        filter: brightness(0) invert(1);
        /* White outline */
        background: none;
        border: none;
    }

    .value-card h3 {
        font-family: 'Big Shoulders', sans-serif;
        font-size: 15.03px;
        font-weight: 500;
        /* Medium */
        font-style: normal;
        color: var(--color-white);
        line-height: 150%;
        letter-spacing: 0%;
        vertical-align: middle;
        margin-bottom: 12px;
        /* Vertical gap between title and description */
    }

    .value-card p {
        color: var(--color-white);
        font-size: 0.875rem;
        line-height: 1.5;
        opacity: 1;
    }

    .values-image {
        order: 3;
        /* Image appears between intro and cards */
        border-radius: 12px;
        overflow: hidden;
        min-height: auto;
        width: 100%;
        margin: 0 0 32px 0;
        /* Significant vertical gap between image and first value box */
    }

    .values-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 12px;
    }

    .approach-content {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .why-industry-content {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .why-industry-title {
        font-size: 2rem;
    }

    .why-industry-description {
        max-width: 100%;
    }

    /* Mobile Contact Section */
    .contact-section {
        padding: var(--spacing-md) 16px;
        width: 100%;
        box-sizing: border-box;
    }

    .contact-box {
        padding: 24px 16px;
        border-radius: 16px;
        background-image: url('../assets/green cloud mobile.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0 auto;
    }

    .contact-content {
        flex-direction: column;
        gap: var(--spacing-lg);
        width: 100%;
        box-sizing: border-box;
    }

    .contact-info {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .contact-info h2 {
        font-family: 'Big Shoulders', sans-serif;
        font-size: 48px;
        font-weight: 400;
        font-style: normal;
        line-height: 100%;
        letter-spacing: 0%;
        text-transform: capitalize;
        color: var(--color-white);
        margin-bottom: 16px;
        text-align: left;
        word-wrap: break-word;
    }

    .contact-info>p {
        color: var(--color-white);
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: var(--spacing-md);
        text-align: left;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .contact-details {
        gap: var(--spacing-md);
        margin-bottom: var(--spacing-md);
        width: 100%;
    }

    .contact-item {
        gap: 12px;
        align-items: flex-start;
        width: 100%;
        flex-wrap: wrap;
    }

    .contact-item img {
        width: 20px;
        height: 20px;
        opacity: 1;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .contact-item span {
        color: var(--color-white);
        font-size: 0.9rem;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        flex: 1;
        min-width: 0;
    }

    .contact-item div {
        flex: 1;
        min-width: 0;
    }

    .contact-form {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .contact-form form {
        gap: 16px;
        width: 100%;
    }

    .contact-form .form-container {
        width: 100%;
        max-width: 100%;
        min-height: auto;
        height: auto;
        padding-left: 0;
        padding-right: 0;
        display: flex;
        flex-direction: column;
        gap: 16px;
        box-sizing: border-box;
    }

    .contact-form .form-label {
        display: block;
        position: relative;
        width: 100%;
        box-sizing: border-box;
    }

    .contact-form .form-label>span {
        position: absolute;
        left: 16px;
        top: 18px;
        color: #B0B0B0;
        /* Medium-gray text */
        font-size: 0.9rem;
        pointer-events: none;
        z-index: 1;
        font-family: var(--font-body);
    }

    .contact-form .form-label .asterisk {
        color: #FF0000;
        /* Red asterisk */
        margin-left: 2px;
    }

    .contact-form input,
    .contact-form textarea {
        height: 56px;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.7);
        /* Light white/off-white border */
        background: linear-gradient(to bottom, rgba(60, 80, 55, 0.9), rgba(50, 70, 45, 0.9));
        /* Semi-transparent darker olive green with gradient */
        padding: 16px;
        color: var(--color-white);
        font-size: 0.9rem;
        font-family: var(--font-body);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        -webkit-appearance: none;
        appearance: none;
    }

    .contact-form input:focus~span,
    .contact-form textarea:focus~span,
    .contact-form input:not(:placeholder-shown)~span,
    .contact-form textarea:not(:placeholder-shown)~span {
        opacity: 0;
    }

    .contact-form textarea {
        min-height: 120px;
        height: 120px;
        resize: vertical;
    }

    .btn-submit {
        width: 100%;
        max-width: 100%;
        background-color: #070803;
        /* Deep black background */
        color: #FFFFFF;
        /* White text */
        padding: 16px;
        font-size: 1rem;
        font-weight: 500;
        border-radius: 10px;
        border: none;
        margin-top: 0;
        cursor: pointer;
        font-family: var(--font-body);
        box-sizing: border-box;
        -webkit-appearance: none;
        appearance: none;
    }

    /* Mobile Footer - already responsive by default */
    .footer-content {
        padding: var(--spacing-md) var(--spacing-sm);
        gap: var(--spacing-md);
        flex-direction: column;
        align-items: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
        width: 100%;
    }

    .footer-logo-text {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-logo-img {
        width: auto;
        height: auto;
        max-width: 100%;
        opacity: 1;
    }

    .footer .social-icons {
        justify-content: center;
    }

    .footer-nav {
        align-items: center;
        gap: 10px;
    }

    .footer-services {
        align-items: center;
        gap: 10px;
    }

    .footer-nav-link,
    .footer-service-link {
        font-size: 0.9rem;
        text-align: center;
    }

    .footer-contact {
        align-items: center;
        gap: var(--spacing-sm);
    }

    .footer-contact-item {
        font-size: 0.85rem;
        flex-direction: row;
        justify-content: center;
        text-align: center;
    }

    .footer-contact-item span {
        text-align: center;
    }
}

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

    .about-hero {
        padding: var(--spacing-md) 0;
    }

    .about-hero-panel {
        padding: 28px 20px;
    }

    .about-hero-title {
        font-size: 2.1rem;
    }

    .about-hero-description {
        font-size: 0.9rem;
    }

    .about-diff {
        padding: var(--spacing-md) 0;
    }

    .about-mission {
        padding: var(--spacing-md) 0;
    }

    .about-journey {
        padding: var(--spacing-md) 0;
    }

    .core-values {
        padding: var(--spacing-md) 0;
    }

    .footer-content {
        padding: var(--spacing-sm) 12px;
        gap: var(--spacing-sm);
        flex-direction: column;
        align-items: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-logo-text {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-logo-img {
        width: auto;
        height: auto;
        max-width: 100%;
        opacity: 1;
    }

    .footer .social-icons {
        gap: 12px;
        justify-content: center;
    }

    .footer .social-icons img {
        width: 20px;
        height: 20px;
    }

    .footer-nav-link,
    .footer-service-link {
        font-size: 0.875rem;
        text-align: center;
    }

    .footer-contact-item {
        font-size: 0.8rem;
        justify-content: center;
    }

    /* Extra small mobile - Contact Section */
    .contact-section {
        padding: var(--spacing-sm) 12px;
    }

    .contact-box {
        padding: 20px 12px;
        border-radius: 12px;
        background-image: url('../assets/green cloud mobile.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .contact-content {
        gap: var(--spacing-md);
    }

    .contact-info h2 {
        font-family: 'Big Shoulders', sans-serif;
        font-size: 32px;
        font-weight: 500;
        font-style: normal;
        line-height: 100%;
        letter-spacing: 0%;
        text-transform: capitalize;
        color: var(--color-white);
        margin-bottom: 12px;
    }

    .contact-info>p {
        font-size: 0.875rem;
        margin-bottom: var(--spacing-sm);
    }

    .contact-details {
        gap: var(--spacing-sm);
        margin-bottom: var(--spacing-sm);
    }

    .contact-item {
        gap: 10px;
    }

    .contact-item img {
        width: 18px;
        height: 18px;
    }

    .contact-item span {
        font-size: 0.875rem;
    }

    .contact-form .form-container {
        gap: 12px;
    }

    .contact-form input,
    .contact-form textarea {
        height: 52px;
        padding: 14px;
        font-size: 0.875rem;
    }

    .contact-form textarea {
        min-height: 100px;
        height: 100px;
    }

    .btn-submit {
        padding: 14px;
        font-size: 0.95rem;
    }
}

/* Industry Features Section */
.industry-features {
    padding: 24px;
    background-color: #D3FE391A;
    width: 100%;
    box-sizing: border-box;
}

.industry-features-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
}

.industry-features .container {
    max-width: 100%;
    padding: 0;
    width: 100%;
}

.industry-feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(108deg, rgba(40, 60, 25, 1) 0%, rgba(25, 35, 15, 1) 100%);
    border-radius: 20px;
    overflow: hidden;
    min-height: 500px;
    box-shadow: 0 10px 30px rgba(7, 8, 3, 0.4);
}

.industry-feature-content {
    padding: 64px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.industry-feature-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 24px;
    text-transform: none;
    font-weight: 500;
    line-height: 1.2;
}

.industry-feature-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-white);
    margin-bottom: 32px;
    max-width: 500px;
}

.industry-covered-label {
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    text-transform: none;
}

.industry-list {
    list-style: disc inside;
    margin-bottom: 32px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.8;
    padding-left: 0;
}

.industry-list li {
    margin-bottom: 8px;
    padding-left: 0;
}

.btn-feature {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
    background: transparent;
    transition: all 0.3s ease;
    width: fit-content;
    text-decoration: none;
}

.btn-feature:hover {
    background: var(--color-primary);
    color: var(--color-dark);
    border-color: var(--color-primary);
}

.industry-feature-media {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.industry-feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Modifier to swap content/image on desktop */
@media (min-width: 992px) {
    .industry-feature-card.reverse .industry-feature-media {
        order: 2;
    }

    .industry-feature-card.reverse .industry-feature-content {
        order: 1;
    }
}

@media (max-width: 991px) {
    .industry-features-wrapper {
        gap: 32px;
    }

    .industry-feature-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .industry-feature-media {
        min-height: 300px;
        order: -1;
    }

    .industry-feature-content {
        padding: 40px 24px;
    }

    .industry-feature-title {
        font-size: 2rem;
    }

    .industry-feature-description {
        font-size: 0.95rem;
    }
}

/* Blog Post Page */
.blog-post-page {
    padding: 0 0 var(--spacing-xl);
    background-color: #070803;
}

.blog-post-hero {
    width: min(1240px, 100%);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 36px rgba(7, 8, 3, 0.45);
}

.blog-post-hero img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
}

.blog-post-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 8, 3, 0) 55%, #070803 100%),
        linear-gradient(270deg, rgba(7, 8, 3, 0) 50%, #070803 100%);
    pointer-events: none;
}

.blog-post-hero figcaption {
    position: absolute;
    left: 20px;
    bottom: 16px;
    z-index: 1;
    font-size: 0.82rem;
    color: rgba(249, 246, 239, 0.9);
}

.blog-post-container {
    max-width: 840px;
    margin: 0 auto;
    padding-top: 48px;
}

/* Blog listing page should use full site container width. */
.container.blog-list-container {
    max-width: 1200px;
}

.blog-post-header {
    margin-bottom: 32px;
}

.blog-post-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(211, 254, 57, 0.35);
    color: var(--color-primary);
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.blog-post-header h1 {
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    line-height: 1.05;
    text-transform: none;
    margin-bottom: 14px;
}

.blog-post-subtitle {
    font-size: 1rem;
    color: rgba(249, 246, 239, 0.9);
    max-width: 740px;
}

.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 16px;
    font-size: 0.9rem;
    color: rgba(249, 246, 239, 0.9);
}

.blog-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.blog-post-tags span {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: rgba(249, 246, 239, 0.95);
}

.blog-author-box {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 16px;
    align-items: start;
    margin: 30px 0;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
}

.blog-author-box img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 999px;
    border: 2px solid rgba(211, 254, 57, 0.5);
}

.blog-author-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
}

.blog-author-title {
    margin-top: 2px;
    font-size: 0.88rem;
    color: var(--color-primary);
}

.blog-author-bio {
    margin-top: 8px;
    font-size: 0.92rem;
    color: rgba(249, 246, 239, 0.95);
}

.blog-author-content a {
    display: inline-flex;
    margin-top: 10px;
    color: var(--color-primary);
    font-size: 0.9rem;
    text-decoration: underline;
}

.blog-post-body {
    color: rgba(249, 246, 239, 0.97);
}

.blog-post-body > * + * {
    margin-top: 16px;
}

.blog-post-body h2,
.blog-post-body h3 {
    text-transform: none;
    line-height: 1.15;
    margin-top: 34px;
    margin-bottom: 10px;
}

.blog-post-body h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.blog-post-body h3 {
    font-size: clamp(1.2rem, 2.3vw, 1.6rem);
}

.blog-post-body p {
    font-size: 1rem;
    line-height: 1.72;
}

.blog-post-body ul,
.blog-post-body ol {
    list-style: initial;
    margin: 10px 0 0 20px;
    padding-left: 12px;
}

.blog-post-body li + li {
    margin-top: 8px;
}

.blog-post-body blockquote {
    margin-top: 20px;
    padding: 16px 18px;
    border-left: 4px solid var(--color-primary);
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-off-white);
    font-style: italic;
}

.blog-related-posts {
    margin-top: 44px;
    padding-top: 10px;
}

.blog-related-posts h2 {
    margin-bottom: 14px;
}

.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.blog-magazine-shell {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
    overflow: visible;
}

.blog-categories-top-title {
    margin-bottom: 10px;
    text-transform: none;
    font-size: 1rem;
}

.blog-categories-top-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-list-top {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 18px;
}

.blog-list-top-v2 {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.75fr) minmax(0, 0.65fr);
    align-items: start;
}

.blog-list-hero {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

.blog-list-hero-thumb {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.blog-list-hero-body {
    padding: 14px 16px 16px;
}

.blog-list-kicker {
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
    margin-bottom: 6px;
}

.blog-list-hero-body h2 {
    text-transform: none;
    font-size: clamp(1.2rem, 1.8vw, 1.7rem);
    margin-bottom: 8px;
}

.blog-list-hero-body p {
    color: rgba(249, 246, 239, 0.92);
}

.blog-list-headlines {
    display: grid;
    gap: 12px;
    align-content: start;
}

.blog-mini-heading {
    text-transform: none;
    font-size: 1rem;
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 6px;
}

.blog-headline-stack {
    display: grid;
    gap: 12px;
}

.blog-headline-line {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 10px;
}

.blog-headline-date {
    font-size: 0.72rem;
    color: rgba(249, 246, 239, 0.7);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.blog-headline-item {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.03);
}

.blog-headline-item img {
    width: 96px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
}

.blog-headline-item h3 {
    text-transform: none;
    font-size: 0.95rem;
    line-height: 1.3;
    margin-top: 4px;
}

.blog-headline-item-mini {
    grid-template-columns: 56px minmax(0, 1fr);
    padding: 6px;
}

.blog-headline-item-mini img {
    width: 56px;
    height: 56px;
}

.blog-more-heading {
    text-transform: none;
    margin-top: 28px;
    margin-bottom: 12px;
}

.blog-more-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 340px));
    justify-content: start;
}

.blog-category-rail {
    align-self: stretch;
}

.blog-category-sidebar {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.03);
    width: 100%;
    max-width: 260px;
    position: sticky;
    top: 96px;
    z-index: 5;
    height: fit-content;
}

.blog-category-sidebar h2 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    text-transform: none;
}

.blog-category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    color: rgba(249, 246, 239, 0.9);
}

.blog-category-link:hover {
    background: rgba(255, 255, 255, 0.05);
}

.blog-category-link.is-active {
    color: #070803;
    background: var(--color-primary);
    font-weight: 600;
}

.blog-related-card {
    display: block;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.blog-related-thumb {
    width: 100%;
    height: 110px;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.04);
}

.blog-related-card:hover {
    border-color: rgba(211, 254, 57, 0.55);
    transform: translateY(-2px);
}

.blog-related-topic {
    display: inline-flex;
    font-size: 0.78rem;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.blog-related-card h3 {
    text-transform: none;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.blog-related-card p {
    font-size: 0.9rem;
    color: rgba(249, 246, 239, 0.92);
    line-height: 1.5;
}

.blog-author-box-bottom {
    margin-top: 40px;
}

/* Safety rule: if duplicate author boxes exist, only show the bottom one. */
.blog-post-container .blog-author-box:not(.blog-author-box-bottom) {
    display: none !important;
}

@media (max-width: 991px) {
    .blog-post-hero {
        border-radius: 12px;
    }

    .blog-post-container {
        padding-top: 36px;
    }

    .blog-post-header h1 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .blog-list-top {
        grid-template-columns: 1fr;
    }

    .blog-list-top-v2 {
        grid-template-columns: 1fr;
    }

    .blog-magazine-shell {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .blog-more-grid,
    .blog-related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blog-author-box {
        grid-template-columns: 1fr;
    }

    .blog-author-box img {
        width: 78px;
        height: 78px;
    }

    .blog-post-meta {
        flex-direction: column;
        gap: 6px;
    }
}
