:root {
    --bg: #fffdf8;
    --surface: #ffffff;
    --surface-alt: #fff6dd;
    --text: #1f2937;
    --muted: #5f6c7b;
    --line: rgba(31, 41, 55, 0.1);
    --primary: #efb20b;
    --primary-dark: #d89a00;
    --accent: #1b9b5f;
    --accent-soft: #e7fbef;
    --deep: #18212c;
    --shadow: 0 20px 50px rgba(24, 33, 44, 0.08);
    --radius: 22px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--text);
    background: radial-gradient(circle at top left, rgba(239, 178, 11, 0.13), transparent 26%), radial-gradient(circle at top right, rgba(27, 155, 95, 0.12), transparent 24%), var(--bg);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    line-height: 1.75;
    color: var(--muted);
}

h1, h2, h3, h4 {
    margin: 0 0 16px;
    line-height: 1.14;
    color: var(--deep);
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

/* =========================
   TOP RIBBON / HEADER
========================= */

.top-ribbon {
    background: linear-gradient(90deg, #18212c, #243140);
    color: rgba(255,255,255,.92);
    font-size: 14px;
}

.ribbon-inner {
    min-height: 44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.ribbon-pill {
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    white-space: nowrap;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(12px);
    background: rgba(255, 253, 248, 0.8);
    border-bottom: 1px solid rgba(24, 33, 44, 0.06);
}

.nav-wrap {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-logo, .footer-logo, .company-logo {
    width: auto;
    height: 58px;
    border-radius: 0px;
    box-shadow: 0 8px 18px rgba(0,0,0,.08);
    object-fit: contain;
    background: #fff;
}

.brand-text,
.footer-brand div {
    display: flex;
    flex-direction: column;
}

    .brand-text strong,
    .footer-brand strong {
        font-size: 17px;
        letter-spacing: .02em;
    }

    .brand-text span,
    .footer-brand span,
    .company-subtitle {
        font-size: 13px;
        color: var(--muted);
    }

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

    .main-nav a {
        font-size: 15px;
        color: var(--deep);
        opacity: .86;
    }

        .main-nav a:hover {
            opacity: 1;
        }

.nav-cta {
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--deep);
    color: #fff !important;
}

.nav-toggle {
    display: none;
    border: 0;
    background: var(--deep);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 20px;
}

/* =========================
   Language Switcher
========================= */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 18px;
    padding: 6px 12px;
    border: 1px solid rgba(48,84,132,0.18);
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(48,84,132,0.10);
}

    .language-switcher a {
        text-decoration: none;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: .04em;
        color: #6b7280;
        transition: all .2s ease;
        opacity: 1;
        padding: 4px 8px;
        border-radius: 999px;
    }

        .language-switcher a:hover {
            color: #305484;
            background: rgba(48,84,132,0.08);
            transform: translateY(-1px);
        }

        .language-switcher a.active {
            color: #ffffff;
            background: #305484;
            box-shadow: 0 6px 16px rgba(48,84,132,0.22);
        }

    .language-switcher .divider {
        width: 1px;
        height: 14px;
        background: rgba(48,84,132,0.18);
    }

/* όταν το header είναι transparent πάνω στο hero */
.site-header:not(.scrolled):not(.is-solid) .language-switcher {
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(255,255,255,0.55);
    box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}

    .site-header:not(.scrolled):not(.is-solid) .language-switcher a {
        color: #5b6472;
    }

        .site-header:not(.scrolled):not(.is-solid) .language-switcher a:hover {
            color: #305484;
            background: rgba(48,84,132,0.08);
        }

        .site-header:not(.scrolled):not(.is-solid) .language-switcher a.active {
            color: #ffffff;
            background: #305484;
        }

@media (max-width: 980px) {
    .language-switcher {
        margin-left: 0;
        margin-top: 10px;
        width: fit-content;
    }
}


/* =========================
   GENERIC SECTIONS
========================= */

.section {
    padding: 96px 0;
}

.alt {
    background: linear-gradient(180deg, rgba(255,255,255,0.65), rgba(255, 246, 221, 0.72));
}

.eyebrow,
.section-tag {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(239, 178, 11, 0.14);
    color: #8a6800;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 18px;
}

.lead {
    font-size: 18px;
    max-width: 710px;
}

/* =========================
   HERO
========================= */

.hero {
    padding-top: 72px;
    position: relative;
    overflow: hidden;
}

.hero-grid,
.two-col,
.tech-layout,
.visual-grid,
.company-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 54px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.6rem, 5vw, 4.7rem);
    max-width: 780px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 30px 0 34px;
}

