/* ============================================================
   Aurency Ελλάδας — κοινό stylesheet
   Branding πιστό στο aurency.com (Webflow)
   Παλέτα: #C49A6C (brand), #333132 (ink), #F4F0EB / #FFFDFB (cream)
   Γραμματοσειρές: Poppins (λατινικά) + Inter (ελληνικά fallback)
   ============================================================ */

:root {
  --brand: #c49a6c;
  --brand-dark: #b08752;
  --brand-deep: #9d7647;
  --ink: #333132;
  --ink-soft: #3e4646;
  --cream: #fffdfb;
  --cream-2: #f4f0eb;
  --beige: #d3c4b7;
  --white: #ffffff;
  --muted: #758696;
  --radius: 24px;
  --radius-sm: 14px;
  --font: "Poppins", "Inter", -apple-system, sans-serif;
  --shadow: 0 10px 30px rgba(51, 49, 50, 0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* χωρίς bounce/overscroll στις άκρες της σελίδας */
  overscroll-behavior: none;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior: none;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- Τυπογραφία ---------- */

h1, h2, h3, h4 { line-height: 1.15; font-weight: 700; }

.display {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.h-lead { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-deep);
}

.sub { color: var(--ink-soft); font-size: 1.06rem; }

.on-brand .sub, .on-brand .eyebrow { color: rgba(255, 255, 255, 0.85); }

/* ---------- Κουμπιά ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
  font-family: var(--font);
}

.btn-primary { background: var(--brand); color: var(--white); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); }

.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #000; }

.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--white); }

.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { background: var(--cream-2); }

.btn-outline-light { border-color: var(--white); color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--brand-deep); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(51, 49, 50, 0.06);
}

/* Στο desktop το panel είναι «διαφανές»: τα παιδιά του μπαίνουν κατευθείαν
   στο flex του nav-bar. Στο κινητό γίνεται overlay πλήρους οθόνης. */
.nav-panel { display: contents; }

.nav-bar {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 24px;
  max-width: 1320px;
  margin: 0 auto;
}

.logo-link { display: flex; align-items: center; gap: 11px; margin-right: auto; flex: 0 0 auto; }
.logo-link img { height: 34px; width: auto; }

/* Ταυτότητα διανομέα δίπλα στο λογότυπο προϊόντος: πρώτα η Olympic Vend,
   από κάτω η ιδιότητά της, ώστε να μη διαβάζεται ως site της Aurency. */
.gr-badge {
  font-size: 0.58rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
  color: var(--brand-deep);
  border-left: 2px solid var(--brand);
  padding: 2px 0 2px 9px;
  max-width: 150px;
}

.gr-badge strong { display: block; font-size: 0.72rem; font-weight: 700; color: var(--ink); letter-spacing: 0.03em; }

.nav-links { display: flex; align-items: center; gap: 22px; list-style: none; }

.nav-links > li { position: relative; }

.nav-links a { font-size: 0.93rem; font-weight: 500; transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover { color: var(--brand-deep); }

/* dropdown Λύσεις */
.dropdown-toggle { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.dropdown-toggle::after {
  content: "";
  width: 7px; height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: -18px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 10px;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.22s ease;
  list-style: none;
}

.nav-links li:hover > .dropdown-menu,
.nav-links li.open > .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.92rem;
}
.dropdown-menu a:hover { background: var(--cream-2); color: var(--ink); }

.nav-socials { display: flex; align-items: center; gap: 14px; }
.nav-socials a { display: flex; opacity: 0.75; transition: opacity 0.2s; }
.nav-socials a:hover { opacity: 1; }
.nav-socials svg { width: 17px; height: 17px; fill: var(--ink); }

.btn-tms { padding: 9px 20px; border: 1.5px solid var(--ink); border-radius: 12px; font-weight: 500; font-size: 0.93rem; white-space: nowrap; flex: 0 0 auto; }
.btn-tms:hover { background: var(--ink); color: var(--white); }

.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  align-items: center;
  position: relative;
  z-index: 101;
  flex: 0 0 auto;
}
.nav-burger span {
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}

/* το burger γίνεται X όταν ανοίγει το μενού */
.nav-open .nav-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .nav-burger span:nth-child(2) { opacity: 0; transform: scaleX(0.4); }
.nav-open .nav-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: var(--brand);
  color: var(--white);
  overflow: hidden;
}

/* Οι hero εικόνες είναι διαφανή PNG/AVIF με την καμπύλη ήδη σχεδιασμένη μέσα τους:
   κολλάνε πάνω-δεξιά χωρίς πλαίσιο ή γωνίες, όπως στο aurency.com. */
.hero-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 96px 24px 130px;
  min-height: 560px;
}

