:root {
  --bg: #F3EFE6;
  --bg-2: #E7E1D4;
  --ink: #1A1C1E;
  --muted: #5A564E;
  --white: #FFFcf4;
  --yellow: #F0C400;
  --red: #D01212;
  --orange: #E24A12;
  --green: #2E9A32;
  --charcoal: #2A2E32;
  --line: rgba(26,28,30,.14);
  --max: 1180px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: Manrope, system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
img { display: block; max-width: 100%; }

.el { display: none !important; }
.en { display: inline !important; }
h1.en, h2.en, h3.en, p.en, div.en, li.en, label.en { display: block !important; }
html[lang="el"] .en { display: none !important; }
html[lang="el"] .el { display: inline !important; }
html[lang="el"] h1.el, html[lang="el"] h2.el, html[lang="el"] h3.el,
html[lang="el"] p.el, html[lang="el"] div.el, html[lang="el"] li.el,
html[lang="el"] label.el { display: block !important; }
html[lang="el"] a.el, html[lang="el"] span.el, html[lang="el"] strong.el,
html[lang="el"] small.el, html[lang="el"] b.el { display: inline !important; }

.wrap { width: min(var(--max), calc(100% - 2.75rem)); margin-inline: auto; }

header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  transition: background .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
header.scrolled {
  background: rgba(243,239,230,.92);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; height: 72px; gap: 1rem;
}
.nav-left { display: flex; align-items: center; gap: 1.5rem; }
.nav-left a {
  font-size: .74rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted);
}
.nav-left a:hover, .nav-left a.active { color: var(--ink); }
.logo {
  display: inline-flex; align-items: baseline;
  font-weight: 800; font-size: 1.35rem; letter-spacing: -0.04em; color: var(--ink);
}
.logo .n3 { color: var(--red); }
.nav-right { display: flex; align-items: center; justify-content: flex-end; gap: .75rem; }
.lang { display: inline-flex; gap: 2px; border: 1px solid var(--line); background: var(--white); }
.lang button {
  border: 0; background: transparent; padding: .35rem .55rem; cursor: pointer;
  font-size: .7rem; font-weight: 800; letter-spacing: .06em; color: var(--muted);
}
.lang button.active { background: var(--ink); color: var(--white); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .8rem 1.2rem; font-weight: 800; font-size: .74rem;
  letter-spacing: .14em; text-transform: uppercase;
  border: 2px solid var(--ink); background: transparent; color: var(--ink);
  cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-solid { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-solid:hover { background: #b80f0f; border-color: #b80f0f; }
.btn-yellow { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.btn-yellow:hover { background: #ddb400; }
.btn-nav { padding: .5rem .95rem; font-size: .68rem; letter-spacing: .12em; }

/* HERO */
.hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 2rem 2.5rem;
  align-items: center;
  min-height: 100vh; min-height: 100dvh;
  padding: 6.75rem 0 3.5rem;
}
.hero-copy { padding-bottom: .5rem; }
.home-kicker {
  font-size: .7rem; font-weight: 800; letter-spacing: .22em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 1.15rem;
}
.home-kicker .dot { color: var(--yellow); }
.hero h1, .final-cta h2, .foot-line {
  font-size: clamp(2.35rem, 5.6vw, 4rem); font-weight: 800;
  letter-spacing: -0.045em; line-height: .92; text-transform: uppercase;
  margin-bottom: 1.15rem;
}
.hero h1 .red, .final-cta h2 .red, .foot-line .red { color: var(--red); }
.home-lead {
  color: var(--muted); font-size: 1.08rem; max-width: 32rem;
  margin-bottom: 1.75rem; font-weight: 500; line-height: 1.5;
}
.home-actions { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; }

.hero-points {
  list-style: none; margin: 0 0 1.15rem; max-width: 28rem;
  color: var(--ink); font-weight: 600; font-size: 1.02rem; line-height: 1.55;
}
.hero-points li { position: relative; padding-left: .9rem; }
.hero-points li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 6px; height: 6px; background: var(--yellow); border: 1px solid var(--ink);
}
.punch {
  font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  font-size: 1.05rem; margin-top: -.5rem; margin-bottom: 0;
}
.block { padding: 0 0 3.75rem; }
.get-grid { grid-template-columns: repeat(3, 1fr); }

.buddy {
  position: relative;
  width: min(220px, 100%);
  margin: 0 auto;
}
.buddy img { width: 100%; height: auto; display: block; }
.buddy .wink {
  position: absolute;
  left: 0; top: 0; width: 100%;
  opacity: 0;
  pointer-events: none;
  animation: wink 1s steps(1, end) infinite;
}
.buddy-hero { margin-left: auto; margin-right: 0; }
.buddy-moment {
  display: grid; justify-items: center; text-align: center;
  padding: 0 0 3.5rem; gap: .6rem;
}
.aside-note {
  font-size: .72rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted);
}
.live-line { margin-top: 1.4rem; margin-bottom: 0; max-width: 40rem; }
.fees {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  align-items: center; padding: 0 0 3.5rem;
}
.fees .sec-sub { margin-bottom: 0; }
.bill-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: .65rem; max-width: 36rem;
}
.bill-list li {
  color: var(--muted); font-size: 1.05rem; font-weight: 500;
}
.bill-list strong { color: var(--ink); font-weight: 800; }
.buddy-final { padding: 0 0 3rem; text-align: center; }
@keyframes wink {
  0%, 78% { opacity: 0; }
  79%, 100% { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .buddy .wink { animation: none; opacity: 0; }
}

.foot-plain {
  display: grid; gap: 1.25rem;
}
.foot-plain p { color: var(--muted); font-weight: 500; margin-top: .35rem; }
.foot-copy {
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
}

.device-stack {
  position: relative;
  height: min(460px, 58vh);
  min-height: 340px;
}
.browser {
  position: absolute;
  background: var(--ink);
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(26, 28, 30, .2);
  display: flex;
  flex-direction: column;
}
.browser-bar {
  display: flex; align-items: center; gap: 6px;
  height: 26px; padding: 0 10px; background: #2A2E32;
}
.browser-bar i { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.browser-bar .r { background: #D01212; }
.browser-bar .y { background: #F0C400; }
.browser-bar .g { background: #2E9A32; }
.browser-bar span {
  margin-left: 8px; color: #9a968c; font-size: .58rem;
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.browser img {
  width: 100%;
  flex: 1;
  height: 0;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.b-back { width: 54%; opacity: .78; height: 68%; }
.b-l { left: 0; top: 6%; transform: rotate(-5.5deg); z-index: 1; }
.b-r { right: 0; top: 22%; transform: rotate(6deg); z-index: 1; }
.b-front {
  width: 76%; left: 12%; top: 8%; z-index: 3; height: 86%;
  transition: transform .35s ease;
}
.device-stack:hover .b-front { transform: translateY(-6px); }

.trust { padding: 0 0 3.5rem; }
.trust-row {
  display: flex; flex-wrap: wrap; gap: .55rem .9rem;
  border-top: 2px solid var(--ink); padding-top: 1.1rem;
}
.trust-row span {
  font-size: .72rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink);
}
.trust-row span + span::before {
  content: "·"; color: var(--red); margin-right: .9rem;
}

.value { padding: 1rem 0 4rem; }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
  margin-top: .5rem;
}
.why-grid article {
  border-top: 2px solid var(--ink); padding-top: 1.1rem;
}
.why-grid h3 {
  font-size: .82rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: .55rem;
}
.why-grid p { color: var(--muted); font-size: .92rem; font-weight: 500; }

.home-work { padding: 0 0 4.5rem; }
.home-work > .sec-title,
.page-work .sec-title { margin-bottom: 2rem; }
.work-group { margin-top: 2.5rem; }
.work-group:first-of-type { margin-top: 0; }
.work-group .sec-label { margin-bottom: .35rem; }
.work-group .sec-sub { margin-bottom: 1.15rem; }
.work-feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-bottom: 12px;
}
.work-card .more {
  display: inline-block; margin-top: .45rem;
  font-size: .68rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--red);
}
.work-lg .shot { aspect-ratio: 16 / 11; }
.work-card .shot img { transition: transform .45s ease; }
.work-card:hover .shot img { transform: scale(1.04); }
.work-card p { max-width: 36ch; }

.cats { padding: 0 0 4.5rem; }
.cat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.cat {
  background: var(--white); border: 2px solid var(--ink);
  padding: 1.15rem 1rem 1.2rem; min-height: 9.5rem;
  transition: transform .2s ease, background .2s ease;
}
.cat:hover { transform: translateY(-3px); background: var(--bg); }
.cat span { display: block; color: var(--red); font-weight: 800; font-size: .7rem; letter-spacing: .14em; margin-bottom: .55rem; }
.cat h3 { font-size: .82rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; margin-bottom: .4rem; }
.cat p { color: var(--muted); font-size: .82rem; font-weight: 500; }

.noid { margin: 0 0 4.5rem; background: #1A1C1E; }
.noid img { width: 100%; height: auto; display: block; }
.noid-cap { padding: 1.35rem 0 1.6rem; }
.noid-cap p { color: #c8c2b6; font-size: 1.02rem; max-width: 36rem; font-weight: 500; }

.home-price { padding: 0 0 3.5rem; }
.care-under {
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 2px solid var(--ink);
}
.care-head {
  font-size: clamp(1.35rem, 3vw, 2rem); font-weight: 800;
  letter-spacing: -0.04em; line-height: .95; text-transform: uppercase;
  margin: 0 0 1.25rem; max-width: 22ch;
}
.care-under .punch { margin-top: 1.5rem; }
.price-3 { grid-template-columns: repeat(3, 1fr); }
.pack-lead { color: var(--muted); font-size: .9rem; font-weight: 500; margin: -.35rem 0 1rem; }
.amount.quote {
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.price-card.featured .pack-lead { color: var(--ink); }
.price-card .btn { width: 100%; }
.price-card h3 {
  font-size: .92rem; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: .2rem;
}

.home-process { padding: 0 0 2rem; }

.final-cta {
  border-top: 2px solid var(--ink);
  padding: 4rem 0 4.5rem;
  background: var(--white);
}
.final-cta h2 { max-width: 14ch; }

.foot-agency { padding: 0; }
.foot-line { max-width: 16ch; margin-bottom: 1.5rem; }
.foot-links {
  display: flex; flex-wrap: wrap; gap: .75rem 1.4rem;
  margin: 1.75rem 0 1.5rem;
  font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}
.foot-links a:hover { color: var(--red); }
.foot-brand { color: var(--muted); font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; font-weight: 600; }
.foot-brand strong { color: var(--ink); font-weight: 800; text-transform: none; letter-spacing: -0.03em; font-size: 1.05rem; }

.color-hair {
  display: flex; height: 4px; width: min(12rem, 40%); margin: 2.75rem 0 0;
}
.color-hair i { flex: 1; }
.color-hair .y { background: var(--yellow); }
.color-hair .o { background: var(--orange); }
.color-hair .r { background: var(--red); }

.look { padding: 3.5rem 0 2.5rem; }
.look-intro { margin-bottom: 1.5rem; }
.look-intro .sec-title { margin-bottom: 0; }

.yard {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(16rem, .88fr);
  align-items: stretch;
  border: 2px solid var(--ink);
  background: var(--white);
  margin-bottom: 2.75rem;
  overflow: hidden;
}
.yard-stage {
  background: var(--bg);
  min-height: 340px;
}
.yard-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.yard-copy {
  padding: 2.2rem 2rem 2.1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 2px solid var(--ink);
}
.yard-copy h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: .95;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.yard-copy h2 .red { color: var(--red); }
.yard-copy p {
  color: var(--muted);
  font-weight: 500;
  max-width: 30ch;
  font-size: 1.02rem;
}

.look-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem 1.25rem;
  align-items: start;
}
.plate { margin: 0; }
.art-frame {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--white);
  border: 2px solid var(--ink);
}
.art-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.plate-copy { padding-top: .85rem; }
.plate-copy p {
  color: var(--muted);
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.45;
}
.plate-copy strong {
  display: block;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: .78rem;
  margin-bottom: .35rem;
}

.w3-walker {
  position: fixed;
  left: 0;
  bottom: 6px;
  z-index: 45;
  width: 118px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease;
  will-change: transform;
  transform-origin: 50% 100%;
}
.w3-walker.is-on { opacity: 1; }
.w3-walker .bob {
  transform-origin: 50% 100%;
  animation: w3bob .42s ease-in-out infinite;
}
.w3-walker img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 12px rgba(26, 28, 30, .2));
}
@keyframes w3bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) {
  .w3-walker .bob { animation: none; }
}

.page-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 2rem; margin-bottom: .25rem;
}

.home-cta {
  margin-top: 3.75rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--line);
}
.home-cta .sec-title { max-width: 14ch; }
.home-cta .sec-sub { margin-bottom: 1.5rem; }

