/*
Theme Name: Schempnefsis Cyber V8
Theme URI: https://schempnefsis.ch
Version: 8.2.19
Author: Schempnefsis Team
*/

:root {
    --neon-cyan: #00f3ff;
    --neon-purple: #bc13fe;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --glass-bg: rgba(10, 10, 15, 0.6);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --container: 1400px;
    --font-head: 'Inter', sans-serif;
    --font-mono: 'Fira Code', monospace;
}

* {
    box-sizing: border-box;
}

html {
    background-color: #000000;
}

body {
    background-color: transparent; /* Επιτρέπει να φαίνεται το background */
    color: var(--text-main);
    font-family: var(--font-head);
    margin: 0;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* BACKGROUND ENGINE */
#canvas-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at center, #0a0a12 0%, #000000 100%);
}

/* HEADER */
.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
}

.header-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding a {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: -1px;
}

/* NAVIGATION FIX */
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 40px;
}

.main-navigation a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    border-bottom: 2px solid transparent;
}

.main-navigation a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

/* HERO SECTION */
.hero-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 50px;
    position: relative;
    z-index: 1;
}

.system-status {
    font-family: var(--font-mono);
    color: var(--neon-cyan);
    border: 1px solid rgba(0, 243, 255, 0.3);
    background: rgba(0, 243, 255, 0.05);
    padding: 8px 16px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 40px;
    display: inline-block;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
}

.hero-title {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 30px 0;
    color: #fff;
}

.hero-title span {
    color: transparent;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.btn-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--neon-cyan);
    color: #000;
    padding: 18px 45px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(0, 243, 255, 0.6);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 18px 45px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

/* MARQUEE */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    background: var(--neon-cyan);
    padding: 15px 0;
    margin: 80px 0;
    transform: rotate(0deg);
    position: relative;
    z-index: 5;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.4);
}

.track {
    display: flex;
    width: max-content;
    animation: scrollText 20s linear infinite;
}

.track .marquee-text {
    color: #000;
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0 40px;
    white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
    .track { animation: none; }
}

@keyframes scrollText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* SECTIONS & CARDS */
.section-wrapper {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 5% 150px;
    position: relative;
    z-index: 2;
}

.section-label {
    font-family: var(--font-mono);
    color: var(--neon-purple);
    font-size: 1.5rem;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(188, 19, 254, 0.4);
    padding-bottom: 10px;
}

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

.glass-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    backdrop-filter: blur(12px);
    padding: 40px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 3px; height: 0%;
    background: var(--neon-cyan);
    transition: 0.4s;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    background: rgba(20, 20, 30, 0.9);
}

.glass-card:hover::before { height: 100%; }

.glass-card h3 {
    font-size: 1.6rem;
    margin-top: 10px;
    color: #fff;
}

.glass-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* FOOTER */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.9);
    padding: 60px 0;
    text-align: center;
    margin-top: auto;
    z-index: 10;
}

/* MOBILE */
@media (max-width: 768px) {
    .header-container { flex-direction: column; gap: 15px; }
    .main-navigation ul { gap: 20px; flex-wrap: wrap; justify-content: center; }
    .hero-title { font-size: 3rem; }
    .marquee-wrapper { transform: rotate(0deg); }
    .btn-wrapper { flex-direction: column; width: 100%; }
    .btn-primary, .btn-outline { width: 100%; text-align: center; }
}

/* PORTFOLIO */
.project-card { padding: 25px; }
.project-thumb {
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.35);
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 18px;
}
.project-thumb img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.35s ease;
    filter: saturate(1.05) contrast(1.05);
}
.project-card:hover .project-thumb img { transform: scale(1.08); }

.project-cta {
    display: inline-block;
    margin-top: 12px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--neon-cyan);
    text-decoration: none;
    border: 1px solid rgba(0, 243, 255, 0.25);
    background: rgba(0, 243, 255, 0.05);
    padding: 10px 14px;
    transition: 0.3s;
}
.project-cta:hover {
    color: #000;
    background: var(--neon-cyan);
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.35);
}