/* 44% κρατά το κείμενο καθαρά αριστερά της εικόνας σε κάθε πλάτος οθόνης */
.hero-grid > *:not(.hero-media) { position: relative; z-index: 2; max-width: min(560px, 44%); }

.hero h1 { font-size: clamp(2.3rem, 4.6vw, 3.6rem); font-weight: 700; }

.hero .accent { color: var(--white); font-weight: 800; }

/* Ίδια τυπογραφία με το aurency.com: 18px light, line-height 130%,
   με το όνομα του προϊόντος σε 26px bold στην αρχή. */
.hero-sub {
  margin-top: 20px;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.92);
  max-width: 540px;
}

.hero-sub strong {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1;
}

.hero-cta { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }

/* Τοποθετείται ως προς το .hero (πλήρες πλάτος), στη δεξιά άκρη ενός πλαισίου
   1440px — όσο και στο aurency.com — ώστε να φτάνει πιο έξω από το κείμενο. */
.hero-media {
  position: absolute;
  top: 0;
  right: max(0px, calc(50% - 720px));
  width: min(50vw, 720px);
  z-index: 1;
  pointer-events: none;
}
.hero-media img { width: 100%; height: auto; display: block; border-radius: 0; }

/* Οι κανονικές φωτογραφίες (χωρίς σχεδιασμένη καμπύλη) κόβονται με το ίδιο
   σχήμα κύματος μέσω SVG clip-path — όπως στο aurency.com. */
.hero-media.is-photo { top: -24px; aspect-ratio: 750 / 650; }
.hero-media.is-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: url(#hero-wave);
}

.hero-logos {
  margin-top: 46px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px 38px;
  align-items: center;
  opacity: 0.95;
}
.hero-logos img { height: 30px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }

/* κύμα στο κάτω μέρος του hero */
.wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
}
.wave svg { width: 100%; height: 90px; display: block; }
.wave .fill { fill: var(--cream); }

.wave-top { transform: rotate(180deg); top: -1px; bottom: auto; }

/* ---------- Sections ---------- */

.section { padding: 90px 0; }
.section-tight { padding: 60px 0; }
.section-cream { background: var(--cream-2); }
.section-brand { background: var(--brand); color: var(--white); }
.section-ink { background: var(--ink); color: var(--white); }

.section-head { text-align: center; max-width: 780px; margin: 0 auto 54px; }
.section-head .sub { margin-top: 16px; }

/* pill badges με check */
.pill-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 28px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--brand);
  color: var(--white);
  border-radius: 999px;
  padding: 9px 20px;
  font-weight: 500;
  font-size: 0.95rem;
}
.pill::before { content: "✓"; font-weight: 700; }

/* ---------- Κάρτες ---------- */

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: 0 4px 18px rgba(51, 49, 50, 0.05);
}

.card h3 { font-size: 1.22rem; margin-bottom: 12px; }
.card p { color: var(--ink-soft); font-size: 0.97rem; }

.card-brand { background: var(--brand); color: var(--white); }
.card-brand p { color: rgba(255, 255, 255, 0.9); }

.card-cream { background: var(--cream-2); box-shadow: none; }

.card-icon { height: 54px; width: auto; margin-bottom: 20px; }

/* κάρτες με φωτογραφία ως φόντο (κλάδοι, βήματα ενσωμάτωσης) */
.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 300px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  isolation: isolate;
  transition: transform 0.25s ease;
}

/* σκίαση ώστε το κείμενο να διαβάζεται πάνω σε κάθε φωτογραφία */
.photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(30, 28, 29, 0.15) 0%, rgba(30, 28, 29, 0.55) 55%, rgba(30, 28, 29, 0.86) 100%);
}

.photo-card:hover { transform: translateY(-5px); }

.photo-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.photo-card p { color: rgba(255, 255, 255, 0.9); font-size: 0.95rem; }

/* παραλλαγή με τον αριθμό βήματος πάνω-αριστερά */
.photo-card.numbered { justify-content: space-between; min-height: 430px; }
.photo-card .step-num {
  font-size: 2.4rem;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  color: var(--white);
}

