/* ==========================================================================
   Financial Services Zakynthos — stylesheet
   ========================================================================== */

:root {
  --navy:      #2A2E4E;
  --navy-mid:  #3A3A60;
  --navy-deep: #21243D;
  --orange:    #CE6E47;
  --orange-dk: #B25835;

  --ink:       #1C1E2C;
  --body:      #494C5E;
  --muted:     #6E7185;

  --paper:     #FFFFFF;
  --paper-alt: #F6F5F2;
  --paper-dim: #EFEDE8;
  --rule:      #DCD9D2;
  --rule-soft: #EAE7E1;

  --serif: "IBM Plex Serif", Georgia, "Times New Roman", serif;
  --sans:  "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  --wrap: 1160px;
  --gut: 28px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.68;
  color: var(--body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--navy); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--orange-dk); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin: 0 0 .6em;
}

h1 { font-size: clamp(2.1rem, 1.4rem + 2.6vw, 3.35rem); }
h2 { font-size: clamp(1.55rem, 1.2rem + 1.3vw, 2.1rem); }
h3 { font-size: 1.24rem; }
h4 { font-size: 1.05rem; font-family: var(--sans); font-weight: 600; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gut); }
.narrow { max-width: 760px; }

.eyebrow {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--orange-dk);
  margin: 0 0 1.1rem;
  display: block;
}
.eyebrow.on-dark { color: #E7A184; }

.lede { font-size: 1.16rem; line-height: 1.62; color: var(--ink); }

/* ---------- rule accent ---------- */
.rule-accent {
  width: 46px; height: 3px; background: var(--orange);
  border: 0; margin: 0 0 1.7rem;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--rule-soft);
  backdrop-filter: saturate(180%) blur(8px);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: 74px;
}

.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.brand img { width: 40px; height: 40px; border-radius: 4px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.16; }
.brand-name {
  font-family: var(--serif); font-weight: 600; font-size: 1.01rem;
  color: var(--ink); letter-spacing: -0.01em;
}
.brand-sub {
  font-size: .7rem; letter-spacing: .09em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-size: .93rem; font-weight: 500; color: var(--navy);
  text-decoration: none; padding: 9px 13px; border-radius: 3px;
}
.nav a:hover { background: var(--paper-alt); color: var(--ink); }
.nav a.is-current { color: var(--orange-dk); }

.header-tools { display: flex; align-items: center; gap: 14px; }

.lang-switch {
  display: flex; align-items: center; gap: 6px;
  font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  border-left: 1px solid var(--rule); padding-left: 16px;
}
.lang-switch a { color: var(--muted); text-decoration: none; }
.lang-switch a:hover { color: var(--ink); }
.lang-switch .is-active { color: var(--ink); }

@media (max-width: 620px) {
  .brand img { width: 34px; height: 34px; }
  .brand-name { font-size: .9rem; }
  .brand-sub { display: none; }
  .header-inner { min-height: 64px; gap: 12px; }
  .lang-switch { padding-left: 12px; }
}

.nav-toggle {
  display: none; background: none; border: 1px solid var(--rule);
  border-radius: 3px; padding: 8px 11px; cursor: pointer; color: var(--navy);
  font: inherit; font-size: .85rem;
}

