/* ============================================================
   Pro Sales Support — Design System v2
   Inter variable (self-hosted, ελληνικά). Navy + Amber.
   ============================================================ */
@import url('/assets/fonts/fonts.css');

:root {
  --primary: #f59e0b;
  --primary-dark: #d97706;
  --primary-50: #fffbeb;
  --primary-100: #fef3c7;
  --primary-200: #fde68a;
  --navy: #0f172a;
  --navy-2: #1e293b;
  --navy-3: #334155;
  --navy-deep: #0a1020;
  --cyan: #06b6d4;
  --cyan-50: #ecfeff;
  --cyan-700: #0e7490;
  --green: #10b981;
  --green-50: #ecfdf5;
  --red: #ef4444;

  --text: #0f172a;
  --text-2: #475569;
  --text-3: #64748b;
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-alt: #f1f5f9;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 6px rgba(15,23,42,0.06);
  --shadow-md: 0 6px 20px rgba(15,23,42,0.08);
  --shadow-lg: 0 20px 50px rgba(15,23,42,0.12);
  --shadow-glow: 0 0 0 1px rgba(245,158,11,0.2), 0 8px 24px rgba(245,158,11,0.25);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: 'cv11';
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--primary-200); color: var(--navy); }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }

/* ====================== SCROLL REVEAL ====================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 90ms; }
.reveal[data-d="2"] { transition-delay: 180ms; }
.reveal[data-d="3"] { transition-delay: 270ms; }
.reveal[data-d="4"] { transition-delay: 360ms; }
.reveal[data-d="5"] { transition-delay: 450ms; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; }
}

/* ====================== NAVIGATION ====================== */
.nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  z-index: 100; width: calc(100% - 32px); max-width: 1180px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(226,232,240,0.8);
  border-radius: var(--radius-full);
  padding: 10px 12px 10px 20px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 200ms;
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img.mark { width: 38px; height: 38px; object-fit: contain; }
.nav-brand .name { font-weight: 700; font-size: 15px; color: var(--navy); letter-spacing: -0.2px; white-space: nowrap; }
.nav-links { display: flex; gap: 2px; }
.nav-link {
  padding: 8px 13px; font-size: 14px; font-weight: 600;
  color: var(--navy-3); border-radius: var(--radius-full); transition: all 150ms;
  white-space: nowrap;
}
.nav-link:hover { background: var(--surface-alt); color: var(--navy); }
.nav-link.active { background: var(--navy); color: #fff; }
.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-login {
  padding: 9px 14px; font-size: 13.5px; font-weight: 700; color: var(--navy-3);
  border-radius: var(--radius-full); border: 1.5px solid var(--border); transition: all 150ms;
  white-space: nowrap;
}
.nav-login:hover { border-color: var(--navy); color: var(--navy); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px; background: var(--primary); color: var(--navy);
  border-radius: var(--radius-full); font-size: 14px; font-weight: 700;
  transition: all 150ms; white-space: nowrap;
}
.nav-cta:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); }

