/* ============================================================
   Club du Campus — layout modeled on units.gr
   Fixed left sidebar with colored menu blocks; cream canvas;
   big rounded content blocks; colored marquees.
   ============================================================ */

:root {
  --color-cream: #F4E9E1;
  --color-ink: #111111;
  --color-white: #FFFFFF;

  --color-blue: #0072E3;
  --color-yellow: #FFB200;
  --color-orange: #FF6100;
  --color-green: #00AA3C;
  --color-red: #E6313A;
  --color-purple: #AB54F7;

  --sidebar-w: clamp(142px, 9.375vw, 9.375vw);
  --radius: 10px;
  --radius-lg: 20px;
  --gap: 25px;

  /* Bunch (display) and Aeonik Pro (body) are the target commercial fonts;
     Baloo 2 and Hanken Grotesk are their free stand-ins, loaded from
     Google Fonts. Licensed files, if ever added, take over automatically. */
  --font-display: 'Bunch', 'Bricolage Grotesque', arial, sans-serif;
  --font-latin: 'Aeonik Pro', 'Hanken Grotesk', arial, sans-serif;
  --font-arabic: 'IBM Plex Sans Arabic', 'Hanken Grotesk', arial, sans-serif;

  --ease: cubic-bezier(.19, 1, .22, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-cream);
  color: var(--color-ink);
  font-family: var(--font-latin);
  font-size: 16px;
  line-height: 1.5;
  min-height: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Film grain — takes the flat "digital" edge off every surface */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}
[dir="rtl"] body,
[dir="rtl"] { font-family: var(--font-arabic); }
[dir="rtl"] .menu-arrow,
[dir="rtl"] .hero-cta svg { transform: scaleX(-1); }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }
ul.no-list { margin: 0; padding: 0; list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

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

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

.skip-link {
  position: absolute;
  inset-inline-start: 16px;
  top: -64px;
  background: var(--color-ink);
  color: var(--color-cream);
  padding: 12px 20px;
  border-radius: var(--radius);
  z-index: 100;
  transition: top .3s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ============================================================
   SIDEBAR (fixed, full height) — mirrors units.gr header
   ============================================================ */
header {
  position: fixed;
  inset-inline-start: 0;
  top: 0;
  height: 100%;
  width: var(--sidebar-w);
  padding: 30px 0 20px;
  padding-inline-start: 20px;
  z-index: 10;
}
.header-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 10px;
}

/* Logo — stacked wordmark */
.logo-wrap {
  flex: 0 0 auto;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.logo {
  display: flex;
  flex-direction: column;
  font-weight: 900;
  font-size: clamp(1.05rem, 1.5vw, 1.45rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.logo-dot { color: var(--color-orange); }

/* Menu — colored blocks that fill the column */
.main-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
  min-height: 0;
}
.main-menu > li { flex: 1 1 0; min-height: 0; position: relative; }
.main-menu > li.mobile-extra { display: none; }
.main-menu > li > a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border-radius: var(--radius);
  padding: clamp(13px, .8vw, 16px);
  border: 1px solid transparent;
  transition: filter .7s var(--ease);
}
.menu-blue   > a { background: var(--color-blue);   color: var(--color-ink); }
.menu-yellow > a { background: var(--color-yellow); color: var(--color-ink); }
.menu-orange > a { background: var(--color-orange); color: var(--color-ink); }
.menu-green  > a { background: var(--color-green);  color: var(--color-ink); }

.menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.index {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.menu-arrow {
  width: clamp(10px, .7vw, 12px);
  height: auto;
  transition: transform .7s var(--ease);
}
.menu-label {
  font-size: clamp(13px, .95vw, 16px);
  font-weight: 600;
  line-height: 1.2;
}
.main-menu > li > a:hover .menu-arrow { transform: rotate(45deg); }
[dir="rtl"] .main-menu > li > a:hover .menu-arrow { transform: scaleX(-1) rotate(45deg); }

/* Bottom of sidebar: CTA + language */
.sidebar-bottom {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.quote-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-purple);
  color: var(--color-ink);
  font-weight: 700;
  font-size: clamp(13px, .95vw, 15px);
  border-radius: var(--radius);
  padding: 14px 10px;
  min-height: 48px;
  text-align: center;
  transition: background .4s var(--ease), color .4s var(--ease);
}
.quote-btn:hover { background: var(--color-ink); color: var(--color-cream); }

.lang-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-ink);
  color: var(--color-white);
  border-radius: var(--radius);
  padding: 12px 10px;
  min-height: 44px;
  font-weight: 600;
  font-size: 14px;
  transition: opacity .3s var(--ease);
}
.lang-pill:hover { opacity: 0.85; }

