/* mainPage-style.css */
:root {
    --bg: #0B0D10;
    --nav: #07090B;
    --text: #ffffff;
    --muted: rgba(255,255,255,.72);
    --line: rgba(255,255,255,.08);
    --accent: #5CC8D9;
    --accent-2: #41E2FB;
    --radius: 10px;
    --pad-x: 40px;
    --app-accent: var(--accent);
    --app-border: var(--line);
    --app-bg: rgba(255,255,255,.04);
    --app-bg-hover: rgba(255,255,255,.06);
    --app-shadow: rgba(0,0,0,.25);
    /* =========================
     TYPOGRAPHY SYSTEM
     ========================= */
    --font: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    /* sizes (fluid) */
    --fs-900: clamp(34px, 3.6vw, 52px); /* hero H1 */
    --fs-850: clamp(30px, 3.0vw, 44px); /* big display */
    --fs-800: clamp(26px, 2.6vw, 40px); /* section big */
    --fs-700: clamp(22px, 2.0vw, 30px); /* section small / strong h2 */
    --fs-650: clamp(20px, 1.8vw, 26px); /* prominent h3 */
    --fs-600: clamp(18px, 1.5vw, 22px); /* h3 */
    --fs-500: 16px; /* body */
    --fs-450: 15px; /* body-small */
    --fs-400: 14px; /* small */
    --fs-300: 12px; /* micro */
    /* line heights */
    --lh-tight: 1.12;
    --lh-normal: 1.45;
    --lh-relaxed: 1.6;
    /* weights */
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 800;
    /* letter spacing */
    --ls-tight: -0.02em;
    --ls-wide: 0.14em;
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: var(--font);
    margin: 0;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: var(--fs-500);
    line-height: var(--lh-relaxed);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    margin: 0;
    line-height: var(--lh-tight);
    letter-spacing: var(--ls-tight);
}

p {
    margin: 0;
    line-height: var(--lh-relaxed);
}

a {
    text-decoration: none;
    color: inherit;
}

.dark-text {
    color: #0b0d10;
    margin: 0;
}

/* Container */
.content {
    margin: 0 auto;
    padding-inline: var(--pad-x);
}

/* =========================
   NAV
   ========================= */

.nav-container {
    background: var(--nav);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-content {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo-placeholder {
    display: flex;
    align-items: center;
    max-width: 150px;
    flex: 0 0 auto;
}

    .logo-placeholder img {
        width: 100%;
        height: auto;
        display: block;
    }

/* Links */
.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1 1 auto;
    justify-content: center;
    text-transform: uppercase;
}

    .nav-links a {
        color: var(--muted);
        font-weight: var(--fw-regular);
        font-size: var(--fs-300);
        line-height: var(--lh-normal);
        padding: 10px 10px;
        border-radius: 8px;
        transition: color .18s ease, background-color .18s ease;
    }

        .nav-links a:hover {
            color: var(--text);
            background: rgba(255,255,255,.04);
        }

        .nav-links a:focus-visible {
            outline: 2px solid rgba(92,200,217,.55);
            outline-offset: 2px;
        }

        .nav-links a.active {
            color: var(--text);
            background: rgb(92 200 217 / 35%);
        }

/* Buttons */
.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.button-primary,
.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font);
    font-weight: var(--fw-semibold);
    border-radius: var(--radius);
    white-space: nowrap;
    user-select: none;
    font-size: var(--fs-400);
    line-height: 1;
    transition: transform .12s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}

.button-primary {
    padding: 12px 16px;
    color: #07090B;
    background: var(--accent);
    box-shadow: 0 10px 30px rgba(92,200,217,.12);
}

    .button-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 14px 40px rgba(92,200,217,.18);
    }

    .button-primary:focus-visible {
        outline: 2px solid rgba(92,200,217,.75);
        outline-offset: 2px;
    }

.button-secondary {
    padding: 10px 14px;
    background: rgba(92, 200, 217, 0.06);
    border: 1px solid rgba(92, 200, 217, 0.65);
    color: var(--accent-2);
}

    .button-secondary:hover {
        background: rgba(92, 200, 217, 0.10);
        border-color: rgba(92, 200, 217, 0.85);
        transform: translateY(-1px);
    }

    .button-secondary:focus-visible {
        outline: 2px solid rgba(65,226,251,.55);
        outline-offset: 2px;
    }

/* Burger */
.burger {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.03);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

    .burger img {
        width: 20px;
        height: 20px;
        display: block;
    }

    .burger:focus-visible {
        outline: 2px solid rgba(92,200,217,.55);
        outline-offset: 2px;
    }

/* Mobile drawer */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
    z-index: 60;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(360px, 86vw);
    background: rgba(7,9,11,.92);
    backdrop-filter: blur(10px);
    border-left: 1px solid var(--line);
    transform: translateX(110%);
    transition: transform .24s ease;
    z-index: 70;
    display: flex;
    flex-direction: column;
    padding: 18px;
    gap: 18px;
}

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mobile-menu__logo {
    max-width: 140px;
}

    .mobile-menu__logo img {
        width: 100%;
        height: auto;
        display: block;
    }

.mobile-menu__close {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.03);
    color: var(--text);
    cursor: pointer;
}

    .mobile-menu__close:focus-visible {
        outline: 2px solid rgba(92,200,217,.55);
        outline-offset: 2px;
    }

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 6px;
}

