html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Adjust based on header height */
}

:root {
    --primary-color: #1A1C1E;
    --secondary-color: #2D3136;
    --accent-color: #FBB800;
    /* Main bright gold */
    --accent-gold: #BC924F;
    /* Sophisticated metallic gold */
    --accent-light: #DFA32B;
    /* Brighter, cleaner gold for icons */
    --accent-dark: #B38728;
    /* Deep gold for depth */
    --text-color: #E2E4E9;
    --text-muted: #9BA1A6;
    --bg-color: #1A1C1E;
    --metallic-bg: #b2b2b2;
    --metallic-bg-light: #e7e7e7;
    /* Global light metallic color */
    --metallic-gradient: linear-gradient(135deg, #a8a8a8 0%, #b2b2b2 25%, #e7e7e7 50%, #b2b2b2 75%, #a8a8a8 100%);
    /* Šedý lesklý kovový gradient – světlo uprostřed */
    --section-light: #F8F9FB;
    /* Unified light background */
    --section-white: #FFFFFF;
    --card-bg: #2D3136;
    --white: #FFFFFF;
    --black: #000000;
    --muted-gray: #656565;
    /* Jednotná šedá pro O nás sekci a podobné prvky */
    --transition: all 0.3s ease;
    --container-width: 1200px;
    /* Typography Scale */
    --h1-size: 3.5rem;
    --h1-hero-size: 4rem;
    /* Larger size for Hero */
    --h2-size: 2.5rem;
    --h3-size: 1.25rem;
    --h4-size: 1.1rem;

    --p-size-large: 1.1rem;
    /* Lead text, subtitles */
    --p-size-base: 1rem;
    /* Body text */
    --p-size-small: 0.95rem;
    /* Card text */

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --font-weight-bold: 700;
    --font-weight-heavy: 800;

    /* Spacing */
    --section-spacing: 100px;
    --card-padding: 2.5rem;
    /* Unified card padding */

    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Unified card shadow */
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
    /* Hover state */
}


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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
    color: var(--primary-color);
    line-height: 1.2;
}

h1 {
    font-size: var(--h1-size);
}

h2 {
    font-size: var(--h2-size);
}

h3 {
    font-size: var(--h3-size);
}

h4 {
    font-size: var(--h4-size);
}

