:root {
  --bg-primary: #07111f;
  --bg-secondary: #0d1b2f;
  --bg-tertiary: #112540;
  --surface: rgba(9, 18, 33, 0.72);
  --surface-strong: rgba(13, 27, 47, 0.92);
  --surface-soft: rgba(255, 255, 255, 0.04);
  --surface-border: rgba(142, 212, 255, 0.18);
  --surface-border-strong: rgba(106, 226, 255, 0.42);
  --accent-blue: #47a7ff;
  --accent-cyan: #6ae2ff;
  --accent-gold: #ffbf66;
  --text-primary: #eef5ff;
  --text-secondary: #c0d2e8;
  --text-muted: #8ea5c2;
  --text-gray: #8ea5c2;
  --shadow-lg: 0 24px 70px rgba(2, 8, 18, 0.42);
  --shadow-md: 0 16px 40px rgba(2, 8, 18, 0.28);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1200px;
  --nav-height: 82px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--text-primary);
  background:
    radial-gradient(circle at top left, rgba(71, 167, 255, 0.18), transparent 34%),
    radial-gradient(circle at 85% 18%, rgba(106, 226, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #06101c 0%, #08111f 28%, #091726 65%, #08111f 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body.rtl-layout {
  font-family: "Noto Sans Arabic", "Inter", sans-serif;
}

a,
button,
input,
textarea,
select {
  font: inherit;
}

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

.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(71, 167, 255, 0.12), transparent 26%),
    radial-gradient(circle at 82% 14%, rgba(106, 226, 255, 0.09), transparent 22%),
    radial-gradient(circle at 50% 80%, rgba(255, 191, 102, 0.05), transparent 20%);
  filter: blur(10px);
}

.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.12) 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.12) 80%, transparent 100%);
  opacity: 0.26;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3rem, 5vw, 5.6rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  color: var(--text-secondary);
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #bcdfff 42%, #6ae2ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-cyan {
  color: var(--accent-cyan);
}

.container {
  width: min(var(--max-width), calc(100% - 2.5rem));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  color: var(--accent-gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold));
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.6rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  color: #06111f;
  background: linear-gradient(135deg, #d4f6ff 0%, #6ae2ff 100%);
  box-shadow: 0 18px 40px rgba(106, 226, 255, 0.25);
}

