/* ===========================================
   Eleven Bees - Main Stylesheet
   Version: 3.0 (Design Upgrade March 2026)
   Inspired by: TransparentWorld, Sellwise, BusinessWeb
   =========================================== */

/* --- Variables --- */
:root {
    --primary-color: #0A0A0C;
    --secondary-color: #F5F2EC;
    --surface: rgba(255,255,255,0.03);
    --border: rgba(201,168,76,0.12);
    --border-light: rgba(201,168,76,0.08);
    --accent-color: #D4AF37;
    --accent-hover: #F5D060;
    --accent-dim: rgba(212,175,55,0.10);
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #FFF2CD 50%, #AA771C 100%);
    --card-bg: rgba(255,255,255,0.03);
    --card-border: rgba(212,175,55,0.15);
    --card-glow: 0 0 40px rgba(212,175,55,0.06);
    --card-glow-hover: 0 0 50px rgba(212,175,55,0.12), 0 8px 32px rgba(0,0,0,0.3);
    --text-color: #F5F2EC;
    --text-light: rgba(245,242,236,0.85);
    --light-gray: #111315;
    --warm-cream: #111315;
    --card-shadow: 0 8px 30px rgba(0,0,0,0.3);
    --card-shadow-hover: 0 16px 40px rgba(0,0,0,0.5);
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --serif: 'Cormorant Garamond', Georgia, serif;
    --mono: 'DM Mono', monospace;
    --sans: 'Outfit', sans-serif;
}

/* --- Base --- */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

body {
    font-family: var(--sans);
    margin: 0;
    padding: 0;
    color: var(--text-color);
    background-color: var(--primary-color);
    line-height: 1.8;
    font-size: 16px;
    font-weight: 300;
}

/* Noise texture overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.35;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

/* --- Typography --- */
h1, h2, h3 {
    font-family: var(--serif);
    color: var(--text-color);
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.15;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 70px;
    line-height: 1.2;
    font-weight: 300;
}

h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--accent-color);
    margin: 20px auto 0;
}

h3 {
    font-size: 1.4rem;
    line-height: 1.3;
    font-weight: 400;
}

p {
    color: var(--text-light);
    font-size: 1.05rem;
    letter-spacing: 0.01em;
}

strong {
    color: var(--text-color);
    font-weight: 500;
}

/* Lighten text on hover for content blocks */
.process-step:hover p,
.about-text:hover p,
.case-study-block:hover p,
.forwho-item:hover p,
.article-toggle:hover .article-full-content p,
.form-placeholder:hover p {
    color: rgba(245,242,236,0.85);
    transition: color 0.3s ease;
}

/* --- Sections --- */
section {
    padding: 110px 0;
    scroll-margin-top: 80px;
}

/* Section backgrounds — clean dark, no brown */
#uslugi {
    background-color: #080807 !important;
    padding: 0 !important;
}

#wiedza,
#dla-kogo {
    background-color: #0A0A0C;
}

#o-nas,
#lustro,
#podejscie,
#kontakt {
    background-color: #0E0E10;
}