.work-more {
    margin-top: 35px;
    display: flex;
    justify-content: center;
}
.work-title {
    font-size: clamp(2rem, 6vw, 3.2rem);
    font-weight: 900;
    margin: 0 0 10px 0;
    color: #fff;
}
.work-intro {
    color: var(--text-muted);
    max-width: 860px;
    margin: 0 0 35px 0;
    line-height: 1.7;
}
.case-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 28px 0;
}
.case-pill {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 4px;
}
.case-section-title {
    font-family: var(--font-mono);
    color: var(--neon-purple);
    font-size: 1rem;
    letter-spacing: 1px;
    margin: 30px 0 12px 0;
}
.case-list {
    margin: 0;
    padding-left: 18px;
    color: var(--text-muted);
    line-height: 1.8;
}
.case-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}
.case-actions a { text-decoration: none; }

/* Process + Services Pages */
.what-you-get {
    margin-top: 36px;
    padding: 26px 22px;
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: 18px;
}

.what-you-get-title {
    margin: 0 0 14px 0;
    font-size: 1.2rem;
    letter-spacing: 0.04em;
}

.what-you-get-list {
    margin: 0;
    padding-left: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
    color: var(--text-muted);
}

@media (max-width: 820px) {
    .what-you-get-list {
        grid-template-columns: 1fr;
    }
}

.work-breadcrumbs,
.service-breadcrumbs {
    margin-bottom: 14px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.work-breadcrumbs a,
.service-breadcrumbs a {
    color: var(--neon-cyan);
    text-decoration: none;
}

.case-hero,
.service-hero {
    margin-bottom: 26px;
}

.case-hero h1,
.service-hero h1 {
    margin: 10px 0 10px 0;
    font-size: 2.6rem;
    line-height: 1.05;
}

.case-hero p,
.service-hero p {
    margin: 0;
    color: var(--text-muted);
    max-width: 860px;
}

.case-section,
.service-section {
    margin-top: 22px;
}

.case-grid-2,
.service-grid-2 {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 22px;
}

@media (max-width: 900px) {
    .case-grid-2,
    .service-grid-2 {
        grid-template-columns: 1fr;
    }
}

.case-list,
.service-list {
    margin: 0;
    padding-left: 18px;
    color: var(--text-muted);
}

.case-actions-inline,
.service-actions-inline {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.service-card-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}





/* ===== Services archive conversion layer - v8.2.4 ===== */
.service-goals {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 16px 0;
}

.service-goal-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 243, 255, 0.22);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.service-goal-pill:hover {
    background: rgba(0, 243, 255, 0.10);
    border-color: rgba(0, 243, 255, 0.55);
    box-shadow: 0 0 18px rgba(0, 243, 255, 0.18);
}

.service-callout {
    padding: 18px;
    margin: 18px 0 22px 0;
}

.service-callout h2 {
    margin: 0 0 8px 0;
    font-size: 1.15rem;
}

.service-callout p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
}

.service-callout ul {
    margin: 12px 0 0 0;
    padding-left: 18px;
    color: var(--text-muted);
}

.service-callout .service-actions-inline {
    margin-top: 14px;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-cta.btn-primary {
    padding: 12px 18px;
    font-size: 0.78rem;
    letter-spacing: 0.8px;
}

@media (max-width: 900px) {
    .header-actions { width: 100%; justify-content: center; }
    .header-cta.btn-primary { width: 100%; max-width: 320px; text-align: center; }
}
/* ===== Service pages funnel layer - v8.2.3 ===== */
.service-funnel .tier-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 14px;
}

.tier-card {
    border: 1px solid rgba(0, 243, 255, 0.22);
    background: rgba(0, 0, 0, 0.28);
    border-radius: 16px;
    padding: 14px 14px;
}

.tier-title {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--neon-cyan);
    margin: 0 0 6px 0;
}

.tier-desc {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-mini-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 14px;
}

.mini-case-card {
    padding: 18px;
}

.mini-case-card .project-thumb img {
    height: 150px;
}