/* Burger */
.nav-burger {
  display: none; width: 42px; height: 42px; border-radius: 50%;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: var(--navy);
}
.nav-burger span { display: block; width: 18px; height: 2px; background: #fff; border-radius: 2px; transition: all 250ms var(--ease); }
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu panel */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; display: none;
  background: rgba(10,16,32,0.55); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.mobile-menu .panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(340px, 88%);
  background: #fff; padding: 96px 26px 32px;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateX(100%); transition: transform 320ms var(--ease);
  box-shadow: var(--shadow-lg); overflow-y: auto;
}
body.menu-open .mobile-menu { display: block; }
body.menu-open .mobile-menu .panel { transform: none; }
.mobile-menu a.mlink {
  padding: 14px 16px; border-radius: var(--radius-md);
  font-size: 17px; font-weight: 700; color: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-menu a.mlink:active, .mobile-menu a.mlink:hover { background: var(--surface-alt); }
.mobile-menu a.mlink.active { background: var(--primary-50); color: var(--primary-dark); }
.mobile-menu .m-sep { height: 1px; background: var(--border); margin: 14px 8px; }
.mobile-menu .m-cta {
  margin-top: 8px; text-align: center; padding: 16px; border-radius: var(--radius-md);
  background: var(--primary); color: var(--navy); font-weight: 800; font-size: 16px;
}
.mobile-menu .m-login {
  margin-top: 10px; text-align: center; padding: 15px; border-radius: var(--radius-md);
  border: 1.5px solid var(--border-strong); color: var(--navy); font-weight: 700; font-size: 15px;
}
@media (max-width: 1020px) {
  .nav-links, .nav-login { display: none; }
  .nav-burger { display: flex; }
  .nav { padding: 8px 8px 8px 16px; }
}
@media (max-width: 620px) {
  /* Σε στενές οθόνες το CTA της nav συγκρούεται με το όνομα — το αναλαμβάνει
     το μενού + το floating CTA στο κάτω μέρος. */
  .nav-cta { display: none; }
  .nav-brand .name { font-size: 14.5px; }
}
@media (max-width: 380px) { .nav-brand .name { display: none; } }

/* Floating mobile CTA */
.mobile-cta {
  display: none; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90;
  background: var(--navy); color: #fff; border-radius: var(--radius-lg);
  padding: 8px 8px 8px 18px; align-items: center; justify-content: space-between; gap: 12px;
  box-shadow: var(--shadow-lg);
  transform: translateY(120%); transition: transform 350ms var(--ease);
}
.mobile-cta.show { transform: none; }
.mobile-cta .t { font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,0.9); line-height: 1.3; }
.mobile-cta a {
  flex-shrink: 0; background: var(--primary); color: var(--navy);
  padding: 12px 18px; border-radius: var(--radius-md); font-weight: 800; font-size: 14px;
  white-space: nowrap;
}
@media (max-width: 760px) { .mobile-cta { display: flex; } }

/* ====================== BUTTONS ====================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 28px; border-radius: var(--radius-md);
  font-weight: 700; font-size: 16px; transition: all 200ms var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--navy); box-shadow: var(--shadow-glow); }
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(245,158,11,0.35); }
.btn-secondary { background: #fff; color: var(--navy); border: 1.5px solid var(--border-strong); }
.btn-secondary:hover { border-color: var(--navy); background: var(--navy); color: #fff; }
.btn-ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.3); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ====================== SECTIONS ====================== */
section { padding: 96px 0; }
.section-eyebrow {
  display: inline-block; padding: 6px 14px;
  background: var(--primary-50); color: var(--primary-dark);
  border-radius: var(--radius-full); font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(31px, 4vw, 46px); line-height: 1.13;
  font-weight: 800; color: var(--navy); letter-spacing: -1.2px;
  margin-bottom: 16px; max-width: 800px;
}
.section-title .accent { color: var(--primary-dark); }
.section-lead {
  font-size: 18.5px; line-height: 1.6; color: var(--text-2);
  max-width: 680px; margin-bottom: 52px;
}
.section-lead strong { color: var(--navy); }

/* ====================== HERO (home) ====================== */
.hero {
  padding: 150px 0 90px;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 800px 500px at 18% 0%, rgba(245,158,11,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 700px 420px at 92% 28%, rgba(6,182,212,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 500px 300px at 60% 90%, rgba(139,92,246,0.05) 0%, transparent 60%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: radial-gradient(rgba(15,23,42,0.055) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 70%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 70%, transparent);
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
/* Τα `1fr` tracks έχουν αυτόματο ελάχιστο = min-content του παιδιού, οπότε σε στενές
   οθόνες η στήλη γινόταν πλατύτερη από την οθόνη. Το `min-width:0` τα αφήνει να
   συρρικνωθούν. Μην το αφαιρέσεις — επανεμφανίζεται οριζόντια υπερχείλιση. */
.hero-grid > *, .showcase-grid > *, .services-grid > *, .steps > * { min-width: 0; }
.hero h1, .page-hero h1, .section-title, .hero-sub, .page-hero .lead, .prose p { overflow-wrap: break-word; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; background: #fff;
  border: 1px solid var(--primary-200);
  border-radius: var(--radius-full);
  font-size: 12px; font-weight: 700; letter-spacing: 1.2px;
  color: var(--primary-dark); text-transform: uppercase;
  box-shadow: var(--shadow-sm); margin-bottom: 20px;
}
.eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 {
  font-size: clamp(38px, 5.5vw, 64px); line-height: 1.06;
  font-weight: 800; letter-spacing: -1.8px; color: var(--navy);
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--primary-dark); }
.hero h1 .underline { position: relative; display: inline-block; }
.hero h1 .underline::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 4px;
  height: 12px; background: var(--primary-100); z-index: -1; border-radius: 4px;
}
.hero-sub { font-size: 19px; line-height: 1.6; color: var(--text-2); margin-bottom: 34px; max-width: 540px; }
.hero-sub strong { color: var(--navy); font-weight: 700; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 34px; }

.hero-trust { display: flex; align-items: center; gap: 14px; }
.av-stack { display: flex; }
.av {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--navy); font-size: 12px; font-weight: 800;
  display: grid; place-items: center;
  border: 2px solid #fff; margin-left: -10px;
  box-shadow: var(--shadow-sm);
}
.av:first-child { margin-left: 0; }
.av.plus { background: var(--navy); color: var(--primary); }
.trust-text { font-size: 14px; color: var(--text-2); }
.trust-text strong { color: var(--navy); font-weight: 700; }

