/* ============================================================
   Kentora — landing page
   Minimalism + Glassmorphism · παλέτα πιστή στην εφαρμογή
   (pine / sage / brass / ink / paper) · mobile-first
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------- Tokens — ίδιοι με το globals.css της εφαρμογής ---------- */
:root {
  --ink: #16211C;        /* σκούρο sidebar & κείμενο */
  --paper: #F1F4F2;      /* φόντο εφαρμογής */
  --surface: #FFFFFF;
  --line: #E4E9E5;
  --muted: #5A6B60;

  --pine: #0C5D4E;       /* primary brand */
  --pine-deep: #094A3E;
  --sage: #E8F1EC;
  --brass: #B08D4F;      /* premium accent */

  --ok: #2E8B6B;
  --warn: #B47318;
  --danger: #C0392B;
  --info: #2B6CB0;

  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-bg-strong: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.65);
  --shadow: 0 24px 70px -28px rgba(22, 33, 28, 0.30);
  --shadow-soft: 0 10px 34px -18px rgba(22, 33, 28, 0.22);

  --radius: 20px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  /* Η Plus Jakarta Sans δεν έχει ελληνικά — τα ελληνικά kεφαλίδων πέφτουν στην Inter, όπως στην εφαρμογή. */
  --font-heading: "Plus Jakarta Sans", "Inter", "Segoe UI", system-ui, sans-serif;
}

/* ---------- Base ---------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  font-family: var(--font);
  color: var(--ink);
  background:
    linear-gradient(180deg, #F4F7F5 0%, #EEF3F0 45%, #F2F5F1 100%) fixed,
    var(--paper);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: rgba(12, 93, 78, 0.22); }
[id] { scroll-margin-top: 96px; }

h1, h2, h3 {
  font-family: var(--font-heading);
  line-height: 1.15; letter-spacing: -0.028em; font-weight: 800;
}
h1 { font-size: clamp(2.35rem, 5.2vw + 0.6rem, 4rem); }
h2 { font-size: clamp(1.7rem, 2.8vw + 0.6rem, 2.55rem); }
h3 { font-size: 1.08rem; font-weight: 700; letter-spacing: -0.015em; }

.container { width: min(1140px, 92%); margin-inline: auto; }

.skip {
  position: fixed; top: -100px; left: 16px; z-index: 100;
  background: var(--ink); color: #fff; padding: 0.6rem 1rem; border-radius: 10px;
  transition: top 0.25s;
}
.skip:focus { top: 12px; }

:focus-visible { outline: 2px solid var(--pine); outline-offset: 3px; border-radius: 6px; }

.ic {
  width: 1em; height: 1em; flex: none;
  fill: none; stroke: currentColor;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.ic-fill { fill: currentColor; stroke: none; }

/* ---------- Glass ---------- */
.glass {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid var(--glass-border);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .glass { background: rgba(255, 255, 255, 0.93); }
}

/* ---------- Background art (pine / emerald / brass) ---------- */
.bg { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; }
.b1 {
  width: 62vmax; height: 62vmax; top: -20vmax; left: -14vmax;
  background: radial-gradient(circle, rgba(12, 93, 78, 0.20) 0%, rgba(12, 93, 78, 0) 62%);
  animation: drift1 28s ease-in-out infinite alternate;
}
.b2 {
  width: 52vmax; height: 52vmax; top: -12vmax; right: -18vmax;
  background: radial-gradient(circle, rgba(46, 139, 107, 0.17) 0%, rgba(46, 139, 107, 0) 62%);
  animation: drift2 34s ease-in-out infinite alternate;
}
.b3 {
  width: 56vmax; height: 56vmax; bottom: -24vmax; left: 8vmax;
  background: radial-gradient(circle, rgba(176, 141, 79, 0.14) 0%, rgba(176, 141, 79, 0) 62%);
  animation: drift1 40s ease-in-out infinite alternate-reverse;
}
.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(22, 33, 28, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 33, 28, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 92% 62% at 50% 0%, #000 25%, transparent 74%);
  mask-image: radial-gradient(ellipse 92% 62% at 50% 0%, #000 25%, transparent 74%);
}
.bg-ring {
  position: absolute; top: 6%; right: -12vmax;
  width: 36vmax; height: 36vmax; border-radius: 50%;
  border: 1.5px solid rgba(12, 93, 78, 0.15);
}
@keyframes drift1 { to { transform: translate(4vmax, 3vmax) scale(1.07); } }
@keyframes drift2 { to { transform: translate(-3vmax, 4vmax) scale(1.05); } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-weight: 600; border-radius: 999px; white-space: nowrap;
  padding: 0.72rem 1.35rem; font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.25s cubic-bezier(0.2, 0.65, 0.25, 1), box-shadow 0.25s, background 0.25s, border-color 0.25s;
}
.btn:active { transform: translateY(0) scale(0.98); }
.btn-lg { padding: 0.95rem 1.6rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1.05rem; font-size: 0.86rem; }
.btn .ic { font-size: 1.1em; }

.btn-primary {
  position: relative; overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #107259 0%, #0C5D4E 55%, #094A3E 100%);
  box-shadow: 0 12px 32px -12px rgba(12, 93, 78, 0.65);
}
.btn-primary::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.35) 50%, transparent 58%);
  transform: translateX(-130%);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(12, 93, 78, 0.75); }