p {
    font-size: var(--p-size-base);
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: none;
    line-height: 1.2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-desc {
    color: #555;
    /* Higher contrast than var(--text-muted) */
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Black text for descriptions on gray background */
.section-industries .section-desc,
.services .section-desc,
.about .section-desc {
    color: var(--black) !important;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent-light);
    /* Matching metallic light gold */
    margin: 10px auto 0;
}

/* Button with Metallic Effect */
/* Button with Metallic Effect */
.btn-olejnik {
    background: linear-gradient(145deg, #BF953F, #FBB800, #B38728);
    box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.3), 0 4px 6px rgba(0, 0, 0, 0.4);
    border: 1px solid #AA771C;
    filter: contrast(1.1);
    /* pro efekt struktury */
    display: inline-block;
    padding: 16px 35px;
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-olejnik:hover {
    transform: translateY(-2px);
    filter: contrast(1.2);
    box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.4), 0 8px 12px rgba(0, 0, 0, 0.5);
}

.gold-gradient {
    background: linear-gradient(90deg, #FBB800 0%, #b38728 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.btn-olejnik.full-width {
    width: 100%;
    text-align: center;
}

/* Header Structure */
.header-wrapper {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Top Bar */
.top-bar {
    background-color: #111;
    padding: 8px 0;
    border-bottom: 1px solid #333;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-info {
    display: flex;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-item i {
    color: var(--accent-color);
}

.info-item a:hover {
    color: var(--accent-color);
}

.lang-switch {
    font-weight: 600;
    display: flex;
    gap: 12px;
    align-items: center;
}

.lang-switch a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lang-switch .lang-flag {
    display: inline-block;
}

.lang-switch a.active {
    color: var(--accent-color);
}

.lang-switch .divider {
    color: #555;
}

/* Main Header */
.main-header {
    background: var(--metallic-gradient);
    /* Lighter background for logo visibility */
    padding: 15px 0;
    color: #1A1C1E;
    /* Dark text for light header */
}

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

.logo {
    display: inline-block;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.logo img {
    height: 50px;
}

/* Navigation */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: #1A1C1E;
    position: relative;
    transition: var(--transition);
    /* Smooth color transition */
}

.main-nav a:not(.btn-olejnik):hover {
    color: rgb(104, 104, 104);
    text-decoration: underline;
    /* Vibrant gold on hover */
}

/* Nav CTA Button override for header */
.nav-cta {
    padding: 10px 25px;
    /* Slightly smaller in header */
    font-size: 0.85rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #1A1C1E;
    /* Dark icon */
    font-size: 1.5rem;
    cursor: pointer;
}


/* Hero Section */
.hero {
    height: 550px;
    /* Adjusted height */
    min-height: 600px;
    background-size: cover;
    background-position: center 60%;
    /* Centered horizontally, slightly shifted vertically */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 114px;
    /* Adjusted from 130px to perfectly match header height */
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    /* Constrained for centered text readability */
}

.hero-prefix {
    color: var(--accent-light);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}

.hero h1 {
    font-size: var(--h1-hero-size);
    font-weight: var(--font-weight-heavy);
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: none;
    color: var(--white);
}

.hero h1 span.gold {
    color: var(--accent-color);
}

.hero .subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    /* Subtle tint */
    border: 2px solid rgba(255, 255, 255, 0.8);
    /* Stronger white border */
    color: var(--white);
    padding: 16px 35px;
    border-radius: 4px;
    font-weight: 700;
    /* Bolder text */
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    /* Premium glass effect */
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }
}

/* USP Section */
.section-usp {
    background-color: var(--metallic-bg-light);
    padding: 0 0 0px;
    color: var(--primary-color);
}

.overlay-usp {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.usp-box {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-top: 5px solid var(--accent-light);
    border-radius: 12px;
    padding: var(--card-padding);
    box-shadow: var(--shadow-md);
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.usp-item {
    text-align: center;
    padding: 0 15px;
}

.usp-item {
    text-align: center;
    padding: 0 15px;
}

.usp-icon {
    width: 65px;
    height: 65px;
    background-color: #ECEEF2;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent-light);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.usp-item h3 {
    color: var(--primary-color) !important;
    font-size: var(--h3-size);
    margin-bottom: 12px;
    font-weight: var(--font-weight-bold);
}

.usp-item p {
    color: var(--text-muted) !important;
    font-size: var(--p-size-small);
    margin: 0;
}

.usp-item:hover .usp-icon {
    transform: translateY(-8px);
    background-color: var(--accent-color);
    color: #fff;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 900px) {
    .overlay-usp {
        margin-top: -40px;
    }

    .usp-box {
        padding: 40px 20px;
    }
}

/* Technologies Section - Redesign */
.technologies {
    background-color: var(--metallic-bg-light);
    padding: var(--section-spacing) 0;
    color: var(--primary-color);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header .subtitle-small {
    color: var(--muted-gray);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: block;
}

/* White subtitles for sections on gray background */
.section-industries .subtitle-small,
.services .subtitle-small,
.about .subtitle-small {
    color: var(--muted-gray);
}

.section-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: var(--font-weight-heavy);
    position: relative;
    padding-bottom: 20px;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--muted-gray);
}

/* White lines for sections on gray background */
.section-industries h2::after,
.services h2::after,
.about h2::after {
    background-color: var(--muted-gray) !important;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.tech-item {
    background-color: var(--white);
    padding: var(--card-padding);
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.02);
    border-top: 3px solid transparent;
    transition: var(--transition);
    height: 100%;
}

.tech-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--accent-light);
}

.tech-item i {
    color: var(--accent-light);
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: block;
}

.tech-item h3 {
    color: var(--primary-color);
    font-size: var(--h3-size);
    margin-bottom: 15px;
    font-weight: var(--font-weight-bold);
}

.tech-item p {
    color: var(--text-muted);
    font-size: var(--p-size-small);
}

/* Industries We Serve Section */
.section-industries {
    background: var(--metallic-gradient);
    padding: var(--section-spacing) 0;
}

.industries-grid-stich {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.industry-item-stich {
    background: var(--white);
    padding: var(--card-padding);
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
}

.industry-item-stich:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--accent-light);
}