/* Hero visual — portal mockup */
.hero-visual { position: relative; height: 540px; }
.hero-window {
  position: absolute; top: 20px; left: 0; right: 110px;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
  border: 1px solid var(--border);
  transform: rotate(-1deg);
}
.win-bar { background: var(--navy); padding: 12px 16px; display: flex; align-items: center; gap: 12px; }
.win-dots { display: flex; gap: 6px; }
.win-dots span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.win-dots span:nth-child(1) { background: #ef4444; }
.win-dots span:nth-child(2) { background: #f59e0b; }
.win-dots span:nth-child(3) { background: #10b981; }
.win-url { flex: 1; text-align: center; font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.6); }
.win-content { padding: 22px; min-height: 360px; overflow: hidden; }
.win-tabs { display: flex; gap: 8px; margin-bottom: 18px; border-bottom: 1px solid var(--border); padding-bottom: 12px; overflow: hidden; }
.win-tab { padding: 6px 12px; border-radius: var(--radius-sm); font-size: 12px; font-weight: 600; color: var(--text-3); white-space: nowrap; flex-shrink: 0; }
.win-tab.active { background: var(--navy); color: var(--primary); }
.win-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 18px; }
.win-kpi { padding: 14px 12px; background: var(--surface-alt); border-radius: var(--radius-md); }
.win-kpi .label { font-size: 10px; color: var(--text-3); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.win-kpi .value { font-size: 22px; font-weight: 800; color: var(--navy); margin-top: 4px; letter-spacing: -0.5px; }
.win-kpi .trend { font-size: 10px; color: var(--green); font-weight: 700; margin-top: 2px; }
.win-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.win-table th { text-align: left; padding: 10px 8px; background: var(--surface-alt); color: var(--text-2); font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; }
.win-table td { padding: 12px 8px; border-bottom: 1px solid var(--border); }
.status { display: inline-block; padding: 3px 8px; border-radius: var(--radius-full); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3px; }
.status.ok { background: var(--green-50); color: #047857; }
.status.pending { background: var(--cyan-50); color: var(--cyan-700); }
.status.paid { background: var(--primary-50); color: var(--primary-dark); }

.hero-phone {
  position: absolute; bottom: 0; right: -16px;
  width: 180px; height: 360px;
  background: var(--navy); border-radius: 28px;
  padding: 6px; box-shadow: var(--shadow-lg);
  transform: rotate(4deg);
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: rotate(4deg) translateY(0); } 50% { transform: rotate(4deg) translateY(-10px); } }
.hero-phone .screen { width: 100%; height: 100%; background: #fff; border-radius: 22px; overflow: hidden; padding: 20px 16px; }
.phone-greeting { font-size: 11px; color: var(--text-3); font-weight: 600; }
.phone-name { font-size: 18px; font-weight: 800; color: var(--navy); margin: 2px 0 16px; }
.phone-card { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff; padding: 14px; border-radius: var(--radius-md); margin-bottom: 12px; }
.phone-card .small { font-size: 9px; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.phone-card .big { font-size: 22px; font-weight: 800; margin-top: 2px; }
.phone-list { display: flex; flex-direction: column; gap: 8px; }
.phone-row { display: flex; align-items: center; gap: 10px; padding: 10px; background: var(--surface-alt); border-radius: var(--radius-sm); }
.phone-row .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.phone-row .text { font-size: 10px; color: var(--text); font-weight: 600; flex: 1; }
.phone-row .meta { font-size: 9px; color: var(--text-3); }

@media (max-width: 960px) {
  .hero { padding: 128px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { height: 500px; }
  .hero-window { transform: rotate(0); right: 96px; }
  .hero-phone { right: 0; }
}
@media (max-width: 620px) {
  /* Το κινητό-mockup δεν πρέπει να κρύβει τα KPI: μικραίνει και πέφτει χαμηλά. */
  .hero-visual { height: 470px; }
  .hero-window { right: 62px; top: 0; }
  .win-content { padding: 16px; min-height: 300px; }
  .win-tab { padding: 5px 9px; font-size: 11px; }
  .win-kpis { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .win-kpi { padding: 10px 10px; }
  .win-kpi .value { font-size: 18px; }
  .win-table th, .win-table td { padding: 8px 6px; }
  .hero-phone { width: 132px; height: 268px; right: -6px; bottom: 0; }
  .hero-phone .screen { padding: 14px 11px; }
  .phone-name { font-size: 15px; margin-bottom: 10px; }
  .phone-card { padding: 10px; margin-bottom: 8px; }
  .phone-card .big { font-size: 18px; }
  .phone-row { padding: 7px 8px; }
}

/* ====================== SUBPAGE HERO ====================== */
.page-hero {
  padding: 150px 0 64px;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 700px 420px at 15% 0%, rgba(245,158,11,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 600px 380px at 95% 40%, rgba(6,182,212,0.07) 0%, transparent 55%);
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(34px, 4.8vw, 56px); line-height: 1.08;
  font-weight: 800; letter-spacing: -1.5px; color: var(--navy);
  margin-bottom: 18px; max-width: 820px;
}
.page-hero h1 .accent { color: var(--primary-dark); }
.page-hero .lead { font-size: 19px; line-height: 1.6; color: var(--text-2); max-width: 640px; }
.page-hero .lead strong { color: var(--navy); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; font-size: 13.5px; color: var(--text-3); margin-bottom: 22px; font-weight: 600; }
.breadcrumbs a:hover { color: var(--primary-dark); }
.breadcrumbs .sep { opacity: 0.5; }

/* ====================== STATS BAR ====================== */
.stats-bar { background: var(--navy); padding: 54px 0; position: relative; overflow: hidden; }
.stats-bar::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(245,158,11,0.15), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(6,182,212,0.10), transparent 50%);
}
.stats-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 12px; }
.stat + .stat { border-left: 1px solid rgba(255,255,255,0.08); }
.stat .num { font-size: 52px; font-weight: 800; color: var(--primary); line-height: 1; letter-spacing: -1.5px; font-variant-numeric: tabular-nums; }
.stat .lbl { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 10px; }
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat + .stat { border-left: none; }
  .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; }
  .stat .num { font-size: 40px; }
}

/* ====================== PROVIDERS MARQUEE ====================== */
.providers { padding: 56px 0; background: #fff; border-bottom: 1px solid var(--border); overflow: hidden; }
.providers h3 { text-align: center; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-3); margin-bottom: 32px; }
.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; align-items: center; gap: 64px; width: max-content; animation: marquee 32s linear infinite; padding-right: 64px; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.prov { height: 48px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.prov img { max-height: 44px; width: auto; filter: grayscale(1); opacity: 0.6; transition: all 200ms var(--ease); }
.prov:hover img { filter: none; opacity: 1; }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; } }