/* ---------- Μπλοκ συνεργασίας (Ardelino / Dr.Coffee) ---------- */

.partner-block {
  background: var(--cream-2);
  border-radius: var(--radius);
  padding: 44px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.partner-logos { height: 30px; width: auto; margin-bottom: 28px; }

.partner-block h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); text-transform: uppercase; margin-bottom: 18px; }
.partner-block .sub { margin-bottom: 30px; }

.partner-shot {
  width: 100%;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

/* αριθμημένα βήματα 01/02/03 */
.num-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.num {
  font-size: 2.6rem;
  font-weight: 800;
  font-style: italic;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 14px;
}

/* στατιστικά */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; text-align: center; }
.stat-value {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  font-style: italic;
  color: var(--brand);
  line-height: 1;
}
.stat-label { font-weight: 600; margin-top: 10px; }
.stat-note { color: var(--muted); font-size: 0.92rem; margin-top: 6px; }

/* λίστα με check */
.check-list { list-style: none; display: grid; gap: 13px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list li::before {
  content: "✓";
  flex: 0 0 auto;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* split media + κείμενο */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img { border-radius: var(--radius); width: 100%; }
.split h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: 18px; }
.split .sub { margin-bottom: 22px; }

/* ---------- Testimonials ---------- */

.quote-card { background: var(--white); border-radius: var(--radius); padding: 36px 32px; box-shadow: 0 4px 18px rgba(51,49,50,0.05); display: flex; flex-direction: column; }
.quote-mark { font-size: 3rem; font-weight: 800; color: var(--brand); line-height: 0.5; margin-bottom: 18px; font-style: italic; }
.quote-card blockquote { font-size: 0.99rem; color: var(--ink-soft); flex: 1; }
.quote-who { margin-top: 22px; font-weight: 600; font-size: 0.95rem; }
.quote-when { color: var(--muted); font-size: 0.85rem; }

/* ---------- Χώρες / χάρτης ---------- */

.country-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.country-tags span {
  background: var(--white);
  border: 1px solid rgba(51, 49, 50, 0.1);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.88rem;
  font-weight: 500;
}
.country-tags span.gr { background: var(--brand); border-color: var(--brand); color: var(--white); font-weight: 600; }

/* ---------- Κατάστημα: κάρτες προϊόντων ---------- */

.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }

/* Ένα προϊόν: μεγάλη κάρτα με την εικόνα δίπλα στα στοιχεία */
.shop-single { max-width: 940px; margin: 0 auto; }
.shop-single .product-card { display: grid; grid-template-columns: 1fr 1fr; }
.shop-single .product-media { height: auto; min-height: 340px; padding: 34px; }
.shop-single .product-body { padding: 38px 36px; }
.shop-single .product-body h3 { font-size: 1.7rem; }
.shop-single .price-value { font-size: 2.6rem; }

@media (max-width: 780px) {
  .shop-single .product-card { grid-template-columns: 1fr; }
  .shop-single .product-media { min-height: 240px; }
  .shop-single .product-body { padding: 28px 24px; }
}

.product-card {
  background: var(--white);
  border: 1px solid rgba(51, 49, 50, 0.09);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.product-card.featured { border-color: var(--brand); border-width: 2px; }

.product-media {
  background: var(--cream-2);
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  position: relative;
}
.product-media img { max-height: 100%; width: auto; object-fit: contain; }

.product-flag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--brand);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 999px;
  padding: 5px 13px;
}

.product-body { padding: 26px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.product-body .p-desc { color: var(--ink-soft); font-size: 0.94rem; }

.product-specs { list-style: none; display: grid; gap: 8px; margin: 18px 0 22px; }
.product-specs li { display: flex; gap: 9px; font-size: 0.9rem; color: var(--ink-soft); }
.product-specs li::before { content: "✓"; color: var(--brand); font-weight: 700; flex: 0 0 auto; }

.product-price { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--cream-2); }
.price-from { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.price-value { font-size: 2rem; font-weight: 800; font-style: italic; color: var(--brand-deep); line-height: 1.1; }
.price-note { font-size: 0.8rem; color: var(--muted); margin-top: 2px; }
.product-price .btn { width: 100%; margin-top: 16px; }

/* βήματα παραγγελίας */
.buy-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.buy-step { text-align: center; }
.buy-step .bs-num {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.buy-step h3 { font-size: 1.02rem; margin-bottom: 6px; }
.buy-step p { font-size: 0.9rem; color: var(--ink-soft); }

@media (max-width: 920px) {
  .shop-grid { grid-template-columns: 1fr; }
  .buy-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .buy-steps { grid-template-columns: 1fr; }
}

/* ---------- Πλαίσιο διευκρίνισης ρόλων ---------- */
/* Ξεκαθαρίζει ότι η Olympic Vend καλύπτει μόνο το εμπορικό μέρος. */

.role-notice {
  background: var(--cream-2);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius-sm);
  padding: 24px 26px;
  display: grid;
  gap: 16px;
}

.role-notice h3 { font-size: 1.08rem; }

.role-notice .role-row { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; }

.role-notice .role-who {
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-deep);
  white-space: nowrap;
  padding-top: 2px;
}

