:root {
  --navy: #101b2d;
  --navy-2: #17243a;
  --lime: #c7f36b;
  --ivory: #f4f1e8;
  --paper: #fbfaf6;
  --sky: #dceaf0;
  --coral: #ff6b55;
  --muted: #657080;
  --line: rgba(16, 27, 45, 0.13);
  --radius: 28px;
  --shadow: 0 24px 70px rgba(16, 27, 45, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--navy);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { display: block; max-width: 100%; }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(199,243,107,.18); }
.section-title { margin: 0; max-width: 780px; font-size: clamp(38px, 5.5vw, 72px); line-height: .98; letter-spacing: -.055em; font-weight: 780; }
.section-title.small { font-size: clamp(34px, 4.4vw, 58px); }
.section-copy { margin: 22px 0 0; max-width: 560px; color: var(--muted); font-size: 18px; line-height: 1.55; }
.button {
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--lime);
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.button::after { content: "↗"; font-size: 17px; }
.button:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(159,202,66,.28); }
.button.dark { background: var(--navy); color: white; }
.button.outline { background: transparent; border: 1px solid var(--line); }
.button.outline::after { content: "→"; }

/* Navigation */
.site-header { position: relative; z-index: 20; padding: 20px 0; background: var(--paper); }
.nav { min-height: 56px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 11px; font-size: 20px; font-weight: 850; letter-spacing: -.04em; }
.logo-mark { position: relative; width: 37px; height: 27px; border-radius: 7px 10px 7px 7px; background: var(--navy); transform: skewX(-8deg); }
.logo-mark::before { content: ""; position: absolute; left: 5px; bottom: -5px; width: 7px; height: 7px; border: 3px solid var(--paper); border-radius: 50%; background: var(--lime); box-shadow: 18px 0 0 -3px var(--lime), 18px 0 0 0 var(--paper); }
.logo-mark::after { content: ""; position: absolute; right: -7px; bottom: 1px; border-left: 9px solid var(--navy); border-top: 8px solid transparent; }
.nav-links { display: flex; align-items: center; gap: 34px; font-size: 14px; font-weight: 700; }
.nav-links a:not(.button) { position: relative; padding: 10px 0; }
.nav-links a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 4px; height: 2px; background: var(--lime); transition: right .25s ease; }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-links .button { padding: 12px 18px; }
.menu-toggle { display: none; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: transparent; cursor: pointer; }
.menu-toggle span, .menu-toggle span::before { display: block; width: 18px; height: 2px; margin: auto; background: var(--navy); transition: transform .25s ease; }
.menu-toggle span::before { content: ""; transform: translateY(-6px); }