/* ====================== SERVICE CARDS ====================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: all 200ms var(--ease); position: relative; overflow: hidden;
}
.svc::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--svc-color, var(--primary)); opacity: 0; transition: opacity 200ms; }
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--svc-color, var(--primary)); }
.svc:hover::before { opacity: 1; }
.svc-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: var(--svc-bg, var(--primary-50)); color: var(--svc-color, var(--primary-dark));
  display: grid; place-items: center; font-size: 24px; margin-bottom: 22px;
}
.svc h3 { font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 10px; letter-spacing: -0.3px; }
.svc p { font-size: 15px; line-height: 1.6; color: var(--text-2); }
.svc .svc-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 14px; font-weight: 700; color: var(--svc-color, var(--primary-dark)); }
.svc.amber { --svc-color: var(--primary-dark); --svc-bg: var(--primary-50); }
.svc.cyan { --svc-color: var(--cyan-700); --svc-bg: var(--cyan-50); }
.svc.purple { --svc-color: #6d28d9; --svc-bg: #f5f3ff; }
.svc.green { --svc-color: #047857; --svc-bg: var(--green-50); }
.svc.navy { --svc-color: var(--navy); --svc-bg: var(--surface-alt); }
.svc.red { --svc-color: #b91c1c; --svc-bg: #fef2f2; }
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* ====================== SHOWCASE (portal) ====================== */
.showcase { background: linear-gradient(180deg, var(--bg) 0%, #ffffff 100%); }
.showcase-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.showcase-feats { display: flex; flex-direction: column; gap: 18px; }
.showcase-feat { display: flex; gap: 16px; padding: 18px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); transition: all 200ms var(--ease); }
.showcase-feat:hover { border-color: var(--primary); transform: translateX(3px); }
.showcase-feat .badge {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--navy); color: var(--primary);
  display: grid; place-items: center; font-weight: 800; font-size: 14px;
}
.showcase-feat h4 { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.showcase-feat p { font-size: 14px; line-height: 1.55; color: var(--text-2); }
.showcase-visual {
  background: var(--navy); border-radius: var(--radius-xl); padding: 28px;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.showcase-visual::before { content: ''; position: absolute; top: -40%; right: -20%; width: 60%; height: 80%; background: radial-gradient(circle, rgba(245,158,11,0.2), transparent 60%); }
.sc-card { background: #fff; border-radius: var(--radius-md); padding: 18px; margin-bottom: 14px; position: relative; }
.sc-card:last-child { margin-bottom: 0; }
.sc-card h5 { font-size: 12px; color: var(--text-3); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.sc-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 8px; }
.sc-input { padding: 9px 12px; background: var(--surface-alt); border-radius: var(--radius-sm); font-size: 12px; color: var(--navy); font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sc-input.placeholder { color: var(--text-3); font-weight: 500; }
.sc-progress { height: 6px; background: var(--surface-alt); border-radius: var(--radius-full); overflow: hidden; margin-top: 6px; }
.sc-progress-bar { height: 100%; width: 72%; background: linear-gradient(90deg, var(--primary), var(--primary-dark)); border-radius: var(--radius-full); }
.sc-summary { display: flex; align-items: center; gap: 12px; margin-top: 14px; }
.sc-check { width: 28px; height: 28px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-size: 14px; flex-shrink: 0; }
.sc-summary .t { font-size: 12px; color: var(--navy); font-weight: 700; }
.sc-summary .s { font-size: 10px; color: var(--text-3); }
@media (max-width: 880px) { .showcase-grid { grid-template-columns: 1fr; } }

/* ====================== STEPS ====================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 36px; left: 16%; right: 16%; height: 2px;
  background: repeating-linear-gradient(to right, var(--primary-200) 0 8px, transparent 8px 14px);
  z-index: 0;
}
.step { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 26px; position: relative; z-index: 1; transition: all 200ms var(--ease); }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--primary); color: var(--navy);
  display: grid; place-items: center; font-size: 24px; font-weight: 800;
  margin: 0 auto 22px; border: 4px solid var(--bg);
  box-shadow: 0 0 0 1px var(--primary-200);
}
.step h3 { font-size: 20px; font-weight: 800; color: var(--navy); text-align: center; margin-bottom: 10px; }
.step p { font-size: 15px; line-height: 1.6; color: var(--text-2); text-align: center; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } .steps::before { display: none; } }

/* ====================== NETWORK ====================== */
.network { background: var(--surface-alt); }
.network-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 16px; }
.loc {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 18px 20px;
  display: flex; align-items: center; gap: 14px; transition: all 150ms;
}
.loc:hover { border-color: var(--primary); transform: translateX(2px); }
.loc-pin { width: 36px; height: 36px; border-radius: 50%; background: var(--primary-50); color: var(--primary-dark); display: grid; place-items: center; flex-shrink: 0; font-size: 18px; }
.loc-info .city { font-size: 15px; font-weight: 700; color: var(--navy); }
.loc-info .addr { font-size: 13px; color: var(--text-3); margin-top: 2px; }
.loc.loc-cta { background: linear-gradient(135deg, var(--navy), var(--navy-2)); border-color: var(--navy); }
.loc.loc-cta .loc-pin { background: var(--primary); color: var(--navy); }
.loc.loc-cta .city { color: var(--primary); }
.loc.loc-cta .addr { color: #cbd5e1; }
@media (max-width: 880px) { .network-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .network-grid { grid-template-columns: 1fr; } }

/* ====================== MISSION / DARK BAND ====================== */
.mission { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff; position: relative; overflow: hidden; }
.mission::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(245,158,11,0.15), transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(6,182,212,0.10), transparent 50%);
}
.mission .wrap { position: relative; z-index: 1; }
.mission-quote { font-size: clamp(25px, 3.5vw, 40px); line-height: 1.35; font-weight: 700; max-width: 880px; letter-spacing: -0.8px; margin-bottom: 28px; }
.mission-quote .accent { color: var(--primary); }
.mission-quote::before { content: '"'; display: block; font-size: 100px; line-height: 0.8; color: var(--primary); font-family: Georgia, serif; margin-bottom: 12px; opacity: 0.6; }
.mission-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.pillar { padding: 26px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md); backdrop-filter: blur(10px); }
.pillar h4 { font-size: 17px; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.pillar p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.75); }
@media (max-width: 720px) { .mission-pillars { grid-template-columns: 1fr; } }