/* INNER PAGES */
.page { padding: 8.5rem 0 5rem; }
.page-how, .page-work, .page-price, .page-order { background: var(--bg); }

.sec-label {
  font-size: .7rem; font-weight: 800; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted); margin-bottom: .9rem;
}
.sec-title {
  font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800;
  letter-spacing: -0.04em; line-height: .95; text-transform: uppercase;
  margin-bottom: 1.1rem; max-width: 16ch;
}
.sec-title .red { color: var(--red); }
.sec-sub {
  color: var(--muted); font-size: 1.05rem; max-width: 36rem;
  margin-bottom: 3rem; font-weight: 500;
}

.why {
  max-width: 40rem; margin-bottom: 3.25rem;
  border-top: 2px solid var(--ink); padding-top: 1.75rem;
}
.why h2 {
  font-size: 1.05rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: .85rem;
}
.why p { color: var(--muted); font-size: 1.02rem; margin-bottom: .85rem; }
.why p:last-child { margin-bottom: 0; }

.steps { display: grid; gap: 0; }
.step {
  display: grid; grid-template-columns: 4.5rem 1fr;
  gap: 1.25rem; padding: 1.6rem 0;
  border-top: 1px solid var(--line);
}
.step-n { font-weight: 800; font-size: .8rem; letter-spacing: .16em; color: var(--red); padding-top: .15rem; }
.step h3 { font-size: 1.2rem; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; margin-bottom: .4rem; }
.step p { color: var(--muted); max-width: 36rem; }