.btn {
    padding: 15px 22px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease;
}

    .btn:hover {
        transform: translateY(-2px);
    }

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #ffd65f);
    box-shadow: 0 16px 28px rgba(239,178,11,.24);
}

.btn-secondary {
    border: 1px solid rgba(24,33,44,.15);
    background: rgba(255,255,255,.78);
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.metric-card,
.info-card,
.feature-card,
.fact-box,
.company-card,
.dashboard-card {
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(24,33,44,.08);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
}

.metric-card {
    padding: 20px;
}

.metric {
    font-size: 1.7rem;
    display: block;
    font-weight: 800;
    color: var(--deep);
}

.metric-label {
    color: var(--muted);
    font-size: 14px;
}

.hero-visual {
    position: relative;
    min-height: 560px;
}

.hero-blob {
    position: absolute;
    inset: 50px 30px 40px 40px;
    border-radius: 34% 66% 67% 33% / 36% 35% 65% 64%;
    background: linear-gradient(135deg, rgba(239,178,11,.22), rgba(27,155,95,.18));
    filter: blur(0.5px);
}

.hero-illustration {
    position: relative;
    width: min(100%, 570px);
    margin: 10px auto 0;
    z-index: 2;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255,193,7,0.15), transparent 40%), radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1), transparent 40%), radial-gradient(circle at 50% 80%, rgba(255,193,7,0.08), transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.15) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.25;
    animation: moveParticles 30s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes moveParticles {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-40px);
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(255,193,7,0.15);
    color: #7a5b00;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.floating-panel {
    position: absolute;
    z-index: 3;
    min-width: 180px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(24,33,44,.08);
    box-shadow: 0 16px 35px rgba(24,33,44,.12);
    animation: float 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

    .floating-panel span,
    .floating-panel small {
        display: block;
        color: var(--muted);
    }

    .floating-panel strong {
        display: block;
        margin: 4px 0;
        font-size: 1.4rem;
    }

    .floating-panel:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.12), 0 0 20px rgba(255,193,7,0.25);
    }

.panel-a {
    top: 60px;
    left: -10px;
}

.panel-b {
    right: -6px;
    top: 130px;
    animation-delay: 1s;
}

.panel-c {
    bottom: 60px;
    left: 40px;
    animation-delay: 2s;
}

.warning strong {
    color: #b86100;
}

@keyframes float {
    0%,100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* =========================
   TRUST STRIP
========================= */

.trust-strip {
    padding: 36px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

    .trust-grid > div {
        padding: 22px 24px;
        border-radius: 20px;
        border: 1px solid rgba(24,33,44,.08);
        background: rgba(255,255,255,.78);
    }

.trust-label {
    display: block;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 6px;
}

/* =========================
   CONTENT BLOCKS
========================= */

.two-col,
.visual-grid,
.company-grid {
    align-items: start;
}

.info-card {
    padding: 28px;
}

.emphasis {
    background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,246,221,.96));
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

    .check-list li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 14px;
        color: var(--text);
    }

        .check-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--accent);
            font-weight: 800;
        }

.section-head {
    max-width: 860px;
    margin-bottom: 38px;
}

    .section-head.center,
    .narrow {
        text-align: center;
        margin-inline: auto;
    }

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.feature-card {
    padding: 28px;
    transition: transform .22s ease, box-shadow .22s ease;
}

    .feature-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 45px rgba(24, 33, 44, 0.12);
    }

.card-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 18px;
}

/* =========================
   DASHBOARD
========================= */

.dashboard-card {
    padding: 22px;
    background: linear-gradient(180deg, rgba(24,33,44,.96), rgba(34,46,61,.96));
    color: #fff;
    position: relative;
    overflow: hidden;
}

    .dashboard-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 40%, rgba(255,255,255,0.02) 100%);
        pointer-events: none;
    }

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    color: rgba(255,255,255,.82);
}

.pulse-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #25d07d;
    box-shadow: 0 0 0 10px rgba(37,208,125,.12);
}

