/* ProOrasis critical above-the-fold CSS */

:root {
  --clr-bg: #060b12;
  --clr-bg2: #0b1524;
  --clr-bg3: #101e36;
  --clr-surface: #121f38;
  --clr-card: rgba(16, 30, 54, 0.88);
  --clr-border: rgba(56, 189, 248, 0.14);
  --clr-blue: #38bdf8;
  --clr-blue2: #0ea5e9;
  --clr-blue-deep: #0369a1;
  --clr-blue-glow: rgba(56, 189, 248, 0.32);
  --clr-text: #e8edf5;
  --clr-muted: #94a3b8;
  --clr-white: #f8fafc;
  --clr-gold: #fbbf24;
  --clr-green: #22c55e;
  --wz-form-field-bg: rgba(255, 255, 255, 0.96);

  --font-main: 'Inter', system-ui, sans-serif;
  --font-head: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  /* x10 / Χ10 brand (match orbit badge) */
  --x10-brand-color: #ff9d00;
  --x10-brand-font: 'Orbitron', 'Plus Jakarta Sans', system-ui, sans-serif;
  --x10-brand-subfont: 'Montserrat', 'Inter', system-ui, sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;

  --shadow-blue: 0 0 40px rgba(56, 189, 248, 0.12);
  --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.45), 0 1px 0 rgba(255, 255, 255, 0.04) inset;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: color 0.2s var(--ease-out), background 0.2s var(--ease-out), border-color 0.2s var(--ease-out),
    box-shadow 0.25s var(--ease-out), transform 0.25s var(--ease-out), opacity 0.2s var(--ease-out);
  --nav-height: 72px;
  /* Reserve space for wrapped phone line on small screens (refined by JS) */
  --phone-bar-height: 4.25rem;
  --header-offset: calc(var(--phone-bar-height) + var(--nav-height));
}

@media (min-width: 768px) {
  :root {
    --phone-bar-height: 2.75rem;
  }
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(56, 189, 248, 0.28);
  color: var(--clr-white);
}

:focus-visible {
  outline: 2px solid var(--clr-blue);
  outline-offset: 3px;
}

:focus:not(:focus-visible) {
  outline: none;
}

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


/* ─── Utility Classes ────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(145deg, #7dd3fc 0%, var(--clr-blue2) 55%, var(--clr-blue-deep) 100%);
  color: #041018;
  box-shadow: 0 4px 24px var(--clr-blue-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px var(--clr-blue-glow);
  color: #041018;
}

.btn-outline {
  background: transparent;
  color: var(--clr-blue);
  border: 2px solid var(--clr-blue);
}

.btn-outline:hover {
  background: var(--clr-blue);
  color: var(--clr-bg);
  transform: translateY(-2px);
}

/* Anchor buttons — prevent global link colors; WhatsApp = same readable outline style */
a.btn,
a.btn:visited {
  text-decoration: none;
}

a.btn-primary,
a.btn-primary:visited {
  color: #041018;
}

a.btn-primary:hover,
a.btn-primary:focus-visible {
  color: #041018;
}

a.btn-outline,
a.btn-outline:visited {
  background: transparent;
  color: var(--clr-blue);
  border: 2px solid var(--clr-blue);
  -webkit-text-fill-color: var(--clr-blue);
}

a.btn-outline:hover,
a.btn-outline:focus-visible,
a.btn-outline:active {
  background: var(--clr-blue);
  color: var(--clr-bg);
  border-color: var(--clr-blue);
  -webkit-text-fill-color: var(--clr-bg);
}

a.btn-ghost,
a.btn-ghost:visited {
  color: var(--clr-blue);
  -webkit-text-fill-color: var(--clr-blue);
}

a.btn-ghost:hover,
a.btn-ghost:focus-visible {
  color: var(--clr-blue);
  -webkit-text-fill-color: var(--clr-blue);
}

.btn-ghost {
  background: rgba(56, 189, 248, 0.1);
  color: var(--clr-blue);
  border: 1px solid var(--clr-border);
}

