/* fachmans.ch — main stylesheet
   Palette: #1D4ED8 (primary blue), #F59E0B (amber), #10B981 (green), #F8FAFC (bg), #0F172A (text)
   Fonts: Plus Jakarta Sans (display), Inter (body)
*/

:root {
    --c-primary: #1D4ED8;
    --c-primary-dark: #1E40AF;
    --c-primary-light: #DBEAFE;
    --c-secondary: #F59E0B;
    --c-secondary-light: #FEF3C7;
    --c-accent: #10B981;
    --c-accent-light: #D1FAE5;
    --c-bg: #F8FAFC;
    --c-bg-alt: #FFFFFF;
    --c-text: #0F172A;
    --c-text-soft: #475569;
    --c-text-muted: #64748B;
    --c-border: #E2E8F0;
    --c-border-strong: #CBD5E1;

    --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 16px;
    --r-xl: 24px;
    --r-pill: 999px;

    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.12);
    --shadow-blue: 0 8px 32px rgba(29, 78, 216, 0.18);

    --container: 1200px;
    --section-py: 96px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--c-text);
    background: var(--c-bg);
    -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--c-primary); text-decoration: none; }
a:hover { color: var(--c-primary-dark); }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 .5em;
    color: var(--c-text);
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; color: var(--c-text-soft); }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: var(--r-md);
    font-weight: 600;
    font-family: var(--font-display);
    font-size: 15px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all .25s ease;
    white-space: nowrap;
}
.btn-primary {
    background: var(--c-primary);
    color: #fff;
    box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
    background: var(--c-primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(29, 78, 216, 0.28);
}
.btn-secondary {
    background: var(--c-secondary);
    color: #fff;
}
.btn-secondary:hover {
    background: #D97706;
    color: #fff;
    transform: translateY(-2px);
}
.btn-ghost {
    background: transparent;
    color: var(--c-primary);
    border-color: var(--c-primary-light);
}
.btn-ghost:hover {
    background: var(--c-primary-light);
}
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 18px 32px; font-size: 16px; }

/* WhatsApp button in header — branded green for instant recognition */
.nav-cta .btn-primary {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.32);
    border-color: #25D366;
}
.nav-cta .btn-primary:hover {
    background: #1FB855;
    color: #fff;
    border-color: #1FB855;
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
}

/* ============ HEADER ============ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid var(--c-border);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 24px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--c-text);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
}
.brand-mark { flex-shrink: 0; }
.brand-text { color: var(--c-text); }
.brand-dot { color: var(--c-secondary); }

.site-nav { display: flex; align-items: center; }
.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-list > li > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: var(--r-sm);
    color: var(--c-text-soft);
    font-weight: 500;
    font-size: 15px;
    transition: all .2s ease;
}
.nav-list > li > a:hover,
.nav-list > li > a.active {
    color: var(--c-primary);
    background: var(--c-primary-light);
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 320px;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all .2s ease;
    z-index: 110;
}
.dropdown-menu li a {
    display: block;
    padding: 12px 14px;
    border-radius: var(--r-sm);
    color: var(--c-text);
    font-size: 14px;
    font-weight: 500;
    transition: all .15s ease;
}
.dropdown-menu li a:hover {
    background: var(--c-primary-light);
    color: var(--c-primary);
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-toggle svg { transition: transform .25s ease; }
.has-dropdown:hover .dropdown-toggle svg,
.has-dropdown.open .dropdown-toggle svg { transform: rotate(180deg); }

.lang-switch a {
    padding: 8px 14px;
    border-radius: var(--r-pill);
    border: 1.5px solid var(--c-border-strong);
    color: var(--c-text-soft);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.05em;
}
.lang-switch a:hover { border-color: var(--c-primary); color: var(--c-primary); }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-text);
    border-radius: 2px;
    transition: all .3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
    padding: 80px 0 96px;
    background: linear-gradient(180deg, #fff 0%, var(--c-bg) 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--c-primary-light) 0%, transparent 60%);
    opacity: .55;
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--c-primary-light);
    color: var(--c-primary);
    border-radius: var(--r-pill);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}
.hero h1 { margin-bottom: 24px; }
.hero p.lead {
    font-size: 1.18rem;
    color: var(--c-text-soft);
    max-width: 560px;
    margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: var(--r-xl);
    background: linear-gradient(135deg, var(--c-primary) 0%, #2563EB 100%);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.18) 0, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.25) 0, transparent 40%);
}
.hero-visual .pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 32px 32px;
}
.hero-visual .person-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.85);
    font-family: var(--font-display);
    text-align: center;
    padding: 24px;
}
.hero-visual .person-placeholder svg { width: 120px; height: 120px; margin-bottom: 16px; opacity: 0.95; }
.hero-visual .person-placeholder p { color: rgba(255,255,255,0.92); font-weight: 600; margin: 0; }
.hero-visual .hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.story-image .story-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--c-border);
}
.hero-stats .stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--c-primary);
    line-height: 1;
}
.hero-stats .stat span {
    font-size: 13px;
    color: var(--c-text-muted);
}

/* ============ SECTIONS ============ */
.section {
    padding: var(--section-py) 0;
}
.section-alt { background: #fff; }
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}
.section-head .eyebrow {
    display: inline-block;
    color: var(--c-primary);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 1.1rem; }