.mobile-menu__link {
    color: var(--muted);
    font-size: var(--fs-400);
    padding: 14px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.06);
    background: rgba(255,255,255,.02);
    transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}

    .mobile-menu__link:hover {
        color: var(--text);
        background: rgba(255,255,255,.04);
        border-color: rgba(255,255,255,.10);
    }

.mobile-menu__actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-full {
    width: 100%;
}

/* Open state (toggle with JS) */
.menu-open .menu-overlay {
    opacity: 1;
    pointer-events: auto;
}

.menu-open .mobile-menu {
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 1190px) {
    :root {
        --pad-x: 18px;
    }

    .nav-links {
        display: none;
    }

    .burger {
        display: inline-flex;
    }

    .nav-buttons {
        gap: 10px;
    }
}

@media (max-width: 520px) {
    .button-secondary {
        display: none;
    }
    .button-secondary.mobile-full {
        display: flex;
    }
}

/* =========================
   HERO
   ========================= */
.hero-bg {
    position: relative;
    min-height: calc(100dvh - 72px);
    overflow: hidden;
    display: grid;
    align-items: center;
    padding: clamp(28px, 4vw, 56px) 0;
}

.hero-bg__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
}

.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 55% at 50% 35%, rgb(0 0 0 / 0%) 0%, rgb(11 13 16 / 0%) 55%, rgb(11 13 16 / 0%) 100%), linear-gradient(to bottom, rgb(11 13 16 / 0%), rgb(11 13 16 / 62%));
    pointer-events: none;
    z-index: 1;
}

.hero-bg__inner {
    position: relative;
    z-index: 2;
}


/* .hero-bg::before{
  content:"";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      60% 55% at 50% 35%,
      rgba(0, 0, 0, 0.93) 0%,
      rgba(11,13,16,.82) 55%,
      rgba(11,13,16,.98) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(11, 13, 16, 0.527),
      rgba(11, 13, 16,.92)
    );
  pointer-events: none;
} */


.hero-bg__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    align-items: center;
    gap: clamp(18px, 3vw, 44px);
}

.hero-head {
    text-align: left;
    max-width: 860px;
}

.hero-mark {
    width: clamp(180px, 18vw, 380px);
    height: auto;
    display: block;
    margin: 0 0 14px;
}

.hero-head h1 {
    margin: 0 0 12px;
    font-size: var(--fs-800);
    line-height: var(--lh-tight);
    letter-spacing: var(--ls-tight);
    font-weight: var(--fw-bold);
}

.hero-head p {
    margin: 0 0 18px;
    max-width: 680px;
    color: var(--muted);
    font-size: clamp(14px, 1.25vw, 16px);
    line-height: var(--lh-relaxed);
    font-weight: var(--fw-regular);
}

.hero-btns {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-previews-wrap {
    position: relative;
    width: 100%;
    display: grid;
    justify-items: center;
}

.hero-previews {
    width: min(980px, 100%);
    position: relative;
    display: grid;
    place-items: center;
}

.hero-web {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
/*    box-shadow: 0 30px 90px rgba(0,0,0,.55);*/
}

.hero-app {
    position: absolute;
    right: clamp(8px, 1.2vw, 16px);
    bottom: clamp(-26px, -2vw, -34px);
    width: clamp(220px, 22vw, 250px);
    height: auto;
    display: block;
    filter: drop-shadow(0 28px 60px rgba(0,0,0,.65));
}

.hero-web-swap {
    position: relative;
    width: 100%;
    display: block;
}

    .hero-web-swap .hero-web {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 14px;
    }

/* overlay το dark πάνω από το light */
.hero-web--dark {
    position: absolute;
    inset: 0;
    opacity: 0; /* start hidden */
    pointer-events: none;
    transform: translateZ(0); /* καλύτερο compositing */
}

.hero-web--light {
    transform: translateZ(0);
}




/* =========================
   RESPONSIVE
   ========================= */

/* Tablet: 1 column + centered text */
@media (max-width: 980px) {
    .hero-bg {
        min-height: auto;
        padding: 56px 0 72px;
    }

    .hero-mark {
        margin: 0 auto 14px;
    }

    .hero-bg__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-head {
        text-align: center;
        margin: 0 auto;
    }

        .hero-head p {
            margin-inline: auto;
        }

    .hero-btns {
        justify-content: center;
    }

    .hero-previews {
        width: min(860px, 92vw);
    }

    .hero-app {
        right: 10px;
        bottom: -22px;
        width: clamp(210px, 34vw, 300px);
    }
}

/* Mobile: stack previews nicely, no absolute overlap */
@media (max-width: 560px) {
    .hero-bg {
        padding: 44px 0 54px;
    }

    .hero-mark {
        margin-inline: auto;
    }

    .hero-previews {
        display: grid;
        gap: 14px;
    }

    .hero-app {
        position: relative;
        right: auto;
        bottom: auto;
        width: min(78%, 320px);
        margin-top: 0;
        display: none;
    }
}

/* =========================
   SECTIONS (Global)
   ========================= */

.section-white {
    background: #ffffff;
}

/* Sections */
.section-container {
    padding: 60px 40px;
}

.section-title {
    margin: 0 auto;
    color: #0b0d10;
    text-transform: uppercase;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .section-title .small {
        font-size: var(--fs-700);
        font-weight: var(--fw-regular);
        line-height: var(--lh-tight);
        letter-spacing: 0;
    }

    .section-title .big {
        font-size: var(--fs-800);
        font-weight: var(--fw-bold);
        line-height: 1.05;
        letter-spacing: var(--ls-tight);
    }

/* =========================
   THUMBS / CARDS
   ========================= */

.thumbs-container {
    margin-top: 64px;
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 350px));
    justify-content: center;
    max-width: calc(350px * 3 + 24px * 2);
    margin-inline: auto;
    padding-inline: 18px;
}

