:root {
  --black: #05080c;
  --ink: #101924;
  --navy: #081b2b;
  --blue: #087fcb;
  --blue-soft: #dff5ff;
  --silver: #d7dde5;
  --chrome: #f2f6fa;
  --white: #ffffff;
  --muted: #6f7b87;
  --line: rgba(115, 145, 170, 0.24);
  --shadow: 0 22px 70px rgba(3, 16, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfe 42%, #ffffff 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px clamp(20px, 5vw, 70px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(135, 185, 212, 0.24);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--navy);
}

.brand img {
  width: 160px;
  height: 70px;
  object-fit: contain;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 26px;
  color: #253544;
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  opacity: 0.82;
}

.nav a:hover {
  opacity: 1;
  color: var(--blue);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(11, 115, 183, 0.32);
  border-radius: 999px;
  background: #fff;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid rgba(11, 115, 183, 0.24);
  border-radius: 999px;
  background: #f4f9fc;
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 32px;
  padding: 0 9px;
  border-radius: 999px;
  color: #3f5262;
  font-size: 12px;
  font-weight: 800;
}

.language-switch a:hover {
  color: var(--blue);
}

.language-switch a.active {
  color: #ffffff;
  background: #087fcb;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 3vw, 42px) clamp(20px, 5vw, 70px) 48px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 28%, rgba(35, 169, 220, 0.25), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #dff5ff 38%, #55bfe9 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(110deg, transparent 0 42%, rgba(8,127,203,0.08) 42.3% 42.7%, transparent 43% 100%),
    linear-gradient(160deg, transparent 0 55%, rgba(8,127,203,0.07) 55.3% 55.7%, transparent 56% 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.55fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.hero-copy {
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.hero-copy,
.lead,
.sublead,
.hero h1,
.section-head h2,
.focus-copy h2,
.boundaries h2 {
  overflow-wrap: break-word;
  max-width: 100%;
}

.eyebrow,
.section-head span,
.market-copy > span,
.focus-copy span,
.boundaries span,
.contact-card span {
  display: inline-block;
  margin: 0 0 14px;
  color: #087fcb;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  font-size: 22px;
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
  color: #061421;
}

.lead {
  max-width: 790px;
  margin: 26px 0 0;
  color: #07324f;
  font-size: clamp(20px, 1.8vw, 22px);
  line-height: 1.48;
  font-weight: 650;
}

.sublead {
  max-width: 700px;
  margin: 16px 0 0;
  color: #284b62;
  font-size: 18px;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 21px;
  border-radius: 999px;
  font-weight: 800;
}

.button.primary {
  background: #06243a;
  color: var(--white);
}

.button.secondary {
  border: 1px solid rgba(6,36,58,0.34);
  color: #06243a;
  background: rgba(255,255,255,0.36);
}

.hero-panel {
  min-height: 0;
  padding: 22px 26px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255,255,255,0.94);
  box-shadow: var(--shadow);
}

.result-eyebrow {
  margin: 0 0 6px;
  color: #087fcb;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0;
}

.hero-panel h2 {
  margin: 0;
  max-width: 410px;
  font-size: 28px;
  line-height: 1.1;
  color: #061421;
}

.result-intro {
  margin: 8px 0 12px;
  color: #35586c;
  font-size: 16px;
  line-height: 1.4;
}

.result-list {
  display: grid;
  border-top: 1px solid rgba(8,127,203,0.18);
}

.result-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(8,127,203,0.16);
}

.result-list > div > span {
  color: #087fcb;
  font-size: 13px;
  font-weight: 800;
}

.result-list p {
  margin: 0;
}

.result-list b {
  display: block;
  color: #061421;
  font-size: 16px;
}

.result-list small {
  display: block;
  margin-top: 3px;
  color: #35586c;
  font-size: 14px;
  line-height: 1.34;
}

.result-footer {
  margin: 8px 0 0;
  padding: 8px 12px;
  border-left: 3px solid #087fcb;
  background: #eef8fd;
  color: #173b52;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

section {
  padding: 78px clamp(20px, 5vw, 70px);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-head.wide {
  max-width: 930px;
}

.section-head h2,
.focus-copy h2,
.boundaries h2,
.contact-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-head p {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.logic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.logic-grid article,
.service-card,
.timeline article,
.deliverable-board div,
.contact-card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 16px 50px rgba(6, 22, 38, 0.07);
}

.logic-grid article {
  min-height: 270px;
  padding: 26px;
  border-radius: 18px;
}

.logic-grid strong {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(145deg, #0b73b7, #06253d);
  font-size: 26px;
}

.logic-grid h3,
.service-card h3,
.timeline h3 {
  margin: 22px 0 10px;
  color: var(--navy);
  font-size: 20px;
}

.logic-grid p,
.service-card p,
.timeline p,
.boundaries p,
.contact-card p {
  margin: 0;
  color: #536170;
  line-height: 1.62;
}

.services {
  background: linear-gradient(180deg, #eef8fd 0%, #ffffff 100%);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
}

.service-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 28px;
  border-radius: 18px;
}

.service-number {
  color: #0b73b7;
  font-size: 28px;
  font-weight: 800;
}

.service-card h3 {
  margin-top: 0;
}

.focus {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1.15fr;
  gap: 40px;
  align-items: start;
  max-width: 1220px;
  margin: 0 auto;
}

.focus-copy {
  grid-column: 1 / -1;
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}

.focus-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.focus-grid p {
  min-height: 138px;
  margin: 0;
  padding: 24px;
  border-left: 5px solid #0b73b7;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffffff, #edf7fc);
  color: #243446;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.42;
}

.market-map {
  overflow: hidden;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #f5fafd 100%);
}

.market-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1220px;
  margin: 0 auto;
  align-items: center;
}

.market-copy h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  color: #061421;
}

.market-copy {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.market-copy p {
  margin: 18px auto 0;
  max-width: 840px;
  color: #4c6272;
  line-height: 1.65;
  font-size: 18px;
}

.market-note {
  max-width: 900px;
  margin: 0 auto;
  padding: 16px 22px;
  border: 1px solid rgba(8,127,203,0.18);
  border-radius: 16px;
  background: #ffffff;
  color: #243b4b;
  text-align: center;
  font-size: 17px;
}

.focus > .market-note {
  grid-column: 1 / -1;
  margin-top: 24px;
}

.map-board {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 2 / 1;
  border: 1px solid rgba(8,127,203,0.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 55px rgba(8, 78, 126, 0.09);
  padding: 0;
}

.map-board img {
  width: 92%;
  height: auto;
  object-fit: contain;
  display: block;
}

.market-point {
  position: absolute;
  display: grid;
  gap: 3px;
  min-width: 112px;
  padding: 9px 11px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 14px;
  background: rgba(2, 12, 22, 0.66);
  box-shadow: 0 12px 30px rgba(0,0,0,0.22);
}

.market-point::before {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  left: -6px;
  top: 18px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #35b7ff;
  box-shadow: 0 0 0 7px rgba(53,183,255,0.18);
}

.market-point b {
  font-size: 13px;
}

.market-point span {
  color: rgba(255,255,255,0.68);
  font-size: 11px;
  line-height: 1.25;
}

.p-europe { left: 10%; top: 26%; }
.p-malta { left: 36%; top: 48%; }
.p-cyprus { left: 67%; top: 56%; }
.p-greece { left: 52%; top: 37%; }
.p-israel { left: 80%; top: 68%; }
.p-egypt { left: 61%; top: 78%; }
.p-north { left: 23%; top: 72%; }

.approach {
  background: #fff;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.timeline article {
  padding: 25px;
  border-radius: 18px;
}

.timeline span {
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.deliverable-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1140px;
  margin: 0 auto;
}

.deliverable-board div {
  min-height: 106px;
  padding: 22px;
  border-radius: 16px;
  color: #172536;
  font-weight: 700;
  line-height: 1.42;
  background: linear-gradient(135deg, #ffffff, #f0f6fa);
}

.boundaries {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.boundaries > div {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.boundaries p {
  max-width: 1080px;
  margin: 0 auto;
  padding: 28px;
  text-align: justify;
  text-align-last: left;
  border-left: 5px solid #8aa4b9;
  border-radius: 16px;
  background: #f6f8fa;
}

.contact {
  padding-bottom: 92px;
}

.contact-card {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  max-width: 1050px;
  margin: 0 auto;
  padding: 34px;
  border-radius: 22px;
  background: linear-gradient(135deg, #071524, #0b3e60);
  color: #fff;
}

.contact-card h2 {
  color: #fff;
}

.contact-card p {
  margin-top: 12px;
  color: rgba(255,255,255,0.72);
}

.contact-links {
  display: grid;
  align-content: center;
  gap: 12px;
  text-align: right;
  font-size: 20px;
  font-weight: 800;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 70px);
  color: #647282;
  border-top: 1px solid var(--line);
  background: #fff;
  font-size: 13px;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .header-tools {
    margin-left: auto;
  }

  .hero-grid,
  .focus,
  .market-wrap,
  .boundaries {
    grid-template-columns: 1fr;
  }

  .logic-grid,
  .timeline,
  .deliverable-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .brand img {
    width: 124px;
    height: 54px;
  }

  .hero {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.05;
  }

  .hero-copy {
    max-width: calc(100vw - 72px);
  }

  .hero-copy,
  .hero-copy * {
    word-break: break-word;
    hyphens: auto;
  }

  .eyebrow {
    font-size: 18px;
    line-height: 1.45;
    max-width: 280px;
  }

  .lead {
    font-size: 16px;
    max-width: calc(100vw - 48px);
  }

  .sublead {
    font-size: 15px;
    max-width: calc(100vw - 48px);
  }

  .section-head h2,
  .focus-copy h2,
  .boundaries h2,
  .contact-card h2 {
    font-size: 28px;
    word-break: break-word;
  }

  .logic-grid,
  .timeline,
  .deliverable-board,
  .focus-grid,
  .service-list {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: auto;
  }

  .market-wrap {
    gap: 24px;
  }

  .market-point {
    min-width: 132px;
  }

  .p-europe { left: 10%; top: 12%; }
  .p-malta { left: 50%; top: 24%; }
  .p-greece { left: 12%; top: 37%; }
  .p-cyprus { left: 50%; top: 48%; }
  .p-israel { left: 12%; top: 63%; }
  .p-egypt { left: 50%; top: 73%; }
  .p-north { left: 12%; top: 84%; }

  .contact-card,
  footer {
    flex-direction: column;
  }

  .contact-links {
    text-align: left;
  }
}