/* Services grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    padding: 32px;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    transition: all .3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--c-primary-light);
    box-shadow: var(--shadow-md);
    color: inherit;
}
.service-card .icon {
    width: 56px;
    height: 56px;
    border-radius: var(--r-md);
    background: var(--c-primary-light);
    color: var(--c-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all .3s ease;
}
.service-card:hover .icon {
    background: var(--c-primary);
    color: #fff;
    transform: scale(1.05);
}
.service-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.service-card p { margin-bottom: 24px; flex: 1; font-size: 15px; }
.service-card .more {
    color: var(--c-primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.service-card .more::after {
    content: "→";
    transition: transform .25s ease;
}
.service-card:hover .more::after { transform: translateX(4px); }

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-content h2 { margin-bottom: 24px; }
.benefits {
    margin: 32px 0;
}
.benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--c-border);
    color: var(--c-text);
}
.benefits li::before {
    content: "✓";
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--c-accent-light);
    color: var(--c-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-top: 2px;
}

.mission-card {
    padding: 40px;
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
    border-radius: var(--r-xl);
    color: #fff;
    box-shadow: var(--shadow-blue);
}
.mission-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 16px;
}
.mission-card p { color: rgba(255, 255, 255, 0.92); margin-bottom: 0; font-size: 1.05rem; }
.mission-card .icon {
    width: 56px;
    height: 56px;
    border-radius: var(--r-md);
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #fff;
}

/* Stats */
.stats-section {
    background: linear-gradient(135deg, var(--c-primary-dark) 0%, #1E3A8A 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(245, 158, 11, 0.18) 0, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.18) 0, transparent 40%);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    text-align: center;
    position: relative;
}
.stat-item .number {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 12px;
}
.stat-item .number span { color: var(--c-secondary); }
.stat-item .label {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* Process */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: step;
}
.process-step {
    position: relative;
    padding: 36px 28px;
    background: #fff;
    border-radius: var(--r-lg);
    border: 1px solid var(--c-border);
    counter-increment: step;
    transition: all .3s ease;
}
.process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-primary-light);
}
.process-step::before {
    content: counter(step, decimal-leading-zero);
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--c-primary);
    margin-bottom: 16px;
}
.process-step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.process-step p { margin-bottom: 0; font-size: 14px; }

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.testimonial-card {
    padding: 36px;
    background: #fff;
    border-radius: var(--r-lg);
    border: 1px solid var(--c-border);
    transition: all .3s ease;
    position: relative;
}
.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.testimonial-card .stars {
    color: var(--c-secondary);
    font-size: 18px;
    margin-bottom: 16px;
}
.testimonial-card blockquote {
    margin: 0 0 24px;
    padding: 0;
    font-size: 1.05rem;
    color: var(--c-text);
    line-height: 1.6;
    font-style: italic;
}
.testimonial-card cite {
    display: block;
    font-style: normal;
}
.testimonial-card cite strong {
    display: block;
    font-family: var(--font-display);
    color: var(--c-text);
    font-size: 15px;
}
.testimonial-card cite span {
    color: var(--c-text-muted);
    font-size: 13px;
}

/* Contact form */
.contact-section {
    background: var(--c-bg-alt);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { font-size: 1.05rem; margin-bottom: 32px; }
.contact-info ul li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    color: var(--c-text);
    font-size: 15px;
    border-bottom: 1px solid var(--c-border);
}
.contact-info ul li svg {
    color: var(--c-primary);
    flex-shrink: 0;
}
.contact-info ul li a { color: var(--c-text); }
.contact-info ul li a:hover { color: var(--c-primary); }