.btn-ghost:hover {
  background: rgba(56, 189, 248, 0.2);
  color: var(--clr-blue);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

/* ─── Navigation ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: var(--phone-bar-height);
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--nav-height);
  background: rgba(6, 11, 18, 0.88);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--clr-border);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(5, 10, 20, 0.98);
  box-shadow: var(--shadow-blue);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img {
  height: 55px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--clr-white);
  letter-spacing: -0.5px;
}

.nav-logo-text span {
  color: var(--clr-blue);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-links a {
  padding: 0.5rem 0.65rem;
  color: var(--clr-muted);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--clr-blue);
  background: rgba(56, 189, 248, 0.08);
}

.nav-cta {
  padding: 0.5rem 1.25rem !important;
  background: linear-gradient(135deg, var(--clr-blue), var(--clr-blue2)) !important;
  color: var(--clr-bg) !important;
  font-weight: 600 !important;
  border-radius: var(--radius-sm) !important;
}

.nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-blue);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Language switcher (navbar, upper right) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 2px;
  border-radius: var(--radius-sm);
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid var(--clr-border);
}

.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 32px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}

.lang-btn:hover {
  background: rgba(56, 189, 248, 0.15);
}

.lang-btn--active {
  background: rgba(56, 189, 248, 0.28);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.35);
}

.lang-flag {
  display: block;
  width: 22px;
  height: 15px;
  flex-shrink: 0;
  /* contain: show full flag (EL + GB have different aspect ratios; cover was cropping on phones) */
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;

.theme-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 32px;
  padding: 0;
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  background: rgba(56, 189, 248, 0.08);
  color: var(--clr-blue);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.theme-btn:hover {
  background: rgba(56, 189, 248, 0.18);
  border-color: rgba(56, 189, 248, 0.38);
  color: var(--clr-white);
}

.theme-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Dark mode (default): show sun → "switch to light" */
.theme-icon--sun  { display: block; }
.theme-icon--moon { display: none; }

.phone-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.85rem;
  text-align: center;
  background: linear-gradient(90deg, var(--clr-blue-deep) 0%, var(--clr-blue2) 50%, #0284c7 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.phone-bar a {
  color: #f0f9ff;
  font-weight: 600;
  font-size: clamp(0.78rem, 2.1vw, 0.9rem);
  letter-spacing: 0.01em;
  line-height: 1.45;
  max-width: 72rem;
}

.phone-bar a:hover {
  color: #ffffff;
  opacity: 0.95;
}

.phone-bar a strong {
  color: #ffffff;
  font-weight: 700;
}

[data-zt-theme="light"] {
  --clr-bg:        #f0f6ff;
  --clr-bg2:       #e4eef9;
  --clr-bg3:       #d6e4f5;
  --clr-surface:   #ffffff;
  --clr-card:      rgba(255, 255, 255, 0.95);
  --clr-border:    rgba(2, 132, 199, 0.2);
  --clr-blue:      #0284c7;
  --clr-blue2:     #075985;
  --clr-blue-deep: #0c4a6e;
  --clr-blue-glow: rgba(2, 132, 199, 0.2);
  --clr-heading:   #0c4a6e;
  --clr-text:      #1a3348;
  --clr-muted:     #3d5a73;
  --clr-subtle:    #5a7490;
  --clr-white:     #0c4a6e;
  --clr-gold:      #b45309;
  --clr-green:     #15803d;
  --shadow-blue:   0 0 40px rgba(2, 132, 199, 0.1);
  --shadow-card:   0 8px 30px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(0, 0, 0, 0.04) inset;
  --grad-white-blue: linear-gradient(90deg, #bae6fd 0%, #ffffff 100%);
  --grad-white-blue-hover: linear-gradient(90deg, #7dd3fc 0%, #ffffff 100%);
}

/* Light mode: show moon → "switch to dark" */
[data-zt-theme="light"] .theme-icon--sun  { display: none; }
[data-zt-theme="light"] .theme-icon--moon { display: block; }

/* ─── Light Mode: Hardcoded Color Overrides ──────────────── */

/* Navbar */
[data-zt-theme="light"] .navbar {
  background: rgba(240, 246, 255, 0.92);
  border-bottom-color: rgba(2, 132, 199, 0.15);
}

[data-zt-theme="light"] .navbar.scrolled {
  background: rgba(240, 246, 255, 0.98);
  box-shadow: 0 4px 24px rgba(2, 132, 199, 0.1);
}

[data-zt-theme="light"] .nav-links a {
  color: var(--clr-text);
}

[data-zt-theme="light"] .nav-links a:hover,
[data-zt-theme="light"] .nav-links a.active {
  color: var(--clr-blue);
}

/* Phone bar — keep blue gradient, just adjust opacity */
[data-zt-theme="light"] .phone-bar {
  background: linear-gradient(90deg, #0c4a6e 0%, #0284c7 50%, #0369a1 100%);
}

[data-zt-theme="light"] .wz-hero::before {
  background:
    linear-gradient(105deg, rgba(5, 10, 22, 0.62) 0%, rgba(5, 10, 22, 0.18) 48%, rgba(5, 10, 22, 0.28) 100%),
    linear-gradient(180deg, rgba(5, 10, 22, 0.16) 0%, transparent 50%, rgba(5, 10, 22, 0.45) 100%);
}

[data-zt-theme="light"] .wz-grad {
  background: linear-gradient(105deg, #bae6fd 0%, #38bdf8 42%, #0284c7 78%, #0c4a6e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

[data-zt-theme="light"] .wz-grad.wz-typewriter {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.5px rgba(186, 230, 253, 0.95);
  paint-order: stroke fill;
}

.wz-page {
  padding-top: var(--header-offset);
}

html:not([data-zt-theme="light"]) .wz-page {
  --clr-card: rgba(30, 52, 82, 0.82);
}

.wz-rule {
  height: 1px;
  margin: 0;
  border: 0;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.35), transparent);
}

.wz-hero {
  position: relative;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3.75rem, 8vw, 6.25rem);
  overflow: hidden;
  isolation: isolate;
  background: #050810 url('../images/wz-hero-bg.png') center center / cover no-repeat;
  --wz-hero-fg: #f8fafc;
  --wz-hero-muted: #cbd5e1;
}

.wz-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(105deg, rgba(5, 10, 22, 0.68) 0%, rgba(5, 10, 22, 0.22) 46%, rgba(5, 10, 22, 0.32) 100%),
    linear-gradient(180deg, rgba(5, 10, 22, 0.2) 0%, transparent 48%, rgba(5, 10, 22, 0.5) 100%);
  pointer-events: none;
}

.wz-hero::after {
  display: none;
}

@media (max-width: 768px) {
  .wz-hero {
    background-image: none;
    background-color: #050810;
  }

  .wz-hero::after {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: min(56.25vw, 38dvh);
    background: url('../images/wz-hero-bg.png') center center / contain no-repeat;
    z-index: 0;
    pointer-events: none;
  }

  .wz-hero::before {
    background:
      linear-gradient(180deg, rgba(5, 10, 22, 0.5) 0%, rgba(5, 10, 22, 0.78) 32%, rgba(5, 10, 22, 0.92) 100%);
  }

  [data-zt-theme="light"] .wz-hero::before {
    background:
      linear-gradient(180deg, rgba(5, 10, 22, 0.42) 0%, rgba(5, 10, 22, 0.68) 32%, rgba(5, 10, 22, 0.86) 100%);
  }
}

.wz-hero .wz-h1,
.wz-hero .wz-h1-line {
  color: var(--wz-hero-fg);
}

.wz-hero .wz-lead {
  color: var(--wz-hero-muted);
}

.wz-hero .wz-kicker {
  color: #bae6fd;
  text-shadow: 0 1px 12px rgba(5, 10, 22, 0.55);
  border-color: rgba(186, 230, 253, 0.32);
  background: rgba(5, 10, 22, 0.42);
}

.wz-hero .wz-kicker strong {
  color: var(--wz-hero-fg);
}

.wz-hero .wz-mock {
  display: none;
}

.wz-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.25rem, 5vw, 4rem);
  align-items: center;
  max-width: 44rem;
}