.btn-primary:hover::after { transform: translateX(130%); transition: transform 0.7s ease; }

.btn-glass {
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-color: rgba(255, 255, 255, 0.75);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}
.btn-glass:hover { transform: translateY(-2px); background: rgba(255, 255, 255, 0.82); border-color: rgba(12, 93, 78, 0.25); }

.btn-dim {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.btn-dim:hover { background: rgba(255, 255, 255, 0.18); transform: translateY(-2px); }

.btn-full { width: 100%; }

/* ---------- Navigation ---------- */
.nav { position: fixed; inset-inline: 0; top: 0; z-index: 50; }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  margin-top: 0.85rem; padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.nav.scrolled .nav-inner,
.nav.open .nav-inner {
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  border-color: var(--glass-border);
  box-shadow: var(--shadow-soft);
}

.brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.logo { width: 34px; height: 34px; border-radius: 9px; }
.brand-name {
  font-family: var(--font-heading);
  font-weight: 800; letter-spacing: 0.01em; font-size: 1.06rem; white-space: nowrap;
}

.nav-links {
  position: fixed; top: 84px; left: 4%; right: 4%;
  display: flex; flex-direction: column; gap: 0.35rem;
  padding: 1rem;
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  box-shadow: var(--shadow);
  opacity: 0; transform: translateY(-12px); pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.nav.open .nav-links { opacity: 1; transform: none; pointer-events: auto; }
.nav-links a:not(.btn) {
  font-weight: 500; color: var(--muted);
  padding: 0.55rem 0.8rem; border-radius: 12px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:not(.btn):hover { color: var(--ink); background: rgba(12, 93, 78, 0.07); }
.nav-links a.active { color: var(--pine); }
.nav-cta { margin-top: 0.4rem; }

.burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; align-items: center; border-radius: 50%;
}
.burger span {
  width: 20px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav.open .burger span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav.open .burger span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

@media (min-width: 900px) {
  .burger { display: none; }
  .nav-links {
    position: static; flex-direction: row; align-items: center; gap: 1.35rem;
    padding: 0; background: none; border: 0; box-shadow: none;
    -webkit-backdrop-filter: none; backdrop-filter: none;
    opacity: 1; transform: none; pointer-events: auto;
  }
  .nav-links a:not(.btn) { padding: 0.3rem 0.15rem; border-radius: 8px; }
  .nav-links a:not(.btn):hover { background: none; }
  .nav-cta { margin-top: 0; }
}

/* ---------- Sections ---------- */
.section { padding-block: clamp(3.6rem, 8.5vw, 6.6rem); }
.section-head { max-width: 660px; margin: 0 auto clamp(2.2rem, 5vw, 3.2rem); text-align: center; }
.section-head .sub { margin-top: 0.9rem; color: var(--muted); font-size: 1.02rem; }

.eyebrow {
  display: inline-block; margin-bottom: 0.8rem;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  background: linear-gradient(120deg, #0C5D4E, #2E8B6B);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.eyebrow.light { background: linear-gradient(120deg, #9BD9C3, #E0C89A); -webkit-background-clip: text; background-clip: text; }

.grad {
  background: linear-gradient(120deg, #0A4F42 0%, #0C5D4E 45%, #2E8B6B 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Hero ---------- */
.hero {
  display: grid; gap: 3.2rem; align-items: center;
  padding-top: clamp(7.2rem, 16vw, 9.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.45rem 0.95rem; border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-soft);
  font-size: 0.83rem; font-weight: 600; color: var(--pine);
  margin-bottom: 1.3rem;
}
.badge .ic { color: var(--brass); }
.lead { margin-top: 1.15rem; color: var(--muted); font-size: clamp(1rem, 1.1vw + 0.85rem, 1.18rem); max-width: 34rem; }
.lead strong { color: var(--ink); font-weight: 600; }

.cta-row { display: flex; flex-direction: column; align-items: flex-start; gap: 0.8rem; margin-top: 1.9rem; }
.dl-row { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.trust { display: flex; flex-wrap: wrap; gap: 0.4rem 1.4rem; margin-top: 1.5rem; }
.trust li { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.87rem; color: var(--muted); font-weight: 500; }
.trust .ic { color: var(--ok); font-size: 1rem; }

@media (max-width: 639px) {
  .cta-row > .btn, .dl-row { width: 100%; }
  .dl-row .btn { flex: 1 1 0; }
}
@media (min-width: 900px) {
  .hero { grid-template-columns: 0.96fr 1.04fr; gap: 2.8rem; }
}

/* Hero entrance (καθαρό CSS — παίζει και χωρίς JS) */
[data-hero] { animation: rise 0.85s cubic-bezier(0.2, 0.65, 0.25, 1) both; animation-delay: var(--d, 0s); }
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* ---------- Στιγμιότυπο εφαρμογής ---------- */
.hero-visual { position: relative; max-width: 640px; margin-inline: auto; width: 100%; }
.hero-glow {
  position: absolute; inset: -14% -8%;
  background:
    radial-gradient(45% 45% at 30% 30%, rgba(12, 93, 78, 0.22), transparent 70%),
    radial-gradient(40% 40% at 75% 70%, rgba(176, 141, 79, 0.16), transparent 70%);
  border-radius: 40px; z-index: -1;
}
.shot-frame {
  border-radius: 20px; padding: 9px;
  box-shadow: var(--shadow);
  transform: perspective(1200px) rotateY(-6deg) rotateX(3deg);
  transition: transform 0.6s cubic-bezier(0.2, 0.65, 0.25, 1);
}
.hero-visual:hover .shot-frame { transform: perspective(1200px) rotateY(-1.5deg) rotateX(0.5deg); }
.shot-frame img {
  width: 100%; height: auto; border-radius: 13px;
  border: 1px solid rgba(22, 33, 28, 0.08);
}

.float-chip {
  position: absolute; z-index: 2;
  display: flex; align-items: center; gap: 9px;
  border-radius: 14px; padding: 9px 12px;
  box-shadow: var(--shadow-soft);
}
.fc1 { left: -8px; bottom: -18px; animation: float 5.5s ease-in-out infinite alternate; }
.fc2 { right: -8px; top: -16px; animation: float 7s ease-in-out infinite alternate-reverse; }
.fc-ico {
  width: 26px; height: 26px; border-radius: 9px; flex: none;
  display: inline-flex; align-items: center; justify-content: center; font-size: 13px;
}
.fc-ico.ok { background: rgba(46, 139, 107, 0.15); color: #1F6F55; }
.fc-ico.warn { background: rgba(180, 115, 24, 0.16); color: #96601A; }
.fc-txt { display: flex; flex-direction: column; line-height: 1.25; }
.fc-txt b { font-size: 11px; letter-spacing: -0.01em; }
.fc-txt small { font-size: 10px; color: var(--muted); font-variant-numeric: tabular-nums; }
@keyframes float { to { transform: translateY(-10px); } }

/* ---------- Strip ---------- */
.strip { padding-block: 1.4rem 0; }
.strip-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; }
.strip-chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-radius: 999px; padding: 0.5rem 0.95rem;
  font-size: 0.84rem; font-weight: 600; color: var(--muted);
  box-shadow: var(--shadow-soft);
}
.strip-chip .ic { color: var(--pine); font-size: 1rem; }

/* ---------- Σύγκριση ---------- */
.compare-card {
  display: grid; border-radius: 26px; overflow: hidden; box-shadow: var(--shadow);
}
.comp-col { padding: clamp(1.6rem, 4vw, 2.4rem); }
.comp-col.bad { background: rgba(192, 57, 43, 0.045); }
.comp-col.good { background: rgba(46, 139, 107, 0.06); }
.comp-title {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 800; font-size: 1.02rem; margin-bottom: 1.1rem; color: #A93226;
}
.comp-title .ic { font-size: 1.05rem; }
.comp-title.good { color: var(--pine); }
.comp-list { display: flex; flex-direction: column; gap: 0.85rem; }
.comp-list li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--muted); font-size: 0.95rem; }
.comp-list li .ic-badge {
  margin-top: 0.1rem; width: 22px; height: 22px; border-radius: 50%; flex: none;
  display: inline-flex; align-items: center; justify-content: center; font-size: 11px;
}
.ic-badge.no { background: rgba(192, 57, 43, 0.11); color: #A93226; }
.ic-badge.yes { background: var(--sage); color: var(--pine); }

@media (min-width: 900px) {
  .compare-card { grid-template-columns: 1fr 1fr; }
  .comp-col.good { border-left: 1px solid rgba(22, 33, 28, 0.06); }
}
@media (max-width: 899px) {
  .comp-col.good { border-top: 1px solid rgba(22, 33, 28, 0.06); }
}

/* ---------- Λειτουργίες ---------- */
.f-grid { display: grid; gap: 1rem; }
.f-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius); padding: 1.6rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s cubic-bezier(0.2, 0.65, 0.25, 1), box-shadow 0.35s, border-color 0.35s;
}
.f-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(520px circle at var(--mx, 50%) var(--my, 0%), rgba(12, 93, 78, 0.08), transparent 45%);
  opacity: 0; transition: opacity 0.35s;
}
.f-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(12, 93, 78, 0.28); }
.f-card:hover::before { opacity: 1; }
.f-ico {
  width: 46px; height: 46px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #107259, #094A3E);
  color: #fff; font-size: 22px;
  box-shadow: 0 10px 24px -10px rgba(12, 93, 78, 0.6);
  margin-bottom: 1.05rem;
}
.f-card h3 { margin-bottom: 0.45rem; }
.f-card p { color: var(--muted); font-size: 0.93rem; }

.f-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.55rem; margin-top: 1.6rem; }
.mini-chip {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.42rem 0.85rem; border-radius: 999px;
  background: rgba(255, 255, 255, 0.55); border: 1px solid rgba(255, 255, 255, 0.75);
  font-size: 0.82rem; font-weight: 600; color: var(--muted);
}
.mini-chip .ic { color: var(--ok); }

@media (min-width: 640px) { .f-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1020px) { .f-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Μέσα στην εφαρμογή (tour) ---------- */
.tour-list { display: flex; flex-direction: column; gap: clamp(2.6rem, 6vw, 4.4rem); }
.tour-item { display: grid; gap: 1.5rem; align-items: center; }
.tour-media {
  border-radius: 18px; padding: 8px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s cubic-bezier(0.2, 0.65, 0.25, 1), box-shadow 0.4s;
}
.tour-media:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tour-media img {
  width: 100%; height: auto; border-radius: 12px;
  border: 1px solid rgba(22, 33, 28, 0.08);
}
.tour-kicker {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--pine); margin-bottom: 0.65rem;
}
.tour-kicker b {
  background: var(--sage); color: var(--pine);
  border-radius: 7px; padding: 0.12rem 0.5rem;
  font-variant-numeric: tabular-nums; letter-spacing: 0;
}
.tour-copy h3 { font-size: clamp(1.2rem, 1.2vw + 0.9rem, 1.45rem); margin-bottom: 0.55rem; }
.tour-copy p { color: var(--muted); font-size: 0.95rem; max-width: 30rem; }

@media (min-width: 900px) {
  .tour-item { grid-template-columns: 1.15fr 0.85fr; gap: 3rem; }
  .tour-item.rev .tour-media { order: 2; }
  .tour-item.rev .tour-copy { order: 1; justify-self: end; text-align: right; }
  .tour-item.rev .tour-copy p { margin-left: auto; }
}

/* ---------- Πώς λειτουργεί ---------- */
.how-grid { position: relative; display: grid; gap: 2.4rem; }
.step { text-align: center; max-width: 340px; margin-inline: auto; }
.step-n {
  position: relative; z-index: 1;
  width: 58px; height: 58px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 800; font-size: 1.35rem;
  color: var(--pine);
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.05rem;
}
.step h3 { margin-bottom: 0.45rem; }
.step p { color: var(--muted); font-size: 0.93rem; }

@media (min-width: 900px) {
  .how-grid { grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
  .how-grid::before {
    content: ""; position: absolute; top: 29px; left: 17%; right: 17%;
    border-top: 2px dashed rgba(12, 93, 78, 0.30);
  }
}

/* ---------- Τιμές ---------- */
.p-grid { display: grid; gap: 1.1rem; align-items: stretch; }
.p-card {
  position: relative;
  display: flex; flex-direction: column;
  border-radius: 22px; padding: 1.8rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s cubic-bezier(0.2, 0.65, 0.25, 1), box-shadow 0.35s, border-color 0.35s;
}
.p-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.p-card.featured {
  border-color: rgba(12, 93, 78, 0.35);
  background: var(--glass-bg-strong);
  box-shadow: var(--shadow);
}
.p-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  padding: 0.28rem 0.85rem; border-radius: 999px;
  background: linear-gradient(120deg, #B08D4F, #C9A76B);
  color: #fff; font-size: 0.73rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  box-shadow: 0 8px 20px -8px rgba(176, 141, 79, 0.7);
  white-space: nowrap;
}
.p-name { font-size: 1.15rem; }
.p-tag { margin-top: 0.2rem; font-size: 0.86rem; color: var(--muted); }
.p-price { display: flex; align-items: baseline; gap: 0.4rem; margin: 1.15rem 0 1.2rem; }
.p-amount {
  font-family: var(--font-heading);
  font-size: 2.55rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1;
  color: var(--ink); font-variant-numeric: tabular-nums;
}
.p-per { color: var(--muted); font-size: 0.9rem; }
.p-list { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.6rem; }
.p-list li { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.92rem; color: var(--muted); }
.p-list .ic { margin-top: 0.22rem; color: var(--ok); }
.p-cta { margin-top: auto; }
.p-note {
  margin: 1.7rem auto 0; max-width: 620px; text-align: center;
  font-size: 0.85rem; color: var(--muted);
}
.p-note strong { color: var(--ink); }

@media (min-width: 900px) {
  .p-grid { grid-template-columns: repeat(3, 1fr); }
  .p-card.featured { transform: scale(1.035); }
  .p-card.featured:hover { transform: scale(1.035) translateY(-5px); }
}

/* ---------- Ασφάλεια ---------- */
.sec-band {
  position: relative; overflow: hidden;
  display: grid; gap: 2.4rem; align-items: center;
  border-radius: 30px;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 40px 90px -40px rgba(22, 33, 28, 0.7);
  padding: clamp(2.2rem, 5.5vw, 4rem);
  color: #fff;
}
.sec-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(48% 60% at 12% 0%, rgba(16, 114, 89, 0.40), transparent 68%),
    radial-gradient(42% 55% at 95% 100%, rgba(176, 141, 79, 0.16), transparent 65%),
    radial-gradient(30% 40% at 70% 10%, rgba(46, 139, 107, 0.22), transparent 70%);
}
.sec-copy { position: relative; }
.sec-band h2 { color: #fff; }
.sec-sub { margin-top: 0.9rem; color: rgba(255, 255, 255, 0.68); }
.sec-list { margin-top: 1.7rem; display: flex; flex-direction: column; gap: 0.95rem; }
.sec-list li { display: flex; gap: 0.85rem; align-items: flex-start; color: rgba(255, 255, 255, 0.82); font-size: 0.96rem; }
.sec-ic {
  margin-top: 0.05rem; width: 30px; height: 30px; border-radius: 10px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(46, 139, 107, 0.18); color: #7FD6B6; font-size: 15px;
  border: 1px solid rgba(127, 214, 182, 0.25);
}

.sec-visual { position: relative; display: flex; justify-content: center; }
.shield-wrap { position: relative; width: 230px; height: 230px; display: flex; align-items: center; justify-content: center; }
.pulse {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px solid rgba(127, 214, 182, 0.4);
  animation: pulse 3.6s ease-out infinite;
}
.pulse.p2 { animation-delay: 1.2s; }
.pulse.p3 { animation-delay: 2.4s; }
@keyframes pulse {
  0% { transform: scale(0.55); opacity: 0.9; }
  100% { transform: scale(1.15); opacity: 0; }
}
.shield-core {
  width: 116px; height: 116px; border-radius: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(16, 114, 89, 0.4), rgba(9, 74, 62, 0.35));
  border: 1px solid rgba(127, 214, 182, 0.35);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  color: #CFE9DE; font-size: 58px;
  box-shadow: 0 24px 60px -20px rgba(16, 114, 89, 0.6);
}

@media (min-width: 900px) {
  .sec-band { grid-template-columns: 1.15fr 0.85fr; }
}

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 780px; margin-inline: auto; display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item { border-radius: 18px; box-shadow: var(--shadow-soft); overflow: hidden; transition: border-color 0.3s; }
.faq-item.open { border-color: rgba(12, 93, 78, 0.35); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  text-align: left; font-weight: 600; font-size: 0.99rem; letter-spacing: -0.01em;
  padding: 1.1rem 1.35rem;
}
.faq-chev { font-size: 1.1rem; color: var(--pine); transition: transform 0.35s; flex: none; }
.faq-item.open .faq-chev { transform: rotate(180deg); }
.faq-a { display: grid; grid-template-rows: 1fr; transition: grid-template-rows 0.4s cubic-bezier(0.2, 0.65, 0.25, 1); }
.js .faq-a { grid-template-rows: 0fr; }
.js .faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p { padding: 0 1.35rem 1.2rem; color: var(--muted); font-size: 0.93rem; }

/* ---------- Δοκιμή / Φόρμα ---------- */
.trial-band {
  position: relative; overflow: hidden;
  display: grid; gap: 2.6rem;
  border-radius: 32px;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 40px 90px -40px rgba(22, 33, 28, 0.7);
  padding: clamp(2.2rem, 5.5vw, 4.2rem);
  color: #fff;
}
.trial-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(50% 62% at 90% 0%, rgba(16, 114, 89, 0.42), transparent 66%),
    radial-gradient(45% 55% at 5% 95%, rgba(46, 139, 107, 0.22), transparent 65%),
    radial-gradient(30% 40% at 40% 110%, rgba(176, 141, 79, 0.14), transparent 70%);
}
.trial-copy, .trial-card { position: relative; }
.trial-band h2 { color: #fff; }
.trial-sub { margin-top: 0.7rem; font-size: 1.05rem; color: rgba(255, 255, 255, 0.7); font-weight: 500; }
.t-list { margin-top: 1.6rem; display: flex; flex-direction: column; gap: 0.75rem; }
.t-list li { display: flex; align-items: center; gap: 0.7rem; color: rgba(255, 255, 255, 0.82); font-size: 0.96rem; }
.t-list .ic { color: #7FD6B6; font-size: 1.1rem; flex: none; }

.trial-card {
  background: rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  padding: clamp(1.4rem, 3.5vw, 2.1rem);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.5);
}

.field { margin-bottom: 1.05rem; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; color: rgba(255, 255, 255, 0.85); margin-bottom: 0.4rem; }
.field .opt { color: rgba(255, 255, 255, 0.45); font-weight: 500; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"] {
  width: 100%;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  padding: 0.78rem 1rem;
  color: #fff; font-size: 0.95rem;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.field input::placeholder { color: rgba(255, 255, 255, 0.35); }
.field input:focus {
  outline: none;
  border-color: #4CC29A;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3.5px rgba(76, 194, 154, 0.26);
}
.field-2col { display: grid; gap: 0 1rem; }
@media (min-width: 640px) { .field-2col { grid-template-columns: 1fr 1fr; } }

.field-error { display: none; margin-top: 0.35rem; font-size: 0.8rem; color: #F5B7A8; }
.field.invalid input { border-color: #E57B62; box-shadow: 0 0 0 3px rgba(229, 123, 98, 0.18); }
.field.invalid .field-error { display: block; }

.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; pointer-events: none; }

.consent-field { margin-top: 0.2rem; }
.consent { display: flex; gap: 0.65rem; align-items: flex-start; cursor: pointer; }
.consent input {
  margin-top: 0.22rem; width: 17px; height: 17px; flex: none;
  accent-color: #2E8B6B; cursor: pointer;
}
.consent span { font-size: 0.86rem; color: rgba(255, 255, 255, 0.72); font-weight: 400; }
.u { text-decoration: underline; text-underline-offset: 2px; color: #BFE5D6; }
.u:hover { color: #fff; }

#trialSubmit { margin-top: 1.15rem; }
.form-note { margin-top: 0.85rem; text-align: center; font-size: 0.8rem; color: rgba(255, 255, 255, 0.5); }

.form-success { text-align: center; padding: 1.6rem 0.4rem; }
.succ-ico {
  width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 1.1rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(46, 139, 107, 0.2); color: #7FD6B6; font-size: 32px;
  border: 1px solid rgba(127, 214, 182, 0.35);
  animation: pop 0.55s cubic-bezier(0.2, 0.65, 0.25, 1) both;
}
@keyframes pop {
  0% { transform: scale(0.4); opacity: 0; }
  62% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}
.form-success h3 { font-size: 1.3rem; margin-bottom: 0.55rem; }
.form-success p { color: rgba(255, 255, 255, 0.7); font-size: 0.93rem; max-width: 26rem; margin: 0 auto 1.4rem; }
.succ-dl { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.7rem; }

@media (min-width: 980px) {
  .trial-band { grid-template-columns: 1fr 1.05fr; align-items: center; gap: 3.2rem; }
}

/* ---------- Footer ---------- */
.footer {
  margin-top: clamp(2rem, 6vw, 4rem);
  background: #101915;
  color: rgba(255, 255, 255, 0.62);
  padding: clamp(2.8rem, 6vw, 4.2rem) 0 1.6rem;
}
.foot-grid { display: grid; gap: 2.2rem; }
.foot-brand p { margin-top: 1rem; font-size: 0.9rem; max-width: 21rem; }
.brand.light .brand-name { color: #fff; }
.foot-title { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255, 255, 255, 0.45); margin-bottom: 0.95rem; }
.foot-links { display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.92rem; }
.foot-links a { display: inline-flex; align-items: center; gap: 0.5rem; transition: color 0.2s; }
.foot-links a:hover { color: #fff; }
.foot-plain { display: inline-flex; align-items: center; gap: 0.5rem; }
.foot-links .ic { font-size: 1rem; color: rgba(255, 255, 255, 0.4); }

.foot-bottom {
  margin-top: 2.6rem; padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  display: flex; flex-direction: column; gap: 0.4rem;
  font-size: 0.82rem; color: rgba(255, 255, 255, 0.4);
}
@media (min-width: 640px) {
  .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (min-width: 900px) {
  .foot-grid { grid-template-columns: 1.5fr 1.1fr 1fr 1.2fr; }
  .foot-brand { grid-column: auto; }
  .foot-bottom { flex-direction: row; justify-content: space-between; }
}

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 26px; z-index: 90;
  transform: translate(-50%, 16px);
  background: var(--ink); color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px; padding: 0.8rem 1.25rem;
  font-size: 0.9rem; font-weight: 500;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.5);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  max-width: min(92vw, 30rem); text-align: center;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Scroll reveal ----------
   Το transform/transition ζει ΜΟΝΟ όσο υπάρχει το data-reveal· μετά το animation
   η JS αφαιρεί το attribute, ώστε hover/featured transforms να μην επηρεάζονται. */
.js [data-reveal] {
  transition: opacity 0.7s cubic-bezier(0.2, 0.65, 0.25, 1), transform 0.7s cubic-bezier(0.2, 0.65, 0.25, 1);
  transition-delay: var(--rd, 0ms);
}
.js [data-reveal]:not(.in) { opacity: 0; transform: translateY(26px); }

/* ---------- Μειωμένη κίνηση ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
}