/* --- Header --- */
.main-header {
    background-color: rgba(13,13,13,0.92);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: padding 0.3s ease;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Language Toggle --- */
.lang-hidden {
    display: none !important;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.lang-toggle {
    background: none;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 5px 12px;
    font-family: var(--mono);
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    z-index: 10;
}

.lang-toggle:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

/* --- Logo --- */
.logo {
    text-decoration: none;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-img {
    height: 90px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo:hover .logo-img {
    opacity: 0.8;
}

/* --- Logo Text Mark --- */
.logo-text-mark {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.hex-icon {
    width: 28px;
    height: 28px;
    background: var(--gold-gradient);
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    flex-shrink: 0;
}

.logo-wordmark {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--text-color);
    white-space: nowrap;
}

/* --- Navigation --- */
.main-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.main-nav li {
    margin-left: 35px;
}

.main-nav a {
    text-decoration: none;
    color: rgba(245,242,236,0.9);
    font-family: var(--mono);
    font-weight: 400;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s var(--transition-smooth);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent-color);
}

/* --- Hamburger Menu --- */
.hamburger-menu {
    display: none;
    cursor: pointer;
    z-index: 10;
}

.hamburger-menu div {
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    margin: 6px 0;
    transition: 0.4s var(--transition-smooth);
}

/* --- Hero --- */
.hero {
    background-color: var(--primary-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle decorative gradient blob */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

/* Mirror & qualification cards — glassmorphism */
.mirror-card,
.qualification-card {
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--transition-smooth);
    border: 1px solid var(--card-border);
    box-shadow: var(--card-glow);
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.mirror-card:hover,
.qualification-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212,175,55,0.4);
    box-shadow: var(--card-glow-hover);
    background: rgba(255,255,255,0.05);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    margin-bottom: 30px;
}

.hero .subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    margin-bottom: 50px;
    text-align: left;
    border-left: 1px solid var(--accent-color);
    padding-left: 20px;
    line-height: 1.8;
    color: var(--text-light);
    font-family: var(--serif);
    font-style: italic;
}

/* --- CTA Button --- */
/* Subtle pulse glow on CTA buttons */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(212, 175, 55, 0.5); }
}

.cta-button {
    display: inline-block;
    background: var(--gold-gradient);
    color: #0A0A0C;
    padding: 16px 40px;
    text-decoration: none;
    font-family: var(--mono);
    font-weight: 500;
    font-size: 0.78rem;
    border-radius: 0;
    transition: all 0.3s var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    box-shadow: 0 4px 20px rgba(212,175,55,0.25);
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212,175,55,0.4);
    filter: brightness(1.1);
}

/* --- h4 (used in form placeholders, case study) --- */
h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* --- For Whom Section --- */

.forwho-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.forwho-yes {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.forwho-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
}

.forwho-item:first-child {
    border-top: 1px solid var(--border);
}

.forwho-num {
    font-family: var(--mono);
    font-size: 0.62rem;
    color: var(--accent-color);
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.forwho-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 4px;
}

.forwho-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.forwho-not {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--card-border);
    padding: 36px;
    margin-top: 8px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.forwho-not-label {
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-light) !important;
    margin-bottom: 20px !important;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.forwho-not ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.forwho-not ul li {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.forwho-not ul li::before {
    content: '\00d7';
    color: #555;
    font-family: var(--mono);
    flex-shrink: 0;
}

/* --- Partners Strip --- */
.partners-strip {
    padding: 40px 0;
    background-color: #0E0E10;
    text-align: center;
    border-top: 1px solid rgba(212,175,55,0.08);
    border-bottom: 1px solid rgba(212,175,55,0.08);
}

.partners-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.partner-logo {
    font-family: 'Lato', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--text-light);
    opacity: 0.85;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 0.8;
}

/* --- Sticky CTA Bar --- */
.sticky-cta {
    display: none;
}

/* --- About Section --- */
.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 0 0 300px;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transition: all 0.4s var(--transition-smooth);
}

.about-image::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--accent-color), rgba(201,168,76,0.1), var(--accent-color));
    z-index: -1;
    opacity: 0.3;
    transition: opacity 0.4s var(--transition-smooth);
}

.about-image:hover::before {
    opacity: 0.7;
}

.about-image:hover img {
    transform: scale(1.02);
    box-shadow: var(--card-shadow-hover);
}

.about-text {
    flex: 1;
    transition: transform 0.4s var(--transition-smooth);
}

.about-text:hover {
    transform: translateX(5px);
}

.about-text h3 {
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
}

/* --- Benefit Line (teaser label + gold divider) --- */
.benefit-line {
    font-family: var(--mono);
    font-weight: 400;
    font-size: 10px !important;
    text-transform: uppercase;
    letter-spacing: 3px !important;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.benefit-line::after {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: #C9A84C;
    margin: 14px 0 20px;
}

/* ELEVEN BEES — All-Cream Editorial Cards */

/* Grid — zero gap, flush panels */
#uslugi .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 !important;
    padding: 0 !important;
    background: #080807 !important;
}