/* Hamburger — mobile only */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--color-ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   MAIN CONTENT — offset right of the fixed sidebar
   ============================================================ */
#app {
  margin-inline-start: calc(var(--sidebar-w) + var(--gap));
  padding: 30px 20px 0 0;
  padding-inline-end: 20px;
  padding-inline-start: 0;
  position: relative;
}

/* ---------- Hero ---------- */
.hero-block {
  position: relative;
  aspect-ratio: 1.8 / 1;
  min-height: 480px;
  border-radius: var(--radius-lg);
  background: var(--color-blue);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-shapes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 4vw, 64px);
  max-width: 1080px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: clamp(16px, 4vh, 38px);
}
.hero-content h1 {
  color: var(--color-white);
  font-size: clamp(2.6rem, 4.95vw, 4.45rem);
  font-weight: 850;
  line-height: 1.0;
  letter-spacing: -0.015em;
  max-width: 845px;
}
.hero-content h1 em { font-style: normal; color: var(--color-white); }
[dir="rtl"] .hero-content h1 { letter-spacing: 0; line-height: 1.2; }

.hero-sticker {
  position: absolute;
  z-index: 2;
  top: clamp(18px, 3vw, 42px);
  inset-inline-end: clamp(18px, 3vw, 42px);
  background: var(--color-cream);
  color: var(--color-ink);
  font-weight: 700;
  font-size: clamp(12px, 1vw, 15px);
  padding: 10px 18px;
  border-radius: 999px;
  transform: rotate(6deg);
  box-shadow: 3px 4px 0 rgba(17,17,17,0.35);
}
[dir="rtl"] .hero-sticker { transform: rotate(-6deg); }
.hero-sub {
  color: var(--color-white);
  font-size: clamp(1.05rem, 1.65vw, 1.48rem);
  font-weight: 700;
  line-height: 1.1;
  max-width: 650px;
  margin-top: 17px;
  opacity: 0.98;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 37px;
  background: var(--color-ink);
  color: var(--color-white);
  font-weight: 500;
  font-size: 15px;
  border-radius: 999px;
  padding: 15px 30px;
  min-height: 48px;
  transition: background .4s var(--ease), color .4s var(--ease), transform .2s var(--ease);
}
.hero-cta:hover { background: var(--color-yellow); color: var(--color-ink); }
.hero-cta:active { transform: scale(0.97); }
.hero-cta svg { transition: transform .4s var(--ease); }
.hero-cta:hover svg { transform: rotate(45deg); }
[dir="rtl"] .hero-cta:hover svg { transform: scaleX(-1) rotate(45deg); }

/* ---------- Marquee strips ---------- */
.marquee {
  border-radius: var(--radius);
  margin: var(--gap) 0;
  overflow: hidden;
  padding: 11px 0;
  display: flex;
}
.background-red  { background: var(--color-red); }
.background-blue { background: var(--color-blue); }
.background-orange { background: var(--color-orange); }

