/*
Theme Name: ScaleOps
Theme URI: https://scale-ops.es
Author: Volodymyr Hapey
Author URI: https://scale-ops.es
Description: ScaleOps — Fractional COO & Operations Consultant for Startups. Single-page marketing theme for ScaleOps Madrid.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: scaleops
Tags: one-page, business, consulting, responsive
*/

/* ── COOKIE BANNER ──────────────────────────────────────────── */
.cookie-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(15,26,46,0.45);
    z-index: 9998;
    backdrop-filter: blur(2px);
}
.cookie-overlay.visible { display: block; }

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 24px; left: 50%; transform: translateX(-50%);
    width: min(680px, calc(100vw - 32px));
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.14);
    padding: 28px 32px;
    z-index: 9999;
    font-family: 'DM Sans', sans-serif;
}
.cookie-banner.visible { display: block; }
.cookie-banner h3 {
    font-size: 1.05rem; font-weight: 700; color: #0F1A2E;
    margin-bottom: 12px;
}
.cookie-banner p {
    font-size: 0.88rem; color: #64748b; line-height: 1.65;
    margin-bottom: 20px;
}
.cookie-actions {
    display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
}
.cookie-btn {
    padding: 10px 20px; border-radius: 8px; font-size: 0.85rem;
    font-weight: 600; cursor: pointer; transition: all 0.2s;
    font-family: 'DM Sans', sans-serif; border: none; white-space: nowrap;
}
.cookie-btn-accept { background: #0F1A2E; color: #ffffff; }
.cookie-btn-accept:hover { background: #3b82f6; transform: translateY(-1px); }
.cookie-btn-reject {
    background: #f8fafc; color: #2d3748;
    border: 1.5px solid #e2e8f0 !important;
}
.cookie-btn-reject:hover { border-color: #0F1A2E !important; color: #0F1A2E; }
.cookie-btn-manage {
    background: transparent; color: #64748b;
    text-decoration: underline; padding: 10px 8px;
}
.cookie-btn-manage:hover { color: #0F1A2E; }

/* Preferences modal */
.cookie-prefs {
    display: none;
    position: fixed; inset: 0;
    z-index: 10000;
    align-items: center; justify-content: center;
    background: rgba(15,26,46,0.45);
    backdrop-filter: blur(2px);
}
.cookie-prefs.visible { display: flex; }
.cookie-prefs-box {
    background: #ffffff; border-radius: 20px;
    padding: 32px; width: min(480px, calc(100vw - 32px));
    box-shadow: 0 24px 64px rgba(0,0,0,0.18);
    border: 1.5px solid #e2e8f0;
}
.cookie-prefs-box h3 {
    font-size: 1.1rem; font-weight: 700; color: #0F1A2E;
    margin-bottom: 8px;
}
.cookie-prefs-box > p {
    font-size: 0.85rem; color: #64748b; margin-bottom: 24px; line-height: 1.6;
}
.cookie-pref-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 0; border-bottom: 1px solid #e2e8f0;
}
.cookie-pref-row:last-of-type { border-bottom: none; }
.cookie-pref-label { font-size: 0.9rem; font-weight: 600; color: #0F1A2E; }
.cookie-pref-desc { font-size: 0.8rem; color: #64748b; margin-top: 2px; }
.cookie-toggle { position: relative; width: 44px; height: 24px; flex-shrink: 0; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-slider {
    position: absolute; inset: 0; cursor: pointer;
    background: #cbd5e1; border-radius: 24px; transition: 0.2s;
}
.cookie-toggle-slider:before {
    content: ''; position: absolute;
    width: 18px; height: 18px; left: 3px; bottom: 3px;
    background: white; border-radius: 50%; transition: 0.2s;
}
.cookie-toggle input:checked + .cookie-toggle-slider { background: #3b82f6; }
.cookie-toggle input:checked + .cookie-toggle-slider:before { transform: translateX(20px); }
.cookie-toggle input:disabled + .cookie-toggle-slider { cursor: not-allowed; opacity: 0.6; }
.cookie-prefs-actions { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }

@media (max-width: 600px) {
    .cookie-banner { padding: 20px; bottom: 16px; }
    .cookie-actions { flex-direction: column; align-items: stretch; }
    .cookie-btn, .cookie-btn-manage { text-align: center; }
}

/* ── CORE STYLES ──────────────────────────────────────────── */
:root {
    --navy: #0F1A2E;
    --dark: #1a1a2e;
    --slate: #2d3748;
    --gray: #64748b;
    --light-gray: #94a3b8;
    --off-white: #f8fafc;
    --white: #ffffff;
    --accent: #3b82f6;
    --accent-light: #60a5fa;
    --accent-soft: #eff6ff;
    --teal: #0d9488;
    --teal-soft: #f0fdfa;
    --border: #e2e8f0;
    --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.04), 0 2px 4px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.06), 0 4px 10px rgba(0,0,0,0.04);
    --radius: 12px;
    --radius-lg: 20px;
}
* { margin: 0; padding: 0; box-sizing: border-box; border-radius: 20px; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: 'DM Sans', sans-serif;
    color: var(--slate);
    line-height: 1.7;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100vw;
}
.serif { font-family: 'Instrument Serif', serif; }

/* NAV */
nav {
    position: fixed;
    top: var(--scarcity-height, 0px);
    width: 100%;
    z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    isolation: isolate;
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo-img {
    max-height: 80px;
    height: 100%;
    width: auto;
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
}
.logo {
    font-weight: 700; font-size: 1.35rem; color: var(--navy);
    text-decoration: none; letter-spacing: -0.5px;
}
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
    text-decoration: none; color: var(--gray); font-size: 0.9rem;
    font-weight: 500; transition: color 0.2s;
}
.nav-links a.call-button {
    background: var(--navy); color: var(--white); padding: 14px 32px;
    border-radius: 10px; text-decoration: none; font-size: 1rem;
    font-weight: 600; transition: all 0.25s; display: inline-flex;
    align-items: center; gap: 8px; border: none; cursor: pointer;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.call-button:hover { background: var(--accent); color: white; }
.lang-toggle {
    display: flex; gap: 4px; background: var(--off-white);
    border-radius: 8px; padding: 3px;
}
.lang-btn {
    padding: 4px 10px; border-radius: 6px; border: none;
    background: transparent; cursor: pointer; font-size: 0.8rem;
    font-weight: 600; color: var(--gray); transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
}
.lang-btn.active { background: var(--white); color: var(--navy); box-shadow: var(--shadow); }
.btn-nav {
    background: var(--navy); color: var(--white); padding: 10px 22px;
    border-radius: 8px; text-decoration: none; font-size: 0.88rem;
    font-weight: 600; transition: all 0.2s; border: none; cursor: pointer;
}
.btn-nav:hover { background: var(--accent); transform: translateY(-1px); }

/* HERO */
.hero {
    padding: 160px 24px 100px;
    max-width: 1200px; margin: 0 auto;
    text-align: center;
}
.hero-badge {
    display: inline-block; padding: 6px 16px;
    background: var(--accent-soft); color: var(--accent);
    border-radius: 100px; font-size: 0.82rem; font-weight: 600;
    margin-bottom: 28px; letter-spacing: 0.3px;
}
.hero h1 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    line-height: 1.12;
    color: var(--navy);
    max-width: 880px; margin: 0 auto 24px;
    font-weight: 400;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero p.hero-desc {
    font-size: 1.15rem; color: var(--gray);
    max-width: 600px; margin: 0 auto 16px;
    line-height: 1.75;
}
.hero-small-note {
    font-size: 0.9rem;
    color: var(--light-gray);
    margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
    background: var(--navy); color: var(--white); padding: 14px 32px;
    border-radius: 10px; text-decoration: none; font-size: 1rem;
    font-weight: 600; transition: all 0.25s; display: inline-flex;
    align-items: center; gap: 8px; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-secondary {
    background: transparent; color: var(--slate); padding: 14px 32px;
    border-radius: 10px; text-decoration: none; font-size: 1rem;
    font-weight: 600; transition: all 0.25s; display: inline-flex;
    align-items: center; gap: 8px; border: 1.5px solid var(--border); cursor: pointer;
}
.btn-secondary:hover { border-color: var(--navy); color: var(--navy); }
.hero-stats {
    display: flex; justify-content: center; gap: 64px;
    margin-top: 72px; padding-top: 48px;
    border-top: 1px solid var(--border);
}
.hero-stat h3 { font-size: 2rem; color: var(--navy); font-weight: 700; letter-spacing: -1px; }
.hero-stat p { font-size: 0.85rem; color: var(--gray); margin-top: 4px; }

/* SECTIONS */
section { padding: 100px 24px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
    font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.section-title {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--navy); line-height: 1.2;
    max-width: 600px; font-weight: 400;
}
.section-subtitle {
    font-size: 1.05rem; color: var(--gray);
    max-width: 550px; margin-top: 16px; line-height: 1.7;
}
.section-header { margin-bottom: 56px; }

/* PROBLEMS */
.problems { background: var(--off-white); }
.problems-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.problem-card {
    background: var(--white); border-radius: var(--radius);
    padding: 32px; border: 1px solid var(--border);
    transition: all 0.25s;
}
.problem-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.problem-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 20px;
}
.problem-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 10px; font-weight: 600; }
.problem-card p { font-size: 0.92rem; color: var(--gray); line-height: 1.65; }

/* SERVICES */
.services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}
.service-card {
    border: 1.5px solid var(--border); border-radius: var(--radius-lg);
    padding: 40px 36px; position: relative; transition: all 0.25s;
    background: var(--white);
}
.service-card:hover { border-color: var(--accent); box-shadow: var(--shadow-lg); }
.service-card.featured { border-color: var(--accent); background: var(--navy); color: var(--white); }
.service-card.featured h3,
.service-card.featured .service-price { color: var(--white); }
.service-card.featured p,
.service-card.featured li { color: #cbd5e1; }
.service-card.featured .service-badge { background: var(--accent); color: var(--white); }
.service-badge {
    display: inline-block; padding: 4px 12px;
    background: var(--accent-soft); color: var(--accent);
    border-radius: 6px; font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 20px;
}
.service-card h3 { font-size: 1.35rem; color: var(--navy); margin-bottom: 8px; font-weight: 700; }
.service-card > p { font-size: 0.92rem; color: var(--gray); margin-bottom: 24px; }
.service-price { font-size: 1.6rem; font-weight: 700; color: var(--navy); margin-bottom: 24px; text-align: center; }
.service-price span { font-size: 0.9rem; font-weight: 400; color: var(--gray); }
.service-card ul { list-style: none; margin-bottom: 28px; }
.service-card li {
    padding: 6px 0; font-size: 0.9rem; color: var(--slate);
    display: flex; align-items: flex-start; gap: 10px;
}
.service-card li::before { content: "\2713"; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.service-card.featured li::before { color: var(--accent-light); }
.service-card .btn-primary { width: 100%; justify-content: center; text-align: center; }
.service-card.featured .btn-primary { background: var(--accent); }
.service-card.featured .btn-primary:hover { background: var(--accent-light); }
.custom-box {
    margin-top: 32px; padding: 28px 32px; border-radius: var(--radius);
    border: 1.5px dashed var(--border); background: var(--off-white);
    display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.custom-box-text { flex: 1; min-width: 280px; }
.custom-box-text h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 6px; font-weight: 600; }
.custom-box-text p { font-size: 0.9rem; color: var(--gray); line-height: 1.65; }
.custom-box .btn-primary { flex-shrink: 0; padding: 12px 28px; font-size: 0.92rem; }

/* PROCESS */
.process { background: var(--off-white); }
.process-steps {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; position: relative;
}
.process-step { text-align: center; padding: 32px 24px; position: relative; }
.step-num {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--navy); color: var(--white);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 700; margin-bottom: 20px;
}
.process-step h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; font-weight: 600; }
.process-step p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }

/* CASE STUDIES */
.case-study-card {
    background: var(--navy); border-radius: var(--radius-lg);
    padding: 56px; display: grid; grid-template-columns: 1fr 1fr;
    gap: 56px; align-items: center;
}
.case-study-card h3 {
    font-family: 'Instrument Serif', serif;
    font-size: 1.8rem; color: var(--white); margin-bottom: 16px; font-weight: 400;
}
.case-study-card p { color: #94a3b8; font-size: 0.95rem; line-height: 1.75; margin-bottom: 20px; }
.case-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.case-metric {
    background: rgba(255,255,255,0.06); border-radius: var(--radius);
    padding: 24px; text-align: center;
}
.case-metric h4 { font-size: 1.8rem; color: var(--accent-light); font-weight: 700; }
.case-metric p { color: #94a3b8; font-size: 0.82rem; margin-top: 4px; }

/* ABOUT */
.about { background: var(--off-white); }
.about-grid {
    display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: center;
}
.about-photo {
    width: 100%; aspect-ratio: 4/5;
    border-radius: var(--radius-lg); display: flex;
    align-items: center; justify-content: center; color: var(--gray);
    font-size: 0.9rem; overflow: hidden;
}
.about-photo img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    display: block; max-width: 100%;
}
.about-content h3 {
    font-family: 'Instrument Serif', serif;
    font-size: 2rem; color: var(--navy); margin-bottom: 20px; font-weight: 400;
}
.about-content p { margin-bottom: 16px; color: var(--slate); font-size: 0.95rem; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.about-tag {
    padding: 6px 14px; background: var(--navy); border: 1px solid var(--border);
    border-radius: 100px; font-size: 0.82rem; color: white; font-weight: 500;
}
.about-tag:hover {
    color: white;
    cursor: pointer;
    transform: translateY(-2px);
}

/* FAQ */
.faq { background: var(--off-white); }
.faq-grid { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 24px 0; }
.faq-q {
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; background: none; border: none; width: 100%;
    text-align: left; font-family: 'DM Sans', sans-serif;
    font-size: 1.02rem; font-weight: 600; color: var(--navy);
    padding: 0; line-height: 1.5;
}
.faq-q::after { content: "+"; font-size: 1.4rem; color: var(--gray); transition: transform 0.2s; flex-shrink: 0; margin-left: 16px; }
.faq-q.active::after { content: "\2212"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { padding-top: 12px; font-size: 0.92rem; color: var(--gray); line-height: 1.7; }

/* CTA */
.cta-section { background: var(--navy); text-align: center; }
.cta-section h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--white); margin-bottom: 16px; font-weight: 400;
}
.cta-section p { color: white; font-size: 1.05rem; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-section .btn-primary { background: var(--accent); font-size: 1.05rem; padding: 16px 40px; }
.cta-section .btn-primary:hover { background: var(--accent-light); }

/* FOOTER */
footer { padding: 56px 24px 32px; border-top: 1px solid var(--border); }
.footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 24px;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { text-decoration: none; color: var(--gray); font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--navy); }
.footer-copy { font-size: 0.82rem; color: var(--light-gray); }

/* MOBILE STICKY CTA */
.nav-mobile-cta { display: none; }
.btn-mobile-cta {
    background: var(--navy); color: var(--white);
    padding: 10px 18px; border-radius: 10px; text-decoration: none;
    font-size: 0.88rem; font-weight: 600;
    white-space: nowrap; transition: all 0.25s;
    border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-mobile-cta:hover { background: var(--accent); transform: translateY(-1px); }

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    flex-shrink: 0;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: all 0.3s ease;
    border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* TRUST BAR */
.trust-bar {
    background: var(--off-white); border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border); padding: 20px 24px;
}
.trust-bar-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: center;
    gap: 40px; flex-wrap: wrap;
}
.trust-bar-label {
    font-size: 0.78rem; font-weight: 700; color: var(--light-gray);
    letter-spacing: 1.2px; text-transform: uppercase; white-space: nowrap;
}
.trust-items { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; justify-content: center; }
.trust-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.85rem; color: var(--gray); font-weight: 500;
}
.trust-item .trust-icon { font-size: 1rem; }

/* LEAD MAGNET */
.lead-magnet {
    background: linear-gradient(135deg, var(--accent-soft) 0%, #f0f9ff 100%);
    border: 1.5px solid #bfdbfe; border-radius: var(--radius-lg);
    padding: 40px 48px; display: flex; align-items: center;
    gap: 40px; flex-wrap: wrap; margin-top: 64px;
}
.lead-magnet-icon { font-size: 3rem; flex-shrink: 0; }
.lead-magnet-text { flex: 1; min-width: 260px; }
.lead-magnet-text h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: 8px; font-weight: 700; }
.lead-magnet-text p { font-size: 0.92rem; color: var(--gray); line-height: 1.6; }
.lead-magnet-form { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
.lead-magnet-input {
    padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 8px;
    font-size: 0.92rem; font-family: 'DM Sans', sans-serif; outline: none;
    width: 220px; transition: border-color 0.2s;
}
.lead-magnet-input:focus { border-color: var(--accent); }
.btn-accent {
    background: var(--accent); color: var(--white); padding: 12px 24px;
    border-radius: 8px; border: none; font-size: 0.92rem; font-weight: 600;
    cursor: pointer; transition: all 0.2s; font-family: 'DM Sans', sans-serif;
    white-space: nowrap;
}
.btn-accent:hover { background: #2563eb; transform: translateY(-1px); }
.lead-magnet-success { display: none; color: var(--teal); font-weight: 600; font-size: 0.92rem; }

/* MINI CASE STUDIES */
.case-studies-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px; margin-top: 32px;
}
.case-mini-card {
    background: var(--white); border: 1.5px solid var(--border);
    border-radius: var(--radius-lg); padding: 32px; transition: all 0.25s;
}
.case-mini-card:hover { border-color: var(--accent); box-shadow: var(--shadow-lg); }
.case-mini-badge {
    display: inline-block; padding: 4px 12px; border-radius: 6px;
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.5px; margin-bottom: 16px;
    background: var(--teal-soft); color: var(--teal);
}
.case-mini-card h4 { font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; font-weight: 700; }
.case-mini-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.65; margin-bottom: 20px; }
.case-mini-metrics { display: flex; gap: 24px; }
.case-mini-metric { text-align: center; }
.case-mini-metric h5 { font-size: 1.5rem; color: var(--accent); font-weight: 700; }
.case-mini-metric p { font-size: 0.78rem; color: var(--gray); margin-top: 2px; }

/* SCARCITY BANNER */
.scarcity-bar { display: none; }

/* ANIMATIONS */
.fade-in {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-mobile-cta { display: flex; align-items: center; }
    .nav-links {
        display: none;
        position: fixed;
        top: calc(var(--scarcity-height, 0px) + 64px);
        left: 0; right: 0;
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 24px 28px;
        gap: 18px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        z-index: 99;
    }
    .nav-links.open { display: flex; }
    .nav-links .call-button { display: none !important; }
    .lang-toggle { align-self: flex-start; }
    .hero-stats { flex-direction: column; gap: 24px; align-items: center; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
    .case-study-card { grid-template-columns: 1fr; padding: 36px; gap: 32px; }
    .about-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    section { padding: 64px 20px; }
    .hero { padding: 140px 20px 64px; }
    .nav-logo-img { height: 40px; }
    .custom-box { flex-direction: column; text-align: center; }
    .section-header { text-align: center; }
    .section-title { max-width: 100%; }
    .section-subtitle { max-width: 100%; margin-left: auto; margin-right: auto; }
    .about-grid { gap: 32px; }
    .about-photo { max-width: 320px; margin: 0 auto; aspect-ratio: 3/4; }
    .about-content h3 { text-align: center; }
    .about-tags { justify-content: center; }
    .custom-box-text { min-width: 0; }
    .lead-magnet-text { min-width: 0; }
    .lead-magnet-form { width: 100%; flex-direction: column; }
    .lead-magnet-input { width: 100%; }
    section, .container, .trust-bar-inner { max-width: 100%; }
    .footer-inner { flex-direction: column; align-items: center; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    .process-step { padding: 20px 12px; }
    .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
    .trust-items { gap: 16px; }
    .lead-magnet { padding: 28px 24px; flex-direction: column; }
    .lead-magnet-form { width: 100%; }
    .lead-magnet-input { width: 100%; }
    .trust-bar-inner { gap: 20px; }
}