.section-features {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.link-features {
    margin: 40px auto 0px;
    text-align: center;
}

@media (max-width: 980px) {
    .thumbs-container {
        grid-template-columns: repeat(2, minmax(0, 350px));
    }
}

@media (max-width: 680px) {
    .thumbs-container {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}

.thumbs-container .card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #0b0d10;
    padding: 24px;
    gap: 10px;
    background: rgba(108, 202, 212, 0.06);
    border: 1px solid #6CCAD4;
    border-radius: 12px;
}

.card .icon {
    width: 40px;
    padding: 8px;
    height: auto;
    border-radius: 10px;
    background-color: #B1E3EB;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .card .icon img {
        width: 100%;
        height: auto;
    }

.card-title {
    text-transform: uppercase;
    margin: 0;
    font-size: var(--fs-600);
    font-weight: var(--fw-bold);
    line-height: var(--lh-tight);
}

.card-p {
    margin: 0;
    font-size: var(--fs-400);
    line-height: var(--lh-relaxed);
    color: rgba(11,13,16,.78);
}

/* =========================
   PHOTOS GRID
   ========================= */

.photos-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 50dvh 50dvh;
    width: 100%;
    height: 100dvh;
    position: relative;
}

.photo-container {
    width: 100%;
    height: 100%;
}

    .photo-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.photo-section-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50vw;
    gap: 14px;
    position: absolute;
    padding: 18px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #6ECAD3;
    border-radius: 14px;
}

@media (max-width: 870px) {
    .photo-section-text {
        width: 80vw;
    }
}

.card, .photo-container img, .hero-web, .hero-app {
    will-change: transform, opacity;
}

.section-white .section-title {
    color: #0b0d10;
}

/* =========================
   CLOUD PORTAL
   ========================= */

.cloud-portal-text {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 12px;
    margin-bottom: 80px;
}

.cloud-portal-text-center {
    text-align: left;
    align-items: center;
}

.app-benefits {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    height: 100%;
}

.section-title {
    margin: 0;
}

.section-title-left {
    text-align: left;
    align-items: flex-start;
}

.cloud-view {
    margin-top: 28px;
    display: grid;
    grid-template-columns: minmax(280px, 420px) 1fr;
    gap: 28px;
    align-items: start;
}

/* left list */
.cloud-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* items */
.cloud-item {
    appearance: none;
    border: 1px solid rgba(0,0,0,.16);
    background: #fff;
    border-radius: 14px;
    padding: 16px 16px;
    text-align: left;
    cursor: pointer;
    min-height: 118px;
    transition: transform .12s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}

    .cloud-item h3 {
        margin: 0 0 6px;
        font-size: var(--fs-450);
        font-weight: var(--fw-bold);
        text-transform: uppercase;
        color: #011417;
        letter-spacing: 0.01em;
    }

    .cloud-item p {
        margin: 0;
        color: rgba(1,20,23,.78);
        font-size: var(--fs-400);
        line-height: var(--lh-normal);
    }

    .cloud-item:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 22px rgba(0,0,0,.08);
    }

    .cloud-item:focus-visible {
        outline: 2px solid rgba(92,200,217,.75);
        outline-offset: 2px;
    }

    /* active */
    .cloud-item.is-active {
        border-color: #4AA5B4;
        background: #55B6C6;
        box-shadow: 0 4px 24px rgba(59,151,177,.55);
    }

        .cloud-item.is-active h3,
        .cloud-item.is-active p {
            color: #0B0D10;
        }

/* right preview */
.cloud-preview {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    min-height: 360px;
}

/* panel (hidden desktop) */
.cloud-panel {
    display: none;
    width: min(720px, 100%);
    margin: 0 0 12px auto;
    text-align: left;
    padding: 14px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(0,0,0,.12);
    box-shadow: 0 10px 28px rgba(0,0,0,.08);
}

.cloud-panel__title {
    margin: 0 0 6px;
    font-size: var(--fs-600);
    font-weight: var(--fw-bold);
    color: #011417;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.cloud-panel__desc {
    margin: 0;
    font-size: var(--fs-400);
    line-height: var(--lh-relaxed);
    color: rgba(1,20,23,.72);
}

.cloud-preview__img {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 550px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 22px 50px rgba(0, 0, 0, .25));
    transform-origin: center;
    right: -20vw;
}

@media (max-width: 980px) {
    .cloud-view {
        grid-template-columns: 1fr;
        gap: 16px;
        align-items: start;
    }

    .cloud-list {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        padding: 8px 0 0;
    }

    .cloud-portal-text {
        text-align: center;
        align-self: center;
        justify-content: center;
        align-items: center;
    }

        .cloud-portal-text .section-title {
            margin: 0 auto;
        }

    .cloud-item {
        padding: 12px 12px;
        border-radius: 14px;
        box-shadow: none;
        transform: none;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-height: 46px;
    }

        .cloud-item h3 {
            margin: 0;
            font-size: var(--fs-300);
            font-weight: var(--fw-bold);
            line-height: 1.2;
            text-transform: uppercase;
        }

        .cloud-item p {
            display: none;
        }

        .cloud-item.is-active {
            background: #55B6C6;
            border-color: #4AA5B4;
            box-shadow: 0 10px 22px rgba(59,151,177,.20);
        }

    .cloud-preview {
        align-items: center;
        min-height: auto;
    }

    .section-title-left {
        text-align: center;
        align-items: center;
    }

    .cloud-panel {
        display: block;
        width: 100%;
        margin: 12px 0 12px;
        border: none;
        box-shadow: none;
        text-align: center;
    }

    .cloud-preview__img {
        width: 100%;
        max-width: 720px;
        right: 0;
    }
}