.role-notice p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }

@media (max-width: 560px) {
  .role-notice .role-row { grid-template-columns: 1fr; gap: 4px; }
}

/* ---------- Marquee χωρών (δύο σειρές, αντίθετη φορά) ---------- */

.country-marquee {
  display: grid;
  gap: 18px;
  /* σβήσιμο στις άκρες ώστε οι χώρες να «μπαινοβγαίνουν» ομαλά */
  -webkit-mask-image: linear-gradient(to right, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 9%, #000 91%, transparent);
}

.marquee-row { overflow: hidden; }

.marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: marquee-scroll 60s linear infinite;
}

.marquee-row.reverse .marquee-track { animation-direction: reverse; }

.country-marquee:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.country-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  background: var(--white);
  border: 1px solid rgba(51, 49, 50, 0.1);
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
}

.country-chip .flag { font-size: 1.25rem; line-height: 1; }

.country-chip.gr {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .marquee-row { overflow-x: auto; }
}

/* ---------- CTA + Φόρμα (πάνω σε brand φόντο) ---------- */

.cta-form-wrap { max-width: 560px; margin: 0 auto; }

.form-field { margin-bottom: 26px; }

.form-field label { display: block; font-size: 0.86rem; font-weight: 500; margin-bottom: 6px; color: rgba(255,255,255,0.85); }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
  font-family: var(--font);
  font-size: 1rem;
  padding: 10px 2px;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255, 255, 255, 0.75); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--white); }
.form-field select { appearance: none; cursor: pointer; }
.form-field select option { color: var(--ink); }

.form-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.82rem; color: rgba(255,255,255,0.85); margin-bottom: 28px; }
.form-consent a { text-decoration: underline; }

.form-success { display: none; text-align: center; font-weight: 600; padding: 18px; background: rgba(255,255,255,0.15); border-radius: var(--radius-sm); }

/* φόρμα σε ανοιχτό φόντο */
.form-on-light .form-field label { color: var(--ink-soft); }
.form-on-light .form-field input,
.form-on-light .form-field select,
.form-on-light .form-field textarea { border-bottom-color: rgba(51,49,50,0.35); color: var(--ink); }
.form-on-light .form-field input::placeholder, .form-on-light .form-field textarea::placeholder { color: var(--muted); }
.form-on-light .form-consent { color: var(--ink-soft); }

/* ---------- Πίνακες (specs, συμβατά μηχανήματα) ---------- */

.spec-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-sm); overflow: hidden; box-shadow: 0 4px 18px rgba(51,49,50,0.05); }
.spec-table th, .spec-table td { padding: 15px 22px; text-align: left; border-bottom: 1px solid var(--cream-2); font-size: 0.95rem; }
.spec-table th { background: var(--ink); color: var(--white); font-weight: 600; }
.spec-table tr:last-child td { border-bottom: none; }

.table-scroll { overflow-x: auto; }

/* λίστες μηχανημάτων */
.machine-group h3 { font-size: 1.15rem; margin: 34px 0 14px; color: var(--brand-deep); text-transform: uppercase; letter-spacing: 0.06em; }
.machine-list { display: flex; flex-wrap: wrap; gap: 9px; list-style: none; }
.machine-list li { background: var(--white); border: 1px solid rgba(51,49,50,0.09); border-radius: 999px; padding: 6px 15px; font-size: 0.88rem; }

/* ---------- Blog / stories κάρτες ---------- */