.audience { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 2.75rem; }
.audience span {
  border: 2px solid var(--ink); padding: .4rem .7rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink);
  background: var(--white);
}

.note-strip {
  border: 2px solid var(--ink); padding: 1rem 1.15rem;
  margin-bottom: 2.75rem; max-width: 40rem;
  color: var(--muted); font-size: .95rem; font-weight: 500;
  background: var(--white);
}
.note-strip strong { color: var(--ink); font-weight: 800; }

.inc-list { list-style: none; display: grid; gap: .55rem; margin: 0 0 2.5rem; max-width: 36rem; }
.inc-list li {
  color: var(--muted); font-size: .95rem;
  padding: .65rem .85rem .65rem 1rem;
  background: var(--white);
  border-left: 5px solid var(--red);
}
.inc-list li:nth-child(3n+2) { border-left-color: var(--yellow); }
.inc-list li:nth-child(3n) { border-left-color: var(--ink); }

.faq { margin-top: 3.75rem; max-width: 40rem; }
.faq details { border-top: 1px solid var(--line); padding: 1.05rem 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase; font-size: .88rem;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; float: right; color: var(--red); font-weight: 800;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); margin-top: .55rem; max-width: 36rem; }

.work-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.work-card {
  background: var(--white); border: 2px solid var(--ink);
  display: flex; flex-direction: column;
  transition: transform .2s ease;
}
.work-card:hover { transform: translateY(-2px); }
.work-card.is-photo { cursor: default; }
.work-card.is-photo:hover { transform: none; }
.work-card.is-photo:hover .shot img { transform: none; }
.work-card .shot {
  aspect-ratio: 16 / 10; overflow: hidden; background: var(--charcoal);
}
.work-card .shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.work-card .meta { padding: .7rem .8rem .85rem; }
.work-card .tag { font-size: .58rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: .25rem; }
.work-card h3 { font-size: .78rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; margin-bottom: .08rem; }
.work-card p { color: var(--muted); font-size: .72rem; }
.work-card .domain { font-size: .68rem; font-weight: 600; color: var(--muted); letter-spacing: 0; text-transform: none; }

