:root {
  --navy-950: #031b2d;
  --navy-900: #062a44;
  --navy-800: #074f78;
  --blue-600: #1377a8;
  --orange-500: #ff9f1a;
  --orange-300: #ffc36b;
  --teal-500: #10a6a6;
  --forest: #2e7d55;
  --clean: #d7a329;
  --ink: #142433;
  --muted: #587087;
  --soft: #f2f7fa;
  --line: #d8e4ec;
  --white: #fff;
  --shadow: 0 18px 55px rgba(3, 27, 45, .14);
  --surface: #fff;
  --surface-2: #fff7e9;
}

html { color-scheme: light dark; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 82px; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; }
a { color: var(--navy-800); }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 3px;
}
.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(840px, calc(100% - 40px)); margin: 0 auto; }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(3, 27, 45, .96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.nav-inner { min-height: 66px; display: flex; align-items: center; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: #fff; text-decoration: none; font-weight: 850; white-space: nowrap; }
.brand img { width: 36px; height: 36px; border-radius: 9px; }
.brand span { color: var(--orange-500); }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.nav-links a { color: #cfe3ef; text-decoration: none; font-size: 14px; font-weight: 700; }
.nav-links a:hover { color: #fff; }
.nav-links .nav-cta { color: var(--navy-950); background: var(--orange-500); padding: 9px 16px; border-radius: 10px; }

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(19,119,168,.45), transparent 34%),
    linear-gradient(145deg, var(--navy-950), var(--navy-900) 58%, #075f89);
  padding: 72px 0 64px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.25) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.25) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr); gap: 48px; align-items: center; }