.chart-block {
    border-radius: 22px;
    padding: 24px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}

.chart-line {
    height: 130px;
    border-radius: 18px;
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,.06), transparent), repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 70px), repeating-linear-gradient(0deg, rgba(255,255,255,.05) 0 1px, transparent 1px 36px);
    overflow: hidden;
}

    .chart-line::after {
        content: "";
        position: absolute;
        inset: 28px 16px 24px 16px;
        background: none;
        border-bottom: 3px solid rgba(255,214,95,.96);
        border-left: 3px solid transparent;
        transform: skewY(-8deg);
        border-radius: 80px;
    }

.chart-bars {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
    align-items: end;
    height: 110px;
}

    .chart-bars span {
        display: block;
        border-radius: 14px 14px 8px 8px;
        background: linear-gradient(180deg, #ffd65f, #efb20b);
    }

        .chart-bars span:nth-child(1) {
            height: 34%;
        }

        .chart-bars span:nth-child(2) {
            height: 48%;
        }

        .chart-bars span:nth-child(3) {
            height: 58%;
        }

        .chart-bars span:nth-child(4) {
            height: 72%;
        }

        .chart-bars span:nth-child(5) {
            height: 64%;
        }

        .chart-bars span:nth-child(6) {
            height: 82%;
        }

        .chart-bars span:nth-child(7) {
            height: 100%;
        }

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 20px;
}

    .dashboard-stats div {
        padding: 14px;
        border-radius: 16px;
        background: rgba(255,255,255,.05);
    }

    .dashboard-stats strong {
        display: block;
        font-size: 1.5rem;
    }

    .dashboard-stats span {
        font-size: 13px;
        color: rgba(255,255,255,.72);
    }

.stack-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.stack-item {
    padding: 18px 20px;
    border-left: 4px solid var(--primary);
    border-radius: 0 18px 18px 0;
    background: rgba(255,255,255,.72);
}

    .stack-item strong {
        display: block;
        margin-bottom: 6px;
    }

.dashboard-top-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
    margin-bottom: 18px;
}

.mini-stat {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 14px 16px;
    border-radius: 16px;
}

    .mini-stat small {
        display: block;
        font-size: 12px;
        color: rgba(255,255,255,0.7);
        margin-bottom: 6px;
    }

    .mini-stat strong {
        font-size: 20px;
        color: #fff;
    }

.dashboard-status-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
    margin-top: 18px;
}

.status-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .status-card span {
        font-size: 12px;
        color: rgba(255,255,255,0.7);
    }

    .status-card strong {
        font-size: 18px;
        color: #fff;
    }

    .status-card small {
        font-size: 12px;
        color: rgba(255,255,255,0.65);
    }

    .status-card.warning {
        border-color: rgba(255,193,7,0.45);
        background: rgba(255,193,7,0.08);
    }

.dashboard-alert {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255,193,7,0.16), rgba(255,255,255,0.05));
    border: 1px solid rgba(255,193,7,0.25);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.alert-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255,255,255,0.65);
    margin-bottom: 6px;
}

.dashboard-alert strong {
    display: block;
    color: #fff;
    font-size: 15px;
}

.dashboard-alert small {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
}

/* =========================
   WORKFLOW
========================= */

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.timeline-item {
    position: relative;
    padding: 26px 24px 24px;
    border-radius: 22px;
    border: 1px solid rgba(24,33,44,.08);
    background: rgba(255,255,255,.88);
    box-shadow: var(--shadow);
}

.step {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    background: rgba(239,178,11,.16);
    color: #8a6800;
    margin-bottom: 18px;
}

.workflow-interactive {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: start;
    margin-top: 40px;
}