@media (max-width: 640px) {
    .cloud-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 360px) {
    .cloud-list {
        grid-template-columns: 1fr;
    }
}

.title-white {
    color: #ffffff;
}

.subtext {
    max-width: 600px;
    font-weight: var(--fw-regular);
    color: rgba(255,255,255,.78);
    margin: 0;
    font-size: var(--fs-400);
    line-height: var(--lh-relaxed);
    text-align: center;
}

/* =========================
   APP
   ========================= */
/* Section header wrapper (optional helper) */
.app-head {
    max-width: 980px;
    margin-inline: auto;
}

/* Layout */
.app-container {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
    gap: clamp(18px, 3vw, 56px);
    margin-top: clamp(18px, 2vw, 28px);
    align-items: start;
}

/* Left image */
.app-image {
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: sticky;
    top: 110px; /* leave room for navbar */
    align-self: start;
}

    .app-image img {
        width: min(360px, 72%);
        max-width: 420px;
        height: auto;
        filter: drop-shadow(0 18px 30px var(--app-shadow));
        transform: translateZ(0);
    }

/* Benefits wrapper */
.app-benefits {
    width: 100%;
}

/* Auto grid: 2 columns when space allows, 1 column when not */
.benefit-container {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: stretch;
}

/* Each card */
.benefit-content {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid var(--app-border);
    background: var(--app-bg);
    backdrop-filter: blur(8px);
    transition: transform .15s ease, border-color .15s ease, background-color .15s ease;
}

/* Hover lift on desktop */
@media (hover:hover) {
    .benefit-content:hover {
        transform: translateY(-2px);
        border-color: rgba(85,182,198,.35);
        background: var(--app-bg-hover);
    }
}

.image-bullet {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    opacity: .95;
}

    .image-bullet img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

/* Titles + text */
.benefit-title {
    font-size: clamp(14px, 1.2vw, 18px);
    margin: 0;
    color: var(--app-accent);
    line-height: 1.15;
    text-transform: uppercase;
    font-weight: var(--fw-bold);
    letter-spacing: .6px;
}

.benefit-text p {
    margin: 10px 0 0 0;
    opacity: .95;
    line-height: 1.55;
    font-size: clamp(13px, 1.05vw, 15px);
}

.benefit-text ul {
    margin: 10px 0 0 0;
    padding-left: 18px;
    max-width: 60ch;
    font-size: clamp(13px, 1.05vw, 15px);
    line-height: 1.55;
}

.benefit-text li {
    margin: 6px 0;
    opacity: .95;
}

/* Badge (if you re-enable it) */
h3.badge-heading {
    font-size: var(--fs-650);
    background-color: var(--app-accent);
    width: fit-content;
    padding: 8px 12px;
    border-radius: 12px;
    color: #0b0b0b;
    letter-spacing: .2px;
    margin: 0 0 12px 0;
    font-weight: var(--fw-bold);
    line-height: 1.1;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 980px) {
    .app-container {
        grid-template-columns: 1fr;
    }

    .app-image {
        position: relative;
        top: auto;
        justify-content: center;
        margin-bottom: 10px;
    }

        .app-image img {
            width: min(320px, 72vw);
            max-width: 360px;
        }
}

@media (max-width: 520px) {
    .benefit-content {
        grid-template-columns: 24px 1fr;
        padding: 14px;
        border-radius: 16px;
    }

    .image-bullet {
        width: 24px;
        height: 24px;
    }

    .benefit-text ul {
        padding-left: 16px;
    }

    h3.badge-heading {
        border-radius: 12px;
    }
}

/* =========================
   WEB ONLINE BOOKING
   ========================= */

.web-online-booking {
    height: 50dvh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("./Photos/hero-area.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    isolation: isolate;
}

    .web-online-booking::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        background: linear-gradient( to bottom, rgb(11, 13, 16) 0%, rgba(11, 13, 16, 0.798) 22%, rgba(11, 13, 16, 0.419) 50%, rgba(11, 13, 16, 0.837) 78%, rgb(11, 13, 16) 100% );
    }

    .web-online-booking::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        opacity: .10;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
        mix-blend-mode: overlay;
    }

    .web-online-booking > * {
        position: relative;
        z-index: 1;
    }

.ob-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 16px;
}

.ob-bg {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(18px, 2.5vw, 40px);
    gap: 16px;
    width: min(720px, 92vw);
    text-align: center;
    color: #0b0d10;
    background: linear-gradient( 86.6deg, rgba(110, 202, 211, 0.82) 0%, rgba(92, 192, 202, 0.82) 100.63% );
    backdrop-filter: blur(6px);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 16px 38px rgba(0,0,0,.30);
}

    .ob-bg .ob-title {
        margin: 0;
        line-height: var(--lh-tight);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-transform: uppercase;
        gap: 4px;
    }

        .ob-bg .ob-title .small {
            font-size: var(--fs-700);
            font-weight: var(--fw-regular);
        }

        .ob-bg .ob-title .big {
            font-size: var(--fs-800);
            font-weight: var(--fw-bold);
        }