.service-cta-panel {
    margin-top: 18px;
    border: 1px solid rgba(188, 19, 254, 0.28);
    background: rgba(188, 19, 254, 0.06);
    border-radius: 18px;
    padding: 16px;
}

/* ===== Credibility layer (Trust + FAQ) - v8.2.2 ===== */
.trust-grid .glass-card h3 {
    margin-top: 0;
}

.trust-kicker {
    color: var(--text-muted);
    margin-top: 10px;
    line-height: 1.6;
}

.trust-list {
    margin-top: 14px;
}

.faq-wrapper {
    margin-top: 22px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 900px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    border: 1px solid rgba(0, 243, 255, 0.22);
    background: rgba(0, 0, 0, 0.35);
    border-radius: 18px;
    padding: 14px 16px;
    backdrop-filter: blur(10px);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--text-main);
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin: 12px 0 0;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item[open] {
    border-color: rgba(0, 243, 255, 0.32);
    box-shadow: 0 0 24px rgba(0, 243, 255, 0.08);
}


/* ===== Service FAQs - v8.2.10 ===== */
.service-faq-wrapper {
    margin-top: 26px;
}

.service-faq-wrapper h2 {
    margin-top: 0;
}
/* ===== Work archive + case study upgrades - v8.2.5 ===== */
.work-tools {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    margin: 22px 0 26px 0;
}

.work-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.work-filter-pill {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 10px 14px;
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.25s;
}

.work-filter-pill:hover {
    border-color: rgba(0, 243, 255, 0.55);
    background: rgba(0, 243, 255, 0.10);
    box-shadow: 0 0 18px rgba(0, 243, 255, 0.18);
}

.work-filter-pill.is-active {
    border-color: rgba(0, 243, 255, 0.75);
    background: rgba(0, 243, 255, 0.16);
}

.work-search {
    display: flex;
    align-items: center;
    gap: 12px;
}

.work-search input {
    width: min(420px, 84vw);
    padding: 12px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    outline: none;
}

.work-search input::placeholder { color: rgba(255, 255, 255, 0.45); }

.work-results-count {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.project-card.is-hidden { display: none; }

.capability-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.capability-tag {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    padding: 7px 10px;
    border-radius: 999px;
    text-decoration: none;
}

.capability-tag:hover {
    border-color: rgba(0, 243, 255, 0.55);
    background: rgba(0, 243, 255, 0.10);
}

.case-list a {
    color: var(--neon-cyan);
    text-decoration: none;
}

.case-list a:hover {
    text-decoration: underline;
}

.case-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 22px;
    align-items: start;
    margin-top: 16px;
}

.case-preview {
    display: block;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(0, 0, 0, 0.35);
}

.case-preview img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.05);
    transform: scale(1.01);
    transition: transform 0.35s ease;
}

.case-preview:hover img { transform: scale(1.06); }

.case-preview-caption {
    padding: 14px 16px;
    font-family: var(--font-mono);
    color: var(--text-muted);
    font-size: 0.78rem;
    letter-spacing: 0.6px;
}

.case-related {
    margin-top: 26px;
}

.case-related h2 {
    margin: 0 0 16px 0;
    font-size: 1.2rem;
    letter-spacing: 0.04em;
}

@media (max-width: 980px) {
    .case-hero-grid {
        grid-template-columns: 1fr;
    }
    .case-preview img {
        height: 240px;
    }
}

/* v8.2.6 - Contact brief + CF7 premium styling */
.contact-brief-wrap {
    width: min(980px, 92vw);
    margin: 0 auto 28px;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 18px;
    align-items: start;
}

.brief-card.glass-card,
.brief-side.glass-card {
    padding: 28px;
}

.brief-title {
    margin: 0 0 8px;
    font-size: 1.25rem;
    font-weight: 900;
    color: #fff;
}

.brief-sub {
    margin: 0 0 18px;
    color: var(--text-muted);
    line-height: 1.5;
}

.brief-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.brief-field label {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.brief-field select,
.brief-field textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    outline: none;
}