.marquee-track {
  display: flex;
  flex-shrink: 0;
  animation: marquee-scroll 22s linear infinite;
}
[dir="rtl"] .marquee-track { animation-name: marquee-scroll-rtl; }
.marquee-group {
  display: flex;
  align-items: center;
  gap: 45px;
  padding-inline-end: 45px;
  flex-shrink: 0;
}
.marquee-group span,
.marquee-group i {
  color: var(--color-ink);
  font-weight: 700;
  font-size: 15px;
  font-style: normal;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marquee-scroll-rtl {
  from { transform: translateX(0); }
  to   { transform: translateX(50%); }
}

/* ---------- Section intro ---------- */
section { display: block; }
.section-intro {
  padding: clamp(40px, 6vw, 90px) 0 clamp(24px, 3vw, 48px);
  max-width: 820px;
}
.section-num {
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  border: 1.5px solid var(--color-ink);
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 18px;
}
.section-intro h2 {
  font-size: clamp(2.2rem, 4.6vw, 4.4rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
}
.section-intro h2 em { font-style: normal; }
[dir="rtl"] .section-intro h2 { letter-spacing: 0; line-height: 1.2; }
.section-intro p {
  margin-top: 16px;
  font-size: 1.1rem;
  max-width: 56ch;
}

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.service-card {
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2vw, 30px);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  color: var(--color-ink);
  transition: transform .5s var(--ease);
}
/* hand-placed feel: cards sit a touch off-axis, straighten on hover */
/* straight at rest; tilt only on hover */
.services-grid .service-card:nth-child(3n+1):hover { --tilt: -1.2deg; }
.services-grid .service-card:nth-child(3n+2):hover { --tilt: 0.8deg; }
.services-grid .service-card:nth-child(3n):hover   { --tilt: -0.6deg; }
.service-card { transform: rotate(var(--tilt, 0deg)); }
.card-blue   { background: var(--color-blue); }
.card-yellow { background: var(--color-yellow); }
.card-orange { background: var(--color-orange); }
.card-green  { background: var(--color-green); }
.card-purple { background: var(--color-purple); }
.card-red    { background: var(--color-red); }

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: auto;
  padding-bottom: 40px;
}
.card-index {
  font-weight: 700;
  font-size: 13px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.service-card h3 {
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
[dir="rtl"] .service-card h3 { letter-spacing: 0; }
.service-card p {
  margin-top: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.45;
}

/* ---------- Why us pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.pillar {
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2vw, 30px);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.pillar-yellow { background: var(--color-yellow); }
.pillar-orange { background: var(--color-orange); }
.pillar-green  { background: var(--color-green); }
.pillar-index {
  font-weight: 700;
  font-size: 13px;
  margin-bottom: auto;
}
.pillar h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}
[dir="rtl"] .pillar h3 { letter-spacing: 0; }
.pillars .pillar:nth-child(1):hover { --tilt: -0.9deg; }
.pillars .pillar:nth-child(2):hover { --tilt: 0.7deg; }
.pillars .pillar:nth-child(3):hover { --tilt: -0.5deg; }
.pillar { transform: rotate(var(--tilt, 0deg)); transition: transform .5s var(--ease); }
.pillar p { margin-top: 8px; font-weight: 500; }

/* ---------- Trusted ---------- */
.trusted-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  border-top: 2px solid var(--color-ink);
  border-bottom: 2px solid var(--color-ink);
  padding: 28px 0;
  font-weight: 800;
  font-size: clamp(1.2rem, 2.2vw, 1.9rem);
  letter-spacing: -0.01em;
}
.trusted-strip i { font-style: normal; }

/* ---------- Arrows CTA banner ---------- */
.arrows-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--radius);
  margin-top: clamp(40px, 6vw, 90px);
  padding: 22px clamp(20px, 3vw, 40px);
}
.arrows-title {
  color: var(--color-ink);
  font-size: clamp(1.6rem, 3.4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-align: center;
}
/* units.gr-style bobbing arrows */
.arrows-header svg path:nth-child(1),
.arrows-header svg path:nth-child(2) { animation: arrow-bob 1.6s var(--ease) infinite; }
.arrows-header svg path:nth-child(3),
.arrows-header svg path:nth-child(4) { animation: arrow-bob 1.6s var(--ease) .35s infinite; }
@keyframes arrow-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}

