/* Pechatnitsa Genchevi EOOD — Bulgarian Print Corporate Design */

:root {
    --bg-green: #009B63;
    --bg-green-dark: #007A4E;
    --bg-green-light: #E6F5EF;
    --ink: #1A1A1A;
    --ink-muted: #4A5568;
    --ink-light: #94A3B8;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --c-cyan: #00A3E0;
    --c-magenta: #D4007A;
    --c-yellow: #FFD100;
    --c-black: #1A1A1A;
    --radius: 6px;
    --radius-lg: 10px;
    --shadow-sm: 0 1px 3px rgba(26, 26, 26, 0.06);
    --shadow: 0 4px 18px rgba(26, 26, 26, 0.08);
    --shadow-lg: 0 10px 36px rgba(26, 26, 26, 0.12);
    --transition: 0.22s ease;
    --font: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

.container { width: min(1140px, 92%); margin: 0 auto; }

a { text-decoration: none; color: inherit; transition: color var(--transition); }

h1, h2, h3, h4 {
    line-height: 1.25;
    letter-spacing: -0.02em;
    font-weight: 700;
}

/* Bilingual BG primary, EN secondary */
.lang-sub {
    display: block;
    font-size: 0.76rem;
    font-weight: 500;
    color: var(--ink-light);
    letter-spacing: 0.02em;
}
.lang-sub-lg { font-size: 0.88rem; margin-top: 0.35rem; margin-bottom: 1.1rem; }
.section-sub { margin-top: -0.3rem; margin-bottom: 0.5rem; }
.card-sub { margin-top: 0.15rem; margin-bottom: 0.55rem; font-size: 0.72rem; }
.eyebrow-sub { margin-top: -0.45rem; margin-bottom: 0.75rem; }
.lang-sub-light { color: rgba(255,255,255,0.65); }
.nav-links .lang-sub { display: inline; margin-left: 0.2rem; font-size: 0.62rem; opacity: 0.55; }

.lead-en {
    color: var(--ink-muted);
    font-size: 0.9rem;
    max-width: 54ch;
    margin: -0.25rem 0 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--bg-green-light);
    font-style: italic;
}

.eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bg-green);
    margin-bottom: 0.55rem;
}
.eyebrow.light { color: rgba(255,255,255,0.85); }

/* CMYK strip — print industry motif */
.cmyk-strip {
    display: flex;
    gap: 0.35rem;
    margin-top: 2rem;
    max-width: 200px;
}
.cmyk-strip .c {
    flex: 1;
    height: 6px;
    border-radius: 3px;
}
.c-c { background: var(--c-cyan); }
.c-m { background: var(--c-magenta); }
.c-y { background: var(--c-yellow); }
.c-k { background: var(--c-black); }

/* Top bar */
.top-bar {
    background: var(--ink);
    color: rgba(255,255,255,0.85);
    font-size: 0.78rem;
    padding: 0.45rem 0;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.top-links { display: flex; gap: 1.25rem; }
.top-links a { color: rgba(255,255,255,0.75); }
.top-links a:hover { color: var(--bg-green-light); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.45rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    border: none;
    transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.btn-primary {
    background: var(--bg-green);
    color: #fff;
}
.btn-primary:hover {
    background: var(--bg-green-dark);
    box-shadow: var(--shadow);
}
.btn-secondary {
    background: var(--white);
    color: var(--ink);
    border: 1px solid var(--gray-200);
}
.btn-secondary:hover {
    border-color: var(--bg-green);
    color: var(--bg-green);
}
.btn.full { width: 100%; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-mark {
    display: grid;
    place-items: center;
    width: 40px; height: 40px;
    border-radius: var(--radius);
    background: var(--ink);
    color: #fff;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: -0.02em;
}
.brand-text { display: flex; flex-direction: column; }
.brand-name { font-weight: 700; font-size: 0.98rem; color: var(--ink); }
.brand-tagline { font-size: 0.65rem; color: var(--ink-light); font-weight: 500; }
.nav-links { display: flex; gap: 1.5rem; }
.nav-links a { font-size: 0.88rem; font-weight: 500; color: var(--ink-muted); }
.nav-links a:hover { color: var(--bg-green); }
.nav-cta { padding: 0.5rem 1.1rem; font-size: 0.84rem; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    width: 24px; height: 2px;
    background: var(--ink);
    border-radius: 2px;
}

/* Hero */
.hero {
    padding: 4.5rem 0 4rem;
    background: linear-gradient(180deg, var(--bg-green-light) 0%, var(--white) 55%);
}
.hero-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
}
.hero h1 {
    font-size: clamp(1.85rem, 4.2vw, 2.65rem);
    max-width: 22ch;
    margin-bottom: 0.2rem;
}
.lead {
    color: var(--ink-muted);
    font-size: 1.02rem;
    max-width: 54ch;
    margin: 1rem 0 0.5rem;
}
.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-top: 1.5rem; }
.hero-panel { display: grid; gap: 0.85rem; }
.stat-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.35rem 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);
}
.stat-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.stat-card.accent {
    background: var(--bg-green);
    color: #fff;
    border-color: var(--bg-green);
}
.stat-card.accent .lang-sub { color: rgba(255,255,255,0.7); }
.stat-card strong { display: block; font-size: 1.5rem; font-weight: 700; line-height: 1; margin-bottom: 0.25rem; }
.stat-card span { font-size: 0.88rem; font-weight: 500; }
.stat-card .lang-sub { margin-top: 0.2rem; font-size: 0.68rem; }