.brief-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.40);
}

.brief-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 12px 0 16px;
}

.brief-chip {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.80);
    padding: 10px 12px;
    border-radius: 999px;
    font-size: 0.92rem;
    cursor: pointer;
    transition: 0.25s ease;
}

.brief-chip:hover {
    border-color: rgba(0, 243, 255, 0.45);
}

.brief-chip.is-active {
    border-color: rgba(0, 243, 255, 0.70);
    background: rgba(0, 243, 255, 0.10);
    color: #fff;
}

.brief-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
}

.brief-insert {
    padding: 14px 18px;
    clip-path: none;
}

.brief-status {
    color: rgba(255, 255, 255, 0.70);
    font-size: 0.95rem;
}

.brief-preview {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px dashed rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.25);
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Fira Code', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    white-space: pre-wrap;
    line-height: 1.5;
}

.brief-list {
    margin: 10px 0 18px;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.80);
}

.brief-mini-cta {
    display: grid;
    gap: 10px;
}

#contact .wpcf7 {
    width: min(980px, 92vw);
    margin: 0 auto;
}

#contact .wpcf7 form p {
    margin: 0 0 14px;
}

#contact .wpcf7 input[type="text"],
#contact .wpcf7 input[type="email"],
#contact .wpcf7 input[type="tel"],
#contact .wpcf7 input[type="url"],
#contact .wpcf7 textarea,
#contact .wpcf7 select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    outline: none;
}

#contact .wpcf7 textarea {
    min-height: 140px;
    resize: vertical;
}

#contact .wpcf7 input::placeholder,
#contact .wpcf7 textarea::placeholder {
    color: rgba(255, 255, 255, 0.40);
}

#contact .wpcf7 .wpcf7-not-valid-tip {
    color: rgba(255, 120, 120, 0.95);
}

#contact .wpcf7 input.wpcf7-submit {
    background: var(--neon-cyan);
    color: #000;
    padding: 16px 35px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 0;
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
    cursor: pointer;
    transition: 0.25s ease;
    display: inline-block;
    white-space: nowrap;
}

#contact .wpcf7 input.wpcf7-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.5);
}

@media (max-width: 900px) {
    .contact-brief-wrap {
        grid-template-columns: 1fr;
    }
    .brief-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Local credibility layer - v8.2.7 ===== */
.local-grid .trust-kicker {
    margin-bottom: 14px;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

@media (max-width: 600px) {
    .proof-grid {
        grid-template-columns: 1fr;
    }
}

.proof-item {
    display: block;
    padding: 14px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.proof-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.18);
}

.proof-title {
    display: block;
    font-family: 'Fira Code', monospace;
    letter-spacing: 0.06em;
    font-size: 0.92rem;
    color: #fff;
}

.proof-sub {
    display: block;
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-inline {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== Why Schempnefsis proof stack - v8.2.8 ===== */
.why-grid .trust-kicker {
    margin-bottom: 14px;
}

.guarantee-panel {
    margin-top: 14px;
    padding: 16px;
    border-radius: 14px;
    background: rgba(0, 243, 255, 0.06);
    border: 1px solid rgba(0, 243, 255, 0.18);
}

.guarantee-title {
    margin: 0 0 10px 0;
    font-family: var(--font-mono);
    font-size: 0.92rem;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #ffffff;
}

.proof-stack {
    margin-top: 22px;
}

.proof-stack-item {
    background: rgba(10, 10, 15, 0.52);
}

.proof-stack-item p {
    margin-bottom: 0;
}

/* ===== Service pricing + guarantees layer - v8.2.9 ===== */
.service-pricing-list li,
.service-guarantee-list li {
    margin-bottom: 8px;
    line-height: 1.65;
}

#pricing-expectations .service-list li,
#delivery-guarantees .service-list li {
    color: var(--text-muted);
}

#pricing-expectations {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 18px;
}

#delivery-guarantees {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 18px;
}

#pricing-expectations h2,
#delivery-guarantees h2 {
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    #pricing-expectations,
    #delivery-guarantees {
        padding-top: 14px;
    }
}