/* ====================== FAQ ====================== */
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px; cursor: pointer; padding: 22px 0; width: 100%; text-align: left;
}
.faq-q h4 { font-size: 17px; font-weight: 700; color: var(--navy); line-height: 1.4; }
.faq-toggle {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  background: var(--primary-50); color: var(--primary-dark);
  display: grid; place-items: center; font-weight: 800; font-size: 18px;
  transition: all 200ms; line-height: 1;
}
.faq-item.open .faq-toggle { background: var(--primary); color: var(--navy); transform: rotate(45deg); }
.faq-a { font-size: 15px; line-height: 1.7; color: var(--text-2); max-height: 0; overflow: hidden; transition: max-height 300ms var(--ease); padding-right: 46px; }
.faq-item.open .faq-a { max-height: 500px; padding-bottom: 22px; }
.faq-a a { color: var(--primary-dark); font-weight: 700; }

/* ====================== FORMS ====================== */
.form-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 40px; box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
/* Τα <input> έχουν εγγενές πλάτος ~20 χαρακτήρων που δεν αφήνει τη στήλη να
   στενέψει σε μικρές οθόνες. Ίδιος λόγος με το .hero-grid πιο πάνω. */
.form-grid > * { min-width: 0; }
.field input, .field select, .field textarea { min-width: 0; }
.field label { display: block; font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font-size: 15.5px; font-family: inherit; color: var(--navy);
  background: var(--surface-alt); border: 1.5px solid var(--border);
  border-radius: var(--radius-md); transition: all 150ms; -webkit-appearance: none; appearance: none;
}
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary); background: #fff;
  box-shadow: 0 0 0 4px rgba(245,158,11,0.15);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-3); }