.ob-title__dark,
.ob-title__light {
    max-width: 70ch;
    margin: 0;
    line-height: var(--lh-relaxed);
    text-align: center;
    font-size: var(--fs-400);
}

.ob-title__light {
    color: rgba(255,255,255,.85);
}

@media (max-width: 520px) {
    .web-online-booking {
        height: 60dvh;
        background-attachment: scroll;
    }

    .ob-bg {
        width: 100%;
    }
}

/* =========================
   PRICING
   ========================= */

.pricing {
    position: relative;
    padding: 90px 0 70px;
    isolation: isolate;
    overflow: hidden;
}

.pricing__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.pricing__inner {
    position: relative;
    z-index: 1;
}

.pricing__head {
    text-align: center;
    max-width: 980px;
    margin: 0 auto 34px;
}

.pricing__title {
    margin: 0 0 10px;
    letter-spacing: var(--ls-wide);
    font-weight: var(--fw-bold);
    font-size: var(--fs-800);
    text-transform: uppercase;
}

.pricing__subtitle {
    margin: 0 auto;
    max-width: 980px;
    color: rgba(255,255,255,.78);
    font-weight: var(--fw-regular);
    line-height: var(--lh-relaxed);
    font-size: var(--fs-400);
}

.pricing__grid {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, minmax(200px, 300px));
    gap: 26px;
    align-items: center;
    justify-content: center;
}

.price-card {
    border-radius: 16px;
    background: rgba(16, 20, 26, .78);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 24px 70px rgba(0,0,0,.50);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.price-card__body {
    padding: 28px 26px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.price-card--starter {
    border-color: rgba(255,255,255,.20);
}

.price-card--pro {
    border: 1px solid rgba(255, 59, 59, .65);
    box-shadow: 0 26px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(255, 59, 59, .22) inset, 0 0 42px rgba(255, 59, 59, .12);
    transform: translateY(-6px);
}

.price-card--basic {
    border: 1px solid rgba(92,200,217,.55);
    box-shadow: 0 26px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(92,200,217,.18) inset, 0 0 46px rgba(92,200,217,.14);
}

.price-card__name {
    margin: 0 0 0px;
    font-size: clamp(26px, 2.2vw, 34px);
    font-weight: var(--fw-bold);
    letter-spacing: var(--ls-tight);
}

.price-card__name-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-card__hot {
    font-size: 18px;
    transform: translateY(2px);
}

.price-card__price {
    font-size: var(--fs-400);
    color: rgba(255,255,255,.70);
    font-weight: var(--fw-regular);
    margin-bottom: 14px;
}

.price-card__price--ask {
    color: rgba(255,255,255,.68);
}

.price-card__line {
    height: 1px;
    background: rgba(255,255,255,.14);
    margin: 10px 0 18px;
}

.price-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.price-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: rgba(255,255,255,.86);
    font-size: var(--fs-400);
    font-weight: var(--fw-regular);
    line-height: var(--lh-normal);
}

.tick {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex: 0 0 18px;
    margin-top: 2px;
}

.tick--gray {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.16);
    color: rgba(255,255,255,.85);
}

.tick--red {
    background: rgba(255, 59, 59, .18);
    border: 1px solid rgba(255, 59, 59, .45);
    color: rgba(255,255,255,.90);
}

.tick--teal {
    background: rgba(92,200,217,.14);
    border: 1px solid rgba(92,200,217,.45);
    color: rgba(255,255,255,.90);
}

.price-card__footnote {
    margin-top: 10px;
    font-size: var(--fs-300);
    color: rgba(255,255,255,.62);
    font-weight: var(--fw-regular);
    line-height: var(--lh-normal);
}

.price-card__cta {
    margin-top: 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.20);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.80);
    font-size: var(--fs-400);
    font-weight: var(--fw-semibold);
    transition: transform .12s ease, background-color .18s ease, border-color .18s ease;
}

    .price-card__cta:hover {
        transform: translateY(-1px);
        background: rgba(255,255,255,.08);
        border-color: rgba(255,255,255,.28);
    }

.price-card__cta--pro {
    border-color: rgba(255, 59, 59, .55);
    background: rgba(255, 59, 59, .10);
    color: rgba(255,255,255,.86);
}

    .price-card__cta--pro:hover {
        background: rgba(255, 59, 59, .14);
        border-color: rgba(255, 59, 59, .75);
    }

.price-card__cta--base {
    border: 1px solid rgb(70 151 165);
    background: rgb(76 163 179 / 16%);
    color: rgba(255,255,255,.86);
}

    .price-card__cta--base:hover {
        border: 1px solid rgb(70 151 165);
        background: rgba(88, 190, 208, 0.16);
    }

.pricing__download {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.pricing__download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 18px;
    border-radius: 10px;
    background: rgba(92,200,217,.90);
    color: #071014;
    font-weight: var(--fw-bold);
    font-size: var(--fs-300);
    border: 0;
    box-shadow: 0 14px 34px rgba(92,200,217,.18);
    transition: transform .12s ease, box-shadow .18s ease;
}

    .pricing__download-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 18px 44px rgba(92,200,217,.24);
    }

@media (max-width: 980px) {
    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-inline: auto;
    }

    .price-card--pro {
        transform: none;
    }
}

/* =========================
   ASFALIA
   ========================= */

.asfaleia-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 28px;
}

.asfaleia-image {
    display: flex;
    justify-content: end;
    align-items: end;
}

.asfaleia-image__placeholder {
    max-width: 500px;
}

.asfaleia-image img {
    width: 100%;
}