/* ===== Service related links + virtual sitemaps - v8.2.11 ===== */
.service-related-wrapper {
    margin-top: 22px;
}

.service-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 14px;
}

@media (max-width: 900px) {
    .service-related-grid {
        grid-template-columns: 1fr;
    }
}

.service-related-card {
    display: block;
    text-decoration: none;
    transition: transform 0.18s ease, border-color 0.18s ease;
}

.service-related-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 243, 255, 0.35);
}

.service-related-cta {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--neon-cyan);
}

/* Moved from header.php inline CSS (was inline, now in style.css) */
:root {
            --neon-cyan: #00f3ff;
            --neon-purple: #bc13fe;
            --text-main: #ffffff;
            --text-muted: #94a3b8;
            --glass-bg: rgba(10, 10, 15, 0.6);
            --glass-border: 1px solid rgba(255, 255, 255, 0.1);
            --container: 1400px;
            --font-head: 'Inter', sans-serif;
            --font-mono: 'Fira Code', monospace;
        }

        * { box-sizing: border-box; }
        html { background-color: #000; margin-top: 0 !important; }

        body {
            background-color: transparent;
            color: var(--text-main);
            font-family: var(--font-head);
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* --- BACKGROUND ENGINE (GRID + GRADIENT) --- */
        #canvas-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background-color: #020202;
            /* Cyber Grid Pattern */
            background-image: 
                linear-gradient(rgba(0, 243, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 243, 255, 0.03) 1px, transparent 1px),
                radial-gradient(circle at center, #0f172a 0%, #000000 80%);
            background-size: 60px 60px, 60px 60px, 100% 100%;
        }

        /* ANIMATION */
        @keyframes neonPulse {
            0% { border-bottom-color: rgba(0, 243, 255, 0.2); box-shadow: 0 1px 10px rgba(0, 243, 255, 0.1); }
            50% { border-bottom-color: rgba(0, 243, 255, 0.8); box-shadow: 0 2px 25px rgba(0, 243, 255, 0.5), 0 0 10px rgba(0, 243, 255, 0.2); }
            100% { border-bottom-color: rgba(0, 243, 255, 0.2); box-shadow: 0 1px 10px rgba(0, 243, 255, 0.1); }
        }

        /* HEADER */
        .site-header {
            position: fixed; top: 0; left: 0; width: 100%; z-index: 9999;
            background: rgba(5, 5, 8, 0.9); backdrop-filter: blur(20px); padding: 10px 0;
            border-bottom: 1px solid rgba(0, 243, 255, 0.3);
            animation: neonPulse 4s infinite ease-in-out;
            transition: top 0.3s ease;
        }
        body.admin-bar .site-header { top: 32px; }
        @media screen and (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }

        .header-container {
            max-width: var(--container); margin: 0 auto; padding: 0 5%;
            display: flex; justify-content: space-between; align-items: center; gap: 16px; width: 100%;
        }

        /* --- LOGO IMAGE STYLING --- */
        .site-branding a {
            display: block;
            text-decoration: none;
        }
        .logo-img {
            height: auto;
            max-height: clamp(38px, 3.5vw, 52px);
            width: auto;
            max-width: min(560px, 42vw);
            display: block;
            object-fit: contain;
            /* Το mix-blend-mode αφαιρεί το μαύρο φόντο αν υπάρχει */
            mix-blend-mode: screen; 
            filter: drop-shadow(0 0 5px rgba(0, 243, 255, 0.6)); /* Extra Glow */
            transition: 0.3s;
        }

        .logo-img:hover {
            filter: drop-shadow(0 0 15px rgba(0, 243, 255, 1));
            transform: scale(1.05);
        }

        /* MENU STYLING */
        .main-navigation ul {
            list-style: none !important; margin: 0; padding: 0;
            display: flex; flex-direction: row; gap: 10px; flex-wrap: nowrap;
        }
        .main-navigation a {
            color: var(--text-muted); text-decoration: none; font-family: var(--font-mono);
            font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
            padding: 10px 20px; border-radius: 4px; border: 1px solid transparent; transition: all 0.3s ease;
        }
        .main-navigation a:hover {
            color: #fff; background: rgba(0, 243, 255, 0.1); border-color: rgba(0, 243, 255, 0.5);
            box-shadow: 0 0 15px rgba(0, 243, 255, 0.2); text-shadow: 0 0 5px rgba(0, 243, 255, 0.8);
        }

        /* HERO */
        .hero-wrapper {
            min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center;
            text-align: center; padding: 160px 20px 60px; position: relative; z-index: 1;
        }
        .system-status {
            font-family: var(--font-mono); color: var(--neon-cyan); border: 1px solid rgba(0, 243, 255, 0.3);
            background: rgba(0, 243, 255, 0.05); padding: 6px 14px; font-size: 0.75rem; letter-spacing: 2px;
            margin-bottom: 30px; display: inline-block; border-radius: 4px; box-shadow: 0 0 15px rgba(0, 243, 255, 0.15);
        }
        .hero-title {
            font-size: clamp(2.5rem, 8vw, 6rem); font-weight: 900; line-height: 1.1; margin: 0 0 25px 0; color: #fff;
        }
        .hero-title span { color: var(--neon-cyan); text-shadow: 0 0 25px rgba(0, 243, 255, 0.3); }
        .hero-desc {
            font-size: clamp(1rem, 4vw, 1.25rem); color: var(--text-muted); max-width: 650px; margin: 0 auto 40px; line-height: 1.6;
        }

        /* BUTTONS */
        .btn-wrapper { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; width: 100%; }
        .btn-primary {
            background: var(--neon-cyan); color: #000; padding: 16px 35px; font-weight: 800; text-transform: uppercase;
            text-decoration: none; letter-spacing: 0.5px; transition: 0.3s; clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
            white-space: nowrap; border: none; cursor: pointer; display: inline-block;
        }
        .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 30px rgba(0, 243, 255, 0.5); }
        .btn-outline {
            background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.2); color: #fff;
            padding: 16px 35px; font-weight: 600; text-transform: uppercase; text-decoration: none; letter-spacing: 0.5px;
            transition: 0.3s; white-space: nowrap;
        }
        .btn-outline:hover { border-color: #fff; background: rgba(255, 255, 255, 0.1); }

        /* MARQUEE */
        .marquee-wrapper {
            width: 100%; overflow: hidden; background: var(--neon-cyan); padding: 12px 0; margin: 60px 0;
            transform: rotate(0deg); position: relative; z-index: 5; box-shadow: 0 0 25px rgba(0, 243, 255, 0.3);
            border-top: 1px solid #fff; border-bottom: 1px solid #fff;
        }
        .track { display: flex; width: max-content; animation: scrollText 20s linear infinite; }
        .track .marquee-text {
            color: #000; font-family: var(--font-mono); font-size: 1rem; font-weight: 900; text-transform: uppercase;
            margin: 0 30px; white-space: nowrap;
        }
        @keyframes scrollText { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        /* SECTIONS */
        .section-wrapper { max-width: var(--container); margin: 0 auto; padding: 0 5% 100px; position: relative; z-index: 2; }
        .section-label {
            font-family: var(--font-mono); color: var(--neon-purple); font-size: 1.3rem; margin-bottom: 50px;
            display: flex; align-items: center; gap: 15px; border-bottom: 1px solid rgba(188, 19, 254, 0.3); padding-bottom: 10px;
        }
        .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
        
        .glass-card {
            background: var(--glass-bg); border: var(--glass-border); backdrop-filter: blur(12px); padding: 35px;
            transition: 0.3s; position: relative; overflow: hidden; border-radius: 4px;
        }
        .glass-card::before {
            content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0%; background: var(--neon-cyan); transition: 0.4s;
        }
        .glass-card:hover { transform: translateY(-5px); border-color: var(--neon-cyan); background: rgba(20, 20, 30, 0.9); }
        .glass-card:hover::before { height: 100%; }
        .glass-card h3 { font-size: 1.4rem; margin-top: 10px; color: #fff; }
        .glass-card p { color: var(--text-muted); line-height: 1.6; font-size: 0.95rem; }

        /* CONTACT FORM */
        .cyber-form-container {
            background: rgba(0, 0, 0, 0.6); border: 1px solid rgba(0, 243, 255, 0.2); padding: 40px;
            max-width: 800px; margin: 0 auto; backdrop-filter: blur(10px);
        }
        .form-row { display: flex; gap: 20px; margin-bottom: 20px; }
        .form-col { flex: 1; }
        .form-col.full { width: 100%; }
        .cyber-label {
            display: block; font-family: var(--font-mono); font-size: 0.75rem; color: var(--neon-cyan);
            margin-bottom: 8px; letter-spacing: 1px;
        }
        .cyber-input {
            width: 100%; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff; padding: 15px; font-family: var(--font-head); font-size: 1rem; transition: 0.3s; outline: none;
        }
        .cyber-input:focus {
            border-color: var(--neon-cyan); box-shadow: 0 0 15px rgba(0, 243, 255, 0.2); background: rgba(0, 243, 255, 0.05);
        }
        .form-submit { text-align: center; margin-top: 30px; }
        
        /* FOOTER */
        .site-footer {
            border-top: 1px solid rgba(0, 243, 255, 0.3); background: #020202;
            padding: 80px 0 30px; position: relative; z-index: 10;
            animation: neonPulse 4s infinite ease-in-out;
        }
        .footer-grid {
            display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 50px;
            max-width: var(--container); margin: 0 auto 60px; padding: 0 5%;
        }
        .footer-logo {
            font-family: var(--font-mono); font-size: 1.5rem; font-weight: 800; color: #fff;
            text-decoration: none; display: block; margin-bottom: 20px;
        }
        .footer-logo span { color: var(--neon-cyan); }
        .footer-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; max-width: 300px; }
        .footer-brand { text-align: center; }
        .footer-brand .footer-desc { margin: 0 auto; }
        .footer-logo-img {
            height: auto;
            max-height: 46px;
            width: auto;
            max-width: min(420px, 80vw);
            display: block;
            margin: 0 auto;
            object-fit: contain;
            mix-blend-mode: screen;
            filter: drop-shadow(0 0 5px rgba(0, 243, 255, 0.55));
        }
        .footer-heading {
            font-family: var(--font-mono); color: var(--neon-purple); font-size: 0.9rem;
            margin-bottom: 25px; letter-spacing: 1px; display: block;
        }
        .footer-links { list-style: none; padding: 0; margin: 0; }
        .footer-links li { margin-bottom: 15px; }
        .footer-links a {
            color: #fff; text-decoration: none; font-size: 0.9rem; transition: 0.3s; display: inline-block;
        }
        .footer-links a:hover {
            color: var(--neon-cyan); transform: translateX(10px); text-shadow: 0 0 10px rgba(0,243,255,0.5);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; max-width: var(--container);
            margin: 0 auto; padding: 20px 5% 0; display: flex; justify-content: space-between;
            color: #555; font-size: 0.8rem; font-family: var(--font-mono);
        }

        /* MOBILE */
        @media (max-width: 900px) {
            .header-container { flex-direction: column; gap: 15px; padding-bottom: 10px; }
            /* Mobile Logo Adjustment */
            .logo-img { max-height: clamp(34px, 8vw, 46px); max-width: 86vw; }
            .main-navigation ul { gap: 15px; justify-content: center; flex-wrap: wrap; width: 100%; }
            .main-navigation a { font-size: 0.75rem; padding: 8px 15px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); }
            .marquee-wrapper { transform: rotate(0deg); margin: 40px 0; }
            .btn-wrapper { flex-direction: column; align-items: center; gap: 15px; }
            .btn-primary, .btn-outline { width: 100%; max-width: 320px; text-align: center; }
            .form-row { flex-direction: column; }
            .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
            .footer-desc { margin: 0 auto; }
            .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
        }