.industry-icon {
    font-size: 2.5rem;
    color: var(--accent-light);
    margin-bottom: 20px;
}

.industry-item-stich h3 {
    font-size: var(--h3-size);
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin: 0;
}

@media (max-width: 1024px) {
    .industries-grid-stich {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .industries-grid-stich {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .industries-grid-stich {
        grid-template-columns: 1fr;
    }
}

/* Clients Logo Strip */
.clients-strip {
    background: var(--metallic-gradient);
    padding: 30px 0;
    border-top: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
    width: 100%;
    overflow: hidden;
}

.clients-track {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.clients-track img {
    max-height: 40px;
    width: auto;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.4s ease;
}

.clients-track img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .clients-track {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .clients-track img {
        max-height: 30px;
    }
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-list {
    margin-top: 20px;
}

.service-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-size: 1.1rem;
}

.service-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 2px;
}

.product-showcase {
    border: 2px solid var(--accent-color);
    padding: 10px;
    position: relative;
}

.product-img {
    width: 100%;
    display: block;
    filter: brightness(0.9);
}

.product-caption {
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-weight: 500;
}

/* Process Section */
/* Collaboration Process - Horizontal Redesign */
.process {
    background-color: var(--bg-color);
    padding: var(--section-spacing) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-header-dark h2 {
    color: var(--white) !important;
}

.section-header-dark h2::after {
    height: 2px !important;
    margin-top: 15px !important;
    background-color: var(--accent-color) !important;
}

.process .subtitle-small {
    color: var(--accent-light);
}

.process-steps-stich {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 60px;
    gap: 20px;
}

.process-line-stich {
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.process-step-stich {
    flex: 1;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-circle-stich {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-color));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    border-radius: 50%;
    margin-bottom: 25px;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--bg-color);
}

.process-step-stich h3 {
    color: var(--white);
    font-size: var(--h3-size);
    margin-bottom: 12px;
    font-weight: var(--font-weight-bold);
}

.process-step-stich p {
    color: var(--text-muted);
    font-size: var(--p-size-small);
    max-width: 200px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .process-steps-stich {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .process-line-stich {
        display: none;
    }

    .process-step-stich p {
        max-width: 100%;
    }
}

/* Services & Showcase */
.services {
    background: var(--metallic-gradient);
    padding: 100px 0;
}

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

.service-card {
    height: 600px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--card-padding);
    position: relative;
    overflow: hidden;
    color: var(--white);
    transition: var(--transition);
    filter: brightness(1.05);
    border: 1px solid white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    z-index: 1;
}

.service-card h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 5px;
    font-size: 1.8rem;
    /* Special case for card overlay */
    font-weight: var(--font-weight-bold);
    color: var(--section-white)
}

.service-card p {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--p-size-base);
    max-width: 400px;
}

.service-card:hover {
    transform: scale(1.02);
}

/* Work Showcase */
.work-showcase {
    background-color: var(--metallic-bg-light);
    padding: var(--section-spacing) 0;
}

.grid-2-valign {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.work-content .subtitle-small {
    color: var(--muted-gray);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: block;
}

.work-content h2 {
    color: var(--primary-color);
    font-size: var(--h2-size);
    margin-bottom: 15px;
    font-weight: var(--font-weight-heavy);
    line-height: 1.2;
}

.work-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--muted-gray);
    margin-top: 20px;
}

.work-content p {
    color: #555;
    margin-bottom: 25px;
    font-size: var(--p-size-large);
    line-height: 1.6;
}

.typical-products-label {
    color: #1a1c1e !important;
    font-size: 1.1rem;
    margin-bottom: 20px !important;
}