@media (max-width: 980px) {
    .asfaleia-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .asfaleia-image {
        justify-content: center;
        align-items: end;
    }
}

/* =========================
   CONTACT
   ========================= */

.contact-info {
    margin: 40px auto;
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-link {
    font-size: clamp(22px, 2.6vw, 40px);
    color: #0b0d10;
    font-weight: var(--fw-semibold);
    line-height: var(--lh-tight);
}

.contact-item .img-placeholder {
    margin-top: 12px;
}

.itworx-card {
    width: fit-content;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    gap: 28px;
    background: #0B0D10;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.85);
    border-radius: 13px;
}

.locations__container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.location__item {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 8px;
    justify-content: center;
    font-size: var(--fs-400);
    line-height: var(--lh-normal);
}

.border-sharp {
    display: block;
    position: relative;
    width: 320px;
    height: 1px;
    background: linear-gradient(90deg, #ffffff00 0%,#ffffff 50%, #ffffff00 100%);
}

.link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--fs-400);
    line-height: var(--lh-normal);
}

.itworx-logo__placeholder {
    width: 160px;
}

    .itworx-logo__placeholder img {
        width: 100%;
    }

@media (max-width: 560px) {
    .contact-info {
        gap: 20px;
    }
}


/* =========================
   FOOTER (IMPROVED)
   ========================= */

.site-footer {
    position: relative;
    background: #ffffff;
    color: #0b0d10;
    border-top: 1px solid rgba(0,0,0,.10);
    overflow: hidden;
}

    /* subtle top highlight */
    .site-footer::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        height: 120px;
        background: radial-gradient(60% 120px at 20% 0%, rgba(92,200,217,.18) 0%, rgba(92,200,217,0) 70%);
        pointer-events: none;
    }

/* main grid */
.footer__inner {
    position: relative;
    padding: 54px var(--pad-x) 26px;
    display: grid;
    grid-template-columns: minmax(260px, 420px) 1fr;
    gap: clamp(22px, 4vw, 70px);
    align-items: start;
}

/* Left brand */
.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer__logo {
    display: flex;
    align-items: center;
    max-width: 190px;
    width: fit-content;
}

    .footer__logo img {
        width: 100%;
        height: auto;
        display: block;
    }

.footer__desc {
    margin: 0;
    font-size: var(--fs-400);
    line-height: var(--lh-relaxed);
    color: rgba(11,13,16,.72);
    font-weight: var(--fw-regular);
    max-width: 54ch;
}

/* Social */
.footer__social {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.footer__social-btn {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,.12);
    background: rgba(0,0,0,.03);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .12s ease, background-color .18s ease, border-color .18s ease;
}

    .footer__social-btn img {
        width: 18px;
        height: 18px;
        display: block;
        opacity: .85;
    }

    .footer__social-btn:hover {
        transform: translateY(-1px);
        background: rgba(0,0,0,.05);
        border-color: rgba(0,0,0,.18);
    }

    .footer__social-btn:focus-visible {
        outline: 2px solid rgba(92,200,217,.70);
        outline-offset: 3px;
    }

