/* ═══════════════════════════════════════════════
   Σελιδάκι: warm paper, ink, terracotta
   ═══════════════════════════════════════════════ */

:root {
  --paper:      #FBF8F3;
  --paper-warm: #F3EDE2;
  --white:      #FFFFFF;
  --ink:        #1F1B17;
  --ink-soft:   #5E564C;
  --accent:     #C1562E;
  --accent-dark:#A2431F;
  --accent-soft:#F7E4DA;
  --line:       #E4DACA;
  --green:      #3F6B4A;
  --ink-deep:   #191510;
  --chrome:     #E8E1D5;

  --radius:     12px;
  --radius-lg:  20px;
  --radius-pill:50px;
  --shadow:     0 2px 12px rgba(31, 27, 23, 0.07);
  --shadow-lg:  0 10px 34px rgba(31, 27, 23, 0.09);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { line-height: 1.2; letter-spacing: -0.015em; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 1.25rem; }
.wrap--narrow { max-width: 760px; }

.section { padding: 6rem 0; }
.band { padding: 6rem 0; background: var(--paper-warm); }

.section h2, .band h2, .closer h2 {
  font-size: clamp(1.85rem, 5vw, 2.7rem);
  font-weight: 800;
  text-align: center;
  max-width: 18ch; margin-inline: auto;
  text-wrap: balance;
}
.sub {
  text-align: center;
  color: var(--ink-soft);
  max-width: 48ch;
  margin: 1.1rem auto 3.5rem;
  font-size: 1rem;
}
.fineprint {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-inline: auto;
}

/* ── top bar ───────────────────────────────── */
.topbar {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar__inner { display: flex; align-items: center; gap: 1rem; padding-block: 0.7rem; }
.wordmark { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 800; font-size: 1.125rem; margin-right: auto; }
.wordmark__mark {
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--accent); color: var(--paper);
  font-size: 1.125rem; font-weight: 800; line-height: 1;
  padding-bottom: 2px;
}

.langswitch { display: inline-flex; border: 1px solid var(--line); border-radius: var(--radius-pill); background: var(--white); padding: 2px; }
.langswitch button {
  font: inherit; font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.03em;
  border: 0; background: none; color: var(--ink-soft); cursor: pointer;
  padding: 0.3rem 0.75rem; border-radius: var(--radius-pill);
  transition: background 0.15s, color 0.15s;
}
.langswitch button.is-on { background: var(--ink); color: var(--paper); }

@media (min-width: 768px) {
  .section, .band { padding: 9rem 0; }
  .closer { padding: 9rem 0; }
}

/* ── buttons ───────────────────────────────── */
.btn {
  display: inline-block; text-align: center;
  font-family: inherit; font-weight: 700;
  background: var(--accent); color: var(--white);
  border: none; border-radius: var(--radius-pill); cursor: pointer;
  padding: 0.8rem 2rem; font-size: 1rem;
  box-shadow: 0 6px 18px rgba(193, 86, 46, 0.26);
  transition: background 0.18s, transform 0.14s, box-shadow 0.18s;
}
.btn:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(193, 86, 46, 0.32); }
.btn:active { transform: translateY(0); }
.btn--big { padding: 1.05rem 2.75rem; font-size: 1.1875rem; width: 100%; max-width: 340px; }
.btn--sm { padding: 0.6rem 1.4rem; font-size: 0.9375rem; box-shadow: none; }
.btn--onwarm { background: var(--white); color: var(--accent-dark); box-shadow: 0 8px 26px rgba(25, 21, 16, 0.22); }
.btn--onwarm:hover { background: var(--paper); color: var(--accent-dark); }