.price-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 2rem;
}
.price-wrap.price-3 { grid-template-columns: repeat(3, 1fr); }
.price-card { background: var(--white); border: 2px solid var(--ink); padding: 1.6rem 1.4rem; }
.price-card.featured { background: var(--yellow); color: var(--ink); }
.price-card.featured .sec-label { color: var(--ink); }
.price-card.featured li { color: var(--ink); }
.amount {
  font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 800;
  letter-spacing: -0.04em; line-height: 1; margin: .4rem 0 1rem;
}
.amount { display: flex; flex-direction: column; align-items: flex-start; }
.amount small.en, .amount small.el {
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; opacity: .55;
  margin-left: 0; margin-top: .35rem; line-height: 1.2;
}
.amount small.en { display: block !important; }
html[lang="el"] .amount small.en { display: none !important; }
html[lang="el"] .amount small.el { display: block !important; }
.price-card ul { list-style: none; display: grid; gap: .45rem; margin-bottom: 1.2rem; }
.price-card li { display: flex; gap: .55rem; align-items: flex-start; font-size: .92rem; color: var(--muted); }
.price-card li::before {
  content: ""; width: 8px; height: 8px;
  background: var(--red); margin-top: .45rem; flex-shrink: 0;
}
.price-card.featured li::before { background: var(--ink); }
.extras-box { border: 2px solid var(--ink); padding: 1.3rem 1.4rem; margin-bottom: 1.5rem; background: var(--white); }
.extras-table { width: 100%; border-collapse: collapse; }
.extras-table tr + tr td { border-top: 1px solid var(--line); }
.extras-table td { padding: .6rem 0; font-size: .9rem; color: var(--muted); }
.extras-table td:last-child { text-align: right; font-weight: 800; color: var(--ink); white-space: nowrap; }