.interactive-timeline .timeline-item {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

    .interactive-timeline .timeline-item.active {
        background: #fff;
        border-color: rgba(255,193,7,0.5);
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
        transform: translateY(-3px);
    }

.workflow-detail-card {
    background: #fff;
    padding: 28px;
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(15,23,42,0.08);
    border: 1px solid rgba(24,33,44,0.06);
    position: sticky;
    top: 120px;
}

.workflow-detail-badge {
    display: inline-block;
    background: rgba(255,193,7,0.15);
    color: #7a5b00;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 14px;
}

.workflow-detail-card h3 {
    margin-bottom: 14px;
}

.workflow-detail-card ul {
    margin-top: 18px;
    padding-left: 20px;
}

.workflow-detail-card li {
    margin-bottom: 8px;
    color: #374151;
}

/* =========================
   AI / VARROA SECTION
========================= */

.section-illustration {
    position: relative;
    z-index: 1;
}

.ai-insight-panel {
    margin-top: 28px;
    display: grid;
    gap: 18px;
}

.ai-summary-card {
    background: linear-gradient(135deg, rgba(255,193,7,0.14), rgba(255,255,255,0.85));
    border: 1px solid rgba(255,193,7,0.28);
    border-radius: 22px;
    padding: 20px 22px;
    box-shadow: 0 16px 40px rgba(15,23,42,0.06);
}

.ai-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #7a5b00;
    margin-bottom: 8px;
}

.ai-summary-card strong {
    display: block;
    font-size: 22px;
    color: #111827;
    margin-bottom: 8px;
}

.ai-summary-card small {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}

.ai-mini-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
}

.ai-mini-card {
    background: #fff;
    border: 1px solid rgba(24,33,44,0.06);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 12px 30px rgba(15,23,42,0.05);
}

    .ai-mini-card span {
        display: block;
        font-size: 12px;
        color: #6b7280;
        margin-bottom: 8px;
    }

    .ai-mini-card strong {
        display: block;
        font-size: 20px;
        color: #111827;
        margin-bottom: 6px;
    }

    .ai-mini-card small {
        font-size: 12px;
        color: #6b7280;
    }

    .ai-mini-card.warning {
        border-color: rgba(255,193,7,0.45);
        background: rgba(255,193,7,0.08);
    }

/* =========================
   AI / COMPUTER VISION FEEL
========================= */

.visual-card {
    position: relative;
    overflow: hidden;
}

.ai-vision-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.scan-line {
    position: absolute;
    left: 6%;
    right: 6%;
    height: 2px;
    top: 15%;
    background: linear-gradient(90deg, transparent, rgba(255,193,7,0.95), transparent);
    box-shadow: 0 0 18px rgba(255,193,7,0.55);
    animation: scanMove 4.5s ease-in-out infinite;
    opacity: 0.9;
}

@keyframes scanMove {
    0% {
        top: 12%;
        opacity: 0.2;
    }

    15% {
        opacity: 1;
    }

    50% {
        top: 78%;
        opacity: 0.95;
    }

    100% {
        top: 12%;
        opacity: 0.2;
    }
}

.vision-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,193,7,0.95);
    box-shadow: 0 0 0 0 rgba(255,193,7,0.55), 0 0 16px rgba(255,193,7,0.65);
    animation: pulseDot 2.4s infinite;
}

@keyframes pulseDot {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255,193,7,0.55), 0 0 16px rgba(255,193,7,0.65);
    }

    70% {
        transform: scale(1.08);
        box-shadow: 0 0 0 12px rgba(255,193,7,0), 0 0 24px rgba(255,193,7,0.75);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255,193,7,0), 0 0 16px rgba(255,193,7,0.55);
    }
}

.dot-1 {
    top: 28%;
    left: 26%;
    animation-delay: 0s;
}

.dot-2 {
    top: 46%;
    left: 62%;
    animation-delay: 0.6s;
}

.dot-3 {
    top: 62%;
    left: 38%;
    animation-delay: 1.2s;
}

.dot-4 {
    top: 34%;
    left: 74%;
    animation-delay: 1.8s;
}

.vision-tag {
    position: absolute;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .03em;
    background: rgba(17,24,39,0.82);
    color: #fff;
    border: 1px solid rgba(255,193,7,0.35);
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 18px rgba(15,23,42,0.14);
    white-space: nowrap;
}

.tag-1 {
    top: 22%;
    left: 12%;
}

.tag-2 {
    top: 40%;
    right: 10%;
}

.tag-3 {
    bottom: 16%;
    left: 18%;
}

.visual-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.18;
    pointer-events: none;
    z-index: 1;
}

.visual-card::before {
    content: "";
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle at 50% 50%, rgba(255,193,7,0.12), transparent 45%);
    opacity: 0.9;
    pointer-events: none;
    z-index: 0;
    animation: visionGlow 5s ease-in-out infinite;
}