.eyebrow { margin: 0 0 13px; color: var(--orange-300); font-weight: 800; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
h1 { margin: 0; font-size: clamp(38px, 5.2vw, 66px); line-height: 1.04; letter-spacing: -.045em; }
.hero-lead { margin: 24px 0 0; max-width: 680px; color: #d5e8f2; font-size: clamp(18px, 2vw, 22px); line-height: 1.52; }
.hero-lead strong { color: #fff; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 12px 21px; border-radius: 11px; text-decoration: none; font-weight: 850; }
.button-primary { background: var(--orange-500); color: var(--navy-950); }
.button-secondary { color: #fff; border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.06); }
.button-dark { background: var(--navy-900); color: #fff; }
.button:hover { transform: translateY(-1px); filter: brightness(1.04); }
.hero-notes { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.hero-notes span { padding: 6px 10px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: #bdd6e5; font-size: 12px; font-weight: 700; }
.app-frame { position: relative; border: 1px solid rgba(255,255,255,.18); border-radius: 18px; padding: 9px; background: rgba(255,255,255,.08); box-shadow: 0 28px 80px rgba(0,0,0,.38); }
.app-frame::before { content: "Πραγματικό περιβάλλον GeoKt"; display: block; padding: 2px 6px 9px; color: #bdd6e5; font-size: 12px; font-weight: 700; }
.app-frame img { display: block; width: 100%; height: auto; border-radius: 11px; background: #0b2335; }

.proof { background: var(--surface); border-bottom: 1px solid var(--line); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { padding: 20px; border-right: 1px solid var(--line); }
.proof-item:last-child { border-right: 0; }
.proof-item strong { display: block; color: var(--navy-900); font-size: 15px; }
.proof-item span { color: var(--muted); font-size: 13px; }

.section { padding: 82px 0; }
.section-soft { background: var(--soft); }
.section-dark { color: #fff; background: var(--navy-950); }
.section-head { max-width: 780px; margin-bottom: 34px; }
.kicker { margin: 0 0 8px; color: var(--orange-500); font-size: 13px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
h2 { margin: 0; color: var(--navy-900); font-size: clamp(30px, 4vw, 46px); line-height: 1.12; letter-spacing: -.035em; }
.section-dark h2 { color: #fff; }
.lead { margin: 14px 0 0; color: var(--muted); font-size: 18px; }
.section-dark .lead { color: #bcd3e1; }

.workflow-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.step-card { position: relative; min-height: 226px; padding: 22px 18px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); box-shadow: 0 6px 22px rgba(3,27,45,.05); }
.step-number { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; color: #fff; background: var(--navy-800); font-weight: 900; }
.step-card h3 { margin: 20px 0 8px; color: var(--navy-900); font-size: 18px; line-height: 1.25; }
.step-card p { margin: 0; color: var(--muted); font-size: 14px; }
.step-card::after { content: "→"; position: absolute; right: -13px; top: 26px; z-index: 2; color: var(--orange-500); font-size: 20px; font-weight: 900; }
.step-card:last-child::after { display: none; }

.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.parcel-panel { padding: 26px; border-radius: 24px; background: #062a44; box-shadow: var(--shadow); }
.parcel-panel svg { display: block; width: 100%; height: auto; }
.legend { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 15px; color: #d7e6ef; font-size: 13px; }
.legend span::before { content: ""; display: inline-block; width: 12px; height: 12px; margin-right: 7px; border-radius: 3px; vertical-align: -1px; background: var(--legend); }
.check-list { list-style: none; margin: 24px 0 0; padding: 0; }
.check-list li { position: relative; margin: 10px 0; padding-left: 28px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--orange-500); font-weight: 900; }
.notice { margin-top: 22px; padding: 14px 16px; border-left: 4px solid var(--orange-500); border-radius: 8px; background: #fff7e9; color: #62461d; font-size: 13px; }

.khd-flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 32px; }
.khd-node { position: relative; padding: 20px 12px; text-align: center; border: 1px solid rgba(255,255,255,.16); border-radius: 14px; background: rgba(255,255,255,.06); font-weight: 850; }
.khd-node::after { content: "→"; position: absolute; right: -12px; color: var(--orange-500); }
.khd-node:last-child::after { display: none; }
.khd-note { max-width: 820px; margin-top: 24px; color: #c4d9e5; }

.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.card { padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); box-shadow: 0 8px 28px rgba(3,27,45,.06); }
.card-label { display: inline-block; padding: 5px 9px; border-radius: 7px; background: #eaf4f8; color: var(--navy-800); font-size: 12px; font-weight: 850; }
.card h3 { margin: 16px 0 8px; color: var(--navy-900); font-size: 23px; }
.card p { margin: 0; color: var(--muted); }
.support-cards { margin-top: 20px; grid-template-columns: repeat(2, 1fr); }
.support-cards .card { background: var(--soft); box-shadow: none; }

.comparison { width: 100%; border-collapse: separate; border-spacing: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.comparison th, .comparison td { padding: 15px 16px; text-align: left; border-bottom: 1px solid var(--line); }
.comparison th { color: #fff; background: var(--navy-900); font-size: 13px; }
.comparison tr:last-child td { border-bottom: 0; }
.comparison td:not(:first-child), .comparison th:not(:first-child) { text-align: center; }
.yes { color: var(--forest); font-weight: 900; }
.partial { color: #9a6c00; font-weight: 800; }
.no { color: #8193a4; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 32px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.price-card.featured { border: 2px solid var(--orange-500); box-shadow: var(--shadow); }
.price-card.lifetime-card { border-color: var(--teal-500); }
.price-card.simple-card { border-color: #91a9b7; }
.badge { align-self: flex-start; padding: 6px 10px; border-radius: 999px; color: var(--navy-950); background: var(--orange-500); font-size: 12px; font-weight: 900; }
.badge-teal { color: #fff; background: var(--teal-500); }
.badge-slate { color: #fff; background: #627d8e; }
.plan-name { margin-top: 14px; color: var(--navy-900); font-size: 24px; font-weight: 900; }
.price { margin: 8px 0 0; color: var(--navy-900); font-size: 46px; font-weight: 900; line-height: 1; }
.price small { font-size: 15px; color: var(--muted); }
.founding { margin: 12px 0 0; padding: 12px; border-radius: 10px; background: #fff5e4; color: #684915; font-weight: 800; }
.lifetime-note { color: #075e62; background: #e9fafa; }
.gross-price { margin: 12px 0 0; color: #075e62; font-weight: 850; }
.regular-price { margin: 10px 0 0; padding: 11px 12px; border-radius: 10px; color: var(--navy-800); background: #edf3f6; font-size: 13px; font-weight: 750; }
.price-list { flex: 1; list-style: none; margin: 22px 0; padding: 0; }
.price-list li { margin: 8px 0; padding-left: 24px; position: relative; }
.price-list li::before { content: "✓"; position: absolute; left: 0; color: var(--teal-500); font-weight: 900; }
.vat { margin-top: 16px; color: var(--muted); font-size: 12px; }

.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.trust-card { padding: 24px; border: 1px solid rgba(255,255,255,.15); border-radius: 16px; background: rgba(255,255,255,.05); }
.trust-card h3 { margin: 0 0 8px; color: #fff; }
.trust-card p { margin: 0; color: #bcd3e1; font-size: 14px; }

details { margin: 10px 0; padding: 18px 20px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); }
summary { cursor: pointer; color: var(--navy-900); font-weight: 850; }
details p { margin: 10px 0 0; color: var(--muted); }

.page-hero { padding: 60px 0 54px; color: #fff; background: linear-gradient(145deg, var(--navy-950), var(--navy-800)); }
.page-hero h1 { font-size: clamp(38px, 5vw, 58px); }
.page-hero p { max-width: 700px; margin: 16px 0 0; color: #cfe2ed; font-size: 19px; }
.office-note { margin-top: 22px; padding: 18px 20px; border: 1px dashed #aac0cf; border-radius: 14px; background: #f7fafc; }

.site-footer { padding: 42px 0; color: #a9c2d1; background: var(--navy-950); font-size: 13px; }
.footer-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 38px; }
.site-footer a { color: #d4e5ef; }
.footer-links { margin-top: 10px; }

@media (max-width: 900px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .hero-grid, .split-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 38px; }
  .workflow-grid { grid-template-columns: repeat(2, 1fr); }
  .step-card::after { display: none; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .pricing-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .khd-flow { grid-template-columns: 1fr; }
  .khd-node::after { content: "↓"; right: auto; left: 50%; bottom: -18px; top: auto; }
}

@media (max-width: 640px) {
  .wrap, .narrow { width: min(100% - 28px, 1180px); }
  .nav-inner { min-height: 60px; }
  .brand { font-size: 15px; }
  .brand img { width: 32px; height: 32px; }
  .nav-links .nav-cta { padding: 8px 11px; font-size: 12px; }
  .hero { padding: 54px 0 44px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  h1 { font-size: 41px; }
  .hero-lead { font-size: 17px; }
  .button-row, .button { width: 100%; }
  .proof-grid, .workflow-grid, .cards, .support-cards { grid-template-columns: 1fr; }
  .proof-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-item:last-child { border-bottom: 0; }
  .section { padding: 62px 0; }
  .parcel-panel { padding: 15px; }
  .comparison { display: block; overflow-x: auto; white-space: nowrap; }
  .price-card { padding: 25px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ── GKPLAT 8/8/2026 v2 — πλατφόρμες & store badges (διακριτικά) ───────── */
.plat-strip { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.plat-strip span {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px;
  background: rgba(255,255,255,.06); color: #cfe3ef; font-size: 11.5px; font-weight: 700;
}
.plat-strip svg { width: 13px; height: 13px; fill: currentColor; flex: none; }

.plat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
@media (max-width: 1040px) { .plat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .plat-grid { grid-template-columns: 1fr; } }
.plat-card {
  display: flex; flex-direction: column; gap: 7px;
  padding: 18px 17px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface);
}
.plat-card .plat-ico { display: block; color: var(--navy-800); line-height: 0; }
.plat-card .plat-ico svg { width: 20px; height: 20px; fill: currentColor; }
.plat-card.is-web .plat-ico { color: var(--teal-500); }
.plat-card.is-dl  .plat-ico { color: #d98600; }
.plat-card h3 { margin: 2px 0 0; color: var(--navy-900); font-size: 15px; line-height: 1.3; }
.plat-card p  { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.plat-card .plat-tag { margin-top: auto; padding-top: 8px; color: var(--muted); font-size: 11.5px; font-weight: 750; }

.plat-note { margin: 20px 0 0; color: var(--muted); font-size: 13px; }

/* Store badges — μικρά, στο ύψος ενός κανονικού κουμπιού */
.store-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.store-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 14px; border-radius: 9px; text-decoration: none;
  background: var(--navy-950); color: #fff; border: 1px solid rgba(255,255,255,.14);
}
.store-btn:hover { filter: brightness(1.18); }
.store-btn svg { width: 19px; height: 19px; fill: currentColor; flex: none; }
.store-btn b { display: block; font-size: 13px; font-weight: 800; line-height: 1.15; }
.store-btn small { display: block; font-size: 9.5px; opacity: .72; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; line-height: 1.3; }
.store-btn.is-soon { opacity: .55; pointer-events: none; }

.h1-like { font-size: clamp(30px, 4vw, 42px); line-height: 1.1; letter-spacing: -.03em; margin: 0 0 14px; }

/* ── GKDARK 8/8/2026 — σκούρο θέμα (ακολουθεί το σύστημα/browser) ──────── */
@media (prefers-color-scheme: dark) {
  :root {
    --white:     #0d1a24;
    --surface:   #132635;
    --surface-2: #2a2113;
    --soft:      #0a151e;
    --ink:       #e6eef4;
    --muted:     #9fb4c4;
    --line:      #24404f;
    --navy-900:  #0a1d2e;
    --navy-800:  #2b7fb0;
    --shadow:    0 18px 55px rgba(0, 0, 0, .5);
  }
  body { background: var(--white); color: var(--ink); }
  a { color: #6bb9e5; }
  .section-soft { background: var(--soft); }
  h1, h2, h3, .plan-name, .price { color: var(--ink); }
  .plat-card h3, .step-card h3, .card h3 { color: var(--ink); }
  .plat-card .plat-ico { color: #6bb9e5; }
  .plat-card.is-web .plat-ico { color: #3fd0d0; }
  .plat-card.is-dl  .plat-ico { color: var(--orange-500); }
  .plat-card .plat-tag, .plat-note { color: var(--muted); }
  .store-btn { background: #1b3547; border-color: #2f5670; }
  .notice { background: var(--surface-2); color: #e8c78d; }
  .founding, .eb-banner { background: var(--surface-2); color: #f0c987; }
  .office-note { background: var(--surface); border-color: #3a5a6e; }
  .comparison th { background: var(--navy-900); }
  .comparison td { border-color: var(--line); }
  .mx th { background: #0a1d2e; }
  .mx .n { color: #7b93a6; }
  .trial-box input[type=email] { background: var(--surface); color: var(--ink); border-color: var(--line); }
  .site-footer { background: #061019; }
  img.app-shot, .app-frame img { filter: none; }
}

/* ── GKMX 8/8/2026 — πίνακας «Τι περιλαμβάνει κάθε έκδοση» (light base) ── */
.mx { width: 100%; border-collapse: separate; border-spacing: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); font-size: 14px; }
.mx th, .mx td { padding: 14px; border-bottom: 1px solid var(--line); text-align: center; vertical-align: middle; }
.mx th { background: var(--navy-900); color: #fff; font-size: 13px; }
.mx th:first-child, .mx td:first-child { text-align: left; }
.mx td:first-child { color: var(--ink); }
.mx tr:last-child td { border-bottom: 0; }
.mx tr:nth-child(even) td { background: var(--soft); }
.mx .y { color: var(--teal-500); font-weight: 900; font-size: 16px; }
.mx .n { color: #8193a4; }
.mx td[colspan] { background: #fff5e4; color: #684915; font-weight: 800; }
@media (max-width: 760px) { .mx { display: block; overflow-x: auto; } .mx td:first-child { min-width: 260px; } }
@media (prefers-color-scheme: dark) {
  .mx { background: var(--surface); }
  .mx tr:nth-child(even) td { background: var(--soft); }
  .mx td[colspan] { background: var(--surface-2); color: #f0c987; }
}

/* ── GKDARK2 8/8/2026 — συμπλήρωμα σκούρου: FAQ summary, proof strip ────── */
@media (prefers-color-scheme: dark) {
  summary { color: var(--ink); }
  .proof-item strong { color: var(--ink); }
  .card-label { background: #1b3547; color: #9fc9e4; }
}

/* ══════════════════════════════════════════════════════════════════
   GKSWISS 11/08/2026 — Ενότητα «Swiss Army Knife» + σελίδα Βοήθειας
   Αυτοτελές block. Δεν αγγίζει τίποτα από τα παραπάνω.
   ══════════════════════════════════════════════════════════════════ */
.gk-swiss { background: linear-gradient(160deg,#031b2d,#062a44 62%,#053a5c); color:#fff; overflow:hidden; }
.gk-swiss h2 { color:#fff; }
.gk-swiss .lead { color:#bcd3e1; }
.gk-swiss-head { max-width:820px; margin:0 auto 10px; text-align:center; }
.gk-knife-wrap { max-width:860px; margin:6px auto 0; }
.gk-knife { display:block; width:100%; height:auto; }

.gk-blade { transform-box: view-box; transform-origin: 360px 410px; transform: rotate(var(--a)); }
@media (prefers-reduced-motion: no-preference) {
  .gk-blade { animation: gk-open .85s cubic-bezier(.22,1,.36,1) both; }
  @keyframes gk-open { from { transform: rotate(0deg); opacity:0 } to { transform: rotate(var(--a)); opacity:1 } }
}
.gk-blade-label { font: 800 13.5px/1 Inter, ui-sans-serif, -apple-system, "Segoe UI", sans-serif; fill:#dceaf4; }
.gk-blade-core .gk-blade-label { fill:#ffc36b; font-size:15px; }

.gk-aud { display:flex; flex-wrap:wrap; justify-content:center; gap:10px; margin:34px auto 0; max-width:860px; }
.gk-aud span { padding:9px 15px; border-radius:999px; border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.06); color:#e6f2f9; font-size:14px; font-weight:750; }
.gk-aud span b { color:var(--orange-300); font-weight:900; }
.gk-os-note { margin:26px auto 0; max-width:760px; text-align:center; color:#9fc0d4; font-size:15px; }

/* ── Σελίδα Βοήθειας ─────────────────────────────────────────────── */
.gk-langbar { display:flex; justify-content:center; gap:8px; margin:0 0 28px; }
.gk-langbar button { min-height:42px; padding:9px 20px; border-radius:999px; cursor:pointer;
  border:1px solid var(--line); background:#fff; color:var(--navy-800); font:800 14px/1 inherit; }
.gk-langbar button[aria-pressed="true"] { background:var(--orange-500); border-color:var(--orange-500); color:var(--navy-950); }
.gk-help-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.gk-help-card { padding:24px; border:1px solid var(--line); border-radius:18px; background:#fff;
  box-shadow:0 8px 28px rgba(3,27,45,.06); }
.gk-help-card h3 { margin:10px 0 6px; color:var(--navy-900); font-size:20px; }
.gk-help-card .gk-what { margin:0 0 12px; color:var(--muted); }
.gk-help-card ol { margin:0; padding-left:20px; color:var(--ink); }
.gk-help-card ol li { margin:5px 0; font-size:15px; }
.gk-num { display:inline-flex; align-items:center; justify-content:center; width:30px; height:30px;
  border-radius:9px; background:#eaf4f8; color:var(--navy-800); font-weight:900; font-size:14px; }
.gk-quick { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:8px; }
.gk-quick div { padding:20px; border-radius:16px; background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.16); }
.gk-quick strong { display:block; color:var(--orange-300); font-size:14px; letter-spacing:.06em; text-transform:uppercase; }
.gk-quick p { margin:8px 0 0; color:#d5e8f2; font-size:15px; }
.gk-tip { margin-top:22px; padding:16px 18px; border-left:4px solid var(--orange-500);
  background:var(--surface-2); border-radius:0 12px 12px 0; color:var(--ink); font-size:15px; }

@media (max-width: 860px) {
  .gk-help-grid, .gk-quick { grid-template-columns:1fr; }
  .gk-blade-label { font-size:16px; }
}

/* ===== GKHERO 11/08/2026 — hero visual v2 ===== */
.gk-hv { position: relative; z-index: 1; }
.gk-hv-panel {
  position: relative; border: 1px solid rgba(255,255,255,.18); border-radius: 20px;
  padding: 10px; background: rgba(255,255,255,.07);
  box-shadow: 0 30px 80px rgba(0,0,0,.42);
}
.gk-hv-svg { display: block; width: 100%; height: auto; border-radius: 12px; }
.gk-hv-shot {
  position: absolute; right: -22px; bottom: -38px; width: 38%; max-width: 200px; margin: 0;
  border: 1px solid rgba(255,255,255,.2); border-radius: 12px; padding: 6px 6px 4px;
  background: rgba(3,27,45,.92); backdrop-filter: blur(6px);
  box-shadow: 0 22px 46px rgba(0,0,0,.5); transform: rotate(-1.6deg);
}
.gk-hv-shot img { display: block; width: 100%; height: auto; border-radius: 7px; background: #0b2335; }
.gk-hv-shot figcaption { padding: 5px 2px 1px; color: #9fc0d4; font-size: 10px; font-weight: 700; letter-spacing: .02em; }
.gk-hv-chip {
  position: absolute; z-index: 3; background: rgba(3,27,45,.94); border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px; padding: 8px 11px; box-shadow: 0 14px 30px rgba(0,0,0,.42);
  font-size: 11.5px; font-weight: 700; color: #eaf3f8; line-height: 1.25; white-space: nowrap;
}
.gk-hv-chip b { display: block; color: var(--orange-500); font-size: 9px; font-weight: 800; letter-spacing: .1em; margin-bottom: 2px; }
.gk-hv-c3 b { color: #8fe3b6; }
.gk-hv-c1 { left: -20px; top: 42px; }
.gk-hv-c2 { right: -18px; top: 16px; }
.gk-hv-c3 { left: -24px; bottom: 34px; }

@keyframes gkhvDraw { to { stroke-dashoffset: 0; } }
@keyframes gkhvIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.gk-hv-outline { stroke-dasharray: 1200; stroke-dashoffset: 1200; animation: gkhvDraw 1.4s cubic-bezier(.5,0,.2,1) .2s forwards; }
.gk-hv-fill { opacity: 0; animation: gkhvIn .7s ease .95s forwards; }
.gk-hv-split { opacity: 0; animation: gkhvIn .5s ease 1.2s forwards; }
.gk-hv-anno { opacity: 0; animation: gkhvIn .5s ease 1.4s forwards; }
.gk-hv-chip { opacity: 0; animation: gkhvIn .5s ease forwards; }
.gk-hv-c1 { animation-delay: 1.5s; } .gk-hv-c2 { animation-delay: 1.62s; } .gk-hv-c3 { animation-delay: 1.74s; }
.gk-hv-shot { opacity: 0; animation: gkhvIn .6s ease 1.9s forwards; }
@media (prefers-reduced-motion: reduce) {
  .gk-hv-outline, .gk-hv-fill, .gk-hv-split, .gk-hv-anno, .gk-hv-chip, .gk-hv-shot {
    animation: none !important; opacity: 1 !important; stroke-dashoffset: 0 !important; transform: none !important;
  }
  .gk-hv-shot { transform: rotate(-1.6deg) !important; }
}
@media (max-width: 1080px) {
  .gk-hv-chip { position: static; display: inline-block; margin: 10px 8px 0 0; white-space: normal; }
}
@media (max-width: 860px) {
  .gk-hv-shot { position: static; width: 100%; max-width: none; margin-top: 12px; transform: none; }
  .gk-hv-shot figcaption { text-align: center; }
}

/* ══════════════════════════════════════════════════════════════════
   GKCREAM 11/08/2026 — Νέα ταυτότητα: κρεμ χαρτί + ελβετικό κόκκινο.
   Τελευταίο block· υπερισχύει των προηγούμενων. Τίποτα δεν διαγράφηκε.
   ══════════════════════════════════════════════════════════════════ */
:root {
  --paper:      #f7f1e8;
  --paper-2:    #fffaf3;
  --paper-3:    #efe6d9;
  --red:        #d0341f;
  --red-dark:   #a8291a;
  --red-soft:   #f4dcd5;
  --deep:       #1b2521;
  --navy-950:   #1b2521;
  --navy-900:   #24302b;
  --navy-800:   #a8291a;
  --blue-600:   #d0341f;
  --orange-500: #d0341f;
  --orange-300: #e8785c;
  --teal-500:   #1d4439;
  --forest:     #1d4439;
  --ink:        #1b2521;
  --muted:      #6b736d;
  --soft:       #f2ece2;
  --line:       #e2d8c9;
  --white:      #fbf7f0;
  --surface:    #fffaf3;
  --surface-2:  #fdf0e9;
  --shadow:     0 18px 55px rgba(90, 60, 40, .14);
}
html { color-scheme: light; }
body { background: var(--white); color: var(--ink); }
a { color: var(--red-dark); }
a:focus-visible, button:focus-visible, summary:focus-visible { outline-color: var(--red); }

/* ── Nav ─────────────────────────────────────────────────────────── */
.site-nav { background: rgba(251,247,240,.92); border-bottom: 1px solid var(--line); }
.brand { color: var(--ink); }
.brand span { color: var(--red); }
.nav-links a { color: #5d6862; }
.nav-links a:hover { color: var(--ink); }
.nav-links .nav-cta { background: var(--red); color: #fff; }

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 16%, rgba(208,52,31,.10), transparent 38%),
    linear-gradient(168deg, #fbf6ee 0%, var(--paper) 55%, var(--paper-3) 100%);
  border-bottom: 1px solid var(--line);
}
.hero::after {
  opacity: .5;
  background-image: linear-gradient(rgba(155,132,100,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(155,132,100,.14) 1px, transparent 1px);
}
.eyebrow { color: var(--red); }
.gk-eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 7px 14px 7px 8px;
  border: 1px solid var(--line); border-radius: 999px; background: var(--paper-2);
  text-transform: none; letter-spacing: .01em; font-size: 13.5px; color: var(--ink); box-shadow: 0 4px 14px rgba(90,60,40,.07); }
.gk-swissico { width: 26px; height: 26px; flex: none; display: block; }
.hero-lead { color: var(--muted); }
.hero-lead strong { color: var(--ink); }
.hero-notes span { border-color: var(--line); background: var(--paper-2); color: #6f776f; }
.plat-strip span { border-color: var(--line); background: var(--paper-2); color: #66706a; }
.button-primary { background: var(--red); color: #fff; box-shadow: 0 8px 22px rgba(208,52,31,.26); }
.button-secondary { color: var(--ink); border: 1px solid #cdbfae; background: var(--paper-2); }
.button-dark { background: var(--deep); color: #fff; }

/* Σε ποιους απευθύνεται */
.gk-forwho-label { margin: 24px 0 8px; color: var(--red); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.gk-forwho { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.gk-forwho li { padding: 7px 13px; border: 1px solid var(--line); border-radius: 999px;
  background: var(--paper-2); color: #4c5650; font-size: 13px; font-weight: 750; }

/* ── Hero visual (cream) ─────────────────────────────────────────── */
.gk-hv-panel { border: 1px solid var(--line); background: var(--paper-2); box-shadow: 0 26px 64px rgba(90,60,40,.16); }
.gk-hv-shot { border: 1px solid var(--line); background: var(--paper-2); box-shadow: 0 18px 40px rgba(90,60,40,.22); backdrop-filter: none; }
.gk-hv-shot img { background: #efe6d9; }
.gk-hv-shot figcaption { color: #8a8072; }
.gk-hv-chip { background: var(--paper-2); border: 1px solid var(--line); color: var(--ink); box-shadow: 0 12px 26px rgba(90,60,40,.14); }
.gk-hv-chip b { color: var(--red); }
.gk-hv-c3 b { color: var(--forest); }
.gk-hv-knife { position: absolute; left: -16px; bottom: -16px; z-index: 4; display: grid; place-items: center;
  width: 62px; height: 62px; border-radius: 18px; background: var(--paper-2); border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(90,60,40,.2); }
.gk-hv-knife svg { width: 40px; height: 40px; display: block; }
@media (max-width: 860px) { .gk-hv-knife { left: auto; right: 10px; bottom: -14px; width: 54px; height: 54px; } }

/* ── Sections / components ───────────────────────────────────────── */
.proof { background: var(--paper-2); }
.proof-item strong { color: var(--ink); }
.section-soft { background: var(--soft); }
.section-dark { background: var(--deep); }
h2 { color: var(--ink); }
.kicker { color: var(--red); }
.step-number { background: var(--red); }
.step-card::after { color: var(--red); }
.step-card h3, .card h3, .plat-card h3, .plan-name, .price, summary { color: var(--ink); }
.check-list li::before, .khd-node::after { color: var(--red); }
.notice { border-left-color: var(--red); background: var(--surface-2); color: #7a3a28; }
.parcel-panel { background: var(--deep); }
.card-label { background: var(--red-soft); color: var(--red-dark); }
.comparison th, .mx th { background: var(--deep); }
.price-card.featured { border-color: var(--red); }
.price-card.lifetime-card { border-color: var(--forest); }
.badge { background: var(--red); color: #fff; }
.badge-teal { background: var(--forest); }
.price-list li::before, .mx .y { color: var(--forest); }
.founding, .mx td[colspan] { background: var(--surface-2); color: #7a3a28; }
.lifetime-note { color: #1d4439; background: #e7f1ec; }
.gross-price { color: #1d4439; }
.regular-price { color: var(--red-dark); background: var(--surface-2); }
.plat-card .plat-ico { color: var(--red); }
.plat-card.is-web .plat-ico { color: var(--forest); }
.plat-card.is-dl .plat-ico { color: #b8761b; }
.store-btn { background: var(--deep); border-color: rgba(255,255,255,.16); }
.page-hero { color: var(--ink); border-bottom: 1px solid var(--line);
  background: linear-gradient(168deg, #fbf6ee, var(--paper) 60%, var(--paper-3)); }
.page-hero p { color: var(--muted); }
.office-note { background: var(--paper-2); border-color: #cdbfae; }
.site-footer { background: var(--deep); color: #b9c2bc; }
.site-footer a { color: #e6ddd0; }

/* ── Ενότητα «ελβετικός σουγιάς» ─────────────────────────────────── */
.gk-swiss { background: linear-gradient(160deg, #1b2521, #24302b 58%, #2e231f); }
.gk-blade-label { fill: #e3dbcf; }
.gk-blade-core .gk-blade-label { fill: #f0917a; }
.gk-aud span b { color: #f0917a; }
.gk-quick strong { color: #f0917a; }
.gk-langbar button { border-color: var(--line); background: var(--paper-2); color: var(--red-dark); }
.gk-langbar button[aria-pressed="true"] { background: var(--red); border-color: var(--red); color: #fff; }
.gk-help-card { background: var(--paper-2); box-shadow: 0 8px 28px rgba(90,60,40,.07); }
.gk-help-card h3 { color: var(--ink); }
.gk-num { background: var(--red-soft); color: var(--red-dark); }
.gk-tip { border-left-color: var(--red); background: var(--surface-2); }

/* ── Κρατάμε την κρεμ ταυτότητα και σε dark mode του συστήματος ──── */
@media (prefers-color-scheme: dark) {
  :root {
    --white: #fbf7f0; --surface: #fffaf3; --surface-2: #fdf0e9; --soft: #f2ece2;
    --ink: #1b2521; --muted: #6b736d; --line: #e2d8c9;
    --navy-900: #24302b; --navy-800: #a8291a; --shadow: 0 18px 55px rgba(90,60,40,.14);
  }
  body { background: var(--white); color: var(--ink); }
  a { color: var(--red-dark); }
  .section-soft { background: var(--soft); }
  h1, h2, h3, .plan-name, .price, summary, .proof-item strong { color: var(--ink); }
  .plat-card h3, .step-card h3, .card h3 { color: var(--ink); }
  .plat-card .plat-ico { color: var(--red); }
  .plat-card.is-web .plat-ico { color: var(--forest); }
  .plat-card.is-dl .plat-ico { color: #b8761b; }
  .store-btn { background: var(--deep); border-color: rgba(255,255,255,.16); }
  .notice, .founding, .gk-tip { background: var(--surface-2); color: #7a3a28; }
  .office-note { background: var(--paper-2); border-color: #cdbfae; }
  .comparison th, .mx th { background: var(--deep); }
  .mx td[colspan] { background: var(--surface-2); color: #7a3a28; }
  .card-label { background: var(--red-soft); color: var(--red-dark); }
  .trial-box input[type=email] { background: var(--paper-2); color: var(--ink); border-color: var(--line); }
  .site-footer { background: var(--deep); }
  .hero { color: var(--ink); }
  .gk-hv-panel, .gk-hv-shot, .gk-hv-chip { background: var(--paper-2); border-color: var(--line); color: var(--ink); }
}

/* ══════════════════════════════════════════════════════════════════
   GKHERO4 11/08/2026 — hero χωρίς επικαλύψεις + filmstrip οθονών.
   ΠΡΕΠΕΙ να μένει ΜΕΤΑ το GKCREAM.
   ══════════════════════════════════════════════════════════════════ */
.hero { padding: clamp(52px,6vw,86px) 0 clamp(46px,5vw,72px); }
.hero-grid { grid-template-columns: minmax(0,1fr) minmax(0,1.06fr); gap: clamp(30px,4vw,64px); }
.hero-copy { max-width: 640px; }
.hero h1 { font-size: clamp(37px,4.9vw,62px); line-height: 1.02; letter-spacing: -.038em; }
.hero-lead { margin: 20px 0 0; font-size: clamp(16.5px,1.55vw,20px); line-height: 1.62; max-width: 620px; }
.button-row { margin-top: 28px; }
.gk-forwho-label { margin-top: 30px; }
.plat-strip { margin-top: 26px; }

/* Οι παλιές επιπλέουσες ετικέτες/badge καταργήθηκαν — έκρυβαν το λογότυπο */
.gk-hv-chip, .gk-hv-knife, .gk-hv-shot { display: none !important; }

.gk-hv { position: relative; }
.gk-hv-panel { padding: 10px; border-radius: 20px; }
.gk-hv-svg { border-radius: 12px; }

.gk-hv-strip { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; margin-top: 10px; }
.gk-hv-strip figure { margin: 0; padding: 6px 6px 3px; border: 1px solid var(--line); border-radius: 13px;
  background: var(--paper-2); box-shadow: 0 10px 24px rgba(90,60,40,.10);
  transition: transform .18s ease, box-shadow .18s ease; }
.gk-hv-strip figure:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(90,60,40,.16); }
.gk-hv-strip img { display: block; width: 100%; height: auto; aspect-ratio: 16/10; object-fit: cover;
  object-position: center; border-radius: 9px; background: #efe6d9; }
.gk-hv-strip figcaption { padding: 6px 2px 2px; text-align: center; color: #8a8072; font-size: 10.5px; font-weight: 800; letter-spacing: .02em; }
.gk-hv-strip:has(figure:only-child) { grid-template-columns: minmax(0,1fr); }
.gk-hv-strip:has(figure:nth-child(2):last-child) { grid-template-columns: repeat(2, minmax(0,1fr)); }
@media (max-width: 520px) { .gk-hv-strip { grid-template-columns: repeat(2, minmax(0,1fr)); } }

/* ── Ρυθμός & αίσθηση: λίγο περισσότερος αέρας, πιο ήπιες σκιές ──── */
.section { padding: clamp(58px,6.5vw,90px) 0; }
.section-head { margin-bottom: 38px; }
.lead { line-height: 1.6; }
.card, .step-card, .plat-card, .price-card, details, .gk-help-card {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.card:hover, .step-card:hover, .plat-card:hover { transform: translateY(-2px); border-color: #d3c4b1; }
.button { transition: transform .15s ease, box-shadow .15s ease, filter .15s ease; }
.button-primary:hover { box-shadow: 0 12px 28px rgba(208,52,31,.30); }

/* ══════════════════════════════════════════════════════════════════
   GKLEGAL / GKUNIFY 11/08/2026 — κοινό στυλ για όλες τις σελίδες
   (νομικές σελίδες, page-hero, πίνακες). Μετά το GKHERO4.
   ══════════════════════════════════════════════════════════════════ */
.page-hero { padding: clamp(46px,5vw,68px) 0 clamp(36px,4vw,52px); }
.page-hero h1 { font-size: clamp(33px,4.4vw,54px); line-height: 1.05; letter-spacing: -.035em; margin: 0; }
.page-hero p { max-width: 720px; margin: 16px 0 0; color: var(--muted); font-size: clamp(16px,1.5vw,19px); line-height: 1.6; }
.page-hero .eyebrow { margin-bottom: 12px; }

.gk-legal { color: var(--ink); }
.gk-legal h2 { margin: 34px 0 10px; font-size: clamp(20px,2.2vw,25px); letter-spacing: -.02em; }
.gk-legal h2:first-child { margin-top: 0; }
.gk-legal h3 { margin: 22px 0 8px; font-size: 17px; color: var(--ink); }
.gk-legal p, .gk-legal li { font-size: 16px; line-height: 1.68; color: #4a544e; }
.gk-legal p { margin: 0 0 12px; }
.gk-legal ul, .gk-legal ol { margin: 0 0 14px; padding-left: 22px; }
.gk-legal li { margin: 6px 0; }
.gk-legal b, .gk-legal strong { color: var(--ink); }
.gk-legal a { color: var(--red-dark); text-underline-offset: 3px; }
.gk-legal .muted { color: var(--muted); font-size: 14px; }
.gk-legal table { width: 100%; border-collapse: separate; border-spacing: 0; margin: 16px 0 22px;
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--surface); font-size: 14.5px; }
.gk-legal th, .gk-legal td { padding: 12px 14px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.gk-legal th { background: var(--surface-2); color: var(--red-dark); font-weight: 800; font-size: 13px; }
.gk-legal tr:last-child td { border-bottom: 0; }
.gk-legal hr { border: 0; border-top: 1px solid var(--line); margin: 30px 0; }
@media (max-width: 700px) { .gk-legal table { display: block; overflow-x: auto; } }

/* Ενιαία πλοήγηση σε όλες τις σελίδες */
.nav-links { gap: 17px; }
.nav-links a { transition: color .15s ease; }
@media (max-width: 1000px) { .nav-links a:not(.nav-cta) { font-size: 13px; } }

/* pricing.html — ευθυγράμμιση με κρεμ/κόκκινο */
.eb-banner { background: var(--surface-2) !important; border-color: #f0cfc3 !important; color: #7a3a28 !important; }
.trial-box input[type=email] { background: var(--paper-2); color: var(--ink); }

/* ══════════════════════════════════════════════════════════════════
   GKMOB 13/08/2026 — ΤΟ MOBILE. **ΠΡΕΠΕΙ ΝΑ ΜΕΝΕΙ ΤΕΛΕΥΤΑΙΟ ΣΤΟ ΑΡΧΕΙΟ.**
   ΑΙΤΙΑ ΤΟΥ ΠΡΟΒΛΗΜΑΤΟΣ: το μπλοκ GKHERO4 (γρ. ~601) ορίζει
   `.hero-grid{grid-template-columns:minmax(0,1fr) minmax(0,1.06fr)}` ΧΩΡΙΣ media query,
   αλλά βρίσκεται ΜΕΤΑ τα @media (max-width:900px/640px) της γρ. 190/205. Ίδια
   ειδικότητα + μεταγενέστερο ⇒ κέρδιζε ΠΑΝΤΟΥ ⇒ το hero έμενε 2 στηλών στα 375px.
   Γι' αυτό ΟΛΑ τα mobile overrides πρέπει να ζουν εδώ, στο τέλος.
   Καμία γραμμή υπάρχοντος κώδικα δεν άλλαξε — σβήνεις το μπλοκ ⇒ επιστροφή στο πριν.
   ══════════════════════════════════════════════════════════════════ */

/* ── ≤900px: μία στήλη παντού ──────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid, .split-grid, .footer-grid { grid-template-columns: minmax(0,1fr) !important; }
  .hero-grid { gap: 30px !important; }
  .hero-copy { max-width: 100%; }
  .gk-hv { order: 2; }
}

/* ── ≤720px: το πραγματικό κινητό ──────────────────────────────── */
@media (max-width: 720px) {
  .wrap, .narrow { width: min(100% - 30px, 1180px); }

  /* Nav: μικρότερο, χωρίς overflow */
  .nav-inner { min-height: 58px; gap: 10px; }
  .brand { font-size: 15px; gap: 8px; }
  .brand img { width: 30px; height: 30px; border-radius: 8px; }
  .nav-links { gap: 10px; }
  .nav-links .nav-cta { padding: 9px 13px; font-size: 12.5px; border-radius: 9px; }

  /* HERO — αναπνοή, όχι στοίβα */
  .hero { padding: 34px 0 40px !important; }
  .hero-grid { gap: 26px !important; }

  .gk-eyebrow { padding: 6px 12px 6px 7px; font-size: 11px; letter-spacing: .07em;
                line-height: 1.3; text-align: left; }
  .gk-swissico { width: 22px; height: 22px; }

  .hero h1 { font-size: clamp(30px, 8.4vw, 40px) !important; line-height: 1.06 !important;
             letter-spacing: -.03em !important; }
  .hero h1 br { display: none; }              /* το χειροκίνητο break σπάει άσχημα */
  .hero-lead { margin-top: 16px !important; font-size: 16.5px !important;
               line-height: 1.58 !important; max-width: 100% !important; }

  /* CTA: πλήρες πλάτος, εύκολο δάχτυλο */
  .button-row { margin-top: 22px !important; flex-direction: column; gap: 10px; }
  .button-row .button { width: 100%; min-height: 52px; font-size: 15.5px; }

  /* «Για ποιους» + πλατφόρμες: οριζόντιο scroll αντί για χάος αναδίπλωσης */
  .gk-forwho-label { margin-top: 24px !important; margin-bottom: 9px; font-size: 11px; }
  .gk-forwho, .plat-strip, .hero-notes {
    flex-wrap: nowrap; overflow-x: auto; overflow-y: hidden;
    -webkit-overflow-scrolling: touch; scroll-snap-type: x proximity;
    scrollbar-width: none; padding-bottom: 3px;
    margin-left: -15px; margin-right: -15px; padding-left: 15px; padding-right: 15px;
  }
  .gk-forwho::-webkit-scrollbar, .plat-strip::-webkit-scrollbar,
  .hero-notes::-webkit-scrollbar { display: none; }
  .gk-forwho li, .plat-strip span, .hero-notes span { flex: none; scroll-snap-align: start; white-space: nowrap; }
  .gk-forwho li { padding: 7px 12px; font-size: 12.5px; }
  .plat-strip { margin-top: 20px !important; }
  .plat-strip span { font-size: 11.5px; padding: 6px 10px; }
  .hero-notes { margin-top: 18px; }
  .hero-notes span { font-size: 11.5px; }

  /* Το CAD panel: 640×400 σε 345px = 11px κείμενο ⇒ 6px. Δείξ' το ΟΛΟΚΛΗΡΟ,
     με πλάτος έξω από τα margins ώστε να μεγαλώσει η κλίμακα. */
  .gk-hv { margin-left: -15px; margin-right: -15px; }
  .gk-hv-panel { padding: 7px !important; border-radius: 0 !important;
                 border-left: 0; border-right: 0;
                 box-shadow: 0 12px 30px rgba(90,60,40,.10) !important; }
  .gk-hv-svg { border-radius: 8px !important; }

  /* Filmstrip: 3 μικροσκοπικά → 2 ευανάγνωστα + snap */
  .gk-hv-strip { grid-template-columns: repeat(2, minmax(0,1fr)) !important; gap: 8px;
                 padding: 0 15px; }
  .gk-hv-strip figure:nth-child(3) { grid-column: span 2; }
  .gk-hv-strip img { aspect-ratio: 16/9; }
  .gk-hv-strip figcaption { font-size: 11px; }

  /* Υπόλοιπη σελίδα */
  .section { padding: 46px 0 !important; }
  .section-head { margin-bottom: 26px !important; }
  h2 { letter-spacing: -.025em; }
  .cards, .workflow-grid, .proof-grid, .support-cards, .plat-grid,
  .pricing-grid, .trust-grid, .khd-flow { grid-template-columns: minmax(0,1fr) !important; }
  .price-card { padding: 24px 19px; }
  .parcel-panel { padding: 14px; }
  .comparison, .mx { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .site-footer { padding: 34px 0; }
  .footer-grid { gap: 24px; }
}

/* ── ≤400px: iPhone SE / mini ───────────────────────────────────── */
@media (max-width: 400px) {
  .hero h1 { font-size: 29px !important; }
  .hero-lead { font-size: 15.5px !important; }
  .gk-eyebrow { font-size: 10.5px; }
  .nav-links .nav-cta { padding: 8px 11px; font-size: 12px; }
  .gk-hv-strip { grid-template-columns: minmax(0,1fr) !important; }
  .gk-hv-strip figure:nth-child(3) { grid-column: auto; }
}

/* ── Γενική υγιεινή mobile: τίποτα δεν βγαίνει έξω από την οθόνη ── */
@media (max-width: 900px) {
  html, body { overflow-x: hidden; }
  img, svg, video, table, pre { max-width: 100%; }
  h1, h2, h3, p, li { overflow-wrap: anywhere; }
}

/* Touch targets ≥44px (Apple HIG) — δεν αγγίζει desktop */
@media (hover: none) and (pointer: coarse) {
  .button, .nav-cta, .gk-hv-strip figure a { min-height: 46px; }
  .nav-links a { padding: 4px 0; }
}
