/* ==========================================================================
   Multiscreen.gr — brand palette pulled straight from the real product logo
   (multiscreen-logo.png: blue banner #4285f4, yellow #F4B807, red #FE0000)
   Layout language borrowed from the Rocket careers reference page:
   alternating white/gray panels, bold full-bleed red CTA slabs, circular
   icon cards, dark footer.
   ========================================================================== */

:root {
  --blue: #2f6fe4;
  --blue-deep: #1a4fb4;
  --blue-light: #8fb7f9;
  --blue-pale: #e8f0fe;
  --yellow: #f4b807;
  --yellow-pale: #fff6df;
  --red: #e8384a;
  --red-deep: #c81f30;
  --ink: #14181c;
  --ink-muted: rgba(20, 24, 28, 0.64);
  --bg: #ffffff;
  --surface: #f5f6f8;
  --surface-2: #eef1f5;
  --line: rgba(20, 24, 28, 0.1);
  --footer-bg: #12151a;
  --footer-text: rgba(255, 255, 255, 0.7);
  --radius-lg: 20px;
  --radius-md: 12px;
  --wrap: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { position: relative; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 0.9rem;
}

h1, h2, h3 { font-weight: 800; line-height: 1.12; letter-spacing: -0.01em; }

.section-head {
  max-width: 640px;
  margin-bottom: 2.75rem;
}

.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }

.section-head p {
  margin-top: 0.9rem;
  color: var(--ink-muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  font-family: inherit;
}

.btn:hover { transform: translateY(-2px); }

.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: #000; box-shadow: 0 10px 24px rgba(20, 24, 28, 0.22); }

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

.btn-white {
  background: #fff;
  color: var(--red-deep);
}
.btn-white:hover { box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18); }

.btn-red {
  background: var(--red);
  color: #fff;
}
.btn-red:hover { background: var(--red-deep); box-shadow: 0 10px 24px rgba(232, 56, 74, 0.32); }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.brand img { height: 34px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.94rem;
  opacity: 0.82;
  transition: opacity 0.15s ease;
}
.nav-links a:hover { opacity: 1; }

.header-actions { display: flex; align-items: center; gap: 1.4rem; }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle svg { width: 18px; height: 18px; }

.mobile-nav {
  display: none;
  position: absolute;
  top: 76px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 1rem 1.5rem 1.5rem;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 20px 40px rgba(20, 24, 28, 0.08);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 1rem;
}

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

.hero {
  padding: 4.5rem 0 3rem;
  overflow: hidden;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
}
.hero h1 span { color: var(--blue-deep); }

.hero-sub {
  margin-top: 1.3rem;
  font-size: 1.15rem;
  color: var(--ink-muted);
  max-width: 480px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  margin-top: 2.1rem;
  flex-wrap: wrap;
}

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-art img {
  width: min(100%, 460px);
  filter: drop-shadow(0 30px 60px rgba(47, 111, 228, 0.25));
}

/* ---------- Social proof strip ---------- */