.contact-form {
    padding: 40px;
    background: #fff;
    border-radius: var(--r-xl);
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--c-text);
    font-size: 14px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-md);
    font-family: inherit;
    font-size: 15px;
    color: var(--c-text);
    background: #fff;
    transition: all .2s ease;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 4px var(--c-primary-light);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-status {
    padding: 14px 16px;
    border-radius: var(--r-md);
    margin-bottom: 16px;
    font-size: 14px;
    display: none;
}
.form-status.success { background: var(--c-accent-light); color: #047857; display: block; }
.form-status.error { background: #FEE2E2; color: #B91C1C; display: block; }

/* CTA section */
.cta-section {
    padding: 96px 0;
    background: linear-gradient(135deg, var(--c-secondary) 0%, #D97706 100%);
    color: #fff;
    text-align: center;
}
.cta-section h2 {
    color: #fff;
    margin-bottom: 16px;
    font-size: clamp(2rem, 4vw, 2.8rem);
}
.cta-section p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.15rem;
    margin-bottom: 36px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}
.cta-section .btn {
    background: #fff;
    color: var(--c-secondary);
    border-color: #fff;
}
.cta-section .btn:hover {
    background: var(--c-text);
    color: #fff;
    border-color: var(--c-text);
}

/* Footer */
.site-footer {
    background: #0F172A;
    color: #CBD5E1;
    padding: 80px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
    gap: 48px;
    margin-bottom: 48px;
}
.brand-light .brand-text { color: #fff; }
.brand-light .brand-dot { color: var(--c-secondary); }
.footer-desc {
    color: #94A3B8;
    margin-top: 16px;
    max-width: 320px;
    font-size: 14px;
}
.footer-col h4 {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 14px;
    transition: color .2s ease;
}
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid #1E293B;
    text-align: center;
    color: #64748B;
    font-size: 13px;
}

/* WhatsApp FAB */
.whatsapp-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 90;
    transition: all .3s ease;
}
.whatsapp-fab:hover {
    transform: scale(1.08);
    color: #fff;
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}

/* ============ SERVICE PAGE ============ */
.service-hero {
    padding: 80px 0 64px;
    background: linear-gradient(180deg, #fff 0%, var(--c-bg) 100%);
}
.service-hero .breadcrumbs {
    display: flex;
    gap: 8px;
    font-size: 13px;
    color: var(--c-text-muted);
    margin-bottom: 24px;
}
.service-hero .breadcrumbs a { color: var(--c-text-muted); }
.service-hero .breadcrumbs a:hover { color: var(--c-primary); }
.service-hero h1 { max-width: 760px; }
.service-hero p.lead { max-width: 680px; font-size: 1.18rem; color: var(--c-text-soft); margin-bottom: 32px; }

.service-block {
    padding: 64px 0;
}
.service-block.alt { background: #fff; }
.service-block h2 { margin-bottom: 24px; max-width: 680px; }
.service-block .columns-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
.service-block .columns-2 p { font-size: 1.05rem; }

.deliverables {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}
.deliverables li {
    padding: 18px 22px;
    background: var(--c-bg);
    border-radius: var(--r-md);
    border-left: 4px solid var(--c-primary);
    font-weight: 500;
    color: var(--c-text);
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--c-border);
    padding: 8px 0;
}
.faq-item summary {
    cursor: pointer;
    padding: 20px 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--c-text);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    font-size: 1.6rem;
    color: var(--c-primary);
    line-height: 1;
    transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 0 24px; color: var(--c-text-soft); }

.related-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}
.related-services .service-card { padding: 24px; }
.related-services .service-card h3 { font-size: 1.05rem; }
.related-services .service-card .icon { width: 44px; height: 44px; margin-bottom: 16px; }

/* ============ ABOUT PAGE ============ */
.page-hero {
    padding: 80px 0 64px;
    background: linear-gradient(180deg, #fff 0%, var(--c-bg) 100%);
    text-align: center;
}
.page-hero .breadcrumbs {
    justify-content: center;
}
.page-hero p.lead {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.18rem;
    color: var(--c-text-soft);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.story-image {
    aspect-ratio: 4 / 5;
    background: linear-gradient(135deg, var(--c-primary) 0%, #2563EB 100%);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.story-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.18) 0, transparent 50%);
}
.story-image .person-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 24px;
}
.story-image .person-placeholder svg { width: 110px; height: 110px; margin-bottom: 16px; }
.story-image .person-placeholder p { color: #fff; font-weight: 600; margin: 0; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.value-card {
    padding: 32px;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
}
.value-card .icon {
    width: 56px;
    height: 56px;
    border-radius: var(--r-md);
    background: var(--c-secondary-light);
    color: var(--c-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.value-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.value-card p { font-size: 14px; margin: 0; }

/* ============ BLOG ============ */
.blog-listing {
    display: grid;
    grid-template-columns: 2.4fr 1fr;
    gap: 64px;
    align-items: start;
}
.blog-posts {
    display: grid;
    gap: 24px;
}
.blog-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 24px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    transition: all .3s ease;
    color: inherit;
    text-decoration: none;
}
.blog-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: inherit;
}
.blog-card .thumb {
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, var(--c-primary-light), var(--c-secondary-light));
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-primary);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2rem;
    overflow: hidden;
}
.blog-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.blog-card:hover .thumb img { transform: scale(1.04); }
.blog-card .meta { font-size: 13px; color: var(--c-text-muted); margin-bottom: 8px; }
.blog-card h2 { font-size: 1.25rem; margin-bottom: 8px; }
.blog-card p { font-size: 14px; margin: 0; }