@keyframes visionGlow {
    0%,100% {
        transform: scale(1);
        opacity: 0.75;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

/* =========================
   COMPANY / FACTS
========================= */

.company-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    padding: 28px;
}

.project-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 30px;
}

.fact-box {
    padding: 24px;
    text-align: center;
}

    .fact-box span {
        display: block;
        color: var(--muted);
        margin-bottom: 10px;
    }

    .fact-box strong {
        font-size: 1.45rem;
        color: var(--deep);
    }

.program-note {
    margin-top: 28px;
    padding: 26px 28px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(239,178,11,.12), rgba(27,155,95,.1));
    border: 1px solid rgba(24,33,44,.08);
}

/* =========================
   SENSOR SHOWCASE
========================= */

.sensor-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
    margin-top: 40px;
}

.sensor-card {
    background: #fff;
    border: 1px solid rgba(24,33,44,0.06);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 20px 50px rgba(15,23,42,0.06);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

    .sensor-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 30px 60px rgba(15,23,42,0.12);
    }

.sensor-icon {
    font-size: 28px;
    margin-bottom: 16px;
}

.sensor-card h3 {
    margin-bottom: 10px;
}

.sensor-card p {
    font-size: 14px;
    color: #4b5563;
}

.sensor-card.highlight {
    border-color: rgba(255,193,7,0.4);
    background: linear-gradient(135deg, rgba(255,193,7,0.12), #fff);
}

.sensor-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.4), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sensor-card:hover::after {
    opacity: 1;
}

/* =========================
   CONTACT FORM
========================= */

.contact-form {
    max-width: 600px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.1);
    font-family: inherit;
}

.checkbox {
    font-size: 14px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.form-message {
    margin-top: 10px;
    font-size: 14px;
}

    .form-message.success {
        color: green;
    }

    .form-message.error {
        color: red;
    }

/* =========================
   FOOTER
========================= */

.site-footer {
    padding: 34px 0 48px;
    background: linear-gradient(180deg, #305484 0%, #243f66 100%);
    color: rgba(255,255,255,.9);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.10);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

    .site-footer::before {
        content: "";
        position: absolute;
        top: -40px;
        left: 50%;
        transform: translateX(-50%);
        width: 760px;
        height: 280px;
        background: radial-gradient(circle, rgba(255,255,255,0.20) 0%, rgba(255,255,255,0.08) 35%, rgba(255,255,255,0.02) 55%, transparent 75%);
        pointer-events: none;
        filter: blur(18px);
        opacity: 1;
        z-index: 0;
    }

    .site-footer::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 28%, rgba(255,255,255,0.025) 100%);
        pointer-events: none;
        z-index: 0;
    }

    .site-footer > * {
        position: relative;
        z-index: 1;
    }

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .7fr .8fr;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.site-footer h4,
.site-footer strong {
    color: #fff;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.site-footer a {
    color: rgba(255,255,255,.9);
    transition: color .2s ease, opacity .2s ease;
}

    .site-footer a:hover {
        color: #ffffff;
        opacity: 1;
    }

/* =========================
   EU BANNERS
========================= */

.eu-banner {
    width: 100%;
    background: #fff;
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
}

    .eu-banner img {
        max-width: 100%;
        height: auto;
        max-height: 90px;
    }

.navbar {
    margin-top: 10px;
}

.eu-footer {
    margin-top: 40px;
    text-align: center;
    padding: 24px 20px 10px;
    background: transparent;
    border-top: 1px solid rgba(255,255,255,0.10);
}

    .eu-footer p {
        color: rgba(255,255,255,0.82);
        max-width: 980px;
        margin: 14px auto 0;
    }

.eu-footer-logo {
    max-height: 60px;
    margin: 0 auto 10px;
    display: block;
}

/* =========================
   BACK TO TOP BUTTON
========================= */

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #ffd65f);
    color: #18212c;
    font-size: 24px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 16px 35px rgba(24,33,44,.18);
    z-index: 120;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .28s ease, transform .28s ease, visibility .28s ease, box-shadow .25s ease;
}

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .back-to-top:hover {
        transform: translateY(-4px);
        box-shadow: 0 22px 40px rgba(24,33,44,.24), 0 0 18px rgba(255,193,7,.28);
    }

    .back-to-top:active {
        transform: translateY(-1px);
    }

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
    .hero-grid,
    .two-col,
    .tech-layout,
    .visual-grid,
    .company-grid,
    .footer-grid,
    .trust-grid,
    .timeline,
    .project-facts {
        grid-template-columns: 1fr 1fr;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .workflow-interactive {
        grid-template-columns: 1fr;
    }

    .workflow-detail-card {
        position: relative;
        top: auto;
    }
}