/* Right columns */
.footer__cols {
    display: grid;
    grid-template-columns: repeat(2, minmax(160px, 220px));
    gap: clamp(18px, 3vw, 56px);
    justify-content: end;
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__title {
    margin: 0 0 6px;
    font-size: var(--fs-400);
    font-weight: var(--fw-bold);
    color: rgba(11,13,16,.92);
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* links: nicer underline + accent */
.footer__link {
    position: relative;
    font-size: var(--fs-400);
    color: rgba(11,13,16,.72);
    font-weight: var(--fw-regular);
    width: fit-content;
    padding: 4px 0;
    transition: color .18s ease, transform .12s ease;
}

    .footer__link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 2px;
        width: 100%;
        height: 1px;
        background: rgba(92,200,217,.55);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .18s ease;
    }

    .footer__link:hover {
        color: rgba(11,13,16,.92);
        transform: translateX(1px);
    }

        .footer__link:hover::after {
            transform: scaleX(1);
        }

    .footer__link:focus-visible {
        outline: 2px solid rgba(92,200,217,.70);
        outline-offset: 3px;
        border-radius: 8px;
    }

/* Bottom row */
.footer__bottom {
    position: relative;
    padding: 14px var(--pad-x) 22px;
    border-top: 1px solid rgba(0,0,0,.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.footer__copy {
    margin: 0;
    font-size: var(--fs-300);
    color: rgba(11,13,16,.70);
    line-height: var(--lh-normal);
}

/* Powered link as subtle pill */
.footer__powered {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--fs-300);
    color: rgba(11,13,16,.70);
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(0,0,0,.03);
    border: 1px solid rgba(0,0,0,.08);
    transition: transform .12s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}

    .footer__powered span {
        color: rgba(11,13,16,.90);
        font-weight: var(--fw-bold);
        letter-spacing: .04em;
    }

    .footer__powered:hover {
        transform: translateY(-1px);
        background: rgba(0,0,0,.05);
        border-color: rgba(0,0,0,.14);
        color: rgba(11,13,16,.85);
    }

        .footer__powered:hover span {
/*            color: #a5f334;*/
        }

        .footer__powered:focus-visible {
            outline: 2px solid rgba(92,200,217,.70);
            outline-offset: 3px;
        }

/* Responsive */
@media (max-width: 980px) {
    .footer__inner {
        grid-template-columns: 1fr;
        gap: 26px;
        padding-top: 44px;
    }

    .footer__cols {
        justify-content: start;
    }
}

@media (max-width: 520px) {
    .footer__cols {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer__bottom {
        align-items: flex-start;
        padding-top: 12px;
    }
}


    /* -------------------------
      Light sections base
    ------------------------- */
    .section-light {
        background: #f4fdff;
        color: #0b0d10;
    }

    .section-light-shade {
        background: #e2f5fa;
        color: #0b0d10;
    }

    .section-white {
        background: #fff;
        color: #0b0d10;
    }

    .feat-section {
        padding: 40px 0;
    }

    .tab-flex {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .sec-head {
        text-align: center;
        max-width: 980px;
        margin: 0 auto 34px;
    }

    .sec-kicker {
        display: flex;
        justify-content: center;
        width: fit-content;
        margin: 0 auto 16px;
        align-items: center;
        height: 24px;
        padding: 0 10px;
        border-radius: 999px;
        font-size: var(--fs-300);
        font-weight: var(--fw-bold);
        letter-spacing: var(--ls-wide);
        text-transform: uppercase;
        color: rgba(11,13,16,.70);
        background: rgba(92,200,217,.14);
        border: 1px solid rgba(92,200,217,.28);
    }

    .sec-title {
        margin: 0 0 10px;
        font-size: var(--fs-800);
        font-weight: var(--fw-bold);
        letter-spacing: var(--ls-tight);
        line-height: 1.05;
    }

    .sec-sub {
        margin: 0 auto;
        max-width: 76ch;
        line-height: var(--lh-relaxed);
        font-weight: var(--fw-regular);
        font-size: var(--fs-400);
        color: rgba(11,13,16,.70);
    }

    .itworx-card a {
        color: white;
    }

    /* Industries chips */
    .industry-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        margin-top: 22px;
    }

    .industry-chip {
        height: 38px;
        padding: 0 14px;
        border-radius: 999px;
        border: 1px solid rgba(0,0,0,.08);
        background: rgba(0,0,0,.03);
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-weight: var(--fw-semibold);
        font-size: var(--fs-300);
        color: rgba(11,13,16,.70);
        text-transform: uppercase;
        letter-spacing: .06em;
    }

    .industry-ico {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: rgba(92,200,217,.85);
        border: 1px solid rgba(92,200,217,.95);
    }

    .mobile-menu__link.active {
        color: var(--text);
        border-color: rgba(92,200,217,.55);
        background: rgba(92,200,217,.14);
    }

.cloud-more-link {
    height: 52px;
    border-radius: 14px;
    border: 1px dashed rgba(0,0,0,.22);
    background: rgba(92,200,217,.10);
    color: #011417;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: var(--fs-300);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform .12s ease, background-color .18s ease, border-color .18s ease;
}

    .cloud-more-link:hover {
        transform: translateY(-1px);
        background: rgba(92,200,217,.14);
        border-color: rgba(0,0,0,.28);
    }

    .cloud-more-link:focus-visible {
        outline: 2px solid rgba(92,200,217,.75);
        outline-offset: 2px;
    }

.cloud-more-ico {
    font-size: 16px;
    transform: translateY(-1px);
}

@media (max-width: 980px) {
    .cloud-list .cloud-item:nth-child(n+4) {
        display: none; /* μένουν τα 3 πρώτα */
    }

    .cloud-more-link {
        display: flex; /* το CTA πάντα visible */
    }
}
/* Cloud "Δείτε περισσότερα" — FIX for grid layouts */
.cloud-more-link {
    width: 100%;
    padding: 12px 14px;
    text-align: left;
    justify-content: space-between;
    white-space: normal; /* να επιτρέπει σωστό wrap */
    line-height: 1.25;
}

/* όταν το cloud-list γίνει grid (mobile/tablet), το link να πιάνει όλη τη γραμμή */
@media (max-width: 980px) {
    .cloud-more-link {
        grid-column: 1 / -1; /* span all columns */
        height: auto; /* όχι fixed 52px */
        min-height: 48px;
        justify-content: space-between;
        text-align: left;
    }
}

/* όταν γίνονται 2 στήλες (<=640px) πάλι full row */
@media (max-width: 640px) {
    .cloud-more-link {
        grid-column: 1 / -1;
    }
}

.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
    display: none;
}

.cloud-more-ico {
    flex: 0 0 auto;
    margin-left: 10px;
}

/* =========================
   LOTTERY (Dark / Clean / System-fit)
   ========================= */

.lottery-section {
    background: transparent;
    padding: 60px 0;
}

.lottery__container {
    width: min(980px, 100%);
    margin: 0 auto;
    padding: 0;
    background: transparent;
    border-radius: 0;
    color: var(--text);
}

.lottery__content {
    text-align: center;
    width: fit-content;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: clamp(20px, 2.4vw, 34px);
    border-radius: 16px;
    background: #054754;
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .50);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}
.lottery-title{
    font-size: 34px
}
    .lottery-title span {
        color: #ef4036;
    }

.lottery__content::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .9;
    background: radial-gradient(520px 220px at 18% 10%, rgba(92,200,217,.10) 0%, rgba(92,200,217,0) 62%), radial-gradient(520px 220px at 82% 0%, rgba(65,226,251,.08) 0%, rgba(65,226,251,0) 60%);
}

    /* typography: same hierarchy as pricing */
    .lottery__content h1 {
        position: relative;
        z-index: 1;
        margin: 0;
        font-size: var(--fs-800);
        font-weight: var(--fw-bold);
        letter-spacing: var(--ls-tight);
        line-height: 1.05;
        text-transform: uppercase;
    }

        .lottery__content h1 + h1 {
            font-size: var(--fs-650);
            font-weight: var(--fw-semibold);
            letter-spacing: .08em;
            color: rgba(255,255,255,.78);
            text-transform: uppercase;
        }