/* ---------- Contact ---------- */
.contact { margin-top: var(--gap); }
.contact-block {
  background: var(--color-green);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(24px, 4vw, 64px);
  color: var(--color-ink);
}
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  max-width: 16ch;
}
[dir="rtl"] .contact-copy h2 { letter-spacing: 0; line-height: 1.2; }
.contact-copy p {
  margin-top: 18px;
  font-size: 1.1rem;
  font-weight: 500;
  max-width: 48ch;
}
.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.contact-line {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 0;
  border-bottom: 1.5px solid rgba(255,255,255,0.35);
}
.contact-line:first-child { border-top: 1.5px solid rgba(255,255,255,0.35); }
.contact-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
}
.contact-value { font-size: clamp(1.05rem, 1.5vw, 1.3rem); font-weight: 700; }

/* ---------- Footer ---------- */
.site-footer {
  padding: clamp(32px, 4vw, 64px) 0 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}
.footer-giant {
  font-weight: 900;
  font-size: clamp(2.4rem, 7.2vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  border-top: 2px solid var(--color-ink);
  padding-top: 18px;
}
.site-footer p { font-size: 0.95rem; margin: 0; }
.footer-copy { opacity: 0.6; font-size: 0.85rem !important; }

/* ---------- Scroll reveals (staggered) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px) rotate(var(--tilt, 0deg));
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0) rotate(var(--tilt, 0deg)); }
/* hover declared after reveal so it wins once visible */
.service-card:hover { transform: rotate(var(--tilt, 0deg)) translateY(-6px); }
.pillar:hover { transform: rotate(var(--tilt, 0deg)) translateY(-4px); }

/* ============================================================
   MOBILE (<1024px) — sidebar becomes top bar + fullscreen menu
   (mirrors units.gr breakpoint behavior)
   ============================================================ */
@media only screen and (max-width: 1023px) {
  header {
    position: fixed;
    height: auto;
    width: 100%;
    padding: 0;
    inset-inline-start: 0;
  }
  .header-wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: auto;
    padding: 10px;
    background: var(--color-cream);
  }
  .logo-wrap {
    margin-bottom: 0;
    flex: 1;
    align-items: center;
  }
  .logo { font-size: 1.1rem; flex-direction: row; gap: 5px; }
  .nav-toggle { display: flex; }

  ul.main-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: var(--color-cream);
    padding: 80px 10px 10px;
    overflow-y: auto;
    z-index: -1;
    flex: none;
    gap: 10px;
  }
  .main-menu.open { display: flex; }
  .main-menu > li { flex: none; height: 100px; }
  .main-menu > li.mobile-extra {
    display: flex;
    height: auto;
    gap: 8px;
  }
  .main-menu > li.mobile-extra .quote-btn { flex: 1; }
  .main-menu > li.mobile-extra .lang-pill { flex: 1; }

  .sidebar-bottom { display: none; }

  #app {
    margin-inline-start: 0;
    padding: 80px 10px 0;
  }
  .hero-block { min-height: calc(100dvh - 84px); aspect-ratio: auto; }
  .services-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .contact-block { grid-template-columns: 1fr; }
  .arrows-header svg { width: 36px; height: auto; }
}

@media only screen and (min-width: 1024px) and (max-width: 1279px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   QUOTE DRAWER (units.gr-style slide-in modal)
   ============================================================ */
.quote-modal { position: fixed; inset: 0; z-index: 200; }
.quote-modal[hidden] { display: none; }
.modal-blocker {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.55);
  opacity: 0;
  transition: opacity .5s var(--ease);
  cursor: pointer;
}
.modal-panel {
  position: absolute;
  top: 10px;
  bottom: 10px;
  inset-inline-end: 10px;
  width: min(480px, calc(100vw - 20px));
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  transform: translateX(calc(100% + 20px));
  transition: transform .6s var(--ease);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 16px;
}
[dir="rtl"] .modal-panel { transform: translateX(calc(-100% - 20px)); }
.quote-modal.open .modal-blocker { opacity: 1; }
.quote-modal.open .modal-panel { transform: translateX(0); }