/* Trust bar */
.trust-bar {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    padding: 0.85rem 0;
}
.trust-inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
}
.trust-item {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ink-muted);
}

/* Sections */
.section { padding: 5rem 0; }
.section-alt { background: var(--gray-50); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-head h2 { font-size: clamp(1.55rem, 3vw, 2.15rem); margin-top: 0.15rem; }
.section-head p { color: var(--ink-muted); margin-top: 0.7rem; }

.grid { display: grid; gap: 1.4rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Cards */
.card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.65rem;
    transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.card:hover {
    box-shadow: var(--shadow);
    border-color: var(--gray-300);
    transform: translateY(-2px);
}
.icon-wrap {
    width: 46px; height: 46px;
    display: grid; place-items: center;
    border-radius: var(--radius);
    font-size: 1.35rem;
    margin-bottom: 0.9rem;
}
.icon-c { background: rgba(0, 163, 224, 0.12); }
.icon-m { background: rgba(212, 0, 122, 0.1); }
.icon-y { background: rgba(255, 209, 0, 0.15); }
.icon-k { background: rgba(26, 26, 26, 0.08); }
.service h3 { font-size: 1.08rem; margin-bottom: 0.05rem; }
.service p { color: var(--ink-muted); font-size: 0.9rem; }

/* About */
.about-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: start; }
.about-copy h2 { font-size: clamp(1.55rem, 3vw, 2.1rem); margin-bottom: 0.9rem; }
.about-copy p { color: var(--ink-muted); margin-bottom: 0.8rem; }
.check-list { list-style: none; margin-top: 1.1rem; display: grid; gap: 0.6rem; }
.check-list li {
    position: relative;
    padding-left: 1.65rem;
    font-weight: 500;
    font-size: 0.93rem;
}
.check-list li::before {
    content: "✓";
    position: absolute; left: 0;
    color: var(--bg-green);
    font-weight: 700;
}
.about-info { display: grid; gap: 0.85rem; }
.info-block {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-left: 3px solid var(--bg-green);
    border-radius: var(--radius-lg);
    padding: 1.15rem 1.35rem;
}
.info-block h4 {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bg-green);
    margin-bottom: 0.35rem;
}
.info-block p { font-weight: 500; font-size: 0.92rem; line-height: 1.55; }
.info-block a { color: var(--bg-green-dark); font-weight: 600; }
.info-block a:hover { color: var(--bg-green); }

/* Features */
.feature { position: relative; }
.feature-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--bg-green-light);
    line-height: 1;
    margin-bottom: 0.65rem;
}
.feature.featured {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}
.feature.featured .feature-num { color: rgba(255,255,255,0.15); }
.feature.featured p { color: rgba(255,255,255,0.8); }
.feature.featured .lang-sub { color: rgba(255,255,255,0.55); }
.feature h3 { font-size: 1.1rem; margin-bottom: 0.05rem; }
.feature p { color: var(--ink-muted); font-size: 0.9rem; }

