:root {
  --ink: #002230;
  --ink-2: #004251;
  --teal: #3294af;
  --cyan: #83d7ea;
  --paper: #edede9;
  --white: #ffffff;
  --line: rgba(0, 34, 48, 0.1);
  --erp: #12452a;
  --erp-acc: #21a266;
  --rest: #002130;
  --rest-acc: #3294af;
  --park: #1a1a1a;
  --park-acc: #ffd150;
  --hotel: #3b1f4a;
  --hotel-acc: #d4b06a;
  --shadow: 0 18px 50px rgba(0, 34, 48, 0.08);
  --radius: 22px;
  --header: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Roboto, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--ink-2); }
h1, h2, .display {
  font-family: Jura, Roboto, sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.12;
}
h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); margin: 0 0 0.4em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 0 0 0.5em; }
h3 { font-family: Roboto, sans-serif; font-size: 1.15rem; margin: 0 0 0.4em; }
p { margin: 0 0 1em; }
.sr-only, .skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip-link:focus { left: 12px; top: 12px; background: #fff; padding: 8px 12px; z-index: 80; }

.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.lead { font-size: 1.15rem; color: #35525c; max-width: 42rem; }
.muted { color: #5a727a; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--ink-2); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-ghost:hover { background: #fff; color: var(--ink); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-2); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

.campaign-bar {
  background: #00161d;
  color: #fff;
  font-size: 0.92rem;
  text-align: center;
}
.campaign-bar a {
  display: block;
  color: #d9f6fb;
  padding: 10px 16px;
}
.campaign-bar strong { color: var(--cyan); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(237,237,233,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand img { width: 148px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a, .site-nav button {
  appearance: none;
  background: none;
  border: 0;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
}
.site-nav a:hover, .site-nav button:hover,
.site-nav a[aria-current="page"] { background: rgba(50,148,175,.1); color: var(--ink); }
.has-sub { position: relative; }
.mega {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 360px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 10px;
  border: 1px solid var(--line);
}
.has-sub:hover .mega, .has-sub:focus-within .mega, .has-sub.open .mega { display: grid; gap: 4px; }
.mega a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 12px;
  color: var(--ink);
}
.mega img { width: 40px; height: 40px; object-fit: contain; }
.mega strong { display: block; font-size: 0.95rem; }
.mega em { font-style: normal; color: #6a8088; font-size: 0.8rem; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: none;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--ink);
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 480px at 80% -10%, rgba(131,215,234,.28), transparent 50%),
    radial-gradient(700px 400px at 10% 110%, rgba(50,148,175,.22), transparent 45%),
    linear-gradient(160deg, #00141c 0%, #002230 55%, #004251 100%);
  color: #fff;
  padding: 88px 0 96px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -80px;
  height: 280px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath d='M0 120C180 40 360 180 540 110C720 40 900 160 1200 70V200H0Z' fill='none' stroke='%2383d7ea' stroke-opacity='.28' stroke-width='1.4'/%3E%3Cpath d='M0 150C220 70 400 190 620 120C840 50 980 170 1200 100' fill='none' stroke='%233294af' stroke-opacity='.35' stroke-width='1.2'/%3E%3C/svg%3E") center / cover no-repeat;
  pointer-events: none;
}
.hero .wrap,
.product-hero .wrap,
.section.dark > .wrap,
.site-footer > .wrap { position: relative; z-index: 1; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(131,215,234,.35);
  color: var(--cyan);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero p { color: #c6e4ec; max-width: 40rem; font-size: 1.15rem; }
.hero-split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.hero-visual { display: grid; gap: 14px; }
.product-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.product-mini a {
  background: #fff;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  padding: 16px;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 128px;
}
.product-mini a:hover { background: var(--paper); color: var(--ink); }
.product-mini img { width: min(200px, 100%); height: auto; }
.product-mini span { font-size: 0.85rem; color: #5a727a; }

.section { padding: 84px 0; }
.section-head { max-width: 640px; margin-bottom: 36px; }
.section-head .kicker { color: var(--teal); border-color: rgba(50,148,175,.3); }
.section.dark {
  background: var(--ink);
  color: #fff;
}
.section.dark .lead, .section.dark p { color: #c9e3ea; }
.section.tint { background: #e4ecec; }

.cards-4, .cards-3, .cards-2 { display: grid; gap: 18px; }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid transparent;
}
.card h3 { font-size: 1.2rem; }
.product-card {
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.product-card .pad { padding: 22px 22px 26px; }
.product-card .top {
  height: 8px;
}
.product-card.erp .top { background: var(--erp-acc); }
.product-card.restaurant .top { background: var(--teal); }
.product-card.parking .top { background: var(--park-acc); }
.product-card.hotel .top { background: var(--hotel-acc); }
.product-card img.logo { width: min(220px, 100%); margin-bottom: 14px; }
.product-card a.more { font-weight: 700; }

.icon-box {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(50,148,175,.12);
  margin-bottom: 14px;
}
.icon-box svg { width: 22px; height: 22px; stroke: var(--ink-2); fill: none; stroke-width: 1.8; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  position: relative;
}
.step b {
  font-family: Jura, sans-serif;
  font-size: 1.6rem;
  color: var(--teal);
}

.faq details {
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 10px;
  border: 1px solid var(--line);
}
.faq summary { cursor: pointer; font-weight: 700; }
.faq p { margin: 12px 0 4px; color: #425960; }

.site-footer {
  background: #00141c;
  color: #c5dce3;
  padding: 64px 0 24px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer-brand img { width: 160px; margin-bottom: 12px; }
.site-footer h2 { color: #fff; font-size: 1rem; letter-spacing: 0; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer a { color: #c5dce3; }
.site-footer a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 40px;
  padding-top: 18px;
  font-size: 0.85rem;
}

.page-hero { padding: 56px 0 28px; }
.page-hero .kicker { color: var(--teal); border-color: rgba(50,148,175,.28); }
.product-hero {
  padding: 72px 0 64px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.product-hero.erp { background: linear-gradient(160deg, #072418, #12452a 60%, #1b6a40); }
.product-hero.restaurant { background: linear-gradient(160deg, #00141c, #002230 55%, #004251); }
.product-hero.parking { background: linear-gradient(160deg, #111, #1a1a1a 60%, #333); }
.product-hero.hotel { background: linear-gradient(160deg, #24132e, #3b1f4a 60%, #5a3670); }
.product-hero img.ph-logo {
  width: auto;
  max-width: min(300px, 80vw);
  max-height: 96px;
  margin-bottom: 18px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 16px;
}
.product-hero p { color: rgba(255,255,255,.82); max-width: 40rem; font-size: 1.12rem; }

.answers-section { padding-top: 36px; padding-bottom: 12px; }
.answers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.answers .kicker { margin-bottom: 10px; }
.answers p { margin: 0; font-size: 1.05rem; }

.campaign-strip { background: #00161d; color: #d9f6fb; }
.campaign-strip .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
}
.campaign-strip p { margin: 0; max-width: 48rem; }

.aka {
  display: inline-block;
  margin: 0 0 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(212, 176, 106, .2);
  color: #f3e2b8;
  font-family: Jura, sans-serif;
  font-weight: 700;
  letter-spacing: .04em;
}

.price-ask {
  font-weight: 700;
  color: var(--ink-2);
  margin: 0 0 8px;
}

.audience-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
}
.audience-card {
  display: block;
  border-radius: 22px;
  padding: 28px;
  min-height: 220px;
  color: inherit;
  box-shadow: var(--shadow);
}
.audience-card:hover { color: inherit; transform: translateY(-2px); }
.audience-card h2 { font-size: 1.7rem; }
.audience-card strong { display: inline-block; margin-top: 8px; }
.audience-card.find { background: #fff; border: 2px solid var(--teal); }
.audience-card.join { background: var(--ink); color: #fff; }
.audience-card.join .kicker { color: var(--cyan); border-color: rgba(131,215,234,.35); }
.audience-card.join p { color: #c9e3ea; }
.audience-card.join:hover { color: #fff; }
.join-band { background: #e8f4f6; }

.partner-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.partner-logo { width: min(160px, 70%); height: auto; }
.partner-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(50,148,175,.14);
  font-family: Jura, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
}

.note-on-dark { color: #f6eccf; background: rgba(212,176,106,.18); }

.mock-app { display: grid; grid-template-columns: 132px 1fr; gap: 12px; min-height: 260px; }
.mock-nav { display: grid; align-content: start; gap: 8px; font-size: 0.78rem; }
.mock-nav b { color: #fff; font-family: Jura, sans-serif; margin-bottom: 4px; }
.mock-nav span { padding: 6px 8px; border-radius: 8px; color: #9cc4cd; }
.mock-nav span.on { background: rgba(131,215,234,.16); color: #fff; }
.mock-body { min-width: 0; }
.mock-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.82rem;
  color: #9cc4cd;
}
.mock-toolbar strong { color: #fff; }
.mock-bar span { margin-left: auto; font-size: 0.75rem; color: #8fb4bc; }

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.feature {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  border-top: 3px solid var(--teal);
}
.page-erp .feature { border-top-color: var(--erp-acc); }
.page-parking .feature { border-top-color: var(--park-acc); }
.page-hotel .feature { border-top-color: var(--hotel-acc); }

.mock {
  background: #0b1c24;
  border-radius: 24px;
  padding: 16px;
  box-shadow: var(--shadow);
  color: #d7eef3;
}
.mock-bar { display: flex; gap: 6px; margin-bottom: 12px; }
.mock-bar i { width: 10px; height: 10px; border-radius: 50%; background: #355; display: block; }
.mock-bar i:nth-child(1) { background: #ff6b6b; }
.mock-bar i:nth-child(2) { background: #ffd150; }
.mock-bar i:nth-child(3) { background: #21a266; }
.mock-screen {
  background: linear-gradient(180deg, #12343f, #0b222b);
  border-radius: 16px;
  padding: 18px;
  min-height: 280px;
}
.mock-row { display: grid; grid-template-columns: 1.2fr .8fr; gap: 12px; }
.mock-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 12px 14px;
}
.mock-card b { display: block; color: #fff; }
.mock table { width: 100%; border-collapse: collapse; font-size: 0.86rem; }
.mock th, .mock td { text-align: left; padding: 8px 6px; border-bottom: 1px solid rgba(255,255,255,.08); }
.mock .ok { color: #7de3a3; }
.mock .warn { color: #ffd150; }
.tables { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.tbl {
  height: 54px;
  border-radius: 10px;
  background: rgba(50,148,175,.25);
  display: grid;
  place-items: center;
  font-size: 0.78rem;
}
.tbl.busy { background: #21a266; color: #fff; }
.tbl.open { background: rgba(255,255,255,.08); }
.spots { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; }
.spot { height: 28px; border-radius: 6px; background: #21a266; }
.spot.off { background: #ffd150; }
.rooms { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
.room { height: 42px; border-radius: 8px; background: #d4b06a; color: #3b1f4a; display: grid; place-items: center; font-size: 0.75rem; font-weight: 700; }
.room.free { background: rgba(255,255,255,.12); color: #fff; }
.room.out { background: #8a4d9a; color: #fff; }

.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.price {
  background: #fff;
  border-radius: 22px;
  padding: 26px;
  border: 1px solid var(--line);
}
.price.featured {
  border-color: var(--teal);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.price ul { margin: 0 0 20px; padding: 0 0 0 18px; color: #425960; }
.price .from { font-family: Jura, sans-serif; font-size: 1.4rem; }

.quote {
  background: #fff;
  border-radius: 22px;
  padding: 32px;
  border-left: 6px solid var(--teal);
}
.quote p { font-size: 1.2rem; }
.integrations { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.9rem;
}

.lead-form, .panel {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
.lead-form label, .lead-form legend { font-size: 0.88rem; font-weight: 700; }
.lead-form input, .lead-form textarea {
  width: 100%;
  margin-top: 6px;
  border: 1px solid #c9d6da;
  border-radius: 12px;
  padding: 12px 12px;
  font: inherit;
  background: #fbfcfb;
}
.lead-form input:focus, .lead-form textarea:focus {
  outline: 2px solid var(--cyan);
  border-color: var(--teal);
}
.check-row { display: flex; flex-wrap: wrap; gap: 12px 18px; margin-top: 8px; }
.check-row label, .consent { font-weight: 400; display: flex; gap: 8px; align-items: flex-start; }
.consent input, .check-row input { width: auto; margin-top: 3px; }
.form-status { margin-top: 14px; font-weight: 700; }
.form-status.ok { color: var(--erp-acc); }
.form-status.err { color: #b42318; }

.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.filter-btn {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font: inherit;
}
.filter-btn.is-on { background: var(--ink); color: #fff; }
.partner-card { display: grid; gap: 8px; }
.badge {
  display: inline-block;
  background: rgba(50,148,175,.14);
  color: var(--ink-2);
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 0.75rem;
  font-weight: 700;
}
.badge.premium { background: #ffd150; color: #1a1a1a; }

.journal {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
}
.journal-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(160deg, #00141c 0%, #002230 55%, #004251 100%);
  color: #fff;
  padding: 72px 0 88px;
}
.journal-hero .journal { position: relative; z-index: 1; }
.journal-hero h1 { max-width: 16ch; }
.journal-hero .lead { color: #c6e4ec; }
.journal-back {
  display: inline-block;
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 18px;
}
.journal-back:hover { color: #fff; }
.journal-byline { color: #9ec5cf; font-size: 0.92rem; }
.journal-body {
  padding: 0 0 88px;
  margin-top: -48px;
  position: relative;
  z-index: 2;
}
.journal-paper {
  background: #fff;
  border-radius: 28px;
  padding: clamp(28px, 5vw, 52px);
  box-shadow: 0 24px 60px rgba(0, 34, 48, 0.1);
  border: 1px solid rgba(0, 34, 48, 0.06);
}
.journal-index {
  list-style: none;
  margin: 0;
  padding: 0;
}
.journal-index li + li { border-top: 1px solid var(--line); }
.journal-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: start;
  padding: 26px 4px;
  color: var(--ink);
}
.journal-row:hover { color: var(--ink); }
.journal-num {
  font-family: Jura, sans-serif;
  font-size: 1.4rem;
  color: var(--teal);
  padding-top: 4px;
}
.journal-copy { display: grid; gap: 8px; }
.journal-copy strong {
  font-family: Jura, sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.journal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 0.82rem;
  color: #6a8088;
}
.journal-meta em {
  font-style: normal;
  font-weight: 700;
  color: var(--ink-2);
  background: rgba(50,148,175,.12);
  border-radius: 999px;
  padding: 2px 9px;
}
.journal-go {
  align-self: center;
  font-weight: 700;
  color: var(--teal);
  white-space: nowrap;
}
.journal-row:hover .journal-go { transform: translateX(4px); }
.journal-prose p, .journal-prose li { font-size: 1.08rem; line-height: 1.75; }
.journal-prose h2 { margin-top: 1.7em; }
.journal-prose ul { padding-left: 1.2em; }
.journal-cta {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.note {
  background: rgba(212,176,106,.16);
  border: 1px solid rgba(212,176,106,.45);
  border-radius: 16px;
  padding: 14px 16px;
  color: #3b1f4a;
}

@media (max-width: 980px) {
  .journal-row { grid-template-columns: auto 1fr; }
  .journal-go { display: none; }
  .cards-4, .cards-3, .hero-split, .feature-grid, .steps, .pricing, .footer-grid, .split, .mock-row, .answers, .audience-split, .campaign-strip .wrap, .mock-app {
    grid-template-columns: 1fr 1fr;
  }
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: calc(var(--header) + 38px);
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px 20px 24px;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
  }
  .site-nav.is-open { display: flex; }
  .site-nav ul { flex-direction: column; align-items: stretch; }
  .mega { position: static; width: auto; box-shadow: none; }
  .header-cta { width: 100%; }
}
@media (max-width: 680px) {
  .cards-4, .cards-3, .cards-2, .feature-grid, .steps, .pricing, .footer-grid, .split, .form-grid, .mock-row, .answers, .audience-split, .campaign-strip .wrap, .mock-app {
    grid-template-columns: 1fr;
  }
  /* Το hero έμενε σε 2 στήλες από το breakpoint των 980px: το κείμενο
     στριμωχνόταν στη μισή οθόνη και οι κάρτες έβγαιναν εκτός και κόβονταν. */
  .hero-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  /* Οι 4 κάρτες προϊόντων χωράνε άνετα 2x2 σε πλήρες πλάτος —
     σε μία στήλη η σελίδα γινόταν υπερβολικά μακριά. */
  .product-mini { grid-template-columns: repeat(2, 1fr); }
  .hero, .section { padding: 56px 0; }
}

/* ——— Motion system ——— */
.hero, .product-hero, .journal-hero, .section.dark, .site-footer { isolation: isolate; }
.ain-mesh {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.ain-cursor {
  position: fixed;
  width: 220px;
  height: 220px;
  margin: -110px 0 0 -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(131,215,234,.22), transparent 68%);
  pointer-events: none;
  z-index: 30;
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity .4s ease;
}
.ain-cursor.is-on { opacity: 1; }

.hero::before, .product-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(131,215,234,.22), transparent 70%);
  top: -80px;
  right: 8%;
  animation: orb-drift 14s ease-in-out infinite;
  pointer-events: none;
}
.product-hero.erp::before { background: radial-gradient(circle, rgba(33,162,102,.28), transparent 70%); }
.product-hero.parking::before { background: radial-gradient(circle, rgba(255,209,80,.16), transparent 70%); }
.product-hero.hotel::before { background: radial-gradient(circle, rgba(212,176,106,.22), transparent 70%); }

.hero::after {
  animation: wave-slide 16s linear infinite;
}

.campaign-bar {
  background: linear-gradient(90deg, #00161d 0%, #004251 50%, #00161d 100%);
  background-size: 220% 100%;
  animation: bar-shift 10s linear infinite;
}
.campaign-bar strong {
  display: inline-block;
  animation: arrow-nudge 1.8s ease-in-out infinite;
}

.btn {
  transition: transform .25s cubic-bezier(.22,1,.36,1), background .2s ease, color .2s ease, box-shadow .25s ease;
}
.btn-primary {
  box-shadow: 0 0 0 0 rgba(50,148,175,.45);
  animation: pulse-glow 2.8s ease-in-out infinite;
}
.btn:hover { transform: translateY(-3px) scale(1.02); }

.card, .feature, .step, .price, .blog-item, .quote, .lead-form, .partner-card, .product-mini a {
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease, background .25s ease;
}
.card:hover, .feature:hover, .step:hover, .price:hover, .blog-item:hover, .product-mini a:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(0, 34, 48, 0.14);
}
.product-mini a { animation: float-card 6s ease-in-out infinite; }
.product-mini a:hover { animation-play-state: paused; }
.product-mini a:nth-child(2) { animation-delay: .6s; }
.product-mini a:nth-child(3) { animation-delay: 1.2s; }
.product-mini a:nth-child(4) { animation-delay: 1.8s; }

.icon-box { transition: transform .35s ease, background .35s ease; }
.feature:hover .icon-box, .card:hover .icon-box {
  transform: scale(1.08) rotate(-6deg);
  background: rgba(50,148,175,.22);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(6px);
  transition:
    opacity .8s cubic-bezier(.22,1,.36,1),
    transform .8s cubic-bezier(.22,1,.36,1),
    filter .8s cubic-bezier(.22,1,.36,1);
  transition-delay: var(--d, 0ms);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
  filter: none;
}
.hero .wrap > *, .product-hero .wrap > *, .page-hero .wrap > * {
  animation: rise-in .9s cubic-bezier(.22,1,.36,1) both;
}
.hero .wrap > *:nth-child(2),
.product-hero .wrap > *:nth-child(2) { animation-delay: .12s; }
.hero .wrap > *:nth-child(3),
.product-hero .wrap > *:nth-child(3) { animation-delay: .22s; }

.site-header {
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(0, 34, 48, 0.08);
}

@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-60px, 40px) scale(1.15); }
}
@keyframes wave-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-8%); }
}
@keyframes bar-shift {
  0% { background-position: 0 50%; }
  100% { background-position: 220% 50%; }
}
@keyframes arrow-nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(50,148,175,.4); }
  50% { box-shadow: 0 0 28px 4px rgba(50,148,175,.28); }
}
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@keyframes rise-in {
  from { opacity: 0; transform: translateY(24px); filter: blur(8px); }
  to { opacity: 1; transform: none; filter: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; filter: none; }
  .ain-cursor, .ain-mesh { display: none; }
}