@media (max-width: 900px) {
    .sensor-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 860px) {
    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 8px);
        right: 20px;
        left: 20px;
        flex-direction: column;
        align-items: stretch;
        background: rgba(255,255,255,.98);
        border: 1px solid rgba(24,33,44,.08);
        border-radius: 20px;
        padding: 18px;
        box-shadow: var(--shadow);
        display: none;
    }

        .main-nav.open {
            display: flex;
        }

    .hero-grid,
    .two-col,
    .tech-layout,
    .visual-grid,
    .company-grid,
    .footer-grid,
    .trust-grid,
    .timeline,
    .cards-grid,
    .project-facts {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 480px;
    }

    .panel-a {
        top: 20px;
        left: 0;
    }

    .panel-b {
        top: 130px;
        right: 10px;
    }

    .panel-c {
        bottom: 10px;
        left: 20px;
    }

    .section {
        padding: 76px 0;
    }

    .ribbon-inner {
        flex-direction: column;
        justify-content: center;
        padding: 8px 0;
    }
}

@media (max-width: 768px) {
    .dashboard-top-stats,
    .dashboard-status-grid,
    .ai-mini-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-alert {
        flex-direction: column;
        align-items: flex-start;
    }

    .vision-tag {
        font-size: 10px;
        padding: 5px 8px;
    }

    .vision-dot {
        width: 10px;
        height: 10px;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

@media (max-width: 600px) {
    .sensor-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(var(--container), calc(100% - 24px));
    }

    .brand-logo, .footer-logo, .company-logo {
        height: 48px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .lead {
        font-size: 16px;
    }

    .floating-panel {
        min-width: 150px;
        padding: 12px 14px;
    }

    .company-card {
        grid-template-columns: 1fr;
    }
}

/* =========================
   GDPR MODAL
========================= */

.gdpr-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.gdpr-box {
    width: min(520px,90%);
    background: #fff;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

    .gdpr-box h3 {
        margin-bottom: 12px;
    }

    .gdpr-box p {
        font-size: 14px;
        margin-bottom: 20px;
    }

.gdpr-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

    .gdpr-options label {
        font-size: 14px;
        display: flex;
        gap: 8px;
        align-items: center;
    }

.gdpr-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.gdpr-modal.hide {
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}


/* =========================================================
   NEWS PAGE
========================================================= */

.hero-news{
    position:relative;
    overflow:hidden;
    padding-top:120px;
    padding-bottom:90px;
}

.hero-news .hero-title{
    max-width:820px;
}

.hero-news .hero-subtitle{
    max-width:760px;
}

/* =========================================================
   FEATURED ARTICLE
========================================================= */

.featured-news-card{
    position:relative;
    display:grid;
    grid-template-columns:1.15fr 1fr;
    gap:0;
    overflow:hidden;

    border-radius:32px;

    background:
        linear-gradient(
            135deg,
            rgba(48,84,132,0.96),
            rgba(15,23,42,0.96)
        );

    border:1px solid rgba(255,255,255,0.10);

    box-shadow:
        0 24px 80px rgba(15,23,42,0.18),
        0 12px 40px rgba(48,84,132,0.16);

    text-decoration:none;

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.featured-news-card:hover{
    transform:translateY(-6px);

    box-shadow:
        0 30px 90px rgba(15,23,42,0.24),
        0 18px 48px rgba(48,84,132,0.22);
}

.featured-news-image{
    position:relative;
    min-height:420px;
    overflow:hidden;
}

.featured-news-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;

    transition:transform .6s ease;
}

.featured-news-card:hover .featured-news-image img{
    transform:scale(1.04);
}

.featured-news-overlay{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(15,23,42,0.20),
            rgba(15,23,42,0.05)
        );
}

.featured-news-content{
    position:relative;

    display:flex;
    flex-direction:column;
    justify-content:center;

    padding:48px;
}

.featured-news-tag{
    display:inline-flex;
    align-items:center;

    width:fit-content;

    padding:8px 14px;

    margin-bottom:22px;

    border-radius:999px;

    background:rgba(255,255,255,0.12);

    border:1px solid rgba(255,255,255,0.10);

    color:#dbeafe;

    font-size:12px;
    font-weight:700;
    letter-spacing:.08em;
}

.featured-news-content h2{
    margin:0 0 18px;

    color:#ffffff;

    font-size:clamp(32px, 4vw, 46px);
    line-height:1.12;
}

.featured-news-content p{
    margin:0 0 28px;

    color:rgba(255,255,255,0.82);

    font-size:17px;
    line-height:1.75;
}

.featured-news-meta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;

    flex-wrap:wrap;

    color:#cbd5e1;

    font-size:14px;
}

.featured-news-read{
    color:#ffffff;
    font-weight:700;
}

/* =========================================================
   NEWS GRID
========================================================= */

.news-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:28px;

    margin-top:42px;
}