.story-card {
  background: var(--brand);
  color: var(--white);
  border-radius: var(--radius);
  padding: 30px 28px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.story-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.story-tag {
  align-self: flex-start;
  background: #6874b2;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 16px;
  text-transform: lowercase;
}
.story-card h3 { font-size: 1.25rem; line-height: 1.3; }
.story-card .story-cta { margin-top: auto; padding-top: 20px; font-weight: 600; font-size: 0.9rem; opacity: 0.9; }

.post-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 18px rgba(51,49,50,0.05); display: flex; flex-direction: column; transition: transform 0.22s; }
.post-card:hover { transform: translateY(-5px); }
.post-card img { height: 190px; object-fit: cover; width: 100%; }
.post-card .post-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post-card h3 { font-size: 1.08rem; line-height: 1.35; }
.post-card .post-date { color: var(--muted); font-size: 0.82rem; margin-top: auto; padding-top: 16px; }

/* ---------- FAQ ---------- */

.faq-item { background: var(--white); border-radius: var(--radius-sm); margin-bottom: 14px; box-shadow: 0 3px 12px rgba(51,49,50,0.04); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}
.faq-q::after { content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--brand); transition: transform 0.2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { padding: 0 24px 22px; color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Footer ---------- */

.site-footer { background: var(--brand); color: var(--white); padding: 70px 0 30px; }

.footer-grid { display: grid; grid-template-columns: 1.2fr 1.2fr 1fr; gap: 44px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.25); }

.footer-grid h4 { font-size: 1.05rem; margin-bottom: 18px; }

.footer-links { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 26px; }
.footer-links a { font-size: 0.93rem; opacity: 0.9; }
.footer-links a:hover { opacity: 1; text-decoration: underline; }

.footer-contacts { list-style: none; display: grid; gap: 10px; font-size: 0.93rem; }
.footer-contacts a:hover { text-decoration: underline; }

.footer-brand { text-align: right; }
.footer-brand img { height: 38px; width: auto; margin-left: auto; margin-bottom: 16px; }
.footer-note { font-size: 0.82rem; opacity: 0.85; line-height: 1.5; }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 26px; font-size: 0.85rem; opacity: 0.9; flex-wrap: wrap; }
.footer-bottom a:hover { text-decoration: underline; }

/* ---------- Cookie banner ---------- */

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: min(1100px, calc(100% - 40px));
  background: var(--cream-2);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  display: none;
  align-items: center;
  gap: 24px;
  padding: 20px 26px;
  z-index: 99;
}
.cookie-banner.show { display: flex; }
.cookie-banner p { flex: 1; font-size: 0.95rem; }
.cookie-banner .btn { padding: 10px 40px; }

/* ---------- Breadcrumb hero (εσωτερικές σελίδες) ---------- */

.page-hero { background: var(--brand); color: var(--white); position: relative; overflow: hidden; }
.page-hero .hero-grid { padding: 88px 24px 120px; }
.page-hero-simple { padding: 70px 0 120px; text-align: center; }
.page-hero-simple h1 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); }
.page-hero-simple .sub { color: rgba(255,255,255,0.9); max-width: 640px; margin: 18px auto 0; }

/* ---------- Marquee λογοτύπων ---------- */

.logo-strip { display: flex; flex-wrap: wrap; gap: 34px 54px; align-items: center; justify-content: center; opacity: 0.85; }
.logo-strip img { height: 34px; width: auto; filter: grayscale(1); opacity: 0.75; transition: 0.2s; }
.logo-strip img:hover { filter: none; opacity: 1; }

/* ---------- Responsive ---------- */

@media (max-width: 1060px) {
  .nav-links { gap: 18px; }
  /* Το badge παραμένει ορατό παντού: είναι η ταυτότητα του διανομέα.
     Σε μικρές οθόνες συμπυκνώνεται αντί να κρύβεται. */
  .gr-badge { max-width: 118px; font-size: 0.52rem; padding-left: 8px; }
  .gr-badge strong { font-size: 0.68rem; }
}

@media (max-width: 400px) {
  .logo-link img { height: 28px; }
  .gr-badge { max-width: 96px; font-size: 0.48rem; }
  .gr-badge strong { font-size: 0.62rem; }
}