.proof {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof .wrap {
  padding: 2.6rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.proof img { height: 46px; width: auto; flex-shrink: 0; }
.proof p {
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.55;
  max-width: 760px;
}
.proof strong { color: var(--blue-deep); }

/* ---------- Provocation banner ---------- */

.provoke {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
  padding: 4.5rem 0;
  text-align: center;
}
.provoke .wrap { max-width: 820px; }
.provoke p.tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 1rem;
}
.provoke h2 {
  font-size: clamp(1.6rem, 3.6vw, 2.5rem);
  line-height: 1.25;
}

/* ---------- Feature cards (circular icon style) ---------- */

.features { padding: 6rem 0; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.feature-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem;
  border: 1px solid var(--line);
}

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.icon-circle.blue { background: var(--blue-pale); }
.icon-circle.yellow { background: var(--yellow-pale); }
.icon-circle.red { background: #fde8ea; }
.icon-circle svg { width: 30px; height: 30px; }

.feature-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.feature-card p { color: var(--ink-muted); font-size: 0.98rem; line-height: 1.55; }
.feature-card .note {
  margin-top: 0.7rem;
  font-size: 0.85rem;
  color: var(--blue-deep);
  font-weight: 600;
}

/* ---------- Lorry / X3 divider ---------- */

.x3-strip {
  padding: 3.5rem 0 4.5rem;
  background: var(--ink);
  overflow: hidden;
}
.x3-strip .strip-head {
  text-align: center;
  margin-bottom: 1.5rem;
}
.x3-strip .strip-head p.tag {
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.x3-strip .strip-head h2 {
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.lorry-track {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  height: clamp(110px, 15vw, 200px);
  overflow: hidden;
}
.lorry-track .road {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12%;
  height: 2px;
  background: rgba(255, 255, 255, 0.14);
}
.lorry-img {
  position: absolute;
  left: 0;
  bottom: 12%;
  width: clamp(240px, 26vw, 420px);
  height: auto;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .lorry-img { left: 50%; transform: translateX(-50%); }
}

/* ---------- Advantages ---------- */

.advantages { padding: 6rem 0; }

.advantages .wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
}

.advantages-art {
  background: var(--blue-pale);
  border-radius: var(--radius-lg);
  padding: 3rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.mini-tile {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.1rem 1.3rem;
  box-shadow: 0 10px 30px rgba(20, 24, 28, 0.06);
}
.mini-tile .dot {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mini-tile.blue .dot { background: var(--blue); }
.mini-tile.yellow .dot { background: var(--yellow); }
.mini-tile.red .dot { background: var(--red); }
.mini-tile svg { width: 20px; height: 20px; }
.mini-tile span { font-weight: 700; font-size: 0.92rem; }

.advantages-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.advantages-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.advantages-list .check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue-deep);
  color: #fff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
}
.advantages-list .check svg { width: 14px; height: 14px; }
.advantages-list p { font-size: 1.06rem; line-height: 1.55; }
.advantages-list p strong { display: block; margin-bottom: 0.15rem; }
.advantages-list p small { color: var(--ink-muted); font-weight: 400; }

/* ---------- Case study ---------- */

.case-study { padding: 5.5rem 0; background: var(--surface); }

.case-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(20, 24, 28, 0.1);
}

.case-panel {
  background: linear-gradient(160deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
  padding: 3rem 2.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.case-panel .tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 1rem;
}
.case-panel h3 { font-size: 1.7rem; line-height: 1.25; }

.case-quote {
  background: #fff;
  padding: 3rem 2.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.case-quote blockquote {
  font-size: 1.15rem;
  line-height: 1.65;
  font-style: italic;
  color: var(--ink);
  border-left: 3px solid var(--red);
  padding-left: 1.3rem;
}
.case-quote .cite {
  margin-top: 1.3rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
  font-style: normal;
  font-weight: 600;
}

/* ---------- Final CTA ---------- */

.final-cta { padding: 6rem 0; }

.cta-box {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 4rem 2.5rem;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.cta-box h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); }
.cta-box p {
  margin-top: 1rem;
  color: var(--ink-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.cta-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Contact ---------- */

.contact { padding: 2rem 0 6rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1rem; }
.contact-info p { color: var(--ink-muted); line-height: 1.6; margin-bottom: 1.6rem; }

.contact-line {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.contact-line .icon-circle { width: 42px; height: 42px; margin-bottom: 0; }
.contact-line .icon-circle svg { width: 18px; height: 18px; }

form.contact-form {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
form.contact-form input,
form.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
}
form.contact-form input:focus,
form.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
}
form.contact-form textarea { resize: vertical; min-height: 110px; }
form.contact-form .form-note {
  font-size: 0.8rem;
  color: var(--ink-muted);
}

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

.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 4.5rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img { height: 30px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.92rem; line-height: 1.6; max-width: 280px; }

.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a { text-decoration: none; color: var(--footer-text); font-size: 0.94rem; transition: color 0.15s ease; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}
.footer-bottom .powered { display: flex; align-items: center; gap: 0.6rem; }
.footer-bottom .powered img { height: 20px; }

/* ---------- Reveal-on-scroll ---------- */

.reveal { opacity: 0; transform: translateY(24px); }

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

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero .wrap { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .feature-grid { grid-template-columns: 1fr; }
  .advantages .wrap { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .proof .wrap { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}