/* ── hero ──────────────────────────────────── */
.hero { padding: 3.5rem 0 4.5rem; overflow: hidden; }
.hero__inner { text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--accent); background: var(--accent-soft);
  padding: 0.35rem 0.9rem; border-radius: var(--radius-pill);
  margin-bottom: 1.75rem;
}
.hero h1 {
  font-size: clamp(2.25rem, 7vw, 4rem);
  font-weight: 800;
  max-width: 16ch; margin: 0 auto;
  text-wrap: balance;
}
.lead {
  color: var(--ink-soft);
  font-size: clamp(1.0625rem, 2.2vw, 1.1875rem);
  max-width: 52ch; margin: 1.6rem auto 0;
}

/* No card. The price is a statement of fact sitting on the paper, second
   loudest thing after the headline. A boxed price with a button inside reads
   as a checkout widget and asks for the sale before the offer is understood. */
.offer { margin: 2.5rem auto 0; }
.offer__price { display: flex; align-items: baseline; justify-content: center; gap: 0.55rem; margin-bottom: 1.5rem; }
.offer__num { font-size: clamp(2.125rem, 6vw, 2.6rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.offer__per { font-size: 1rem; font-weight: 600; color: var(--ink-soft); }
.offer__note { margin-top: 1.1rem; font-size: 0.875rem; color: var(--ink-soft); max-width: 42ch; margin-inline: auto; }

.assurances {
  list-style: none;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.7rem 1.75rem;
  margin: 2rem auto 0;
  font-size: 0.9375rem; font-weight: 600; color: var(--ink-soft);
}
.assurances li { display: flex; align-items: center; gap: 0.4rem; }
.assurances li::before {
  content: ""; flex: none; width: 17px; height: 17px; border-radius: 50%;
  background: var(--green);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/13px no-repeat, linear-gradient(#000, #000);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.entry { margin: 3rem auto 0; max-width: 520px; display: grid; gap: 0.7rem; }
.entry p { font-size: 0.9375rem; color: var(--ink-soft); line-height: 1.55; }
.entry b { color: var(--ink); font-weight: 800; }
.entry a, .me__mailline a, .closer__alt a { color: var(--accent); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

@media (min-width: 768px) { .hero { padding: 5.5rem 0 6rem; } }

/* Small phones: keep the price and the button above the fold once the
   browser's own toolbar has taken its share of the screen. The generous
   spacing everywhere else is untouched. */
@media (max-width: 480px) {
  .hero { padding-top: 2rem; }
  .eyebrow { font-size: 0.75rem; padding: 0.3rem 0.75rem; margin-bottom: 0.85rem; }
  .lead { margin-top: 1.15rem; font-size: 1rem; }
  .offer { margin-top: 1.75rem; }
  .offer__price { margin-bottom: 1.25rem; }
  .assurances { margin-top: 1.6rem; }
  .entry { margin-top: 2.25rem; }
}

/* ── perks ─────────────────────────────────── */
.perks { display: grid; gap: 2.75rem 3.5rem; max-width: 880px; margin-inline: auto; }
.perk { display: grid; grid-template-columns: 40px 1fr; gap: 0.25rem 1.1rem; align-content: start; }
.perk__icon { grid-row: span 2; color: var(--accent); padding-top: 0.15rem; }
.perk h3 { font-size: 1.0625rem; font-weight: 800; }
.perk p { color: var(--ink-soft); font-size: 0.9375rem; line-height: 1.6; }
@media (min-width: 720px) { .perks { grid-template-columns: 1fr 1fr; } }

/* ── steps ─────────────────────────────────── */
.steps { list-style: none; display: grid; gap: 2.75rem; max-width: 940px; margin-inline: auto; }
.step { padding: 0; }
.step__n {
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent); color: var(--white);
  font-weight: 800; font-size: 0.9375rem; margin-bottom: 1rem;
}
.step h3 { font-size: 1.125rem; font-weight: 800; margin-bottom: 0.65rem; }
.step p { color: var(--ink-soft); font-size: 0.9375rem; line-height: 1.6; }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); } }


/* ── browser frame ─────────────────────────────
   The product is websites, so the screenshots do the decorating.
   A chrome bar turns a flat image into a thing that is obviously live. */
.frame {
  display: block; position: relative;
  border-radius: 14px; overflow: hidden;
  background: var(--chrome);
  box-shadow: 0 2px 6px rgba(25, 21, 16, 0.10), 0 18px 44px rgba(25, 21, 16, 0.18);
}
.frame__bar {
  display: flex; align-items: center; gap: 6px;
  height: 30px; padding: 0 12px;
  background: var(--chrome); border-bottom: 1px solid rgba(25, 21, 16, 0.08);
}
.frame__bar i { width: 8px; height: 8px; border-radius: 50%; background: #C5BBA9; flex: none; }
.frame__bar i:first-child { background: #D98A72; }
.frame__url {
  flex: 1 1 auto; min-width: 0; margin-left: 8px;
  background: #F6F1E8; border-radius: 20px;
  font-size: 0.6875rem; font-weight: 600; color: #8C8071;
  padding: 3px 10px; text-align: center;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.frame__tag {
  flex: none; margin-left: 6px;
  background: var(--accent); color: var(--white);
  font-size: 0.625rem; font-weight: 800; letter-spacing: 0.04em;
  padding: 3px 8px; border-radius: 20px;
}
.frame > img { width: 100%; height: auto; display: block; }

/* ── hero showcase: one site in front, two peeking behind ─────── */
.showcase {
  position: relative; margin: 3.5rem auto 0;
  max-width: 800px; padding: 0 0.5rem;
}
.frame--hero { position: relative; z-index: 3; }
.frame--peek { position: absolute; top: 2.25rem; width: 58%; z-index: 1; opacity: 0.85; }
.frame--l { left: -13%; transform: rotate(-7deg); transform-origin: bottom right; }
.frame--r { right: -13%; transform: rotate(7deg); transform-origin: bottom left; }
@media (max-width: 1023px) {
  .frame--peek { display: none; }
  .showcase { margin-top: 2.75rem; max-width: 560px; }
}

/* ── dark band ─────────────────────────────────────────────────── */
.section--dark { background: var(--ink-deep); color: var(--paper); }
.section--dark h2 { color: var(--paper); }
.section--dark .sub,
.section--dark .fineprint { color: #A79C8C; }
.section--dark .card__desc { color: #A79C8C; }
.section--dark .frame { box-shadow: 0 2px 6px rgba(0,0,0,0.4), 0 22px 50px rgba(0,0,0,0.45); }

/* ── example cards ─────────────────────────── */
.cards { display: grid; gap: 1.75rem; }
.card { display: flex; flex-direction: column; transition: transform 0.2s; }
.card:hover { transform: translateY(-5px); }
.card .frame > img { aspect-ratio: 16 / 10; object-fit: cover; object-position: top center; }
.card__body { display: block; padding: 1.1rem 0.25rem 0; }
.card__title { display: block; font-size: 1.0625rem; font-weight: 800; }
.card__desc { display: block; color: var(--ink-soft); font-size: 0.9375rem; margin-top: 0.15rem; }
@media (min-width: 860px) { .cards { grid-template-columns: repeat(3, 1fr); } }

/* ── included list ─────────────────────────── */
.ticks {
  list-style: none; display: grid; gap: 1.15rem;
  max-width: 820px; margin-inline: auto; font-size: 0.9688rem;
}
.ticks li { display: grid; grid-template-columns: 20px 1fr; gap: 0.75rem; align-items: start; }
.ticks li::before {
  content: ""; width: 20px; height: 20px; margin-top: 0.15rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233F6B4A' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
}
@media (min-width: 720px) { .ticks { grid-template-columns: 1fr 1fr; gap: 1.25rem 2.75rem; } }

/* ── price list ────────────────────────────── */
.pricelist { width: 100%; border-collapse: collapse; }
.pricelist th, .pricelist td { padding: 1.35rem 0.25rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.pricelist tr:last-child th, .pricelist tr:last-child td { border-bottom: 0; }
.pricelist th { font-weight: 600; font-size: 0.9688rem; }
.pricelist td { text-align: right; font-weight: 800; white-space: nowrap; font-size: 1rem; }
.pricelist td i { font-style: normal; font-weight: 500; color: var(--ink-soft); font-size: 0.8125rem; display: block; }

/* ── who is behind it ──────────────────────── */
.me { display: grid; gap: 1.35rem; justify-items: center; max-width: 600px; margin: 3rem auto 0; }
.me__photo { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; }
.me__name { font-size: 1.0625rem; font-weight: 800; margin-bottom: 1rem; text-align: center; }
.me__text p { margin-bottom: 0.9rem; color: var(--ink-soft); font-size: 0.9688rem; }
.me__text p:last-child { margin-bottom: 0; }
.me__mailline { color: var(--ink) !important; font-weight: 600; }


/* ── FAQ ───────────────────────────────────── */
.qa { border-bottom: 1px solid var(--line); }
.qa summary {
  list-style: none; cursor: pointer;
  padding: 1.35rem 3rem 1.35rem 0.25rem; position: relative;
  font-weight: 700; font-size: 1rem;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: ""; position: absolute; right: 0.5rem; top: 50%;
  width: 14px; height: 14px; margin-top: -7px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C1562E' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform 0.2s;
}
.qa[open] summary::after { transform: rotate(180deg); }
.qa[open] summary { padding-bottom: 0.6rem; }
.qa p { padding: 0 2rem 1.45rem 0.25rem; color: var(--ink-soft); font-size: 0.9688rem; }

/* ── closing CTA ───────────────────────────── */
.closer { background: var(--accent); color: var(--white); padding: 5.5rem 0; text-align: center; }
.closer h2 { max-width: 20ch; margin: 0 auto; text-wrap: balance; }
.closer__alt { margin: 1.75rem auto 0 !important; font-size: 0.9375rem; font-weight: 500 !important; color: rgba(255,255,255,0.86) !important; }
.closer__alt a { color: var(--white) !important; }
.closer h2 { color: var(--white); }
.closer p { margin: 1.1rem auto 2.25rem; color: rgba(255,255,255,0.86); font-weight: 600; }

/* ── footer ────────────────────────────────── */
.foot { background: var(--paper); padding: 4rem 0 2rem; }
.foot__inner { display: grid; gap: 2.25rem; }
.foot__brand { font-weight: 800; font-size: 1.0625rem; }
.foot__tag, .foot__small { font-size: 0.875rem; color: var(--ink-soft); }
.foot__block h3 { font-size: 0.8125rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.5rem; }
.foot__block p { font-size: 0.9375rem; }
.foot__block a { color: var(--accent); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; word-break: break-word; }
.foot__legal { text-align: center; font-size: 0.8125rem; color: var(--ink-soft); padding: 2.75rem 1.25rem 0; }
@media (min-width: 860px) {
  .foot__inner { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
  .foot__block--wide { grid-column: 1 / -1; border-top: 1px solid var(--line); padding-top: 1.75rem; }
  .foot__block--wide .foot__small { max-width: 90ch; }
}

/* ── sticky pay bar ────────────────────────── */
.stickybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 0.6rem 0 calc(0.6rem + env(safe-area-inset-bottom));
  transform: translateY(110%);
  transition: transform 0.3s ease;
}
.stickybar[hidden] { display: block; }
.stickybar.is-up { transform: translateY(0); }
.stickybar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.stickybar__label { font-weight: 700; font-size: 0.9375rem; }
@media (max-width: 479px) {
  .stickybar__label { display: none; }
  .stickybar .btn--sm { width: 100%; padding-block: 0.75rem; }
}

/* ── motion ────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.is-in { opacity: 1; transform: none; }

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