/* Συγκατάθεση — custom checkbox.
   ΠΡΟΣΟΧΗ: το `.field input` πιο πάνω βάζει `appearance:none`, που σβήνει το native
   τικ. Γι' αυτό το ζωγραφίζουμε εμείς — μην αφαιρέσεις το ::after. */
/* Το `.field label { display:block }` πιο πάνω είναι ίδιας ειδικότητας — γι' αυτό
   γράφουμε `.field label.consent-row`, αλλιώς το flex ΔΕΝ εφαρμόζεται και το
   κείμενο τυλίγεται κάτω από το τετραγωνάκι. */
.consent-row,
.field label.consent-row {
  display: flex; gap: 12px; align-items: flex-start; margin-bottom: 0;
  font-size: 13.5px; color: var(--text-2); line-height: 1.5;
  padding: 14px 15px; border: 1.5px solid var(--border);
  border-radius: var(--radius-md); background: var(--surface-alt);
  cursor: pointer; transition: all 160ms var(--ease);
}
.consent-row:hover { border-color: var(--border-strong); }
.consent-row:has(input:checked) {
  background: var(--primary-50); border-color: var(--primary-200); color: var(--navy);
}
.consent-row:has(input:focus-visible) { box-shadow: 0 0 0 4px rgba(245,158,11,0.18); }