.form-shell { max-width: 760px; border: 2px solid var(--ink); padding: 1.6rem; background: var(--white); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .35rem; }
.field.full { grid-column: 1 / -1; }
label { font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.hint { font-size: .8rem; color: var(--muted); font-weight: 500; letter-spacing: 0; text-transform: none; }
input, select, textarea {
  width: 100%; border: 2px solid var(--line); background: var(--bg);
  border-radius: 0; padding: .8rem .85rem; outline: none; color: var(--ink);
}
input[type="file"] { padding: .65rem; background: transparent; border-style: dashed; }
input:focus, select:focus, textarea:focus { border-color: var(--ink); }
textarea { min-height: 96px; resize: vertical; }
.form-note { margin: 1rem 0; color: var(--muted); font-size: .9rem; }
.form-shell .btn { width: 100%; }
.checks { display: grid; gap: .55rem; }
.check {
  display: flex; gap: .65rem; align-items: flex-start;
  font-size: .9rem; font-weight: 500; letter-spacing: 0;
  text-transform: none; color: var(--ink); cursor: pointer;
}
.check input[type="checkbox"] {
  width: auto; margin-top: .2rem; accent-color: var(--red);
}

footer { border-top: 2px solid var(--ink); padding: 2rem 0 2.5rem; background: var(--bg); }
.foot {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; align-items: center;
  color: var(--muted); font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; font-weight: 600;
}
.foot strong { color: var(--ink); font-weight: 800; text-transform: none; letter-spacing: -0.03em; font-size: 1.05rem; }
.foot a { font-weight: 800; color: var(--ink); letter-spacing: .12em; }
.foot a:hover { color: var(--red); }

@media (max-width: 900px) {
  .nav { grid-template-columns: 1fr auto; height: auto; padding: .85rem 0; }
  .nav-left { grid-column: 1 / -1; order: 3; flex-wrap: wrap; gap: .65rem 1.1rem; padding-top: .65rem; }
  .logo { justify-self: start; }
  .nav-right { justify-self: end; }
  .hero { grid-template-columns: 1fr; padding-top: 6.25rem; min-height: auto; }
  .buddy-hero { margin: 1rem auto 0; }
  .get-grid { grid-template-columns: 1fr 1fr; }
  .device-stack { height: 340px; }
  .why-grid, .cat-grid { grid-template-columns: 1fr 1fr; }
  .work-feature { grid-template-columns: 1fr; }
  .look-grid { grid-template-columns: 1fr; max-width: 22rem; margin-inline: auto; }
  .w3-walker { display: none; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .price-wrap, .form-grid { grid-template-columns: 1fr; }
  .price-wrap.price-3 { grid-template-columns: 1fr; }
  .step { grid-template-columns: 3rem 1fr; }
}
@media (max-width: 640px) {
  .why-grid, .cat-grid, .price-3, .get-grid { grid-template-columns: 1fr; }
  .device-stack { height: 280px; }
  .b-back { display: none; }
  .b-front { width: 100%; left: 0; top: 0; }
}


/* ---- refinement pass: work descriptions, business sets, bills ---- */
.work-card .meta .work-desc {
  font-size: .82rem; font-weight: 600; letter-spacing: .02em;
  color: var(--muted); margin: .1rem 0 .15rem;
}
.struct-sets { display: block; margin-top: .4rem; }
.struct-sets > span {
  display: block; font-size: .88rem; line-height: 1.45;
  padding-left: .1rem;
}
.struct-sets b { font-weight: 800; color: var(--ink); }
.price-card.featured .struct-sets b { color: var(--ink); }

.bills-head { margin-bottom: .7rem; }
.bills-list { list-style: none; display: grid; gap: .65rem; margin: 0 0 .8rem; padding: 0; }
.bills-list li { display: flex; gap: .75rem; align-items: baseline; }
.bill-n {
  font-weight: 800; font-size: .82rem; letter-spacing: .06em;
  color: var(--red); flex-shrink: 0; min-width: 1.9rem;
}
.bill-b { display: block; }
.bill-b b.en, .bill-b b.el {
  font-weight: 800; font-size: .88rem;
  letter-spacing: .04em; text-transform: uppercase; margin-bottom: .15rem;
}
.bill-b b.en { display: block !important; }
html[lang="el"] .bill-b b.en { display: none !important; }
html[lang="el"] .bill-b b.el { display: block !important; }
.bills-foot { font-weight: 700; margin: 0; }

/* ---- refinement pass: mobile safety ---- */
@media (max-width: 640px) {
  html, body { overflow-x: hidden; }
  .amount { font-size: clamp(2.1rem, 11vw, 2.9rem); overflow-wrap: anywhere; }
  .extras-box { padding: 1rem .9rem; }
  .extras-table { font-size: .86rem; }
  .extras-table td { word-break: break-word; }
  .extras-table td:last-child { white-space: nowrap; text-align: right; padding-left: .5rem; }
  .struct-sets > span { font-size: .84rem; overflow-wrap: anywhere; }
  .bills-list li { gap: .55rem; }
  .bill-n { min-width: 1.6rem; }
  .work-card .meta .work-desc { font-size: .8rem; }
  .btn { max-width: 100%; overflow-wrap: anywhere; }
  .final-cta .btn, .home-actions .btn { width: 100%; justify-content: center; text-align: center; }
  .foot-plain { gap: 1rem; }
  .foot-links { flex-wrap: wrap; }
}


/* ================= LOGO ANIMATION + DISCREET EFFECTS ================= */

/* --- logo: the red 3 breathes, then a slow sweep. Subtle, on brand. --- */
.logo { position: relative; display: inline-block; }
.logo .n3 {
  display: inline-block;
  transform-origin: 50% 60%;
  animation: n3-pulse 4.5s ease-in-out infinite;
  will-change: transform;
}
@keyframes n3-pulse {
  0%, 82%, 100% { transform: scale(1) rotate(0deg); }
  87%           { transform: scale(1.18) rotate(-5deg); }
  92%           { transform: scale(.97) rotate(2deg); }
  96%           { transform: scale(1.04) rotate(0deg); }
}
/* light sweep across the wordmark */
.logo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,.75) 50%, transparent 62%);
  background-size: 220% 100%;
  animation: logo-sweep 7s ease-in-out infinite;
  pointer-events: none; mix-blend-mode: overlay;
}
@keyframes logo-sweep {
  0%, 70% { background-position: 130% 0; }
  86%     { background-position: -30% 0; }
  100%    { background-position: -30% 0; }
}
.logo:hover .n3 { animation-play-state: paused; transform: scale(1.12) rotate(-4deg); transition: transform .25s; }