.news-card{
    position:relative;

    overflow:hidden;

    border-radius:26px;

    background:#ffffff;

    border:1px solid rgba(15,23,42,0.06);

    box-shadow:
        0 12px 36px rgba(15,23,42,0.06);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.news-card:hover{
    transform:translateY(-6px);

    border-color:rgba(48,84,132,0.12);

    box-shadow:
        0 22px 56px rgba(15,23,42,0.10);
}

.news-card-link{
    display:flex;
    flex-direction:column;

    height:100%;

    color:inherit;
    text-decoration:none;
}

.news-card-image{
    position:relative;
    overflow:hidden;

    aspect-ratio:16 / 10;

    background:#e5e7eb;
}

.news-card-image img{
    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

    transition:transform .55s ease;
}

.news-card:hover .news-card-image img{
    transform:scale(1.05);
}

.news-card-body{
    display:flex;
    flex-direction:column;
    flex:1;

    padding:28px;
}

.news-card-date{
    margin-bottom:14px;

    color:#64748b;

    font-size:13px;
    font-weight:600;
}

.news-card-body h3{
    margin:0 0 16px;

    color:#0f172a;

    font-size:24px;
    line-height:1.30;
}

.news-card-body p{
    margin:0 0 22px;

    color:#475569;

    line-height:1.75;

    flex:1;
}

.news-card-read{
    display:inline-flex;
    align-items:center;

    color:#305484;

    font-weight:700;

    transition:transform .25s ease;
}

.news-card:hover .news-card-read{
    transform:translateX(4px);
}

/* =========================================================
   LOADING / EMPTY
========================================================= */

.news-loading,
.news-empty{
    margin-top:42px;

    text-align:center;

    color:#64748b;

    font-size:16px;
}

.news-loading{
    animation:pulseNews 1.5s infinite;
}

@keyframes pulseNews{
    0%{opacity:.45;}
    50%{opacity:1;}
    100%{opacity:.45;}
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1180px){

    .featured-news-card{
        grid-template-columns:1fr;
    }

    .featured-news-image{
        min-height:340px;
    }

    .news-grid{
        grid-template-columns:repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 760px){

    .featured-news-content{
        padding:34px 26px;
    }

    .featured-news-content h2{
        font-size:32px;
    }

    .featured-news-content p{
        font-size:16px;
    }

    .news-grid{
        grid-template-columns:1fr;
    }

    .news-card-body{
        padding:24px;
    }

    .news-card-body h3{
        font-size:22px;
    }
}

/* =========================================================
   ARTICLE PAGE
========================================================= */

.hero-news-detail{
    position:relative;
    overflow:hidden;

    padding-top:120px;
    padding-bottom:70px;
	
	background:
    linear-gradient(
        180deg,
        rgba(248,250,252,1) 0%,
        rgba(241,245,249,1) 100%
    );	
	
}

.article-meta-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;

    flex-wrap:wrap;

    margin-bottom:30px;
}

.back-news-link{
    display:inline-flex;
    align-items:center;
    gap:8px;

    color:#64748b;

    text-decoration:none;

    font-size:15px;
    font-weight:600;

    transition:
        transform .25s ease,
        color .25s ease;
}

.back-news-link:hover{
   color:#305484;
    transform:translateX(-2px);
}

#articleDateTop{
    color:#64748b;

    font-size:14px;
    font-weight:500;
}