.modal-header { display: flex; justify-content: flex-end; margin-bottom: 8px; }
.close-button {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1.5px solid var(--color-ink);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.close-button:hover { background: var(--color-ink); color: var(--color-cream); }
.close-button svg { width: 16px; height: 16px; }
.close-button svg line { stroke: currentColor; stroke-width: 3; stroke-linecap: round; }

.modal-arrows {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--color-purple);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 20px;
}
.modal-arrows span {
  font-weight: 900;
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  letter-spacing: -0.02em;
  text-align: center;
}
.modal-arrows svg { flex-shrink: 0; width: 34px; height: auto; }
.modal-arrows svg path { animation: arrow-bob 1.6s var(--ease) infinite; }

.quote-form { display: flex; flex-direction: column; gap: 14px; }
.quote-form label { display: flex; flex-direction: column; gap: 6px; }
.quote-form label > span {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.quote-form input,
.quote-form textarea {
  font: inherit;
  color: var(--color-ink);
  background: var(--color-white);
  border: 1.5px solid var(--color-ink);
  border-radius: var(--radius);
  padding: 13px 14px;
  min-height: 48px;
}
.quote-form textarea { min-height: 110px; resize: vertical; }
.quote-form input:focus-visible,
.quote-form textarea:focus-visible { outline: 3px solid var(--color-blue); outline-offset: 1px; }

.quote-submit {
  background: var(--color-ink);
  color: var(--color-cream);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 999px;
  padding: 16px 24px;
  min-height: 52px;
  transition: background .3s var(--ease), color .3s var(--ease), transform .2s var(--ease);
}
.quote-submit:hover { background: var(--color-yellow); color: var(--color-ink); }
.quote-submit:active { transform: scale(0.97); }
.form-hint { font-size: 12.5px; opacity: 0.65; margin: 0; }

.modal-alt {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1.5px solid var(--color-ink);
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 700;
}
.modal-alt span { font-size: 13px; opacity: 0.65; font-weight: 600; }
.modal-alt a { transition: color .3s var(--ease); }
.modal-alt a:hover { opacity: 0.65; }

/* ============================================================
   ACTIVE PAGE in sidebar nav
   ============================================================ */
.main-menu > li > a[aria-current="page"] {
  border-color: var(--color-ink);
}
.main-menu > li > a[aria-current="page"] .menu-label {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.main-menu > li > a[aria-current="page"] .menu-arrow { transform: rotate(45deg); }

/* ============================================================
   PRODUCT / CONTACT PAGES
   ============================================================ */
.background-yellow { background: var(--color-yellow); }
.background-green  { background: var(--color-green); }
.background-purple { background: var(--color-purple); }

.page-hero-block {
  position: relative;
  min-height: min(62dvh, 560px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.page-hero-block .hero-content {
  max-width: 980px;
  align-items: flex-start;
  text-align: start;
}
.page-hero-block h1 {
  font-size: clamp(2.4rem, 5.6vw, 5.2rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.035em;
  max-width: 14ch;
}
[dir="rtl"] .page-hero-block h1 { letter-spacing: 0; line-height: 1.15; }
.page-hero-block h1 em { font-style: normal; }

.page-ink h1, .page-ink .hero-sub { color: var(--color-ink); }
.page-ink .hero-sub { opacity: 0.85; }
.page-white h1, .page-white .hero-sub { color: var(--color-white); }
.page-white h1 em { color: var(--color-white); }
.page-ink h1 em { color: inherit; }

.point-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.point-card {
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2vw, 30px);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transform: rotate(var(--tilt, 0deg));
}
.point-cards .point-card:nth-child(1) { --tilt: -0.9deg; }
.point-cards .point-card:nth-child(2) { --tilt: 0.7deg; }
.point-cards .point-card:nth-child(3) { --tilt: -0.5deg; }
.point-card h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.point-card p { margin-top: 8px; font-weight: 500; font-size: 0.95rem; }

.stub-note {
  display: inline-block;
  margin-top: 22px;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.6;
}

.contact-page-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}
.contact-tile {
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2vw, 30px);
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
  transition: transform .4s var(--ease);
}
.contact-tile:hover { transform: translateY(-4px); }
.contact-tile .tile-label { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.7; }
.contact-tile .tile-value { font-size: clamp(1.1rem, 1.8vw, 1.5rem); font-weight: 800; letter-spacing: -0.01em; }

@media only screen and (max-width: 1023px) {
  .point-cards { grid-template-columns: 1fr; }
  .contact-page-details { grid-template-columns: 1fr; }
  .modal-panel { top: 6px; bottom: 6px; inset-inline-end: 6px; width: calc(100vw - 12px); }
}

/* arrows banner as a full-width button + footer nav */
button.arrows-header { width: 100%; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-weight: 700;
  font-size: 0.95rem;
}
.footer-nav a { transition: color .3s var(--ease); }
.footer-nav a:hover { opacity: 0.65; }

/* ============================================================
   OPTION CARDS (units.gr "unit types" pattern, quote-based)
   ============================================================ */
.option-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.option-card {
  background: var(--color-white);
  border: 1.5px solid var(--color-ink);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 2.4vw, 36px);
  display: grid;
  grid-template-columns: 1.1fr 1.6fr auto;
  gap: clamp(16px, 2vw, 40px);
  align-items: center;
  transform: rotate(var(--tilt, 0deg));
}
.option-cards .option-card:nth-child(odd) { --tilt: -0.4deg; }
.option-cards .option-card:nth-child(even) { --tilt: 0.35deg; }
.option-head h3 {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.0;
}
.option-tag {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}
.option-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.option-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  font-size: 0.98rem;
}
.option-features svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
}
.option-foot {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  text-align: end;
}
.option-price {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.6;
  white-space: nowrap;
}
.option-cta {
  background: var(--color-ink);
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  padding: 13px 26px;
  min-height: 48px;
  white-space: nowrap;
  transition: background .4s var(--ease), color .4s var(--ease), transform .2s var(--ease);
}
.option-cta:hover { background: var(--color-yellow); color: var(--color-ink); }
.option-cta:active { transform: scale(0.97); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { border-top: 2px solid var(--color-ink); }
.faq-item { border-bottom: 2px solid var(--color-ink); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  font-weight: 800;
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--color-ink);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .4s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.faq-plus svg { width: 14px; height: 14px; }
.faq-plus svg line { stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; }
.faq-item[open] .faq-plus { transform: rotate(45deg); background: var(--color-ink); color: var(--color-cream); }
.faq-item summary:hover .faq-plus { background: var(--color-ink); color: var(--color-cream); }
.faq-item p {
  padding: 0 4px 24px;
  max-width: 72ch;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.85;
}

@media only screen and (max-width: 1023px) {
  .option-card { grid-template-columns: 1fr; }
  .option-foot { flex-direction: row; align-items: center; justify-content: space-between; width: 100%; text-align: start; }
}

/* ============================================================
   INNER-PAGE PATTERNS v2 — matched to units.gr measurements
   ============================================================ */

/* --- Page hero: outlined info panel + media block (hero-unit) --- */
.ph-grid {
  display: grid;
  grid-template-columns: 42fr 58fr;
  gap: var(--gap);
  align-items: stretch;
}
.ph-info {
  border: 1px solid var(--color-ink);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 2.2vw, 34px);
  min-height: min(78dvh, 690px);
  display: flex;
  flex-direction: column;
}
.ph-label {
  align-self: flex-start;
  border: 1px solid var(--color-ink);
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 16px;
  font-weight: 500;
}
.ph-bottom { margin-top: auto; }
.ph-bottom h1 {
  font-size: clamp(2.1rem, 3.9vw, 3.6rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
}
[dir="rtl"] .ph-bottom h1 { letter-spacing: 0; line-height: 1.2; }
.ph-bottom h1 em { font-style: normal; }
.ph-bottom p {
  margin-top: 22px;
  font-size: 1.02rem;
  line-height: 1.45;
  max-width: 52ch;
}
.ph-media { border-radius: var(--radius-lg); min-height: min(78dvh, 690px); }

/* --- Arrows banner refinements (units.gr: 24px pad, big centered title) --- */
.arrows-header { border-radius: var(--radius-lg); }
.arrows-white { background: var(--color-white); }
.arrows-title-lg {
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-align: center;
}

/* --- Tabs component (meet-units pattern) --- */
.tabs-wrap {
  border: 1px solid var(--color-ink);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.2vw, 34px);
  display: grid;
  grid-template-columns: minmax(230px, 262px) 1fr;
  gap: clamp(28px, 4.5vw, 66px);
  align-items: flex-start;
}
.tabs-buttons { display: flex; flex-direction: column; gap: 10px; }
.tab-btn {
  border: 1px solid var(--color-ink);
  border-radius: 74px;
  padding: 15px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: start;
  background: transparent;
  color: var(--color-ink);
  transition: background .35s var(--ease), color .35s var(--ease);
}
.tab-btn .t-name {
  display: block;
  font-weight: 900;
  font-size: clamp(1.25rem, 1.65vw, 1.6rem);
  letter-spacing: -0.02em;
  line-height: 1.0;
}
.tab-btn .t-sub { display: block; margin-top: 5px; font-size: 0.9rem; font-weight: 500; }
.tab-btn svg { flex-shrink: 0; width: 15px; height: 15px; transition: transform .35s var(--ease); }
[dir="rtl"] .tab-btn svg { transform: scaleX(-1); }
.tab-btn:hover svg { transform: rotate(45deg); }
[dir="rtl"] .tab-btn:hover svg { transform: scaleX(-1) rotate(45deg); }
.tab-btn.active { background: var(--color-ink); color: var(--color-white); }