/* Home */
.hero { padding: 26px 0 58px; }
.hero-shell { min-height: 670px; border-radius: 36px; overflow: hidden; position: relative; background: var(--ivory); box-shadow: inset 0 0 0 1px rgba(16,27,45,.05); }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(244,241,232,.98) 0%, rgba(244,241,232,.9) 37%, rgba(244,241,232,.05) 65%); }
.hero-content { position: relative; z-index: 2; width: 52%; padding: 92px 0 70px 72px; }
.hero h1 { margin: 0; font-size: clamp(56px, 7.2vw, 104px); line-height: .86; letter-spacing: -.075em; font-weight: 800; }
.hero h1 span { display: block; color: transparent; -webkit-text-stroke: 2px var(--navy); }
.hero-lead { margin: 28px 0 32px; max-width: 480px; font-size: 20px; line-height: 1.5; color: #455164; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-note { margin: 34px 0 0; display: flex; align-items: center; gap: 12px; color: #4b5768; font-size: 13px; font-weight: 700; }
.avatar-stack { display: flex; }
.avatar-stack i { width: 31px; height: 31px; margin-left: -8px; border: 3px solid var(--ivory); border-radius: 50%; background: var(--sky); }
.avatar-stack i:first-child { margin-left: 0; background: var(--coral); }
.avatar-stack i:nth-child(2) { background: var(--lime); }
.route-badge { position: absolute; z-index: 3; right: 42px; bottom: 36px; width: 170px; height: 170px; border-radius: 50%; background: var(--navy); color: white; display: grid; place-items: center; text-align: center; transform: rotate(7deg); box-shadow: var(--shadow); }
.route-badge strong { display: block; font-size: 32px; letter-spacing: -.06em; }
.route-badge small { display: block; margin-top: 3px; color: var(--lime); font-weight: 800; }

.marquee { overflow: hidden; border-block: 1px solid var(--line); }
.marquee-track { display: flex; width: max-content; padding: 18px 0; animation: marquee 25s linear infinite; }
.marquee span { display: inline-flex; align-items: center; gap: 22px; padding-right: 22px; font-size: 13px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.marquee span::after { content: "✦"; color: var(--coral); }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: 118px 0; }
.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 54px; }
.split-heading .section-copy { margin: 0; }
.service-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 18px; }
.service-card { min-height: 360px; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; position: relative; overflow: hidden; background: white; transition: transform .3s ease, box-shadow .3s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card.featured { min-height: 440px; background: var(--navy); color: white; }
.service-card.sky { background: var(--sky); }
.service-number { font-size: 12px; font-weight: 850; letter-spacing: .12em; }
.service-icon { width: 54px; height: 54px; margin: auto 0 24px; display: grid; place-items: center; border-radius: 50%; background: var(--lime); font-size: 24px; color: var(--navy); }
.service-card h3 { margin: 0; font-size: 29px; letter-spacing: -.04em; }
.service-card p { margin: 12px 0 0; max-width: 340px; color: var(--muted); line-height: 1.5; }
.service-card.featured p { color: #bac3cf; }
.card-link { margin-top: 22px; font-size: 13px; font-weight: 850; }
.card-link span { color: var(--coral); margin-left: 5px; }

.proof { background: var(--navy); color: white; }
.proof-shell { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 78px; }
.proof-visual { border-radius: 32px; overflow: hidden; position: relative; }
.proof-visual img { width: 100%; aspect-ratio: 1.15; object-fit: cover; }
.proof-visual::after { content: "ΚΑΘΕ ΣΤΑΣΗ • ΣΤΗΝ ΩΡΑ ΤΗΣ"; position: absolute; left: 22px; bottom: 22px; padding: 12px 16px; border-radius: 999px; background: var(--lime); color: var(--navy); font-size: 11px; font-weight: 900; letter-spacing: .08em; }
.proof .section-copy { color: #b9c3d0; }
.proof-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 38px; background: rgba(255,255,255,.12); }
.proof-item { padding: 23px 18px 23px 0; background: var(--navy); display: flex; gap: 13px; align-items: start; }
.proof-item strong { font-size: 15px; }
.proof-item i { width: 20px; height: 20px; flex: 0 0 20px; border-radius: 50%; display: grid; place-items: center; background: var(--lime); color: var(--navy); font-style: normal; font-size: 11px; font-weight: 900; }

.steps { counter-reset: steps; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); margin-top: 56px; }
.step { counter-increment: steps; padding: 32px 50px 0 0; position: relative; }
.step::before { content: "0" counter(steps); display: block; margin-bottom: 46px; font-size: 12px; font-weight: 900; color: var(--coral); }
.step h3 { margin: 0 0 12px; font-size: 24px; letter-spacing: -.03em; }
.step p { margin: 0; color: var(--muted); line-height: 1.5; }

.cta-band { padding: 0 0 110px; }
.cta-shell { min-height: 390px; border-radius: 34px; padding: 62px; display: flex; flex-direction: column; justify-content: space-between; background: var(--lime); position: relative; overflow: hidden; }
.cta-shell::after { content: "→"; position: absolute; right: 35px; top: -90px; font-size: 380px; line-height: 1; color: rgba(16,27,45,.07); font-weight: 300; transform: rotate(-25deg); }
.cta-shell h2 { position: relative; z-index: 1; margin: 0; max-width: 850px; font-size: clamp(45px, 7vw, 88px); line-height: .95; letter-spacing: -.065em; }
.cta-actions { position: relative; z-index: 1; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.cta-actions span { font-size: 13px; font-weight: 750; }

/* Inner pages */
.page-hero { padding: 70px 0 95px; }
.page-hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 40px; }
.page-hero h1 { margin: 0; max-width: 900px; font-size: clamp(58px, 9.5vw, 126px); line-height: .84; letter-spacing: -.075em; }
.page-hero-aside { padding-bottom: 8px; }
.page-hero-aside p { margin: 0 0 26px; color: var(--muted); font-size: 18px; line-height: 1.55; }
.image-banner { margin-top: 48px; height: 470px; border-radius: 34px; overflow: hidden; background: var(--sky); }
.image-banner img { width: 100%; height: 100%; object-fit: cover; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; min-height: 410px; display: flex; flex-direction: column; background: white; }
.price-card.popular { color: white; background: var(--navy); transform: translateY(-14px); box-shadow: var(--shadow); }
.price-label { font-size: 12px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; color: var(--coral); }
.price-card h2 { margin: 24px 0 10px; font-size: 34px; letter-spacing: -.05em; }
.price-card .time { color: var(--muted); }
.price-card.popular .time { color: #abb6c5; }
.price { margin: 34px 0 28px; font-size: 50px; font-weight: 850; letter-spacing: -.06em; }
.price.custom { font-size: 28px; line-height: 1.08; letter-spacing: -.04em; }
.price small { font-size: 15px; font-weight: 650; letter-spacing: 0; }
.price-features { margin: auto 0 28px; padding: 0; list-style: none; }
.price-features li { padding: 9px 0; font-size: 14px; border-bottom: 1px solid var(--line); }
.price-card.popular .price-features li { border-color: rgba(255,255,255,.13); }

.extras { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; align-items: start; }
.extra-list { border-top: 1px solid var(--line); }
.extra-row { width: 100%; padding: 24px 0; border: 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 20px; color: var(--navy); background: transparent; text-align: left; font-weight: 800; cursor: pointer; }
.extra-row span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--sky); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.faq-answer p { min-height: 0; overflow: hidden; margin: 0; color: var(--muted); line-height: 1.55; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer p { padding: 4px 54px 24px 0; }
.faq-item.open .extra-row span { transform: rotate(45deg); background: var(--lime); }
.extra-row span { transition: transform .25s ease, background .25s ease; }

/* Booking */
.booking-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: start; }
.booking-intro { position: sticky; top: 28px; }
.booking-intro h1 { margin: 0; font-size: clamp(55px, 7vw, 92px); line-height: .88; letter-spacing: -.07em; }
.booking-intro p { color: var(--muted); font-size: 18px; line-height: 1.55; }
.contact-chips { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 30px; }
.contact-chips span { padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; font-size: 12px; font-weight: 800; }
.booking-card { padding: 38px; border-radius: 30px; background: white; box-shadow: var(--shadow); border: 1px solid var(--line); }
.progress { display: flex; gap: 8px; margin-bottom: 38px; }
.progress i { height: 5px; flex: 1; border-radius: 9px; background: #e6e8e5; }
.progress i.active { background: var(--lime); }
.form-step { display: none; }
.form-step.active { display: block; animation: fadeUp .35s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } }
.form-step h2 { margin: 0 0 28px; font-size: 27px; letter-spacing: -.04em; }
.option-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.option { position: relative; }
.option input { position: absolute; opacity: 0; pointer-events: none; }
.option label { min-height: 130px; padding: 18px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--line); border-radius: 18px; cursor: pointer; transition: .2s ease; }
.option label b { font-size: 15px; }
.option label small { color: var(--muted); line-height: 1.35; }
.option input:checked + label { border-color: var(--navy); background: var(--ivory); box-shadow: inset 0 0 0 1px var(--navy); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--line); border-radius: 13px; padding: 15px 16px; color: var(--navy); background: var(--paper); outline: none; transition: border .2s, box-shadow .2s; }
.field select { appearance: auto; cursor: pointer; }
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(199,243,107,.4); }
.form-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 30px; }
.back-btn { border: 0; background: transparent; font-weight: 800; cursor: pointer; }
.summary-box { margin-bottom: 22px; padding: 22px; border-radius: 18px; background: var(--ivory); display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.summary-box small { display: block; color: var(--muted); margin-bottom: 5px; }
.checkline { display: flex; gap: 10px; align-items: start; font-size: 13px; line-height: 1.45; color: var(--muted); }
.success { display: none; text-align: center; padding: 30px 10px; }
.success.active { display: block; animation: fadeUp .4s ease; }
.success-mark { width: 80px; height: 80px; margin: 0 auto 24px; border-radius: 50%; display: grid; place-items: center; background: var(--lime); font-size: 32px; font-weight: 900; }
.success h2 { font-size: 36px; margin: 0 0 14px; }
.success p { color: var(--muted); line-height: 1.55; }

/* Footer */
.footer { padding: 70px 0 28px; background: var(--navy); color: white; }
.footer-top { display: grid; grid-template-columns: 1.4fr .6fr .6fr; gap: 50px; padding-bottom: 58px; }
.footer .logo-mark::before { border-color: var(--navy); }
.footer-tag { margin: 24px 0 0; max-width: 340px; color: #9da8b8; line-height: 1.5; }
.footer h4 { margin: 4px 0 20px; font-size: 12px; color: var(--lime); letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: grid; gap: 13px; color: #d9dfe7; font-size: 14px; }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 20px; color: #8290a2; font-size: 12px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .nav-links { position: fixed; inset: 76px 20px auto; padding: 30px; border-radius: 24px; background: var(--navy); color: white; flex-direction: column; align-items: stretch; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: .25s ease; }
  .nav-links.open { opacity: 1; pointer-events: auto; transform: none; }
  .nav-links .button { color: var(--navy); }
  .menu-toggle { display: block; }
  .menu-open .menu-toggle span { transform: rotate(45deg); }
  .menu-open .menu-toggle span::before { transform: rotate(90deg); }
  .hero-shell { min-height: 740px; }
  .hero-image { object-position: 61% bottom; }
  .hero-overlay { background: linear-gradient(180deg, rgba(244,241,232,1) 0%, rgba(244,241,232,.92) 46%, rgba(244,241,232,.05) 75%); }
  .hero-content { width: 100%; padding: 60px 38px; }
  .route-badge { width: 130px; height: 130px; right: 22px; bottom: 24px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card.featured { grid-column: 1/-1; }
  .proof-shell, .extras, .booking-layout { grid-template-columns: 1fr; }
  .proof-visual { order: 2; }
  .booking-intro { position: static; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.popular { transform: none; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1180px); }
  .section { padding: 78px 0; }
  .hero { padding-top: 6px; }
  .hero-shell { min-height: 680px; border-radius: 24px; }
  .hero-content { padding: 48px 24px; }
  .hero h1 { font-size: 57px; }
  .hero-lead { font-size: 17px; }
  .hero-note, .route-badge { display: none; }
  .split-heading { display: block; }
  .split-heading .section-copy { margin-top: 22px; }
  .service-grid, .steps, .proof-list { grid-template-columns: 1fr; }
  .service-card, .service-card.featured { min-height: 340px; }
  .steps { gap: 42px; }
  .step::before { margin-bottom: 20px; }
  .cta-shell { min-height: 430px; padding: 34px 26px; }
  .cta-shell h2 { font-size: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .footer-bottom { flex-direction: column; }
  .page-hero { padding: 44px 0 70px; }
  .page-hero h1 { font-size: 64px; }
  .image-banner { height: 320px; }
  .option-grid, .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .booking-card { padding: 24px 18px; }
  .summary-box { grid-template-columns: 1fr; }
}

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