.lottery__container h1 span {
    color: var(--accent-2);
}

.lottery__content p {
    position: relative;
    z-index: 1;
    margin: 4px auto 0;
    max-width: 76ch;
    color: white;
    font-size: var(--fs-500);
    line-height: var(--lh-relaxed);

    
}
.lottery-section{
    background: white;
}
.lottery-terms {
    position: relative;
    z-index: 1;
    width: fit-content;
    margin: 14px auto 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 16px;
    border-radius: var(--radius);
    background: #ef4036;
    /* border: 1px solid rgba(92, 200, 217, 0.65); */
    color: #ffffff;
    font-family: var(--font);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-400);
    line-height: 1;
    cursor: pointer;
    user-select: none;
    transition: transform .12s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}
/* CTA: κάν’το να μοιάζει με button-secondary */
.btn-terms {
    position: relative;
    z-index: 1;
    width: fit-content;
    margin: 14px auto 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 16px;
    border-radius: var(--radius);
    background: rgba(92, 200, 217, 0.06);
    border: 1px solid rgba(92, 200, 217, 0.65);
    color: var(--accent-2);
    font-family: var(--font);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-400);
    line-height: 1;
    cursor: pointer;
    user-select: none;
    transition: transform .12s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}

    .btn-terms:hover {
        background: rgba(92, 200, 217, 0.10);
        border-color: rgba(92, 200, 217, 0.85);
        transform: translateY(-1px);
    }

    .btn-terms:focus-visible {
        outline: 2px solid rgba(65,226,251,.55);
        outline-offset: 2px;
    }

/* responsive like your other sections */
@media (max-width: 980px) {
    .lottery-section {
        padding: 44px 0;
    }
}

@media (max-width: 680px) {
    .lottery__content {
        text-align: left;
    }

    .btn-terms {
        margin-left: 0;
        margin-right: auto;
    }
}


/* =========================
  Final CTA band
   ========================= */
.feat-cta {
    padding: 46px 0;
    background: rgba(92,200,217,.10);
    border-top: 1px solid rgba(92,200,217,.22);
    border-bottom: 1px solid rgba(92,200,217,.22);
}

.feat-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

    .feat-cta__inner h3 {
        margin: 0 0 6px;
        font-size: 22px;
        font-weight: 900;
    }

    .feat-cta__inner p {
        margin: 0;
        color: rgba(255,255,255,.78);
        font-weight: 300;
    }

.feat-cta__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 980px) {
    .feat-cta__inner {
        flex-direction: column;
        justify-content: flex-start;
        align-items: start;
    }
}



/*Legal*/
/* =========================
   LEGAL PAGE (Terms)
   ========================= */
/* =========================
   LEGAL PAGE (Light, no TOC)
   ========================= */

.legal-hero {
    background: #fff;
    color: #0b0d10;
    padding: 64px 0 26px;
    border-bottom: 1px solid rgba(0,0,0,.08);
}

    .legal-hero::before {
        display: none;
    }

.legal-hero__inner {
    max-width: 980px;
}

.legal-kicker {
    color: rgba(11,13,16,.70);
    background: rgba(92,200,217,.14);
    border: 1px solid rgba(92,200,217,.28);
}

.legal-title {
    color: #0b0d10;
}

.legal-sub {
    color: rgba(11,13,16,.70);
}

.legal-page--light {
    background: #fff;
    color: #0b0d10;
    padding: 34px 0 80px;
}

.legal-wrap {
    max-width: 980px;
    margin: 0 auto;
}

/* card like your light sections */
.legal-card--light {
    background: #ffffff;
/*    border: 1px solid rgba(0,0,0,.10);*/
/*    box-shadow: 0 18px 46px rgba(0,0,0,.10);*/
/*    backdrop-filter: none;*/
/*    border-radius: 16px;*/
}

.legal-article {
    padding: clamp(18px, 2.4vw, 34px);
}

.legal-section {
    border-top: 1px solid rgba(0,0,0,.08);
    padding: 24px 0;
}

    .legal-section h2 {
        color: #0b0d10;
    }

    .legal-section p {
        color: rgba(11,13,16,.78);
    }

.legal-muted--light {
    color: rgba(11,13,16,.62) !important;
}

.legal-link {
    color: #0b0d10;
    border-bottom: 1px solid rgba(92,200,217,.70);
}

    .legal-link:hover {
        color: #0b0d10;
        border-bottom-color: rgba(92,200,217,.95);
    }

/* list polish */
.legal-list--light {
    color: rgba(11,13,16,.78);
}

    .legal-list--light li {
        margin: 10px 0;
    }

/* note (light) */
.legal-note--light {
    background: rgba(92,200,217,.10);
    border: 1px solid rgba(92,200,217,.26);
    padding: 16px;
}

    .legal-note--light p {
        color: rgba(11,13,16,.78);
    }

.legal-note__title {
    color: rgba(11,13,16,.86);
}

/* actions spacing */
.legal-actions {
    margin-top: 18px;
}

/* responsive */
@media (max-width: 980px) {
    .legal-hero {
        padding: 52px 0 22px;
    }
}

@media (max-width: 560px) {
    .legal-hero {
        padding: 44px 0 18px;
    }

    .legal-article {
        padding: 16px;
    }
}