.blog-sidebar { position: sticky; top: 96px; }
.sidebar-widget {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    margin-bottom: 24px;
}
.sidebar-widget h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    color: var(--c-primary);
}
.sidebar-widget ul li { margin-bottom: 12px; font-size: 14px; }
.sidebar-widget ul li a { color: var(--c-text); }
.sidebar-widget ul li a:hover { color: var(--c-primary); }

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}
.pagination a, .pagination span {
    padding: 10px 16px;
    border-radius: var(--r-md);
    background: #fff;
    border: 1px solid var(--c-border);
    color: var(--c-text);
    text-decoration: none;
    font-weight: 500;
}
.pagination a:hover { background: var(--c-primary-light); border-color: var(--c-primary); color: var(--c-primary); }
.pagination .current { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }

/* Blog article — scoped */
.blog-article-page article {
    max-width: 760px;
    margin: 0 auto;
}
.blog-article-page .article-header { margin-bottom: 40px; }
.blog-article-page .article-meta { font-size: 13px; color: var(--c-text-muted); margin-bottom: 16px; }
.blog-article-page .article-body { font-size: 1.08rem; line-height: 1.8; color: var(--c-text); }
.blog-article-page .article-body p { color: var(--c-text); margin-bottom: 1.2em; }
.blog-article-page .article-body h2,
.blog-article-page .article-body h3 { margin-top: 1.6em; }
.blog-article-page .article-body img { border-radius: var(--r-md); margin: 1em 0; }
.blog-article-page .article-body a { color: var(--c-primary); text-decoration: underline; }
.blog-article-page .article-body .lead-p { font-size: 1.18rem; color: var(--c-text); font-weight: 500; line-height: 1.6; margin-bottom: 1.5em; }
.blog-article-page .article-body ul,
.blog-article-page .article-body ol { padding-left: 1.4em; margin: 1em 0 1.4em; color: var(--c-text); }
.blog-article-page .article-body li { margin-bottom: .5em; }
.blog-article-page .article-cover {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
}

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    :root { --section-py: 72px; }
    .hero-grid, .about-grid, .contact-grid, .story-grid { grid-template-columns: 1fr; gap: 48px; }
    .services-grid, .related-services { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .blog-listing { grid-template-columns: 1fr; }
    .blog-sidebar { position: static; }
}

@media (max-width: 768px) {
    :root { --section-py: 64px; }
    .header-inner { height: 64px; }
    .nav-toggle { display: flex; }
    .nav-list {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid var(--c-border);
        box-shadow: var(--shadow-md);
        max-height: calc(100vh - 64px);
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform .3s ease;
    }
    .nav-list.open { transform: translateX(0); }
    .nav-list > li { width: 100%; }
    .nav-list > li > a { width: 100%; padding: 14px 16px; }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 16px;
        min-width: 0;
        display: none;
    }
    .has-dropdown.open .dropdown-menu { display: block; }
    .nav-cta { margin-top: 12px; }
    .nav-cta .btn { width: 100%; justify-content: center; }
    .lang-switch { margin-top: 8px; }

    .hero { padding: 48px 0 64px; }
    .hero-stats { gap: 16px; flex-wrap: wrap; }
    .services-grid, .related-services, .testimonials-grid, .deliverables, .values-grid {
        grid-template-columns: 1fr;
    }
    .process-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr; }
    .service-block .columns-2 { grid-template-columns: 1fr; gap: 24px; }
    .contact-form { padding: 28px; }
    .blog-card { grid-template-columns: 1fr; }
    .blog-card .thumb { width: 100%; }
    .whatsapp-fab { width: 54px; height: 54px; bottom: 20px; right: 20px; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.7rem; }
    .section-head h2 { font-size: 1.9rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .hero h1 { font-size: 2rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; justify-content: center; }
}