.btn-outline {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.btn-outline:hover {
  border-color: var(--surface-border-strong);
  box-shadow: 0 14px 34px rgba(2, 8, 18, 0.22);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(6, 14, 24, 0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.top-bar {
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.8rem;
}

.top-bar-container,
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-container {
  min-height: 42px;
}

.top-bar-info,
.top-bar-socials,
.nav-right,
.nav-links {
  display: flex;
  align-items: center;
}

.top-bar-info,
.top-bar-socials {
  gap: 1.25rem;
}

.top-bar a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.top-bar a:hover,
.nav-links a:hover,
.social-icon:hover,
.store-link:hover,
.contact-info-item a:hover,
.mobile-socials a:hover {
  color: var(--accent-cyan);
}

.top-bar svg {
  color: var(--accent-cyan);
}

.nav-container {
  min-height: var(--nav-height);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.logo img {
  height: 42px;
  width: auto;
}

.nav-right {
  gap: 1.2rem;
}

.nav-links {
  gap: 1.7rem;
  list-style: none;
}

.nav-links a {
  position: relative;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a.active::after {
  transform: scaleX(1);
}

.mobile-only-contact {
  display: none;
}

.lang-selector {
  min-width: 128px;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  outline: none;
}

.lang-selector:focus {
  border-color: var(--surface-border-strong);
  box-shadow: 0 0 0 4px rgba(106, 226, 255, 0.1);
}

.lang-selector option {
  color: var(--text-primary);
  background: var(--bg-secondary);
}

.mobile-menu-btn {
  display: none;
  border: 0;
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
}

main {
  padding-top: calc(var(--nav-height) + 42px);
}

.hero,
.services,
.tech-stack,
.clients,
.contact {
  position: relative;
}

.hero {
  padding: 5.5rem 0 4.5rem;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 3rem;
  align-items: center;
}

.hero-content {
  max-width: 660px;
}

.hero .subheadline {
  max-width: 44rem;
  margin: 1.4rem 0 2.1rem;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--text-secondary);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  display: flex;
  min-height: 540px;
}

.hero-showcase {
  position: relative;
  flex: 1;
  width: 100%;
  min-height: 540px;
  padding: 1.6rem;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(6, 15, 27, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: auto auto -30% -12%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(71, 167, 255, 0.28), transparent 68%);
}

.hero-showcase::after {
  content: "";
  position: absolute;
  inset: 12% -14% auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(106, 226, 255, 0.24), transparent 68%);
}

.hero-main-card,
.hero-robot-card,
.hero-contact-card {
  position: absolute;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
}

.hero-main-card {
  inset: 2rem 15.4rem 7.2rem 1.2rem;
}

.hero-robot-card {
  top: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 235px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.hero-main-card img,
.hero-robot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-robot-card img {
  object-position: center top;
}

.hero-contact-card {
  left: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 225px;
  padding: 1rem 1.1rem;
  background: rgba(6, 14, 24, 0.78);
}

.hero-contact-card span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.hero-contact-card strong {
  color: var(--text-primary);
  font-size: 1rem;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.75;
}

.hero-orb-one {
  top: -1.5rem;
  right: 5rem;
  width: 120px;
  height: 120px;
  background: rgba(71, 167, 255, 0.24);
}

.hero-orb-two {
  bottom: 4rem;
  left: -1rem;
  width: 92px;
  height: 92px;
  background: rgba(255, 191, 102, 0.18);
}

.services {
  padding: 4rem 0 5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.35rem;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-md);
  border: 1px solid var(--surface-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    var(--surface);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(106, 226, 255, 0.08), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--surface-border-strong);
  box-shadow: 0 26px 48px rgba(2, 8, 18, 0.34);
}

.service-card:hover::before {
  opacity: 1;
}

.service-image {
  height: 220px;
  margin-bottom: 1rem;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.06);
}

.service-kicker,
.service-arrow {
  position: relative;
  z-index: 1;
}

.service-kicker {
  margin-bottom: 0.65rem;
  color: var(--accent-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.service-card h3,
.service-card p {
  position: relative;
  z-index: 1;
}

.service-card h3 {
  margin-bottom: 0.7rem;
}

.service-card p {
  color: var(--text-muted);
}

.service-arrow {
  margin-top: auto;
  padding-top: 1.3rem;
  color: var(--accent-cyan);
  font-weight: 700;
}

.service-arrow::after {
  content: " ->";
}

.tech-stack {
  padding: 1.5rem 0;
  margin: 1rem 0 5rem;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  direction: ltr;
}

.ticker-wrap {
  overflow: hidden;
  padding-left: 100%;
}

@keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

.ticker {
  display: inline-block;
  white-space: nowrap;
  padding-right: 100%;
  animation: ticker 120s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0 2.2rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
  font-weight: 600;
  opacity: 0.78;
}

.ticker-item:hover {
  opacity: 1;
  color: var(--text-primary);
}

.ticker-item img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.clients {
  padding: 2rem 0 5rem;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.client-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 1.15rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(2, 8, 18, 0.16);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.client-logo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(106, 226, 255, 0.3);
}

.client-logo-card img {
  width: 100%;
  max-width: 120px;
  max-height: 68px;
  object-fit: contain;
}

.clients-more {
  margin-top: 1.75rem;
  text-align: center;
  color: var(--accent-gold);
  font-weight: 600;
}

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

.contact-container {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    var(--surface-strong);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-lg);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.75rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(71, 167, 255, 0.14), rgba(71, 167, 255, 0.05));
  border: 1px solid rgba(71, 167, 255, 0.16);
}

.contact-copy {
  max-width: 28rem;
  color: var(--text-secondary);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-primary);
  font-weight: 600;
}

.contact-info-item svg,
.store-link svg {
  color: var(--accent-cyan);
}

.contact-info-item a {
  color: inherit;
  text-decoration: none;
}

.contact-social-mini {
  display: flex;
  gap: 1rem;
  margin-top: 0.4rem;
}

.contact-social-mini a,
.social-icon {
  color: var(--text-primary);
  transition: transform 0.2s ease, color 0.2s ease;
}

.contact-social-mini a:hover,
.social-icon:hover {
  transform: translateY(-2px);
}

.contact-social-mini svg,
.social-icon svg {
  width: 24px;
  height: 24px;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--text-primary);
  font-size: 0.92rem;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 1rem 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-control:focus {
  border-color: var(--surface-border-strong);
  box-shadow: 0 0 0 4px rgba(106, 226, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.contact-btn {
  width: 100%;
  margin-top: 0.8rem;
}

footer {
  padding: 0 0 3rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(7, 16, 28, 0.78);
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-secondary);
}

.footer-contact a {
  color: var(--text-primary);
  text-decoration: none;
}

.divider {
  opacity: 0.28;
}

.footer-socials,
.footer-stores {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-socials p,
.footer-stores p {
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.social-icons,
.store-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.store-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.store-link:hover {
  transform: translateY(-2px);
  border-color: rgba(106, 226, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(106, 226, 255, 0.95);
  box-shadow: 0 0 12px rgba(106, 226, 255, 0.6);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.service-features-box {
  width: 100%;
  max-width: 820px;
  margin-top: 3rem;
  padding: 2rem;
  border-radius: 22px;
  border: 1px solid rgba(106, 226, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(7, 16, 28, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.rtl-layout .service-features-box {
  text-align: right;
}

.feature-list {
  list-style: none;
}

.feature-item {
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-item::before {
  content: "▹";
  margin-right: 0.75rem;
  color: var(--accent-cyan);
  font-size: 1.3rem;
  line-height: 1;
}

.rtl-layout .feature-item::before {
  margin-right: 0;
  margin-left: 0.75rem;
  transform: scaleX(-1);
}

[dir="rtl"] .hero-btns,
[dir="rtl"] .hero-badges {
  justify-content: flex-start;
}

[dir="rtl"] .service-card,
[dir="rtl"] .form-label,
[dir="rtl"] .form-control {
  text-align: right;
}

[dir="rtl"] .ticker-item {
  flex-direction: row-reverse;
}

[dir="rtl"] .hero-contact-card,
[dir="rtl"] .contact-info-item,
[dir="rtl"] .footer-contact {
  direction: rtl;
}

[dir="rtl"] [data-i18n="contact_phone"] {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}

.harikar-hero {
  min-height: calc(100vh - var(--nav-height) - 42px);
  padding: 5rem 0 5.5rem;
  display: flex;
  align-items: center;
}

.harikar-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: 2rem;
  align-items: center;
}

.harikar-copy {
  max-width: 650px;
}

.harikar-logo-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 430px);
  min-height: 245px;
  padding: 1.4rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 191, 102, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.94));
  box-shadow: 0 22px 52px rgba(2, 8, 18, 0.28);
}

.harikar-logo-panel img {
  width: 100%;
  max-width: 365px;
  height: auto;
}

.harikar-copy h1 {
  margin: 1.6rem 0 0.55rem;
  font-size: 4.7rem;
  letter-spacing: 0;
}

.harikar-tagline {
  margin-bottom: 1rem;
  color: var(--accent-gold);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
}

.harikar-subheadline {
  max-width: 38rem;
  margin-bottom: 1.7rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.harikar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.harikar-store-button {
  gap: 0.65rem;
}

.harikar-downloads {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.download-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 390px;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--surface-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(7, 16, 28, 0.82);
  box-shadow: var(--shadow-md);
}

.download-card-header {
  width: 100%;
  min-height: 76px;
  margin-bottom: 1rem;
  text-align: center;
}

.download-platform {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  justify-content: center;
  min-width: 92px;
  margin-bottom: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 191, 102, 0.12);
  color: var(--accent-gold);
  font-size: 0.86rem;
  font-weight: 800;
}

.download-platform svg {
  flex: 0 0 auto;
}

.download-card-header p {
  color: var(--text-secondary);
  font-weight: 700;
}

.qr-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 210px);
  aspect-ratio: 1;
  padding: 0.75rem;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 16px 32px rgba(2, 8, 18, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.qr-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(2, 8, 18, 0.3);
}

.qr-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.download-caption {
  margin-top: 1rem;
  color: var(--accent-cyan);
  font-weight: 800;
}

[dir="rtl"] .harikar-copy {
  text-align: right;
}

[dir="rtl"] .harikar-actions {
  justify-content: flex-start;
}

@media (max-width: 960px) {
  .hero-shell,
  .contact-container {
    grid-template-columns: 1fr;
  }

  .harikar-hero-grid {
    grid-template-columns: 1fr;
  }

  .harikar-copy {
    max-width: none;
  }

  .harikar-downloads {
    max-width: 680px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .hero-showcase {
    min-height: 480px;
  }

  .hero-content {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  main {
    padding-top: var(--nav-height);
  }

  .nav-right {
    gap: 0.8rem;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
    background: rgba(7, 16, 28, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-115%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-only-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin-top: 1rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--text-primary);
    text-decoration: none;
  }

  .mobile-contact-item svg {
    color: var(--accent-cyan);
  }

  .mobile-socials {
    display: flex;
    gap: 1rem;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-visual {
    min-height: 400px;
  }

  .hero-showcase {
    min-height: 400px;
  }

  .hero-main-card {
    inset: 1rem 8.2rem 6.2rem 0.75rem;
  }

  .hero-robot-card {
    top: 1rem;
    right: 0.75rem;
    bottom: 7.2rem;
    width: 110px;
  }

  .hero-contact-card {
    left: 1rem;
    right: 1rem;
    min-width: 0;
  }

  .hero-btns,
  .harikar-actions,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .services,
  .contact {
    padding-bottom: 4.5rem;
  }

  .contact-container,
  .footer-content {
    padding: 1.4rem;
  }

  .contact-details {
    padding: 1.2rem;
  }

  .footer-top,
  .footer-bottom,
  .footer-contact,
  .footer-socials,
  .footer-stores {
    align-items: flex-start;
  }

  .harikar-hero {
    min-height: auto;
    padding-top: 4rem;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(var(--max-width), calc(100% - 1.25rem));
  }

  h1 {
    font-size: 2.6rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-badges {
    gap: 0.6rem;
  }

  .hero-badge {
    width: 100%;
    justify-content: center;
  }

  .service-image {
    height: 190px;
  }

  .harikar-logo-panel {
    min-height: 190px;
    padding: 1rem;
  }

  .harikar-copy h1 {
    font-size: 3rem;
  }

  .harikar-downloads {
    grid-template-columns: 1fr;
  }

  .download-card {
    min-height: 360px;
  }

  .cursor-dot {
    display: none;
  }
}