/* ALL THREE CARDS — identical cream treatment */
#uslugi .service-card {
    background-color: #F0E6CC !important;
    border-radius: 0 !important;
    border: none !important;
    border-top: 2px solid #C9A84C !important;
    border-right: 1px solid #D4C4A0 !important;
    padding: 44px 36px !important;
    margin: 0 !important;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    text-align: left;
    transition: background-color 0.4s ease, border-top-color 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Last card — no right border */
#uslugi .service-card:last-child {
    border-right: none !important;
}

/* ALL text inside cards — dark on cream */
#uslugi .service-card * {
    color: #1A1408 !important;
}

/* Uppercase teaser labels */
#uslugi .service-card .benefit-line {
    color: #8B6914 !important;
}

/* H3 headings */
#uslugi .service-card h3 {
    color: #2C1F06 !important;
    font-weight: normal !important;
    font-size: 1.35rem;
    margin-bottom: 18px;
}

/* Body paragraphs (last p in each card) */
#uslugi .service-card p:last-child {
    color: #4A3C24 !important;
    line-height: 1.75 !important;
    font-size: 1rem;
}

/* Hover — cream deepens, gold brightens */
#uslugi .service-card:hover {
    background-color: #EDD9A3 !important;
    border-top-color: #E8C06A !important;
    transform: none;
    box-shadow: none;
}

/* --- Process Grid --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    text-align: center;
}

.process-step {
    padding: 30px 15px;
    border-radius: 2px;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    border-top: 2px solid var(--accent-color);
    box-shadow: var(--card-glow);
}

.process-step::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    transition: width 0.4s var(--transition-smooth);
    border-radius: 2px;
}

.process-step:hover {
    background: linear-gradient(180deg, rgba(212,175,55,0.25) 0%, rgba(201,168,76,0.08) 100%);
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 0 60px rgba(212,175,55,0.35), 0 0 120px rgba(212,175,55,0.12), 0 12px 40px rgba(0,0,0,0.4);
    border-color: rgba(212,175,55,0.6);
    border-top: 3px solid #F5D060;
}

.process-step:hover h3 {
    color: #F5D060;
    text-shadow: 0 0 20px rgba(212,175,55,0.3);
}

.process-step:hover p {
    color: #E8DFC8;
}

.process-step:hover::after {
    width: 100%;
    background: linear-gradient(90deg, transparent, #F5D060, transparent);
    height: 2px;
}

.process-step:hover .step-number {
    transform: scale(1.2);
    transition: transform 0.3s var(--transition-smooth);
    filter: brightness(1.6) drop-shadow(0 0 12px rgba(212,175,55,0.5));
}

.process-step .step-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 15px;
    transition: transform 0.3s var(--transition-smooth);
    display: inline-block;
}

.process-step h3 {
    margin: 10px 0;
    font-size: 1.2rem;
    color: var(--text-color);
    transition: color 0.4s ease;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-light);
    transition: color 0.4s ease;
}

/* --- Case Study --- */
.case-study-section {
    background-color: var(--secondary-color);
}

.case-study-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 0;
    padding: 50px 45px;
    box-shadow: var(--card-glow);
    position: relative;
    border: 1px solid var(--card-border);
    transition: all 0.4s var(--transition-smooth);
}

.case-study-card:hover {
    border-color: rgba(212,175,55,0.4);
    box-shadow: var(--card-glow-hover);
    transform: translateY(-4px);
}

.case-study-label {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-family: var(--mono);
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 5px 16px;
    border-radius: 0;
    margin-bottom: 20px;
}