@media (max-width: 920px) {
  .nav-burger { display: flex; }

  /* ---------- Μενού κινητού: overlay πλήρους οθόνης ---------- */

  .nav-panel {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    z-index: 95;
    background: var(--cream);
    padding: 96px 26px calc(34px + env(safe-area-inset-bottom));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s;
  }

  .nav-open .nav-panel { opacity: 1; visibility: visible; transform: none; }

  .nav-panel .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .nav-panel .nav-links > li { border-bottom: 1px solid rgba(51, 49, 50, 0.09); }

  .nav-panel .nav-links > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 2px;
    font-size: 1.22rem;
    font-weight: 500;
    white-space: normal;
  }

  /* κάθε στοιχείο εμφανίζεται με μικρή καθυστέρηση, το ένα μετά το άλλο */
  .nav-panel .nav-links > li,
  .nav-panel .nav-socials,
  .nav-panel .btn-tms {
    opacity: 0;
    transform: translateY(10px);
  }
  .nav-open .nav-panel .nav-links > li,
  .nav-open .nav-panel .nav-socials,
  .nav-open .nav-panel .btn-tms {
    opacity: 1;
    transform: none;
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-open .nav-panel .nav-links > li:nth-child(1) { transition-delay: 0.06s; }
  .nav-open .nav-panel .nav-links > li:nth-child(2) { transition-delay: 0.10s; }
  .nav-open .nav-panel .nav-links > li:nth-child(3) { transition-delay: 0.14s; }
  .nav-open .nav-panel .nav-links > li:nth-child(4) { transition-delay: 0.18s; }
  .nav-open .nav-panel .nav-links > li:nth-child(5) { transition-delay: 0.22s; }
  .nav-open .nav-panel .nav-links > li:nth-child(6) { transition-delay: 0.26s; }
  .nav-open .nav-panel .btn-tms { transition-delay: 0.30s; }
  .nav-open .nav-panel .nav-socials { transition-delay: 0.34s; }

  /* υπομενού «Λύσεις»: κλειστό, ανοίγει με άγγιγμα */
  .nav-panel .dropdown-toggle::after { transition: transform 0.3s ease; }
  .nav-panel li.open > .dropdown-toggle::after { transform: rotate(-135deg) translateY(-2px); }
  .nav-panel li.open > .dropdown-toggle { color: var(--brand-deep); }

  .nav-panel .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    min-width: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-panel li.open > .dropdown-menu { max-height: 300px; }

  .nav-panel .dropdown-menu a {
    padding: 12px 16px;
    font-size: 1.02rem;
    color: var(--ink-soft);
    border-radius: 10px;
  }
  .nav-panel .dropdown-menu li:first-child a { margin-top: 4px; }
  .nav-panel .dropdown-menu li:last-child a { margin-bottom: 14px; }

  /* TMS + social μέσα στο overlay */
  .nav-panel .btn-tms {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    padding: 15px 26px;
    font-size: 1.02rem;
    font-weight: 600;
    border-radius: 999px;
    background: var(--brand);
    border-color: var(--brand);
    color: var(--white);
  }

  .nav-panel .nav-socials {
    display: flex;
    justify-content: center;
    gap: 26px;
    margin-top: auto;
    padding-top: 34px;
  }
  .nav-panel .nav-socials svg { width: 21px; height: 21px; }

  /* κλείδωμα του υπόλοιπου περιεχομένου όσο το μενού είναι ανοιχτό */
  body.nav-locked { overflow: hidden; }

  .split { grid-template-columns: 1fr; }

  /* Σε κινητά η εικόνα μπαίνει πάνω από τον τίτλο, σε κανονική ροή —
     όπως στο aurency.com. Το order την ανεβάζει χωρίς αλλαγή στο HTML. */
  .hero-grid {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding-top: 0;
    padding-bottom: 80px;
  }
  .hero-grid > *:not(.hero-media) { max-width: none; }
  .hero-media {
    order: -1;
    position: static;
    width: 100%;
    margin: 0 0 30px;
  }
  .hero-media.is-photo {
    top: auto;
    aspect-ratio: 16 / 11;
    margin-top: 26px;
    border-radius: var(--radius);
    overflow: hidden;
  }
  .hero-media.is-photo img { clip-path: none; }
  .hero-sub { font-size: 1.02rem; }
  .hero-sub strong { font-size: 1.375rem; }
  .grid-3, .num-row, .stats-row { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .partner-block { grid-template-columns: 1fr; padding: 32px 26px; }
  .photo-card.numbered { min-height: 340px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { text-align: left; }
  .footer-brand img { margin-left: 0; }
  .section { padding: 60px 0; }
}

@media (max-width: 560px) {
  .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
}