.consent-row input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 24px; height: 24px; flex-shrink: 0; margin: 0; padding: 0;
  border: 2px solid var(--border-strong); border-radius: 7px;
  background: #fff; cursor: pointer; position: relative;
  transition: background 160ms, border-color 160ms;
}
.consent-row input[type="checkbox"]:hover { border-color: var(--primary); }
.consent-row input[type="checkbox"]:focus-visible { outline: 2px solid var(--primary-dark); outline-offset: 2px; }
.consent-row input[type="checkbox"]:checked { background: var(--primary-dark); border-color: var(--primary-dark); }
.consent-row input[type="checkbox"]::after {
  content: ''; position: absolute; left: 7px; top: 3px;
  width: 5px; height: 10px;
  border: solid #fff; border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg) scale(0); transform-origin: center;
  transition: transform 180ms var(--ease);
}
.consent-row input[type="checkbox"]:checked::after { transform: rotate(45deg) scale(1); }
.consent-row a { color: var(--primary-dark); font-weight: 700; text-decoration: underline; }
.form-msg { display: none; padding: 14px 16px; border-radius: var(--radius-md); font-size: 14.5px; font-weight: 600; }
.form-msg.ok { display: block; background: var(--green-50); color: #047857; border: 1px solid #a7f3d0; }
.form-msg.err { display: block; background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.btn[disabled] { opacity: 0.6; pointer-events: none; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } .form-card { padding: 26px 20px; } }

/* Success state */
.form-success { text-align: center; padding: 30px 10px; }
.form-success .big-check {
  width: 72px; height: 72px; border-radius: 50%; background: var(--green-50); color: var(--green);
  display: grid; place-items: center; font-size: 34px; margin: 0 auto 18px;
  border: 2px solid #a7f3d0;
}
.form-success h3 { font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.form-success p { color: var(--text-2); font-size: 15.5px; max-width: 420px; margin: 0 auto; }

/* ====================== FINAL CTA ====================== */
.final-cta {
  background: var(--navy); border-radius: var(--radius-xl);
  padding: 80px 40px; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(245,158,11,0.18), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(6,182,212,0.12), transparent 50%);
}
.final-cta > * { position: relative; z-index: 1; }
.final-cta .section-eyebrow { background: rgba(245,158,11,0.18); color: var(--primary); border: 1px solid rgba(245,158,11,0.3); }
.final-cta h2 { font-size: clamp(30px, 4.5vw, 54px); line-height: 1.1; font-weight: 800; letter-spacing: -1.2px; margin-bottom: 18px; }
.final-cta h2 .accent { color: var(--primary); }
.final-cta p { font-size: 18px; color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 32px; }
@media (max-width: 560px) { .final-cta { padding: 56px 22px; } }

/* ====================== ARTICLE / PROSE ====================== */
.prose { max-width: 760px; }
.prose h2 { font-size: 28px; font-weight: 800; color: var(--navy); letter-spacing: -0.6px; margin: 44px 0 14px; line-height: 1.25; }
.prose h3 { font-size: 21px; font-weight: 800; color: var(--navy); margin: 32px 0 10px; }
.prose p { margin-bottom: 18px; color: var(--text-2); font-size: 17px; line-height: 1.75; }
.prose p strong, .prose li strong { color: var(--navy); }
.prose ul, .prose ol { margin: 0 0 18px 22px; color: var(--text-2); line-height: 1.75; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--primary-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.prose .callout {
  background: var(--primary-50); border: 1px solid var(--primary-200);
  border-radius: var(--radius-md); padding: 20px 22px; margin: 26px 0;
  font-size: 15.5px; color: var(--navy);
}
.prose .callout strong { color: var(--primary-dark); }
.article-meta { display: flex; gap: 14px; align-items: center; font-size: 13.5px; color: var(--text-3); font-weight: 600; margin-bottom: 8px; }
.article-cta {
  margin: 40px 0; background: var(--navy); color: #fff; border-radius: var(--radius-lg);
  padding: 30px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.article-cta .t { font-size: 19px; font-weight: 800; letter-spacing: -0.3px; }
.article-cta .s { font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 4px; }

/* Article cards (odigoi index) */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.article-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: all 200ms var(--ease); display: flex; flex-direction: column;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.article-card .thumb { height: 150px; display: grid; place-items: center; font-size: 44px; background: linear-gradient(135deg, var(--navy), var(--navy-2)); position: relative; overflow: hidden; }
.article-card .thumb::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 20%, rgba(245,158,11,0.25), transparent 55%); }
.article-card .thumb span { position: relative; }
.article-card .body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.article-card .cat { font-size: 11.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--primary-dark); }
.article-card h3 { font-size: 18px; font-weight: 800; color: var(--navy); line-height: 1.35; letter-spacing: -0.3px; }
.article-card p { font-size: 14px; color: var(--text-2); line-height: 1.6; flex: 1; }
.article-card .read { font-size: 14px; font-weight: 700; color: var(--primary-dark); display: inline-flex; align-items: center; gap: 6px; }
@media (max-width: 900px) { .article-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .article-grid { grid-template-columns: 1fr; } }