.case-study-card h3 {
    font-size: 1.6rem;
    margin-bottom: 35px;
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.case-study-block h4 {
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.case-study-block p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- Knowledge Accordion --- */
.knowledge-accordion {
    max-width: 800px;
    margin: 0 auto;
    /* Outer glow — the whole accordion block floats on the dark page */
    box-shadow: 0 8px 60px rgba(0,0,0,0.5), 0 0 80px rgba(201,168,76,0.06);
    border-top: 2px solid #C9A84C;
}

/* --- Knowledge Accordion — Cream Editorial --- */
.article-toggle {
    background: #F5EDD8 !important;
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: inset 0 -8px 16px rgba(0,0,0,0.04);
    overflow: visible;
    transition: all 0.4s var(--transition-smooth);
    border: none;
    border-bottom: 1px solid #D4C4A0;
    border-left: 3px solid transparent;
    position: relative;
}

/* Hover — warm gold wash */
.article-toggle:hover {
    background: linear-gradient(135deg, #F0DDB0, #F5E8C8) !important;
    border-left-color: #C9A84C;
    box-shadow: inset 0 0 30px rgba(201,168,76,0.12), 0 4px 20px rgba(201,168,76,0.1);
}

/* Active/expanded — deeper gold */
.article-toggle.active {
    background: linear-gradient(135deg, #EACF8C, #F0DFB8) !important;
    border-left-color: #C9A84C;
    box-shadow: inset 0 4px 16px rgba(0,0,0,0.08), inset 0 0 20px rgba(201,168,76,0.1);
}

/* Each row — subtle shade variation for rhythm */
.article-toggle:nth-child(1) {
    background: #F5EDD8 !important;
}

.article-toggle:nth-child(2) {
    background: #F0E6CC !important;
}

.article-toggle:nth-child(3) {
    background: #EBE0C4 !important;
}

/* Last row — no bottom border */
.article-toggle:last-child {
    border-bottom: none;
}

.article-header {
    padding: 26px 32px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article-header h3 {
    margin: 0;
    font-size: 1.15rem;
    font-family: var(--sans);
    font-weight: 400;
    padding-right: 15px;
    color: #1A1408 !important;
    transition: color 0.3s ease;
}

.article-toggle:hover .article-header h3 {
    color: #8B6914 !important;
}

.article-icon {
    font-size: 1.5rem;
    color: #8B6914 !important;
    transition: all 0.4s var(--transition-smooth);
    font-family: 'serif';
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50%;
    font-size: 0.9rem;
}

.article-toggle:hover .article-icon {
    background: #C9A84C;
    color: #F5EDD8 !important;
    border-color: #C9A84C;
}

.article-full-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding: 0 28px;
}

.article-toggle.active .article-full-content {
    max-height: 1000px;
    padding: 0 28px 28px 28px;
}

.article-toggle.active .article-icon {
    transform: rotate(90deg);
}

.article-full-content p,
.article-full-content li {
    color: #1A1408 !important;
}

.article-full-content strong {
    color: #2C1F06 !important;
}

.article-full-content ul li {
    color: #1A1408 !important;
}

/* --- Contact --- */
.contact-form {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.contact-form p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* --- Contact Grid --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 30px;
}

/* --- Form Placeholder --- */
.form-placeholder {
    padding: 50px 40px;
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin-top: 20px;
    transition: all 0.4s var(--transition-smooth);
}

.form-placeholder:hover {
    transform: translateY(-4px);
    border-color: rgba(212,175,55,0.4);
    box-shadow: var(--card-glow-hover);
}

.form-placeholder p {
    margin-bottom: 15px;
}

/* --- Footer --- */
.main-footer {
    background-color: #0A0A09;
    color: rgba(245,242,236,0.5);
    text-align: center;
    padding: 50px 20px;
    border-top: 1px solid var(--border);
}

.main-footer p {
    color: rgba(245,242,236,0.7);
    font-size: 0.9rem;
    margin: 5px 0;
}

.main-footer a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-footer a:hover {
    color: #e8c84a;
}

.footer-social {
    margin-top: 15px;
}

.footer-social a {
    display: inline-block;
    border: 1px solid var(--accent-color);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s var(--transition-smooth);
}

.footer-social a:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

/* --- h4 dark theme fix --- */
h4 {
    color: var(--text-color);
}

/* --- Hero Supertitle --- */
.hero-supertitle {
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.hero-cta-sub {
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--text-light);
    letter-spacing: 0.08em;
    margin-top: 16px;
}

/* --- Partners Headline --- */
.partners-headline {
    font-family: var(--mono);
    font-size: 0.68rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-color);
    margin-bottom: 8px;
}

/* --- Section Intro --- */
.section-intro {
    text-align: center;
    max-width: 750px;
    margin: -40px auto 60px;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* --- About Intro --- */
.about-intro {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--text-color) !important;
    margin-bottom: 25px;
    border-left: 1px solid var(--accent-color);
    padding-left: 20px;
}

/* --- Mirror Section (Lustro) --- */
.mirror-section {
    background-color: #0E0E10;
}

.mirror-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mirror-card {
    padding: 40px 30px;
}

.mirror-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.mirror-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* --- Qualification Grid --- */
.qualification-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.qualification-card {
    padding: 45px 35px;
}

.qualification-badge {
    display: inline-block;
    font-family: var(--mono);
    font-size: 0.68rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 5px 16px;
    margin-bottom: 20px;
}

.qualification-card h3 {
    font-size: 1.5rem;
    margin-bottom: 18px;
    color: var(--text-color);
}

.qualification-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* --- Contact CTA Block --- */
.contact-cta-block {
    margin-top: 40px;
}

.contact-cta-sub {
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--text-light);
    letter-spacing: 0.08em;
    margin-top: 14px;
}

/* ===========================================
   Responsive
   =========================================== */

@media (max-width: 992px) {
    .services-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .case-study-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .mirror-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
        margin-bottom: 50px;
    }

    section {
        padding: 80px 0;
    }

    .container {
        padding: 0 20px;
    }

    /* Mobile nav */
    .hamburger-menu {
        display: block;
    }

    .main-nav {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: #0A0A09;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s var(--transition-smooth);
    }

    .main-nav.is-open {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        text-align: center;
    }

    .main-nav li {
        margin: 20px 0;
    }

    .main-nav a {
        color: var(--text-color);
        font-size: 1.2rem;
    }

    .main-nav a::after {
        display: none;
    }

    /* Layout */
    .about-content {
        flex-direction: column;
    }

    .about-image {
        flex: 0 0 auto;
        max-width: 250px;
        margin: 0 auto;
    }

    .services-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 35px 25px;
    }

    .case-study-card {
        padding: 30px 20px;
    }

    .contact-form {
        max-width: 100%;
    }

    /* Hero decorative blobs smaller on mobile */
    .hero::before {
        width: 250px;
        height: 250px;
    }

    .hero::after {
        width: 200px;
        height: 200px;
    }

    /* For Whom - mobile */
    .forwho-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Mirror - mobile */
    .mirror-grid {
        grid-template-columns: 1fr;
    }

    .mirror-card {
        padding: 30px 20px;
    }

    /* Qualification - mobile */
    .qualification-grid {
        grid-template-columns: 1fr;
    }

    .qualification-card {
        padding: 35px 25px;
    }

    .section-intro {
        margin: -20px auto 40px;
        font-size: 1rem;
    }

    /* Logo - mobile */
    .logo-img {
        height: 50px;
    }

    .logo-text-mark {
        display: none;
    }

    /* Hero - mobile */
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-supertitle {
        font-size: 0.65rem;
        letter-spacing: 0.1em;
    }

    .hero .subtitle {
        font-size: 1rem;
        margin-bottom: 35px;
    }

    .cta-button {
        padding: 14px 28px;
        font-size: 0.72rem;
        letter-spacing: 0.08em;
    }

    /* forwho-not - mobile */
    .forwho-not {
        padding: 24px 20px;
    }

    /* Accordion - mobile */
    .article-header {
        padding: 18px 18px;
    }

    .article-header h3 {
        font-size: 1rem;
    }

    .article-toggle.active .article-full-content {
        padding: 0 18px 18px 18px;
    }

    .article-full-content {
        padding: 0 18px;
    }

    /* Partners - mobile */
    .partners-logos {
        gap: 30px;
    }

    .partner-logo {
        font-size: 1.1rem;
    }

    /* Sticky CTA - mobile only */
    .sticky-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        background: #0A0A09;
        text-align: center;
        padding: 14px 20px;
        border-top: 1px solid var(--border);
    }

    .sticky-cta a {
        color: var(--accent-color);
        text-decoration: none;
        font-family: var(--mono);
        font-weight: 400;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.12em;
    }

    /* Prevent sticky bar from overlapping footer */
    .main-footer {
        padding-bottom: 80px;
    }
}