@font-face {
  font-family: "Inter Variable";
  src: url("/assets/inter-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Rudaw";
  src: url("/assets/rudaw-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Rudaw";
  src: url("/assets/rudaw-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
}

:root {
  --ink: #102a36;
  --ink-soft: #49636e;
  --paper: #f3f1eb;
  --paper-deep: #e8e5dc;
  --white: #fffefa;
  --cyan: #06a5c7;
  --cyan-dark: #087b98;
  --lime: #c9f43d;
  --line: rgba(16, 42, 54, 0.14);
  --shadow: 0 24px 70px rgba(18, 45, 57, 0.15);
  --radius: 28px;
  --font-english: "Inter Variable", Inter, "Segoe UI", sans-serif;
  color-scheme: light;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-english);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { color: inherit; }

.sr-only, .skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: white;
}

.section-wrap { width: min(1180px, calc(100% - 44px)); margin-inline: auto; }
.section { position: relative; padding: 120px 0; }
.kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
}
.section-heading { max-width: 720px; margin-bottom: 54px; }
.section-heading h2, .industry-copy h2, .pricing-copy h2, .final-cta h2 {
  margin: 0;
  font-family: var(--font-english);
  font-size: clamp(34px, 3.8vw, 54px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.045em;
}
.section-heading p, .industry-copy > p, .pricing-copy > p {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  padding-top: env(safe-area-inset-top);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  border-color: var(--line);
  background: rgba(243, 241, 235, .9);
  box-shadow: 0 12px 40px rgba(16, 42, 54, .06);
  backdrop-filter: blur(20px);
}
.nav-wrap {
  width: min(1320px, calc(100% - 40px));
  height: 82px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 7px 12px rgba(16, 42, 54, .16)); }
.brand strong, .brand small { display: block; }
.brand strong { font-family: var(--font-english); font-size: 19px; letter-spacing: -.02em; }
.brand small { margin-top: 1px; color: var(--ink-soft); font-size: 11px; letter-spacing: .04em; }
.main-nav { justify-self: center; display: flex; align-items: center; gap: 30px; }
.main-nav a { position: relative; padding: 8px 0; color: #274653; font-size: 14px; font-weight: 650; }
.main-nav a::after { content: ""; position: absolute; right: 0; bottom: 2px; left: 0; height: 2px; background: var(--cyan); transform: scaleX(0); transition: transform .2s ease; }
.main-nav a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.language-switcher {
  position: relative;
  height: 40px;
  z-index: 110;
}
.language-trigger { min-width: 132px; height: 40px; display: flex; align-items: center; gap: 9px; padding: 0 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.55); color: var(--ink); cursor: pointer; box-shadow: 0 5px 18px rgba(16,42,54,.05); transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease; }
.language-trigger:hover { border-color: rgba(6,165,199,.38); background: var(--white); box-shadow: 0 9px 24px rgba(16,42,54,.1); transform: translateY(-1px); }
.language-trigger:focus-visible { outline: 3px solid rgba(6,165,199,.22); outline-offset: 2px; }
.language-current-flag, .language-option img { width: 24px; height: 17px; flex: 0 0 auto; border: 1px solid rgba(16,42,54,.1); border-radius: 5px; object-fit: cover; box-shadow: 0 2px 5px rgba(16,42,54,.09); }
.language-current-label { flex: 1; text-align: left; font: 750 12px/1 var(--font-english); }
.language-chevron { width: 11px; height: 8px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s cubic-bezier(.2,.8,.2,1); }
.language-switcher.open .language-chevron { transform: rotate(180deg); }
.language-menu { position: absolute; top: calc(100% + 10px); inset-inline-end: 0; width: 220px; padding: 7px; border: 1px solid rgba(16,42,54,.12); border-radius: 19px; background: rgba(255,254,250,.97); box-shadow: 0 22px 55px rgba(16,42,54,.18); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-8px) scale(.97); transform-origin: top right; transition: opacity .2s ease, visibility .2s ease, transform .25s cubic-bezier(.2,.8,.2,1); direction: ltr; }
.language-switcher.open .language-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0) scale(1); }
.language-option { position: relative; width: 100%; min-height: 45px; display: grid; grid-template-columns: 24px 1fr auto 16px; align-items: center; gap: 10px; padding: 6px 10px; border: 0; border-radius: 13px; background: transparent; color: var(--ink); cursor: pointer; text-align: left; transition: background .16s ease, transform .16s ease; }
.language-option:hover, .language-option:focus-visible { outline: 0; background: #edf8f7; transform: translateX(2px); }
.language-option.active { background: #e6f6f3; }
.language-option span { font-size: 13px; font-weight: 750; }
.language-option small { color: var(--ink-soft); font: 750 9px/1 var(--font-english); letter-spacing: .08em; }
.language-option > svg { width: 16px; height: 16px; fill: none; stroke: var(--cyan); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; opacity: 0; transform: scale(.65); transition: opacity .16s ease, transform .16s ease; }
.language-option.active > svg { opacity: 1; transform: scale(1); }
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: white; box-shadow: 0 12px 30px rgba(16, 42, 54, .18); }
.button-primary:hover { background: #173d4c; box-shadow: 0 16px 35px rgba(16, 42, 54, .24); }
.button-ghost { border-color: var(--line); background: rgba(255,255,255,.34); }
.button-ghost:hover { background: var(--white); }
.button-large { min-height: 56px; padding-inline: 28px; font-size: 15px; }
.menu-button { display: none; width: 44px; height: 44px; padding: 11px; border: 1px solid var(--line); border-radius: 50%; background: var(--white); }
.menu-button > span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 4px 0; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }

.hero { position: relative; min-height: 900px; padding-top: 82px; overflow: hidden; background: linear-gradient(135deg, #f6f4ee 0%, #e9f5f2 60%, #e1eef3 100%); }
.lightfall { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .55; pointer-events: none; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(rgba(16,42,54,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(16,42,54,.08) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 84%);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(3px); pointer-events: none; }
.hero-orb-one { width: 330px; height: 330px; top: 90px; right: -80px; background: rgba(201,244,61,.24); }
.hero-orb-two { width: 260px; height: 260px; bottom: 130px; left: -80px; background: rgba(6,165,199,.13); }
.hero-grid { position: relative; z-index: 2; min-height: 720px; display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: 70px; padding: 82px 0 60px; }
.hero-copy { padding-top: 20px; }
.eyebrow { display: inline-flex; align-items: center; margin-bottom: 28px; color: #365a68; font-size: 13px; font-weight: 750; letter-spacing: .03em; }
.hero h1 { max-width: 660px; margin: 0; font-family: var(--font-english); font-size: clamp(46px, 4.6vw, 70px); font-weight: 650; line-height: .94; letter-spacing: -.045em; }
.hero-lead { max-width: 600px; margin: 30px 0 0; color: #3e5a65; font-size: 19px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.play-icon { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: rgba(6,165,199,.12); color: var(--cyan-dark); font-size: 9px; }
.hero-proof { display: flex; gap: 28px; margin-top: 50px; padding-top: 26px; border-top: 1px solid var(--line); }
.hero-proof span { min-width: 98px; }
.hero-proof b, .hero-proof small { display: block; }
.hero-proof b { font-family: var(--font-english); font-size: 23px; }
.hero-proof small { margin-top: 3px; color: var(--ink-soft); font-size: 11px; }

.hero-stage { position: relative; min-width: 0; perspective: 1200px; }
.browser-frame { overflow: hidden; border: 1px solid rgba(16,42,54,.2); border-radius: 23px; background: white; box-shadow: 0 34px 80px rgba(15,51,66,.23); transform: rotateY(-4deg) rotateX(1deg); transform-origin: center left; }
.browser-bar { height: 42px; display: flex; align-items: center; gap: 6px; padding: 0 14px; border-bottom: 1px solid #dbe5e7; background: #f9fbfa; }
.browser-bar > span { width: 8px; height: 8px; border-radius: 50%; background: #c7d3d6; }
.browser-bar > div { min-width: 170px; margin-inline: auto; padding: 5px 20px; border-radius: 999px; background: #edf1ef; color: #74868c; font-size: 9px; text-align: center; }
.browser-frame > img { width: 100%; aspect-ratio: 1.9/1; object-fit: cover; object-position: top left; }
.stage-note { position: absolute; z-index: 4; display: flex; align-items: center; gap: 12px; padding: 13px 17px; border: 1px solid rgba(16,42,54,.11); border-radius: 16px; background: rgba(255,254,250,.94); box-shadow: 0 18px 50px rgba(16,42,54,.16); backdrop-filter: blur(16px); }
.stage-note-top { top: -30px; right: 4%; }
.stage-note-bottom { bottom: -36px; left: -25px; }
.stage-note small, .stage-note strong { display: block; }
.stage-note small { color: var(--ink-soft); font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.stage-note strong { margin-top: 2px; font-size: 13px; }
.pulse-bars { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; gap: 3px; border-radius: 10px; background: var(--ink); }
.pulse-bars i { width: 3px; border-radius: 3px; background: var(--lime); animation: equalize .9s ease-in-out infinite alternate; }
.pulse-bars i:nth-child(1) { height: 9px; }.pulse-bars i:nth-child(2) { height: 19px; animation-delay: -.35s; }.pulse-bars i:nth-child(3) { height: 13px; animation-delay: -.6s; }
.announcement-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: var(--cyan); color: white; font-size: 24px; }
@keyframes equalize { to { height: 22px; } }
.client-strip { position: relative; z-index: 2; border-top: 1px solid var(--line); background: rgba(255,254,250,.53); }
.client-strip .section-wrap { min-height: 98px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.client-strip .section-wrap > span { max-width: 230px; color: var(--ink-soft); font-size: 12px; line-height: 1.35; }
.client-types { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: clamp(18px, 3vw, 44px); }
.client-types b { font-family: var(--font-english); font-size: 20px; font-weight: 600; white-space: nowrap; }

.live-listen { padding: 82px 0; background: #071c25; color: white; }
.live-listen-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 90px; }
.live-intro h2 { max-width: 500px; margin: 18px 0 20px; font-family: var(--font-english); font-size: clamp(36px, 3.8vw, 54px); font-weight: 650; line-height: 1; letter-spacing: -.035em; }
.live-intro > p { max-width: 510px; margin: 0 0 30px; color: #aac0c8; line-height: 1.65; }
.live-intro .kicker { color: var(--lime); }
.live-console { min-width: 0; display: grid; grid-template-columns: 210px minmax(0,1fr); gap: 34px; padding: 26px; border: 1px solid rgba(255,255,255,.14); border-radius: 30px; background: linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.035)); box-shadow: 0 30px 70px rgba(0,0,0,.28); }
.live-art { position: relative; min-height: 230px; display: grid; place-items: center; overflow: hidden; border-radius: 23px; background: radial-gradient(circle at 50% 38%, rgba(0,179,213,.36), transparent 48%), #0c2934; }
.live-artwork { width: 72%; height: 72%; object-fit: contain; filter: drop-shadow(0 18px 25px rgba(0,0,0,.25)); }
.live-signal { position: absolute; right: 15px; bottom: 14px; height: 28px; display: flex; align-items: end; gap: 3px; }
.live-signal i { width: 4px; border-radius: 3px; background: var(--lime); animation: equalize .85s ease-in-out infinite alternate; }
.live-signal i:nth-child(1) { height: 8px; }.live-signal i:nth-child(2) { height: 17px; animation-delay: -.3s; }.live-signal i:nth-child(3) { height: 26px; animation-delay: -.55s; }
.live-details { min-width: 0; align-self: center; }
.live-status { color: var(--lime); font-size: 10px; font-weight: 850; letter-spacing: .14em; }
.live-track { overflow: hidden; margin: 15px 0 8px; font-family: var(--font-english); font-size: 26px; font-weight: 600; line-height: 1.08; text-overflow: ellipsis; white-space: nowrap; }
.live-details > p { overflow: hidden; margin: 0; color: #a9bec7; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.live-progress { height: 4px; margin: 26px 0 20px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.12); }
.live-progress span { width: 0; height: 100%; display: block; border-radius: inherit; background: linear-gradient(90deg, var(--cyan), var(--lime)); transition: width .2s linear; }
.live-controls { display: flex; align-items: center; gap: 10px; }
.live-controls button { min-height: 40px; padding: 0 14px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: transparent; color: white; cursor: pointer; font-size: 11px; font-weight: 800; }
.live-controls button:disabled { cursor: not-allowed; opacity: .38; }
.live-controls .live-play-toggle { width: 44px; padding: 0; border-color: var(--lime); background: var(--lime); color: var(--ink); font-size: 14px; }
.live-details .live-privacy { margin-top: 18px; color: #708c97; font-size: 10px; white-space: normal; }
.live-console[data-state="loading"] { opacity: .72; }
.live-console[data-state="playing"] .live-art { box-shadow: inset 0 0 0 1px rgba(201,244,61,.2); }

.solutions { background: var(--white); }
.solution-grid { display: grid; grid-template-columns: 1.15fr .925fr .925fr; gap: 18px; }
.solution-card { min-height: 430px; position: relative; overflow: hidden; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #f5f3ed; }
.solution-featured { background: var(--ink); color: white; }
.card-number { position: absolute; top: 26px; right: 28px; color: #78909a; font-family: var(--font-english); font-size: 15px; }
.solution-card h3 { max-width: 340px; margin: 230px 0 12px; font-family: var(--font-english); font-size: 28px; font-weight: 650; line-height: 1.08; }
.solution-card p { max-width: 390px; margin: 0; color: #627984; line-height: 1.6; }
.solution-featured p { color: #b7cad1; }
.card-icon { width: 76px; height: 76px; margin-top: 30px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 22px; background: var(--white); color: var(--cyan); font-size: 36px; }
.sound-wave { height: 145px; margin-top: 46px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.sound-wave i { width: 10px; border-radius: 10px; background: linear-gradient(to top, var(--cyan), var(--lime)); animation: wave 1.6s ease-in-out infinite alternate; }
.sound-wave i:nth-child(1), .sound-wave i:nth-child(9) { height: 28px; }.sound-wave i:nth-child(2), .sound-wave i:nth-child(8) { height: 55px; animation-delay: -.3s; }.sound-wave i:nth-child(3), .sound-wave i:nth-child(7) { height: 90px; animation-delay: -.7s; }.sound-wave i:nth-child(4), .sound-wave i:nth-child(6) { height: 125px; animation-delay: -1s; }.sound-wave i:nth-child(5) { height: 78px; animation-delay: -.5s; }
@keyframes wave { to { transform: scaleY(.55); opacity: .72; } }

.product { background: var(--paper-deep); }
.split-heading { max-width: none; display: grid; grid-template-columns: 1fr 430px; gap: 60px; align-items: end; }
.split-heading p { margin: 0 0 4px; }
.tour-shell { overflow: hidden; border: 1px solid rgba(16,42,54,.18); border-radius: 32px; background: var(--ink); color: white; box-shadow: var(--shadow); }
.tour-tabs { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid rgba(255,255,255,.15); }
.tour-tab { min-height: 78px; display: flex; align-items: center; gap: 14px; padding: 0 24px; border: 0; border-right: 1px solid rgba(255,255,255,.12); background: transparent; color: #a9bec7; cursor: pointer; text-align: left; }
.tour-tab:last-child { border-right: 0; }
.tour-tab span { color: #6e8791; font-size: 11px; }
.tour-tab b { font-size: 14px; }
.tour-tab.active { background: var(--lime); color: var(--ink); }
.tour-tab.active span { color: #52651f; }
.tour-content { display: grid; grid-template-columns: 310px minmax(0, 1fr); gap: 36px; padding: 34px; }
.tour-copy { padding: 25px 6px 10px; }
.tour-index { color: var(--lime); font-size: 11px; font-weight: 800; letter-spacing: .16em; }
.tour-copy h3 { margin: 32px 0 18px; font-family: var(--font-english); font-size: 32px; font-weight: 650; line-height: 1.08; }
.tour-copy p { color: #aac0c8; line-height: 1.65; }
.tour-copy ul { display: grid; gap: 12px; margin: 28px 0 0; padding: 0; list-style: none; }
.tour-copy li { position: relative; padding-left: 23px; color: #d7e2e6; font-size: 13px; }
.tour-copy li::before { content: "✓"; position: absolute; left: 0; color: var(--lime); }
.tour-image { position: relative; margin: 0; padding: 8px; border-radius: 19px; background: white; }
.tour-image img { width: 100%; border-radius: 13px; aspect-ratio: 1.92/1; object-fit: cover; object-position: top left; }
.tour-image figcaption { position: absolute; right: 17px; bottom: 17px; padding: 7px 10px; border-radius: 999px; background: rgba(16,42,54,.88); color: white; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }

.industries { background: #d9f0f1; }
.industry-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: center; }
.industry-copy > p { max-width: 500px; }
.text-link { display: inline-flex; align-items: center; gap: 16px; margin-top: 32px; padding-bottom: 7px; border-bottom: 1px solid var(--ink); font-weight: 750; }
.industry-list { border-top: 1px solid rgba(16,42,54,.25); }
.industry-list article { min-height: 145px; display: grid; grid-template-columns: 54px 1fr; align-items: center; gap: 18px; border-bottom: 1px solid rgba(16,42,54,.25); }
.industry-list article > span { align-self: start; padding-top: 35px; color: var(--cyan-dark); font-family: var(--font-english); font-size: 13px; }
.industry-list h3 { margin: 0 0 8px; font-family: var(--font-english); font-size: 27px; font-weight: 650; }
.industry-list p { margin: 0; color: var(--ink-soft); }

.pricing { background: var(--ink); color: white; }
.pricing-grid { display: grid; grid-template-columns: 1fr 490px; gap: 100px; align-items: center; }
.pricing .kicker { color: var(--lime); }
.pricing-copy > p { color: #aec1c8; }
.price-note { max-width: 500px; display: grid; grid-template-columns: 50px 1fr; gap: 16px; margin-top: 54px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.17); }
.price-note span { color: var(--lime); font-size: 11px; font-weight: 800; }
.price-note p { margin: 0; color: #c4d2d7; line-height: 1.55; }
.price-card { overflow: hidden; border-radius: 32px; background: var(--white); color: var(--ink); box-shadow: 0 34px 80px rgba(0,0,0,.26); }
.price-card-top { padding: 32px 38px 26px; background: var(--lime); }
.price-card-top > span { font-size: 11px; font-weight: 850; letter-spacing: .14em; }
.price-card-top strong { display: block; margin-top: 13px; font-family: var(--font-english); font-size: 78px; font-weight: 650; line-height: .84; letter-spacing: -.045em; }
.price-card-top sup { font-size: 30px; vertical-align: top; }
.price-card-top p { margin: 16px 0 0; color: #395052; }
.price-card-body { padding: 30px 38px 36px; }
.renewal { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 23px; border-bottom: 1px solid var(--line); }
.renewal span { color: var(--ink-soft); font-size: 13px; }
.renewal b { font-family: var(--font-english); font-size: 24px; }
.renewal small { color: var(--ink-soft); font-family: var(--font-english); font-size: 10px; }
.price-card ul { display: grid; gap: 15px; margin: 27px 0; padding: 0; list-style: none; }
.price-card li { position: relative; padding-left: 27px; font-size: 14px; }
.price-card li::before { content: "✓"; position: absolute; left: 0; width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; background: #e1f5ec; color: #16865b; font-size: 10px; font-weight: 900; }
.price-card .button { width: 100%; }

.payment { background: var(--white); }
.payment-wrap > .section-heading { margin-inline: auto; text-align: center; }
.payment-wrap > .section-heading p { margin-inline: auto; }
.payment-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 20px; }
.payment-method { position: relative; min-width: 0; display: grid; gap: 28px; padding: 34px; border: 1px solid var(--line); border-radius: 30px; background: #f6f4ef; }
.qi-method { grid-template-columns: 70px minmax(0,1fr) 215px; align-items: center; }
.bank-method { grid-template-columns: 70px 1fr; align-content: start; background: #f1f4f4; }
.payment-logo { width: 66px; height: 66px; display: grid; place-items: center; overflow: hidden; border-radius: 20px; background: white; box-shadow: 0 12px 30px rgba(16,42,54,.1); }
.payment-logo img { width: 72%; height: 72%; object-fit: contain; }
.payment-logo.mastercard img { width: 78%; height: auto; }
.payment-label { color: var(--cyan-dark); font-size: 11px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.payment-method h3 { margin: 8px 0 12px; font-family: var(--font-english); font-size: 28px; font-weight: 650; line-height: 1.08; }
.payment-method p { color: var(--ink-soft); line-height: 1.55; }
.payment-number { margin-top: 20px; padding: 16px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.payment-number small, .payment-number strong { display: block; }
.payment-number small { color: var(--ink-soft); font-size: 11px; }
.payment-number strong { margin-top: 6px; font-family: var(--font-english); font-size: 24px; letter-spacing: .02em; }
.payment-number.iban strong { overflow-wrap: anywhere; font-family: Consolas, monospace; font-size: 15px; }
.copy-payment { margin-top: 11px; padding: 0; border: 0; border-bottom: 1px solid var(--ink); background: none; color: var(--ink); font-size: 12px; font-weight: 800; cursor: pointer; }
.payment-confirm { width: 100%; min-height: 48px; margin-top: 16px; background: var(--ink); color: white; }
.payment-confirm:hover { background: #075f70; }
.receipt-help, .whatsapp-hint { display: block; margin-top: 10px; color: var(--ink-soft); font-size: 11px; line-height: 1.45; }
.whatsapp-hint { text-align: center; }
.qr-card { margin: 0; padding: 12px; border-radius: 22px; background: white; box-shadow: 0 18px 45px rgba(16,42,54,.12); }
.qr-card > img { width: 100%; aspect-ratio: 1/1; border-radius: 14px; object-fit: cover; }
.qr-card figcaption { margin-top: 10px; text-align: center; }
.qr-card figcaption span, .qr-card figcaption b { display: block; }
.qr-card figcaption span { color: var(--ink-soft); font-size: 10px; }
.qr-card figcaption b { margin-top: 3px; font-family: Consolas, monospace; font-size: 11px; }

.final-cta { position: relative; overflow: hidden; padding: 110px 0; background: var(--cyan-dark); color: white; text-align: center; }
.final-cta::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 100%, rgba(201,244,61,.26), transparent 45%); pointer-events: none; }
.final-cta .section-wrap { position: relative; z-index: 2; }
.final-cta .kicker { color: var(--lime); }
.final-cta h2 { max-width: 800px; margin-inline: auto; }
.final-cta p { max-width: 580px; margin: 25px auto 34px; color: #d9f4f6; font-size: 18px; line-height: 1.6; }
.final-cta .section-wrap > div { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.button-light { background: var(--lime); color: var(--ink); }
.button-outline-light { border-color: rgba(255,255,255,.35); color: white; }
.lightfall-footer { opacity: .25; }

.site-footer { padding: 60px 0 calc(24px + env(safe-area-inset-bottom)); background: #0c2029; color: white; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: start; gap: 40px; }
.footer-brand .brand-mark { background: rgba(255,255,255,.08); }
.footer-brand small { color: #9eb3bc; }
.footer-grid > p { max-width: 360px; margin: 0; color: #a9bcc4; line-height: 1.6; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 20px; justify-self: end; }
.footer-links a { color: #d8e3e7; font-size: 13px; }
.footer-links a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.13); color: #849da7; font-size: 11px; }
.toast { position: fixed; z-index: 200; right: 24px; bottom: calc(24px + env(safe-area-inset-bottom)); padding: 12px 17px; border-radius: 12px; background: var(--ink); color: white; box-shadow: var(--shadow); opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
.toast.show { opacity: 1; transform: translateY(0); }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
.delay-one { transition-delay: .12s; }.delay-two { transition-delay: .22s; }

[dir="rtl"] body,
[dir="rtl"] button,
[dir="rtl"] input,
[dir="rtl"] select,
[dir="rtl"] textarea { font-family: "Rudaw", Tahoma, sans-serif; }
[dir="rtl"] .brand strong,
[dir="rtl"] .hero h1,
[dir="rtl"] .hero-proof b,
[dir="rtl"] .client-types b,
[dir="rtl"] .section-heading h2,
[dir="rtl"] .solution-card h3,
[dir="rtl"] .tour-copy h3,
[dir="rtl"] .industry-copy h2,
[dir="rtl"] .industry-list h3,
[dir="rtl"] .pricing-copy h2,
[dir="rtl"] .payment-method h3,
[dir="rtl"] .live-intro h2,
[dir="rtl"] .live-track,
[dir="rtl"] .final-cta h2 { font-family: "Rudaw", Tahoma, sans-serif; font-weight: 700; letter-spacing: 0; }
[dir="rtl"] .tour-copy li, [dir="rtl"] .price-card li { padding-left: 0; padding-right: 27px; }
[dir="rtl"] .tour-copy li::before, [dir="rtl"] .price-card li::before { left: auto; right: 0; }
[dir="rtl"] .card-number { right: auto; left: 28px; }
[dir="rtl"] .tour-tab { text-align: right; border-right: 0; border-left: 1px solid rgba(255,255,255,.12); }
[dir="rtl"] .browser-frame { transform: rotateY(4deg) rotateX(1deg); transform-origin: center right; }

@media (max-width: 1080px) {
  .main-nav { display: none; }
  .nav-wrap { grid-template-columns: 1fr auto; }
  .nav-actions { justify-self: end; }
  .hero-grid { grid-template-columns: 1fr; gap: 80px; padding-top: 100px; }
  .hero-copy { max-width: 760px; }
  .hero-stage { width: min(850px, 92%); margin-inline: auto; }
  .client-strip { margin-top: 70px; }
  .live-listen-grid { gap: 45px; }
  .live-console { grid-template-columns: 170px minmax(0,1fr); }
  .solution-grid { grid-template-columns: 1fr 1fr; }
  .solution-featured { grid-column: 1 / -1; }
  .solution-card { min-height: 380px; }
  .solution-featured h3 { margin-top: 180px; }
  .split-heading { grid-template-columns: 1fr; gap: 20px; }
  .industry-grid, .pricing-grid { gap: 54px; }
  .qi-method { grid-template-columns: 64px 1fr; }
  .qi-method .qr-card { grid-column: 1 / -1; width: min(250px, 100%); margin-inline: auto; }
}

@media (max-width: 780px) {
  .section-wrap { width: min(100% - 30px, 620px); }
  .section { padding: 82px 0; }
  .site-header { padding-top: max(env(safe-area-inset-top), 4px); }
  .nav-wrap { width: calc(100% - 24px); height: 70px; grid-template-columns: auto auto; gap: 10px; }
  .brand strong { font-size: 16px; }.brand small { font-size: 9px; }.brand-mark { width: 42px; height: 42px; }
  .menu-button { display: block; justify-self: end; }
  .nav-actions { position: fixed; z-index: 102; top: calc(286px + env(safe-area-inset-top)); right: 14px; left: 14px; width: auto; justify-self: stretch; display: none; flex-direction: column; align-items: stretch; padding: 14px 18px 18px; border: 1px solid var(--line); border-top: 0; border-radius: 0 0 22px 22px; background: rgba(255,254,250,.98); box-shadow: var(--shadow); }
  .nav-actions.open { display: flex; }
  .nav-actions .button { width: 100%; min-height: 48px; }
  .language-switcher, .language-trigger { width: 100%; height: 48px; }
  .language-trigger { padding-inline: 16px; }
  .language-current-label { font-size: 14px; }
  .language-menu { width: 100%; top: calc(100% + 7px); }
  .main-nav { position: fixed; z-index: 101; top: calc(82px + env(safe-area-inset-top)); right: 14px; left: 14px; width: auto; justify-self: stretch; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 10px 22px 18px; border: 1px solid var(--line); border-bottom: 0; border-radius: 22px 22px 0 0; background: rgba(255,254,250,.98); box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .menu-button[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .hero { min-height: auto; padding-top: 70px; }
  .hero-grid { min-height: auto; padding: 76px 0 50px; gap: 68px; }
  .hero h1 { font-size: clamp(44px, 13vw, 56px); }
  .hero-lead { font-size: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-proof { gap: 12px; justify-content: space-between; }
  .hero-proof span { min-width: 0; flex: 1; }
  .hero-proof b { font-size: 19px; }
  .browser-frame { border-radius: 14px; transform: none; }
  .browser-bar { height: 30px; }
  .browser-bar > div { display: none; }
  .stage-note { padding: 10px; }
  .stage-note-top { top: -25px; right: -3px; }
  .stage-note-bottom { bottom: -38px; left: -4px; }
  .pulse-bars, .announcement-icon { width: 30px; height: 30px; }
  .client-strip .section-wrap { padding: 22px 0; display: block; }
  .client-strip .section-wrap > span { display: block; margin-bottom: 20px; }
  .client-types { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .client-types b { font-size: 18px; }
  .live-listen { padding: 72px 0; }
  .live-listen-grid { grid-template-columns: 1fr; gap: 42px; }
  .live-intro h2 { font-size: clamp(34px, 11vw, 48px); }
  .live-console { grid-template-columns: 1fr; gap: 22px; padding: 20px; }
  .live-art { min-height: 210px; }
  .live-track { font-size: 23px; }
  .live-controls { flex-wrap: wrap; }
  .live-controls .live-play-toggle { flex: 0 0 44px; }
  .section-heading h2, .industry-copy h2, .pricing-copy h2, .final-cta h2 { font-size: clamp(34px, 11vw, 48px); }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-featured { grid-column: auto; }
  .solution-card { min-height: 360px; padding: 25px; }
  .solution-card h3 { margin-top: 180px; font-size: 26px; }
  .tour-tabs { grid-template-columns: 1fr 1fr; }
  .tour-tab { min-height: 62px; padding: 0 16px; border-bottom: 1px solid rgba(255,255,255,.12); }
  .tour-content { grid-template-columns: 1fr; padding: 20px; gap: 25px; }
  .tour-copy { padding: 12px 4px 0; }
  .tour-copy h3 { font-size: 28px; margin-top: 22px; }
  .industry-grid, .pricing-grid, .payment-grid { grid-template-columns: 1fr; }
  .industry-grid, .pricing-grid { gap: 55px; }
  .price-card-top, .price-card-body { padding-inline: 28px; }
  .payment-method { padding: 24px; }
  .qi-method, .bank-method { grid-template-columns: 55px 1fr; gap: 18px; }
  .payment-logo { width: 54px; height: 54px; border-radius: 16px; }
  .payment-method h3 { font-size: 23px; }
  .payment-number strong { font-size: 20px; }
  .bank-method .payment-number { grid-column: 1 / -1; }
  .final-cta { padding: 82px 0; }
  .final-cta .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-self: start; }
  .footer-bottom { flex-direction: column; }
  .toast { right: 15px; left: 15px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .lightfall { display: none; }
  .reveal { opacity: 1; transform: none; }
}