.wz-kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--clr-blue);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.08);
  backdrop-filter: blur(12px);
}

.wz-kicker::before {
  content: '';
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--clr-green);
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.75);
}

.wz-h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.05rem, 4.6vw, 4.15rem);
  line-height: 1.12;
  color: var(--clr-white);
  margin: 0 0 1.25rem;
  max-width: none;
}

.wz-h1-line {
  display: block;
}

/* Typewriter words always on their own single line */
.wz-h1-line--type {
  margin-top: 0.1em;
  white-space: nowrap;
  min-height: 1.12em;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.wz-h1-line--type::-webkit-scrollbar {
  display: none;
}

.wz-grad {
  background: linear-gradient(105deg, #7dd3fc 0%, #38bdf8 42%, #0369a1 78%, #0c4a6e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.wz-lead {
  font-size: clamp(1rem, 2.1vw, 1.15rem);
  color: var(--clr-muted);
  max-width: 36rem;
  line-height: 1.7;
  margin: 0 0 2rem;
}

.wz-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.wz-hero-cta .btn {
  padding-inline: clamp(1.35rem, 2.8vw, 2.15rem);
}


.wz-mock {
  position: relative;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(28, 42, 68, 0.9), rgba(18, 28, 46, 0.86)),
    var(--clr-card);
  border: 1px solid rgba(56, 189, 248, 0.24);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card), 0 26px 90px rgba(3, 105, 161, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.wz-mock::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.32), transparent 30%, rgba(34, 197, 94, 0.18) 80%);
  pointer-events: none;
  opacity: 0.55;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  padding: 1px;
  border-radius: inherit;
}

.wz-mock:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 60px rgba(56, 189, 248, 0.08);
}

.wz-mock--img {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.wz-zoom-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
  appearance: none;
}

.wz-zoom-trigger:focus-visible {
  outline: 3px solid rgba(56, 189, 248, 0.8);
  outline-offset: -6px;
}

.wz-mock-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1024 / 575;
  object-fit: contain;
  vertical-align: middle;
  transform: scale(1);
  transition: transform 420ms ease;
  transform-origin: center;
  will-change: transform;
}

/* Typewriter effect styles */
.wz-typewriter {
  display: inline-block;
  vertical-align: baseline;
}

.wz-grad.wz-typewriter {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.5px rgba(240, 249, 255, 0.98);
  paint-order: stroke fill;
}

.wz-typewriter::after {
  content: '|';
  animation: wz-blink 1s step-end infinite;
  color: var(--clr-blue);
  margin-left: 2px;
}

@keyframes wz-blink {
  from, to { opacity: 1; }
  50% { opacity: 0; }
}

.wz-hero .wz-reveal {
  opacity: 1;
  transform: none;
}


.wz-skip {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  z-index: 2000;
  padding: 0.5rem 1rem;
  background: var(--clr-blue-deep);
  color: #fff;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
}

.wz-skip:focus {
  left: 0.5rem;
  outline: 2px solid var(--clr-blue);
  outline-offset: 2px;