.article-title{
    max-width:980px;

    margin:0 0 26px;

    color:#0f172a;

    font-size:clamp(38px, 5vw, 62px);
    line-height:1.08;
}

.article-summary{
    max-width:860px;

    margin:0;

    color:#475569;

    font-size:20px;
    line-height:1.85;
}

/* =========================================================
   ARTICLE IMAGE
========================================================= */

.article-image-section{
    padding-top:10px;
}

.article-image-shell{
    position:relative;
    overflow:hidden;

    border-radius:34px;

    border:1px solid rgba(15,23,42,0.08);

    box-shadow:
        0 30px 90px rgba(15,23,42,0.14);

    background:#e5e7eb;
}

.article-image-shell img{
    width:100%;
    height:auto;

    display:block;

    object-fit:contain;

    background:#f8fafc;
}

/* =========================================================
   ARTICLE LAYOUT
========================================================= */

.article-layout{
    max-width:960px;
}

.article-content{
    width:100%;
}

.article-body{
    position:relative;

    padding:54px;

    border-radius:32px;

    background:#ffffff;

    border:1px solid rgba(15,23,42,0.06);

    box-shadow:
        0 18px 56px rgba(15,23,42,0.06);
}

.article-body-inner{
    color:#334155;

    font-size:18px;
    line-height:1.95;
}

/* =========================================================
   TYPOGRAPHY
========================================================= */

.article-body-inner h1,
.article-body-inner h2,
.article-body-inner h3,
.article-body-inner h4{
    color:#0f172a;

    line-height:1.25;

    margin-top:48px;
    margin-bottom:20px;
}

.article-body-inner h1{
    font-size:42px;
}

.article-body-inner h2{
    font-size:34px;
}

.article-body-inner h3{
    font-size:28px;
}

.article-body-inner h4{
    font-size:22px;
}

.article-body-inner p{
    margin:0 0 26px;
}

.article-body-inner strong{
    color:#0f172a;
}

.article-body-inner a{
    color:#305484;
    font-weight:600;

    text-decoration:none;
}

.article-body-inner a:hover{
    text-decoration:underline;
}

.article-body-inner ul,
.article-body-inner ol{
    margin:0 0 28px 24px;
}

.article-body-inner li{
    margin-bottom:12px;
}

.article-body-inner blockquote{
    position:relative;

    margin:42px 0;
    padding:28px 32px;

    border-left:5px solid #305484;

    background:
        linear-gradient(
            135deg,
            rgba(48,84,132,0.06),
            rgba(48,84,132,0.02)
        );

    border-radius:18px;

    color:#1e293b;

    font-size:20px;
    line-height:1.75;
    font-weight:500;
}

.article-body-inner img{
    width:100%;
    height:auto;

    margin:36px 0;

    border-radius:22px;
}

.article-body-inner table{
    width:100%;

    margin:36px 0;

    border-collapse:collapse;

    overflow:hidden;

    border-radius:18px;

    background:#ffffff;

    border:1px solid rgba(15,23,42,0.08);
}

.article-body-inner table th{
    background:#305484;
    color:#ffffff;

    padding:16px;
    text-align:left;
}

.article-body-inner table td{
    padding:16px;

    border-top:1px solid rgba(15,23,42,0.08);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 980px){

    .article-body{
        padding:40px 34px;
    }

    .article-summary{
        font-size:18px;
    }

    .article-title{
        font-size:48px;
    }
}

@media (max-width: 760px){

    .hero-news-detail{
        padding-top:100px;
        padding-bottom:54px;
    }

    .article-title{
        font-size:38px;
    }

    .article-summary{
        font-size:17px;
        line-height:1.75;
    }

    .article-body{
        padding:32px 24px;
        border-radius:24px;
    }

    .article-body-inner{
        font-size:17px;
        line-height:1.85;
    }

    .article-body-inner h1{
        font-size:34px;
    }

    .article-body-inner h2{
        font-size:28px;
    }

    .article-body-inner h3{
        font-size:24px;
    }

    .article-body-inner blockquote{
        padding:22px 24px;
        font-size:18px;
    }

    .article-image-shell{
        border-radius:24px;
    }
}