@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--rule);
    padding: 10px var(--gut) 20px;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--rule-soft); }
  .site-header { position: relative; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-block; font-family: var(--sans); font-size: .93rem;
  font-weight: 600; letter-spacing: .01em; text-decoration: none;
  padding: 13px 26px; border-radius: 2px; border: 1.5px solid transparent;
  cursor: pointer; transition: background .16s, color .16s, border-color .16s;
}
.btn-primary { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dk); border-color: var(--orange-dk); color: #fff; }
.btn-ghost { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-ghost-light { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-ghost-light:hover { background: #fff; color: var(--navy); border-color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2rem; }

.textlink {
  font-weight: 600; font-size: .95rem; color: var(--navy);
  text-decoration: none; border-bottom: 1.5px solid var(--orange);
  padding-bottom: 2px;
}
.textlink:hover { color: var(--orange-dk); }

/* ==========================================================================
   Sections
   ========================================================================== */

.section { padding: 84px 0; }
.section-sm { padding: 58px 0; }
.section-alt { background: var(--paper-alt); }
.section-dark { background: var(--navy); color: #C9CBD8; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark a { color: #fff; }
.section-line { border-top: 1px solid var(--rule-soft); }

.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head p { color: var(--body); }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero { background: var(--navy); color: #C7C9D6; padding: 92px 0 88px; }
.hero:has(.hero-facts) { padding-bottom: 0; }

/* επικεφαλίδα που λειτουργεί ως σύνδεσμος */
a.head-link { color: inherit; text-decoration: none; }
a.head-link:hover { color: var(--orange-dk); text-decoration: underline;
  text-decoration-thickness: 1px; text-underline-offset: 4px; }
.hero h1 { color: #fff; max-width: 22ch; }
.hero .lede { color: #C7C9D6; max-width: 56ch; font-size: 1.2rem; }
.hero .rule-accent { margin-bottom: 1.9rem; }

.hero-inner {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 56px; align-items: center;
}
.hero-mark { display: flex; justify-content: flex-end; }
.hero-mark img {
  width: 290px; height: 290px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 3px;
}
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-mark { display: none; }
}

.hero-facts {
  display: flex; flex-wrap: wrap; gap: 0;
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 62px;
}
.hero-fact {
  flex: 1 1 220px; padding: 26px 30px 30px;
  border-right: 1px solid rgba(255,255,255,.14);
}
.hero-fact:last-child { border-right: 0; }
.hero-fact dt {
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: #8E92AC; margin-bottom: 8px; font-weight: 600;
}
.hero-fact dd { margin: 0; color: #fff; font-family: var(--serif); font-size: 1.02rem; }

@media (max-width: 700px) {
  .hero { padding-top: 60px; }
  .hero-facts { margin-top: 42px; }
  .hero-fact { flex-basis: 100%; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .hero-fact:last-child { border-bottom: 0; }
}

/* ---------- page header (inner pages) ---------- */
.page-head { background: var(--navy); color: #C7C9D6; padding: 66px 0 62px; }
.page-head h1 { color: #fff; max-width: 20ch; margin-bottom: .35em; }
.page-head p { color: #B9BCCC; max-width: 62ch; font-size: 1.1rem; margin: 0; }

.crumbs { font-size: .82rem; color: #8E92AC; margin-bottom: 1.7rem; }
.crumbs a { color: #B9BCCC; text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }
.crumbs span { padding: 0 7px; opacity: .55; }

/* ==========================================================================
   Two-track split (Αρχική)
   ========================================================================== */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--rule); }
.split > div {
  padding: 52px 46px 54px;
  border-right: 1px solid var(--rule);
}
.split > div:last-child { border-right: 0; }
.split h2 { font-size: 1.5rem; }
.split .track-no {
  font-family: var(--serif); font-size: .95rem; color: var(--orange-dk);
  display: block; margin-bottom: 1.1rem; font-weight: 600;
}
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split > div { border-right: 0; border-bottom: 1px solid var(--rule); padding: 40px 0 42px; }
  .split > div:last-child { border-bottom: 0; }
}

/* ==========================================================================
   Numbered list (υπηρεσίες)
   ========================================================================== */

.entry-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--rule); }
.entry {
  border-bottom: 1px solid var(--rule);
}
.entry a {
  display: grid; grid-template-columns: 62px 1fr auto; gap: 24px;
  align-items: baseline; padding: 30px 4px 32px;
  text-decoration: none; color: inherit;
  transition: background .15s;
}
.entry a:hover { background: var(--paper-alt); }
.entry-no {
  font-family: var(--serif); font-size: .95rem; color: var(--orange-dk);
  font-weight: 600; padding-top: 3px;
}
.entry-body h3 { margin-bottom: .35em; }
.entry-body p { margin: 0; font-size: .97rem; color: var(--body); max-width: 62ch; }
.entry-arrow { color: var(--orange); font-size: 1.25rem; align-self: center; }

@media (max-width: 640px) {
  .entry a { grid-template-columns: 40px 1fr; gap: 14px; padding: 26px 0 28px; }
  .entry-arrow { display: none; }
}

/* ==========================================================================
   Cards (προϊόντα)
   ========================================================================== */

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }

.card {
  border: 1px solid var(--rule); background: var(--paper);
  padding: 34px 32px 36px; display: flex; flex-direction: column;
}
.card-tag {
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 600; color: var(--muted); margin-bottom: 14px;
}
.card h3 { margin-bottom: .5em; }
.card p { font-size: .97rem; }
.card .textlink { margin-top: auto; align-self: flex-start; padding-top: 1.4rem; }

.status-pill {
  display: inline-block; font-size: .72rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 11px; border: 1px solid var(--rule);
  background: var(--paper-dim); color: var(--muted);
  border-radius: 2px; margin-bottom: 18px;
}
.status-pill.live { background: #E9F0EA; border-color: #C4D6C7; color: #3E6B47; }
.status-pill.soon { background: #F6EEE9; border-color: #E4CBBC; color: var(--orange-dk); }

/* ---------- feature list ---------- */
.feature-list { list-style: none; margin: 0; padding: 0; }
.feature-list li {
  padding: 15px 0 15px 26px; border-bottom: 1px solid var(--rule-soft);
  position: relative; font-size: .98rem;
}
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 25px;
  width: 9px; height: 1.5px; background: var(--orange);
}
.feature-list li:last-child { border-bottom: 0; }

/* ---------- placeholder note ---------- */
.placeholder {
  border: 1px dashed var(--rule); background: var(--paper-alt);
  padding: 22px 24px; font-size: .93rem; color: var(--muted);
  margin: 1.6rem 0;
}
.placeholder strong { color: var(--ink); }

/* ==========================================================================
   Prose / legal
   ========================================================================== */

.prose { max-width: 780px; }

/* Πλήρης στοίχιση (justify) στο τρεχούμενο κείμενο.
   Μόνο σε πλατιές οθόνες: σε στενές στήλες η πλήρης στοίχιση ανοίγει
   κενά μέσα στις γραμμές. Ο συλλαβισμός τα περιορίζει όπου
   ο browser τον υποστηρίζει για τη γλώσσα της σελίδας. */
@media (min-width: 760px) {
  .prose > p,
  .prose ul:not(.feature-list) li,
  .prose ol li,
  .split p,
  .section-head p {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;
  }
}
.prose h2 { font-size: 1.35rem; margin-top: 2.6em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.08rem; margin-top: 2em; font-family: var(--sans); }
.prose ul, .prose ol { margin: 0 0 1.2em; padding-left: 1.3em; }
.prose li { margin-bottom: .5em; }
.prose .updated {
  font-size: .88rem; color: var(--muted); border-top: 1px solid var(--rule);
  padding-top: 1.3rem; margin-top: 3rem;
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 46px; } }

.detail-list { margin: 0; }
.detail-list dt {
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; margin-top: 26px;
}
.detail-list dt:first-child { margin-top: 0; }
.detail-list dd { margin: 6px 0 0; color: var(--ink); font-size: 1.02rem; }
.detail-list dd a { text-decoration: none; }
.detail-list dd a:hover { text-decoration: underline; }
.detail-list .note { display: block; font-size: .87rem; color: var(--muted); margin-top: 3px; }

/* ---------- form ---------- */
.form-panel { background: var(--paper-alt); border: 1px solid var(--rule); padding: 38px 34px 40px; }
.field { margin-bottom: 20px; }
.field label {
  display: block; font-size: .84rem; font-weight: 600; color: var(--ink);
  margin-bottom: 7px; letter-spacing: .01em;
}
.field input, .field textarea, .field select {
  width: 100%; font: inherit; font-size: .97rem; color: var(--ink);
  padding: 11px 13px; border: 1px solid var(--rule);
  background: #fff; border-radius: 2px;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 2px solid var(--orange); outline-offset: -1px; border-color: var(--orange);
}
.field textarea { min-height: 132px; resize: vertical; }
.field .hint { font-size: .82rem; color: var(--muted); margin-top: 6px; }

.consent {
  display: flex; gap: 12px; align-items: flex-start;
  border-top: 1px solid var(--rule); padding-top: 22px; margin-top: 26px;
}
.consent input { width: 17px; height: 17px; margin: 3px 0 0; flex: none; accent-color: var(--orange); }
.consent label { font-size: .89rem; line-height: 1.55; color: var(--body); font-weight: 400; }

.hp { position: absolute; left: -9999px; }

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band { background: var(--navy-mid); color: #C9CBD8; padding: 62px 0; }
.cta-band h2 { color: #fff; margin-bottom: .4em; }
.cta-band p { max-width: 56ch; margin-bottom: 0; }
.cta-inner { display: flex; gap: 40px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.cta-inner .btn-row { margin-top: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer { background: var(--navy-deep); color: #9EA2B8; font-size: .93rem; padding: 62px 0 30px; }
.site-footer h4 {
  color: #fff; font-family: var(--sans); font-size: .75rem;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.1rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 44px;
  padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.12);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand img { width: 38px; height: 38px; border-radius: 4px; }
.footer-brand span { font-family: var(--serif); color: #fff; font-size: 1rem; }

.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: #9EA2B8; text-decoration: none; }
.footer-links a:hover { color: #fff; text-decoration: underline; }

.legal-block { font-size: .86rem; line-height: 1.75; color: #83879E; }
.legal-block strong { color: #B9BCCC; font-weight: 600; }

.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  padding-top: 26px; font-size: .84rem; color: #767A92;
}
.footer-bottom a { color: #767A92; text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* ==========================================================================
   Cookie banner
   ========================================================================== */

.cookie-bar {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
  background: #fff; border: 1px solid var(--rule);
  box-shadow: 0 10px 34px rgba(28,30,44,.16);
  padding: 22px 24px; max-width: 620px;
}
.cookie-bar[hidden] { display: none; }
.cookie-bar p { font-size: .92rem; margin-bottom: 1rem; }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 10px 20px; font-size: .88rem; }

/* ==========================================================================
   Misc
   ========================================================================== */

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--orange);
  color: #fff; padding: 10px 18px; z-index: 100;
}
.skip-link:focus { left: 8px; top: 8px; }

.thanks { text-align: left; padding: 96px 0; }

@media print {
  .site-header, .site-footer, .cookie-bar, .cta-band { display: none; }
}