.check-list {
    list-style: none;
    margin-bottom: 40px;
}

.check-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #555;
    font-weight: 500;
}

.check-list li i {
    color: var(--muted-gray);
    margin-right: 15px;
    font-size: 1.1rem;
}

.btn-white {
    display: inline-block;
    padding: 16px 35px;
    background: #F4F4F4;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: 1px solid #ddd;
    transition: var(--transition);
}

.btn-white:hover {
    background: var(--white);
    border-color: var(--accent-color);
}

.image-wrapper-stich {
    position: relative;
    border-radius: 15px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    background: #111;
    /* Dark industrial background to pop the product */
    padding: 20px;
}

.image-wrapper-stich img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.badge-gold {
    position: absolute;
    bottom: -15px;
    right: 30px;
    background: var(--accent-dark);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Us Section - Redesign */
.about {
    background: var(--metallic-gradient);
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.about-image {
    position: relative;
    height: 100%;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: block;
    filter: brightness(0.85);
}

.about-image-label {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.about-image-label .label-title {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.about-image-label .label-subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

.about-text {
    text-align: left;
}

.about-text .subtitle-small {
    color: var(--muted-gray);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: block;
}

.about-text h2 {
    color: var(--primary-color);
    font-size: var(--h2-size);
    margin-bottom: 15px;
    font-weight: var(--font-weight-heavy);
    line-height: 1.2;
}

.about-text h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--muted-gray);
    margin-top: 20px;
}

.about-text p {
    color: var(--black);
    line-height: 1.7;
    margin-top: 25px;
    font-size: var(--p-size-large);
}

.stats-grid-stich {
    display: flex;
    gap: 60px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--muted-gray);
}

.stat-item-stich {
    display: flex;
    flex-direction: column;
}

.stat-item-stich .stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--muted-gray);
    line-height: 1;
    margin-bottom: 8px;
    white-space: nowrap;
}

.stat-item-stich .stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--muted-gray);
}