.tabs-cta {
  margin-top: 12px;
  border-radius: 74px;
  background: var(--color-green);
  color: var(--color-ink);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 17px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.tabs-cta:hover { background: var(--color-ink); color: var(--color-white); }
.tabs-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  font-weight: 700;
  font-size: 1rem;
}
.tabs-phone svg { width: 18px; height: 18px; }

.tab-pane { display: none; }
.tab-pane.active { display: block; }
.tab-pane h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.tab-pane > p { margin-top: 16px; font-size: 1.02rem; line-height: 1.5; max-width: 62ch; }
.pane-divider { border: 0; border-top: 1px solid var(--color-ink); margin: 28px 0; }
.pane-feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 24px;
}
.pane-feats li { display: flex; align-items: center; gap: 13px; }
.pane-feats svg { flex-shrink: 0; width: 34px; height: 34px; color: var(--color-ink); }
.pane-feats span { font-weight: 700; font-size: 16px; line-height: 1.2; }
.pane-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* --- Why pills (colored pill cards with circled number) --- */
.why-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.why-pill {
  border-radius: 34px;
  padding: clamp(26px, 2.6vw, 38px) clamp(22px, 2.2vw, 34px);
  min-height: 130px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--color-ink);
}
.why-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--color-ink);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}
.why-pill h3 {
  font-weight: 800;
  font-size: clamp(1.15rem, 1.75vw, 1.55rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.background-green-bright { background: #6FE06F; }
.background-blue-soft { background: #5B8DEF; }

/* --- FAQs (2-col grid of hairline bordered cards) --- */
.faqs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 25px;
  margin-bottom: 30px;
}
.faq {
  border: 1px solid var(--color-ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease);
}
.faq-btn {
  width: 100%;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: start;
}
.faq-kicker { display: block; font-size: 14px; font-weight: 700; }
.faq-q { display: block; margin-top: 2px; font-size: 16px; font-weight: 700; line-height: 1.2; }
.faq-plus { flex-shrink: 0; width: 22px; height: 22px; transition: transform .4s var(--ease); }
.faq-plus line { stroke: var(--color-ink); stroke-width: 2.2; stroke-linecap: round; }
.faq.open { background: var(--color-white); border-color: var(--color-white); }
.faq.open .faq-plus { transform: rotate(45deg); }
.faq-pane { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq-pane p { padding: 0 30px 20px; font-size: 15px; line-height: 1.35; max-width: 66ch; }

@media only screen and (max-width: 1023px) {
  .ph-grid { grid-template-columns: 1fr; }
  .ph-info, .ph-media { min-height: 0; }
  .ph-info { min-height: 60dvh; }
  .ph-media { height: 180px; }
  .tabs-wrap { grid-template-columns: 1fr; }
  .pane-feats { grid-template-columns: 1fr; }
  .why-pills { grid-template-columns: 1fr; }
  .faqs { grid-template-columns: 1fr; }
}

/* Arrow tips were clipped at the SVG viewBox edge during the bob animation */
.arrows-header svg, .modal-arrows svg { overflow: visible; }

/* Vertical rhythm: banners breathe between blocks (adjacent margins collapse) */
.arrows-header { margin-block: var(--gap); }
.arrows-title em { font-style: normal; }

/* Bottom CTA as a regular button instead of the banner */
.bottom-cta { display: flex; justify-content: center; padding: 24px 0 34px; }
.bottom-cta .hero-cta { margin-top: 0; }

/* Savings stat banner */
.stat-banner {
  border-radius: var(--radius-lg);
  padding: 24px 30px;
  margin-block: var(--gap);
  display: flex;
  justify-content: center;
  text-align: center;
}

/* ============================================================
   INLINE QUOTE SECTION (bottom of every page)
   ============================================================ */
.quote-section {
  border: 1px solid var(--color-ink);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.5vw, 56px);
  margin-block: var(--gap) 30px;
}
.quote-section-head { text-align: center; max-width: 60ch; margin-inline: auto; }
.quote-section-head p { margin-top: 10px; font-size: 0.95rem; opacity: 0.7; }
.quote-form-inline {
  max-width: 760px;
  margin: 30px auto 0;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.quote-form select {
  font: inherit;
  color: var(--color-ink);
  background: var(--color-white);
  border: 1.5px solid var(--color-ink);
  border-radius: var(--radius);
  padding: 13px 14px;
  min-height: 48px;
  width: 100%;
}
.quote-form select:focus-visible { outline: 3px solid var(--color-blue); outline-offset: 1px; }
.quote-form-inline .quote-submit { width: 100%; }

@media only screen and (max-width: 760px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   HERO PHOTO (full-bleed image behind centered text)
   ============================================================ */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.38);
  display: none;
}
.hero-has-image .hero-img,
.hero-has-image .hero-overlay { display: block; }
.hero-has-image .hero-shapes,
.hero-has-image .hero-sticker { display: none; }

/* ============================================================
   TYPOGRAPHY: display font for headings + marquees, body font for text
   ============================================================ */
h1, h2, h3,
.arrows-title,
.footer-giant,
.logo,
.t-name,
.marquee-group span {
  font-family: var(--font-display);
}

/* When you have licensed Bunch / Aeonik Pro files, place them in
   assets/fonts/ and uncomment:

@font-face {
  font-family: 'Bunch';
  src: url('assets/fonts/Bunch.woff2') format('woff2');
  font-weight: 400 900;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik Pro';
  src: url('assets/fonts/AeonikPro-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik Pro';
  src: url('assets/fonts/AeonikPro-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}
*/

/* Form submission status message */
.form-status { font-weight: 600; font-size: 14px; margin: 6px 0 0; }
.quote-submit:disabled { opacity: 0.6; cursor: default; }

/* Honeypot field: invisible to humans, visible to bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Floating WhatsApp button */
.whatsapp-fab {
  position: fixed;
  bottom: 20px;
  inset-inline-end: 20px;
  z-index: 95;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(17, 17, 17, 0.25);
  transition: transform .3s var(--ease);
}
.whatsapp-fab:hover { transform: scale(1.08); }