/* --- discreet: buttons lift a hair --- */
.btn { transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* --- discreet: work cards --- */
.work-card { transition: transform .28s ease, box-shadow .28s ease; }
.work-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(20,21,23,.11); }
.work-card .shot img { transition: transform .6s ease; }
.work-card:hover .shot img { transform: scale(1.035); }

/* --- discreet: price cards --- */
.price-card { transition: transform .28s ease, box-shadow .28s ease; }
.price-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(20,21,23,.10); }

/* --- discreet: nav underline grows from the left --- */
.nav-left a { position: relative; }
.nav-left a::after {
  content: ""; position: absolute; left: 0; bottom: -3px;
  width: 100%; height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.nav-left a:hover::after, .nav-left a.active::after { transform: scaleX(1); }

/* --- discreet: sections fade up once on scroll --- */
.reveal { opacity: 0; transform: translateY(14px); }
.reveal.seen { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }

/* --- respect the user's motion setting --- */
@media (prefers-reduced-motion: reduce) {
  .logo .n3, .logo::after { animation: none !important; }
  .reveal, .reveal.seen { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn:hover, .work-card:hover, .price-card:hover { transform: none !important; }
}

/* --- mobile: language buttons to a proper tap target --- */
@media (max-width: 640px) {
  .lang button { min-width: 44px; min-height: 36px; }
}

/* --- extras table: hidden-language cells must not hold a column --- */
.extras-table td.el { display: none !important; }
html[lang="el"] .extras-table td.el { display: table-cell !important; }
html[lang="el"] .extras-table td.en { display: none !important; }
.extras-table td.en { display: table-cell !important; }
.extras-table tr { border-top: 1px solid var(--line); }
.extras-table tr:first-child { border-top: 0; }
.extras-table tr + tr td { border-top: 0; }
.extras-table td { vertical-align: middle; }


/* ================= THANK-YOU BADGE ================= */
.thanks-badge {
  display: flex; align-items: center; gap: 1rem;
  border: 2px solid var(--ink); background: var(--white);
  padding: 1.05rem 1.25rem; margin: 1.4rem 0 1.6rem;
  max-width: 30rem;
}
.thanks-mark { flex-shrink: 0; width: 46px; height: 46px; display: block; }
.thanks-mark svg { width: 100%; height: 100%; display: block; }
.tm-ring {
  fill: none; stroke: var(--red); stroke-width: 3;
  stroke-dasharray: 132; stroke-dashoffset: 132;
  animation: tm-ring-in .55s ease-out .1s forwards;
}
.tm-tick {
  fill: none; stroke: var(--ink); stroke-width: 4;
  stroke-linecap: square; stroke-linejoin: miter;
  stroke-dasharray: 30; stroke-dashoffset: 30;
  animation: tm-tick-in .35s ease-out .5s forwards;
}
@keyframes tm-ring-in { to { stroke-dashoffset: 0; } }
@keyframes tm-tick-in { to { stroke-dashoffset: 0; } }

.thanks-msg { margin: 0; font-size: 1rem; line-height: 1.45; color: var(--ink); }
.thanks-msg strong { font-weight: 800; }

/* το punch να μην κολλάει στο grid από πάνω */
.page .punch { margin-top: 1.6rem; }

@media (prefers-reduced-motion: reduce) {
  .tm-ring, .tm-tick { animation: none !important; stroke-dashoffset: 0 !important; }
}
@media (max-width: 640px) {
  .thanks-badge { gap: .8rem; padding: .9rem 1rem; }
  .thanks-mark { width: 38px; height: 38px; }
  .thanks-msg { font-size: .94rem; }
}


/* ================= CONSENT (GDPR) ================= */
.consent-box {
  border: 2px solid var(--ink); background: var(--white);
  padding: 1rem 1.15rem; margin: 1.4rem 0 1.5rem;
}
.consent-row { display: flex; gap: .8rem; align-items: flex-start; cursor: pointer; }
.consent-row input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 22px; height: 22px; flex-shrink: 0; margin-top: .15rem;
  border: 2px solid var(--ink); background: var(--white);
  cursor: pointer; position: relative; transition: background .15s;
}
.consent-row input[type="checkbox"]:checked { background: var(--red); border-color: var(--red); }
.consent-row input[type="checkbox"]:checked::after {
  content: ""; position: absolute; left: 6px; top: 1px;
  width: 5px; height: 11px; border: solid #fff;
  border-width: 0 3px 3px 0; transform: rotate(45deg);
}
.consent-row input[type="checkbox"]:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }
.consent-row, .consent-text {
  text-transform: none !important; letter-spacing: normal !important;
  font-weight: 400 !important;
}
.consent-text { font-size: .92rem; line-height: 1.55; color: var(--ink); }
.consent-text a { color: var(--ink); font-weight: 800 !important; text-decoration: underline; }
.consent-note { font-size: .82rem; color: var(--muted); margin: .7rem 0 0; padding-left: 2.6rem; }
.consent-note a { color: var(--muted); font-weight: 700; }

/* ---- σελίδα πολιτικής ---- */
.legal { max-width: 44rem; }
.legal h2 { font-size: 1.05rem; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase; margin: 2rem 0 .6rem; }
.legal p, .legal li { font-size: .95rem; line-height: 1.65; color: var(--muted); }
.legal ul { margin: .4rem 0 .8rem 1.1rem; }
.legal li { margin-bottom: .3rem; }
.legal strong { color: var(--ink); font-weight: 800; }
.legal .updated { font-size: .82rem; color: var(--muted); }

@media (max-width: 640px) {
  .consent-box { padding: .9rem 1rem; }
  .consent-text { font-size: .88rem; }
  .consent-note { padding-left: 0; }
}
