:root {
  --bg: #eef6ff;
  --bg2: #e3f1ff;
  --bg3: #f8fbff;
  --border: rgba(34,66,98,.18);
  --accent: #4f8ef7;
  --accent2: #7b5ea7;
  --text: #111820;
  --text2: #6f7c8d;
  --text3: #8795a8;
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Space Grotesk', 'Avenir Next', 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 84px);
  border-bottom: 1px solid var(--border);
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(238,246,255,.90);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; }
.brand > img { display: block; width: 214px; height: auto; margin: -31px -28px; }
.neural-mark { width: 34px; height: 36px; position: relative; display: inline-block; flex: 0 0 auto; }
.node { position: absolute; display: block; border-radius: 50%; width: 4px; height: 4px; background: var(--accent); }
.node.core { width: 11px; height: 11px; left: 12px; top: 13px; background: var(--accent2); box-shadow: 0 0 18px rgba(123,94,167,.65); z-index: 2; }
.node.n1 { left: 2px; top: 1px; }.node.n2 { left: 10px; top: 0; }.node.n3 { left: 2px; bottom: 0; background: var(--accent2); }.node.n4 { left: 10px; bottom: 2px; background: var(--accent2); }
.line { position: absolute; left: 7px; width: 16px; height: 1px; background: var(--accent); transform-origin: right center; }
.line.l1 { top: 8px; transform: rotate(53deg); }.line.l2 { top: 8px; left: 13px; transform: rotate(73deg); }.line.l3 { bottom: 9px; transform: rotate(-53deg); background: var(--accent2); }.line.l4 { bottom: 8px; left: 13px; transform: rotate(-74deg); background: var(--accent2); }
nav { display: flex; gap: 35px; color: var(--text2); font-size: 13px; }
nav a { transition: color .2s; } nav a:hover { color: var(--text); }
.header-actions { display: flex; align-items: center; gap: 28px; }
.language { display: flex; gap: 7px; align-items: center; font-size: 10px; color: var(--text3); }
.language button { border: 0; padding: 0; color: var(--text3); background: none; cursor: pointer; }
.language button.active { color: var(--text); }
.contact-pill { font-size: 12px; border: 1px solid rgba(79,142,247,.35); background: rgba(79,142,247,.08); padding: 11px 16px; border-radius: 999px; }
.contact-pill span, .button span { color: var(--accent); margin-left: 10px; }