/* ====================== FOOTER ====================== */
.foot { background: #fff; padding: 70px 0 30px; border-top: 1px solid var(--border); margin-top: 80px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; }
.foot-brand .mark-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.foot-brand img.mark { width: 44px; height: 44px; object-fit: contain; }
.foot-brand .brand-name { font-size: 18px; font-weight: 800; color: var(--navy); }
.foot-brand .tag { font-size: 14px; color: var(--text-2); line-height: 1.6; max-width: 320px; }
.foot-col h5 { font-size: 12px; font-weight: 700; color: var(--navy); letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 16px; }
.foot-links { display: flex; flex-direction: column; gap: 8px; }
.foot-links a, .foot-col p { font-size: 14px; color: var(--text-2); line-height: 1.6; transition: color 150ms; }
.foot-links a:hover { color: var(--primary-dark); }
.foot-bottom {
  padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--text-3); flex-wrap: wrap; gap: 12px;
}
.foot-bottom a { color: var(--text-2); }
.foot-bottom a:hover { color: var(--primary-dark); }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .foot-grid { grid-template-columns: 1fr; } }

/* ====================== COOKIE CONSENT ====================== */
.consent-banner {
  position: fixed; z-index: 200; left: 16px; right: 16px; bottom: 16px;
  max-width: 480px; margin: 0 auto;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 22px; box-shadow: var(--shadow-lg);
  display: none;
}
.consent-banner.show { display: block; animation: consentIn 400ms var(--ease); }
@keyframes consentIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.consent-banner h4 { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.consent-banner p { font-size: 13.5px; color: var(--text-2); line-height: 1.55; margin-bottom: 16px; }
.consent-banner p a { color: var(--primary-dark); font-weight: 700; text-decoration: underline; }
.consent-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.consent-actions .c-accept { flex: 1; background: var(--primary); color: var(--navy); font-weight: 800; font-size: 14.5px; padding: 12px 16px; border-radius: var(--radius-md); transition: all 150ms; }
.consent-actions .c-accept:hover { background: var(--primary-dark); color: #fff; }
.consent-actions .c-decline { flex: 1; background: var(--surface-alt); color: var(--navy-3); font-weight: 700; font-size: 14.5px; padding: 12px 16px; border-radius: var(--radius-md); transition: all 150ms; }
.consent-actions .c-decline:hover { background: var(--border); }

/* ====================== UTILITIES ====================== */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.section-tight { padding: 72px 0; }
.bg-white { background: #fff; }
.two-col-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0; z-index: 300; }
.skip-link:focus { left: 0; }