/* Team */
.member { text-align: center; }
.avatar {
    width: 68px; height: 68px;
    border-radius: 50%;
    margin: 0 auto 0.9rem;
    display: grid; place-items: center;
    background: var(--bg-green-light);
    color: var(--bg-green-dark);
    font-weight: 700;
    font-size: 1rem;
}
.member h3 { font-size: 1.02rem; }
.member p { color: var(--ink-muted); font-size: 0.86rem; margin-top: 0.1rem; }

/* CTA */
.cta { background: var(--ink); color: #fff; }
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.cta-copy h2 { font-size: clamp(1.55rem, 3vw, 2.1rem); margin-top: 0.25rem; }
.cta-copy p { color: rgba(255,255,255,0.72); margin-top: 0.7rem; }
.contact-info { list-style: none; margin-top: 1.5rem; display: grid; gap: 0.9rem; }
.contact-info li { font-size: 0.9rem; }
.contact-info strong {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: rgba(255,255,255,0.45);
    margin-bottom: 0.15rem;
}
.contact-info a { color: var(--bg-green-light); font-weight: 500; }
.contact-info a:hover { color: #fff; }
.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.85rem;
    display: grid;
    gap: 0.9rem;
    box-shadow: var(--shadow-lg);
}
.contact-form h3 { font-size: 1rem; color: var(--ink); margin-bottom: 0.15rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 0.95rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--ink);
    background: var(--gray-50);
    resize: vertical;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--bg-green);
    box-shadow: 0 0 0 3px rgba(0, 155, 99, 0.12);
    background: var(--white);
}
.gdpr-check {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.74rem;
    color: var(--ink-muted);
    line-height: 1.45;
    cursor: pointer;
}
.gdpr-check input { margin-top: 2px; accent-color: var(--bg-green); }
.form-note { font-size: 0.84rem; color: var(--bg-green-dark); text-align: center; min-height: 1.2rem; font-weight: 500; }

/* Footer & Legal */
.site-footer { background: var(--gray-50); border-top: 1px solid var(--gray-200); padding: 3rem 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.3fr 2fr; gap: 3rem; padding-bottom: 2.5rem; }
.footer-brand .brand { margin-bottom: 0.75rem; }
.footer-brand p { color: var(--ink-muted); max-width: 36ch; font-size: 0.88rem; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-cols h4 { font-size: 0.82rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--ink); }
.footer-cols a { display: block; color: var(--ink-muted); margin-bottom: 0.45rem; font-size: 0.86rem; }
.footer-cols a:hover { color: var(--bg-green); }

.legal-section {
    padding: 2rem 0;
    border-top: 1px solid var(--gray-200);
    background: var(--white);
}
.legal-section.legal-alt { background: var(--gray-50); }
.legal-section h3 { font-size: 1.1rem; margin-bottom: 0.75rem; color: var(--ink); }
.legal-note { font-size: 0.85rem; color: var(--ink-muted); margin-bottom: 1rem; }
.legal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; font-size: 0.9rem; line-height: 1.7; }
.legal-grid a { color: var(--bg-green-dark); }
.legal-section p { color: var(--ink-muted); font-size: 0.88rem; max-width: 72ch; line-height: 1.7; }

.footer-bottom {
    display: flex; justify-content: space-between;
    border-top: 1px solid var(--gray-200);
    padding: 1.25rem 0 1.5rem;
    font-size: 0.8rem; color: var(--ink-light);
}

/* Responsive */
@media (max-width: 900px) {
    .hero-inner, .about-inner, .cta-inner, .footer-inner, .legal-grid { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .nav-links.open {
        display: flex; flex-direction: column;
        position: absolute; top: 70px; left: 0; right: 0;
        background: var(--white); padding: 1.25rem 5%;
        gap: 0.9rem; border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow);
    }
    .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; }
    .top-bar-inner { justify-content: center; text-align: center; }
    .top-links { flex-direction: column; gap: 0.3rem; align-items: center; }
}

@media (max-width: 560px) {
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-cols { grid-template-columns: 1fr; }
}