.hero {
  min-height: 820px;
  height: 100svh;
  padding: 170px clamp(24px, 8vw, 130px) 82px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
}
.hero-grid {
  position: absolute; inset: 0;
  opacity: .58;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: linear-gradient(to right, #000 0%, transparent 70%);
  mask-image: linear-gradient(to right, #000 0%, transparent 70%);
}
.hero::after { content: ""; position: absolute; width: 600px; height: 600px; right: -160px; top: 100px; border-radius: 50%; background: rgba(79,142,247,.09); filter: blur(110px); }
.hero-copy { position: relative; z-index: 2; max-width: 710px; }
.eyebrow, .section-label { color: var(--text2); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 30px; }
.eyebrow span { width: 24px; height: 1px; background: var(--accent); box-shadow: 0 0 8px var(--accent); }
h1 { font-size: clamp(58px, 6.2vw, 99px); line-height: .98; letter-spacing: -.06em; margin: 0; font-weight: 600; }
h1 em, .contact h2 em { font-style: normal; color: var(--accent); }
.hero-copy > p { max-width: 620px; color: var(--text2); font-size: 16px; line-height: 1.7; margin: 32px 0; }
.hero-copy > p span[lang="grc"] { color: var(--text); letter-spacing: .04em; }
.hero-actions { display: flex; align-items: center; gap: 30px; }
.button { display: inline-flex; align-items: center; padding: 15px 20px; border-radius: 8px; font-size: 13px; font-weight: 600; }
.button.primary { background: var(--accent); color: #07101e; box-shadow: 0 10px 40px rgba(79,142,247,.25); }
.button.primary span { color: #07101e; }
.button.ghost { color: var(--text2); border-bottom: 1px solid var(--border); border-radius: 0; padding-inline: 0; }
.hero-visual { width: min(36vw, 520px); aspect-ratio: 1; position: relative; justify-self: center; z-index: 2; }
.orbit { position: absolute; border: 1px solid var(--border); border-radius: 50%; inset: 12%; }
.orbit-one { animation: spin 35s linear infinite; }
.orbit-two { inset: 26%; border-color: rgba(79,142,247,.14); animation: spin 28s linear infinite reverse; }
.orbit-three { inset: 40%; border-color: rgba(123,94,167,.22); }
.visual-core { position: absolute; inset: 41%; display: grid; place-items: center; border-radius: 50%; background: radial-gradient(circle, rgba(123,94,167,.32), rgba(79,142,247,.05)); box-shadow: 0 0 90px rgba(79,142,247,.22); transform: scale(2.5); }
.satellite { position: absolute; display: flex; align-items: center; gap: 8px; color: var(--text2); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; padding: 9px 12px; background: rgba(248,251,255,.86); border: 1px solid var(--border); border-radius: 7px; -webkit-backdrop-filter: blur(9px); backdrop-filter: blur(9px); }
.satellite b { color: var(--accent); font-size: 9px; }.sat-one { left: 2%; top: 26%; }.sat-two { right: 1%; top: 47%; }.sat-three { left: 19%; bottom: 9%; }
.signal { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); }
.signal-one { left: 5%; top: 41%; }.signal-two { left: 48%; top: 23%; background: var(--accent2); }
.hero-foot { position: absolute; bottom: 36px; left: clamp(24px, 8vw, 130px); display: flex; gap: 17px; color: var(--text3); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; align-items: center; }
.hero-foot i { width: 3px; height: 3px; background: var(--accent); border-radius: 50%; opacity: .5; }
@keyframes spin { to { transform: rotate(360deg); } }

.intro { min-height: 660px; padding: 125px clamp(24px, 8vw, 130px); background: var(--bg2); border-block: 1px solid var(--border); display: grid; grid-template-columns: .5fr 1fr .85fr; gap: 70px; }
.intro h2, .section-head h2, .product h2, .contact h2 { font-size: clamp(42px, 4vw, 66px); line-height: 1.05; letter-spacing: -.05em; margin: 0; }
.intro h2 span, .section-head h2 span, .product h2 span { color: var(--text2); font-weight: 400; }
.intro-copy p { color: var(--text2); font-size: 16px; line-height: 1.75; max-width: 540px; margin: 35px 0; }
.intro-copy .brand-story strong { display: block; margin-top: 12px; color: var(--text); font-weight: 500; }
.intro-copy .brand-story span[lang="grc"] { color: var(--accent); }
.intro-copy > a { color: var(--accent); font-size: 13px; }
.intro-copy > a span { margin-left: 12px; }
.principles { padding-top: 10px; }
.principles div { padding: 28px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 25px; }
.principles b { color: var(--accent); font-size: 10px; }.principles strong { font-size: 14px; font-weight: 500; }

.services { padding: 125px clamp(24px, 8vw, 130px); }
.section-head { display: grid; grid-template-columns: .5fr 1.85fr; margin-bottom: 70px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-grid article { background: linear-gradient(145deg, var(--bg3), var(--bg2)); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; min-height: 340px; display: flex; flex-direction: column; transition: transform .25s, border-color .25s; }
.service-grid article:hover { transform: translateY(-5px); border-color: rgba(79,142,247,.25); }
.card-top { display: flex; justify-content: space-between; font-size: 10px; color: var(--accent); }
.card-top i { font-style: normal; width: 33px; height: 33px; border: 1px solid var(--border); display: grid; place-items: center; border-radius: 50%; }
.service-grid h3 { margin: 66px 0 16px; font-size: 25px; letter-spacing: -.03em; }
.service-grid p { color: var(--text2); line-height: 1.65; font-size: 14px; margin: 0 0 30px; }
.tags { margin-top: auto; display: flex; flex-wrap: wrap; gap: 7px; }
.tags span { color: var(--text3); font-size: 9px; text-transform: uppercase; letter-spacing: .1em; border: 1px solid var(--border); border-radius: 99px; padding: 7px 10px; }

.product { min-height: 780px; padding: 110px clamp(24px, 11vw, 180px); background: var(--bg2); border-block: 1px solid var(--border); display: grid; grid-template-columns: 1fr 1fr; align-items: center; overflow: hidden; }
.product-copy { max-width: 540px; }
.product-status { display: block; margin: 40px 0 22px; color: var(--text2); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.product-status i { width: 6px; height: 6px; display: inline-block; background: #62d69a; border-radius: 50%; margin-right: 9px; box-shadow: 0 0 10px #62d69a; }
.product-copy p { color: var(--text2); font-size: 16px; line-height: 1.7; margin: 30px 0; }
.phone-wrap { position: relative; display: grid; place-items: center; min-height: 650px; }
.phone-glow { position: absolute; width: 420px; height: 420px; border-radius: 50%; background: rgba(79,142,247,.14); filter: blur(80px); }
.phone { width: 280px; height: 580px; padding: 19px 18px; background: #f5f7fb; color: #152035; border: 7px solid #8799aa; border-radius: 42px; position: relative; box-shadow: 0 35px 90px rgba(53,86,118,.24); transform: rotate(4deg); overflow: hidden; }
.phone::before { content: ""; position: absolute; width: 83px; height: 21px; border-radius: 0 0 15px 15px; background: #8799aa; top: 0; left: calc(50% - 41px); }
.phone-top { display: flex; justify-content: space-between; font-size: 9px; font-weight: 700; padding: 2px 8px 20px; }.phone-top i { width: 15px; height: 6px; background: #152035; border-radius: 2px; }
.app-brand { height: 30px; display: flex; align-items: center; overflow: hidden; }
.app-brand img { width: 126px; height: auto; margin-left: -28px; }
.phone > p { font-size: 10px; color: #8390a3; margin: 16px 0 2px; }.phone h3 { font-size: 18px; letter-spacing: -.04em; margin: 0 0 15px; }
.search { background: #e9edf4; border-radius: 10px; padding: 10px; font-size: 12px; }.search span { color: #93a0b1; margin-left: 6px; font-size: 9px; }
.chips { display: flex; gap: 5px; margin: 13px 0; }.chips span { font-size: 8px; padding: 6px 9px; border-radius: 99px; background: #e9edf4; }.chips .selected { background: var(--accent); color: white; }
.dish { background: white; padding: 8px; border-radius: 12px; box-shadow: 0 4px 18px rgba(40,55,80,.08); display: flex; gap: 10px; margin-bottom: 9px; }.dish-img { width: 65px; border-radius: 9px; background: linear-gradient(135deg, #315791, #7b5ea7); display: grid; place-items: center; color: white; font-weight: 700; }
.dish > div:last-child { display: flex; flex-direction: column; padding: 3px 0; }.dish b { font-size: 10px; }.dish small { font-size: 7px; color: #8e99a9; margin: 5px 0 8px; }.dish strong { font-size: 10px; color: #3569cc; }
.app-nav { position: absolute; bottom: 13px; left: 18px; right: 18px; display: flex; justify-content: space-around; padding-top: 9px; border-top: 1px solid #e2e6ec; color: #7e8998; }.app-nav span { display: flex; flex-direction: column; align-items: center; font-size: 13px; }.app-nav small { font-size: 6px; margin-top: 4px; }

.contact { padding: 140px 24px; text-align: center; position: relative; overflow: hidden; }
.contact::before { content: ""; position: absolute; width: 500px; height: 300px; left: 50%; top: 20%; transform: translateX(-50%); background: rgba(79,142,247,.10); filter: blur(100px); }
.contact > * { position: relative; }
.contact h2 { margin: 28px 0; font-size: clamp(50px, 6vw, 90px); }
.contact p { color: var(--text2); max-width: 520px; margin: 0 auto 35px; line-height: 1.65; }
footer { padding: 55px clamp(24px, 8vw, 130px) 35px; border-top: 1px solid var(--border); display: grid; grid-template-columns: 1fr 1fr auto; gap: 25px; align-items: center; }
footer p { color: var(--text2); font-size: 12px; line-height: 1.6; }.footer-links { display: flex; gap: 25px; font-size: 11px; color: var(--text2); } footer > small { grid-column: 1/-1; border-top: 1px solid var(--border); padding-top: 25px; color: var(--text3); font-size: 9px; }

@media (max-width: 1000px) {
  nav { display: none; }
  .language { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 150px; height: auto; min-height: 920px; }
  .hero-copy { align-self: start; }
  .hero-visual { width: 430px; position: absolute; right: -130px; bottom: 90px; opacity: .7; }
  .intro { grid-template-columns: 1fr; gap: 35px; }
  .section-head { grid-template-columns: 1fr; gap: 35px; }
  .product { padding-inline: 7vw; }
}
@media (max-width: 720px) {
  .site-header { height: 72px; }
  .brand > img { width: 184px; margin-inline: -25px; }
  .contact-pill { padding: 10px 13px; font-size: 10px; }
  .hero { min-height: 790px; padding-top: 130px; padding-bottom: 90px; align-items: start; }
  h1 { font-size: clamp(48px, 14vw, 68px); }
  .hero-copy > p { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 15px; }
  .hero-visual { width: 340px; right: -170px; bottom: 90px; opacity: .45; }
  .hero-foot { gap: 9px; font-size: 8px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid article { min-height: 290px; }
  .product { grid-template-columns: 1fr; padding-top: 90px; }
  .phone-wrap { min-height: 650px; }
  footer { grid-template-columns: 1fr; }
  footer > small { grid-column: auto; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .orbit { animation: none; }
}

.skip-link { position: fixed; left: 12px; top: -60px; z-index: 100; background: var(--accent); color: #07101e; padding: 10px 14px; border-radius: 7px; }
.skip-link:focus { top: 12px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.menu-toggle { display: none; }
.language a[aria-current="page"] { color: var(--text); }
.hero-intro { max-width: 620px; }
.intro-copy > strong { display: block; color: var(--text); font-size: 16px; line-height: 1.65; max-width: 540px; }
.principles { list-style: none; margin: 0; }
.principles li { padding: 28px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 25px; }
.principles b { color: var(--accent); font-size: 10px; }
.service-grid article > small { margin-top: auto; color: var(--text3); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.contact-cta { padding: 140px 24px; text-align: center; }
.contact-cta h2 { margin: 28px 0; font-size: clamp(50px,6vw,90px); letter-spacing: -.05em; }
.contact-cta > p:not(.section-label) { max-width: 540px; margin: 0 auto 35px; color: var(--text2); line-height: 1.7; }
.site-footer { padding: 55px clamp(24px,8vw,130px) 35px; border-top: 1px solid var(--border); display: grid; grid-template-columns: 1fr 1fr auto; gap: 25px; align-items: center; }
.site-footer .brand img { width: 214px; height: auto; margin: -31px -28px; }
.site-footer p { color: var(--text2); font-size: 12px; }
.site-footer nav { display: flex; }
.site-footer small { grid-column: 1/-1; border-top: 1px solid var(--border); padding-top: 25px; color: var(--text3); }
.page-hero { min-height: 75vh; padding: 180px clamp(24px,12vw,190px) 100px; }
.page-hero h1 { max-width: 950px; font-size: clamp(54px,7vw,100px); }
.page-hero > p:not(.section-label), .page-hero > strong { display: block; max-width: 760px; color: var(--text2); font-size: 18px; line-height: 1.75; margin-top: 30px; }
.page-hero > strong { color: var(--text); font-weight: 500; }
.contact-page form { max-width: 720px; margin-top: 50px; display: grid; gap: 22px; }
.contact-page label { display: grid; gap: 8px; color: var(--text2); font-size: 13px; }
.contact-page input, .contact-page textarea { width: 100%; border: 1px solid var(--border); background: var(--bg3); color: var(--text); border-radius: 9px; padding: 14px; font: inherit; }
.contact-page input:focus, .contact-page textarea:focus { outline: 2px solid var(--accent); outline-offset: 2px; }
.contact-page .consent { display: flex; grid-template-columns: auto 1fr; align-items: center; }
.contact-page .consent input { width: auto; }
.honeypot { position: absolute; left: -10000px; }
.form-status { padding: 13px; border-radius: 8px; }.form-status.success { background: rgba(98,214,154,.12); }.form-status.error { background: rgba(255,90,90,.12); }
.legal { max-width: 1100px; }
.legal h1 { margin-bottom: 70px; }.legal h2 { margin-top: 40px; }.legal p { color: var(--text2); line-height: 1.7; }
.legal-warning { border-left: 3px solid var(--accent2); padding: 12px 18px; background: rgba(123,94,167,.08); }

@media (max-width: 720px) {
  .menu-toggle { display: grid; gap: 4px; width: 38px; padding: 8px; border: 0; background: none; }
  .menu-toggle > span:not(.sr-only) { height: 1px; background: var(--text); }
  .site-header nav { display: none; position: absolute; top: 72px; left: 0; right: 0; padding: 25px; background: var(--bg2); border-bottom: 1px solid var(--border); flex-direction: column; }
  .site-header nav.open { display: flex; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer small { grid-column: auto; }
}


/* FileMove product */
.filemove-showcase {
  --filemove: #ff8a2a;
  min-height: 820px;
  padding: 120px clamp(24px, 8vw, 130px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  gap: clamp(55px, 8vw, 130px);
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 85% 30%, rgba(255,138,42,.13), transparent 34%), var(--bg2);
  border-block: 1px solid var(--border);
}
.filemove-copy { position: relative; z-index: 2; max-width: 590px; }
.filemove-copy .section-label { color: var(--filemove); }
.filemove-copy h2 { font-size: clamp(48px, 5vw, 78px); line-height: 1; letter-spacing: -.055em; margin: 0; }
.filemove-copy > p:not(.section-label) { color: var(--text2); font-size: 16px; line-height: 1.75; margin: 30px 0; }
.filemove-features { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0 0 34px; }
.filemove-features li { padding: 8px 12px; border: 1px solid var(--border); border-radius: 999px; color: var(--text2); background: var(--bg3); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.filemove-button { background: var(--filemove, #ff8a2a); color: #1a0c02; box-shadow: 0 12px 38px rgba(255,138,42,.2); }
.filemove-button span { color: #1a0c02; }
.filemove-gallery { min-height: 680px; position: relative; }
.filemove-gallery img { position: absolute; width: clamp(210px, 18vw, 285px); height: auto; border: 6px solid #91a5b4; border-radius: 36px; box-shadow: 0 30px 75px rgba(45,77,104,.28); }
.filemove-gallery img:nth-child(1) { left: 0; top: 85px; transform: rotate(-7deg); z-index: 1; }
.filemove-gallery img:nth-child(2) { left: 31%; top: 0; transform: rotate(2deg); z-index: 3; }
.filemove-gallery img:nth-child(3) { right: 0; top: 90px; transform: rotate(8deg); z-index: 2; }
.filemove-detail { padding-bottom: 80px; }
.filemove-detail .filemove-gallery { max-width: 1050px; min-height: 760px; margin: 30px auto 0; }
.filemove-detail-copy { --filemove: #ff8a2a; max-width: 780px; }
.filemove-detail-copy .section-label { color: var(--filemove); }

@media (max-width: 1000px) {
  .filemove-showcase { grid-template-columns: 1fr; }
  .filemove-gallery { width: min(100%, 720px); justify-self: center; }
}
@media (max-width: 720px) {
  .filemove-showcase { padding-block: 90px; gap: 55px; }
  .filemove-copy h2 { font-size: clamp(44px, 13vw, 62px); }
  .filemove-gallery { min-height: 500px; width: 100%; }
  .filemove-gallery img { width: 48%; border-width: 4px; border-radius: 27px; }
  .filemove-gallery img:nth-child(1) { left: -10%; top: 65px; }
  .filemove-gallery img:nth-child(2) { left: 26%; }
  .filemove-gallery img:nth-child(3) { right: -10%; top: 65px; }
  .filemove-detail .filemove-gallery { min-height: 520px; }
}