@media (max-width: 992px) {
    .stats-grid-stich {
        gap: 40px;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .stat-item-stich .stat-number {
        font-size: 1.9rem;
    }
}

@media (max-width: 768px) {
    .stats-grid-stich {
        gap: 30px;
    }

    .stat-item-stich .stat-number {
        font-size: 1.7rem;
    }
}

/* References Section - Redesign */
.section-references {
    background-color: var(--metallic-bg-light);
    padding: var(--section-spacing) 0;
}

.references-grid-stich {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.reference-card-stich {
    background: var(--white);
    padding: var(--card-padding);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border-top: 3px solid var(--accent-light);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reference-card-stich:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.ref-stars {
    color: var(--accent-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.ref-text {
    font-style: italic;
    color: var(--primary-color);
    line-height: 1.8;
    font-size: var(--p-size-large);
    margin-bottom: 30px;
    flex-grow: 1;
}

.ref-author {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.ref-name {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.ref-role {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--muted-gray);
    margin-top: 5px;
}

@media (max-width: 992px) {
    .references-grid-stich {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

.testimonial-author {
    color: var(--primary-color);
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #888;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Contact & Footer */
.section-contact {
    background-color: #1A1C1E;
    padding: var(--section-spacing) 0 65px;
    color: var(--white);
    position: relative;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.section-contact h2 {
    font-size: var(--h2-size);
    margin-bottom: 15px;
    font-weight: var(--font-weight-heavy);
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--white);
}

.contact-subtitle {
    color: #888;
    margin-bottom: 45px;
    font-size: 1.1rem;
}

.form-fields-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-form-stich textarea {
    height: 150px;
}

.contact-form-stich input,
.contact-form-stich textarea {
    width: 100%;
    background-color: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
    color: var(--white);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form-stich input::placeholder,
.contact-form-stich textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form-stich input:focus,
.contact-form-stich textarea:focus {
    border-color: var(--accent-light);
    background-color: #000;
    outline: none;
}

.upload-area {
    border: 1px dashed rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.02);
    padding: 35px;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.upload-area:hover {
    border-color: var(--accent-light);
    background-color: rgba(255, 255, 255, 0.05);
}

.upload-area i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: block;
}

.upload-area p {
    font-size: 0.85rem;
    color: #9BA1A6;
}

.upload-files-list {
    margin-top: 12px;
}

.upload-files-items {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.8rem;
    color: var(--accent-light);
}

.upload-files-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.upload-files-item:last-child {
    border-bottom: none;
}

.upload-file-remove {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    min-width: 24px;
    padding: 0;
    border: none;
    background: #fff;
    color: #dc3545;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.upload-file-remove:hover {
    background: #f8f8f8;
    color: #c82333;
}

.upload-remove-x {
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 300;
    display: block;
    color: inherit;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-consent {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding: 0 5px;
}

.form-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent-light);
}

.form-consent label {
    font-size: 0.85rem;
    color: #9BA1A6;
    cursor: pointer;
    user-select: none;
}

.form-consent label:hover {
    color: var(--white);
}

.consent-link {
    color: #BF953F;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.consent-link:hover {
    color: #FBB800;
}

.contact-info-side {
    height: 100%;
}

.contact-info-stich {
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-info-stich h3 {
    color: var(--accent-light);
    text-transform: none;
    font-size: var(--h2-size);
    font-weight: var(--font-weight-heavy);
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.contact-list-stich {
    list-style: none;
    background-color: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
}

.contact-list-stich li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
}

.contact-list-stich li:last-child {
    margin-bottom: 0;
}

.contact-list-stich i {
    color: var(--accent-light);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    margin-top: 3px;
}

.contact-list-stich strong {
    display: block;
    color: #ccc;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.contact-list-stich span {
    color: #ccc;
    line-height: 1.4;
    font-size: 0.95rem;
}

.contact-link-stich {
    color: #ccc;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-link-stich:hover {
    color: var(--accent-color);
}

.map-container-stich {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    flex-grow: 1;
    min-height: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 0;
}

.map-container-stich iframe {
    width: 100%;
    height: 100%;
}

/* Global Form Overrides - Unified background */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    background-color: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 4px;
    padding: 15px 20px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-light);
    background-color: #000;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Footer Polish */
footer {
    background-color: #000000;
    padding: 20px 0;
    /* Slimmer, like a top bar */
    border-top: 1px solid #222;
    margin: 0;
    width: 100%;
}

.footer-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #888;
    font-size: 0.8rem;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.footer-left p {
    margin: 0;
}

.footer-gdpr-link {
    color: var(--text-muted);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
    letter-spacing: 0.02em;
    margin-left: 5px;
    font-size: 0.95rem;
}

.footer-gdpr-link:hover {
    color: #BF953F;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: var(--transition);
    background: transparent;
    text-decoration: none;
}

.footer-socials a i {
    font-size: 1.2rem;
    background: linear-gradient(180deg, #FBB800 0%, #B38728 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: linear-gradient(145deg, #BF953F, #FBB800, #B38728);
    transform: scale(1.15);
}

.footer-socials a:hover i {
    -webkit-text-fill-color: #fff;
    background: none;
    color: #fff;
}

/* Helpers */
.mar-r-10 {
    margin-right: 10px;
}

.mar-b-20 {
    margin-bottom: 20px;
}

.full-width {
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .header-info {
        display: none;
        /* Hide header info on smaller screens */
    }

    .services-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .grid-2-valign {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .footer-layout {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-left {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .footer-gdpr-link {
        margin-left: 0;
        margin-top: 4px;
    }

    .footer-bottom-links a {
        margin: 0 10px;
    }

    .process-steps {
        flex-direction: column;
    }

    .step-connector {
        width: 2px;
        height: 30px;
        margin-bottom: 0;
        margin-top: -15px;
    }

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

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }

    .main-nav {
        display: none;
        /* Hide nav by default on tablet/mobile */
        position: absolute;
        top: 100%;
        /* Below the main header */
        left: 0;
        width: 100%;
        background: var(--metallic-gradient);
        /* Match main header */
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

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

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