/* ============================================
   Restaurant POS - Styles
   Ali Web Services
   ============================================ */

/* ============================================
   CSS Variables
   ============================================ */
:root {
  --bg: #0b0b0e;
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.7);
  --muted2: rgba(255, 255, 255, 0.58);
  --orange: #ff7a00;
  --orange2: #ff9a1a;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
  --radius: 18px;
  --radius2: 24px;
  --max: 1180px;
}

/* ============================================
   Reset & Base
   ============================================ */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  background:
    radial-gradient(
      1200px 650px at 20% 10%,
      rgba(255, 122, 0, 0.2),
      transparent 60%
    ),
    radial-gradient(
      900px 520px at 85% 15%,
      rgba(255, 154, 26, 0.14),
      transparent 55%
    ),
    radial-gradient(
      1000px 600px at 55% 80%,
      rgba(120, 200, 255, 0.1),
      transparent 60%
    ),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}

/* ============================================
   Layout & Container
   ============================================ */
.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* ============================================
   Components - Pill
   ============================================ */
.pill {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  font-weight: 700;
  font-size: 13px;
  color: var(--muted);
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--orange2), var(--orange));
  box-shadow: 0 0 0 6px rgba(255, 122, 0, 0.15);
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 14, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 900;
}
.logo {
  width: 135px;
  height: 60px;
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 10px;
}
.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}
.mobile-lang-dropdown, .mobile-lang-sep {
  display: none;
}
.nav-links a {
  padding: 10px 10px;
  border-radius: 10px;
  transition: 0.2s ease;
}
.nav-links a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}
.cta {
  display: flex;
  gap: 10px;
  align-items: center;
}
.lang {
  display: flex;
  gap: 8px;
}
.lang a {
  padding: 10px 10px;
  border-radius: 10px;
  font-weight: 900;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}
.lang a.active {
  color: #161616;
  background: linear-gradient(180deg, var(--orange2), var(--orange));
  border-color: rgba(255, 122, 0, 0.55);
}

/* ============================================
   Burger Menu
   ============================================ */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 60;
}
.burger span {
  width: 100%;
  height: 3px;
  background: var(--text);
  border-radius: 99px;
  transition: 0.3s ease;
}
.burger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 900;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: 0.2s ease;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(180deg, var(--orange2), var(--orange));
  color: #161616;
  border-color: rgba(255, 122, 0, 0.55);
  box-shadow: 0 18px 45px rgba(255, 122, 0, 0.25);
}
.btn-primary:hover {
  transform: translateY(-1px);
  filter: saturate(1.05);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}
.btn-ghost:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.09);
}

/* ============================================
   Hero Section
   ============================================ */
header.hero {
  padding: 72px 0 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}
h1 {
  margin: 16px 0 14px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.6px;
}
.sub {
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.55;
  max-width: 56ch;
  font-weight: 650;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.hero-badges {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
  color: var(--muted2);
  font-weight: 800;
  font-size: 13px;
}
.badge {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ============================================
   Mock / Screenshot Display
   ============================================ */
.mock {
  border-radius: var(--radius2);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.04)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 420px;
  animation: floaty 7s ease-in-out infinite;
  position: relative;
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.mock::before {
  content: "";
  position: absolute;
  inset: -120px;
  background:
    radial-gradient(
      closest-side at 30% 35%,
      rgba(255, 122, 0, 0.3),
      transparent 60%
    ),
    radial-gradient(
      closest-side at 75% 45%,
      rgba(255, 154, 26, 0.22),
      transparent 62%
    ),
    radial-gradient(
      closest-side at 55% 80%,
      rgba(255, 255, 255, 0.08),
      transparent 60%
    );
  opacity: 0.9;
}
.mock-inner {
  position: relative;
  padding: 18px;
  display: grid;
  gap: 14px;
}
.screen {
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  min-height: 250px;
}
.screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
  transform: scale(1.02);
  animation: kenburn 9s ease-in-out infinite;
}
@keyframes kenburn {
  0%,
  100% {
    transform: scale(1.02) translateY(0);
  }
  50% {
    transform: scale(1.07) translateY(-6px);
  }
}
.mock-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.mini {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px;
}
.mini strong {
  display: block;
  font-size: 14px;
}
.mini span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  display: block;
  margin-top: 6px;
  font-weight: 650;
}

/* ============================================
   Sections
   ============================================ */
section {
  padding: 62px 0;
}
.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
h2 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: -0.3px;
}
.section-lead {
  color: var(--muted);
  max-width: 70ch;
  line-height: 1.6;
  font-weight: 650;
}

/* ============================================
   Grid & Cards
   ============================================ */
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.card {
  grid-column: span 4;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  transform: translateY(8px);
  opacity: 0;
  transition: 0.6s ease;
}
.card.reveal {
  transform: translateY(0);
  opacity: 1;
}
.card::before {
  content: "";
  position: absolute;
  inset: -80px;
  background: radial-gradient(
    closest-side at 20% 20%,
    rgba(255, 122, 0, 0.18),
    transparent 65%
  );
  opacity: 0.9;
}
.card > * {
  position: relative;
}
.icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 122, 0, 0.14);
  border: 1px solid rgba(255, 122, 0, 0.3);
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 10px;
}
.card h3 {
  margin: 8px 0 8px;
  font-size: 16px;
}
.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 650;
}

/* ============================================
   Highlight Section
   ============================================ */
.highlight {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.04)
  );
  overflow: hidden;
  box-shadow: var(--shadow);
}
.highlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.highlight-left {
  padding: 26px;
  position: relative;
}
.highlight-left::before {
  content: "";
  position: absolute;
  inset: -120px;
  background:
    radial-gradient(
      closest-side at 30% 25%,
      rgba(255, 122, 0, 0.25),
      transparent 60%
    ),
    radial-gradient(
      closest-side at 70% 65%,
      rgba(255, 154, 26, 0.18),
      transparent 62%
    );
  opacity: 0.9;
}
.highlight-left > * {
  position: relative;
}
.checklist {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 750;
}
.tick {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: rgba(255, 122, 0, 0.18);
  border: 1px solid rgba(255, 122, 0, 0.3);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  margin-top: 1px;
}
.highlight-right {
  position: relative;
  min-height: 360px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.highlight-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transform: scale(1.03);
  animation: kenburn 10s ease-in-out infinite;
  filter: contrast(1.05) saturate(1.05);
}
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 11, 14, 0.85),
    rgba(11, 11, 14, 0.15) 60%,
    rgba(11, 11, 14, 0.65)
  );
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.price-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius2);
  padding: 22px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.price-card.featured {
  border-color: rgba(255, 122, 0, 0.45);
  background: linear-gradient(
    180deg,
    rgba(255, 122, 0, 0.1),
    rgba(255, 255, 255, 0.04)
  );
}
.price-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.tag {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-weight: 900;
  font-size: 12px;
}
.amount {
  font-size: 40px;
  letter-spacing: -0.6px;
  font-weight: 900;
  margin: 10px 0 8px;
}
.amount small {
  font-size: 14px;
  color: var(--muted);
  font-weight: 900;
  margin-left: 6px;
}
.price-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-weight: 750;
}
.price-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
details {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius2);
  padding: 14px 16px;
}
summary {
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
details p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.55;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}
form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius2);
  padding: 18px;
  box-shadow: var(--shadow);
}
label {
  display: block;
  font-weight: 850;
  font-size: 13px;
  color: var(--muted);
  margin: 10px 0 6px;
}
input,
textarea,
select {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  outline: none;
  font-family: inherit;
  font-weight: 650;
}
textarea {
  min-height: 110px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.fine {
  color: var(--muted2);
  font-weight: 650;
  font-size: 12px;
  line-height: 1.5;
  margin-top: 10px;
}
.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius2);
  padding: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: -120px;
  background: radial-gradient(
    closest-side at 30% 30%,
    rgba(255, 122, 0, 0.24),
    transparent 62%
  );
  opacity: 0.9;
}
.contact-card > * {
  position: relative;
}
.contact-line {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 10px;
  font-weight: 900;
}

/* ============================================
   Footer
   ============================================ */
footer {
  padding: 28px 0 40px;
  color: var(--muted2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.15);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.small-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.small-links a {
  color: var(--muted2);
  font-weight: 750;
}
.small-links a:hover {
  color: var(--text);
}

/* ============================================
   WhatsApp Floating Button
   ============================================ */
#waFloat {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  background: #25d366;
  color: #111;
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 950;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
#waFloat:hover {
  transform: translateY(-1px);
}

/* ============================================
   Responsive - Tablet (max-width: 980px)
   ============================================ */
@media (max-width: 980px) {
  /* Navigation */
  .nav-inner {
    padding: 12px 0;
  }
  .nav-inner {
    padding: 12px 0;
  }
  .burger {
    display: flex; /* Show burger on tablet/mobile */
  }
  .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11, 11, 14, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    visibility: hidden;
  }
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
    visibility: visible;
  }
  .nav-links a {
    width: 100%;
    padding: 14px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
  }
  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.08);
  }
  .mobile-lang-sep {
    display: block;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 4px 0;
    width: 100%;
  }
  .mobile-lang-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-right: 15px;
    z-index: 61;
  }
  .current-lang {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    font-weight: 800;
    font-size: 13px;
    width: auto;
    justify-content: center;
    transition: 0.2s ease;
  }
  .current-lang:hover {
    background: rgba(255, 255, 255, 0.08);
  }
  .current-lang .arrow {
    font-size: 10px;
    transition: 0.3s ease;
  }
  .mobile-lang-dropdown.open .arrow {
    transform: rotate(180deg);
  }
  .lang-options {
    display: none;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    top: 100%;
    right: 0;
    width: max-content;
    min-width: 100%;
    margin-top: 8px;
    background: rgba(11, 11, 14, 0.95);
    backdrop-filter: blur(10px);
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }
  .mobile-lang-dropdown.open .lang-options {
    display: flex;
  }
  .lang-options a {
    padding: 8px 12px;
    text-align: center;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    background: transparent;
    color: var(--muted);
  }
  .lang-options a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
  }
  .brand {
    gap: 10px;
  }
  .brand-text {
    display: none; /* Hide brand text on tablet/mobile */
  }
  .logo {
    width: 100px;
    height: 50px;
  }

  /* Hide the top CTA language selector on tablet/mobile */
  .cta .lang {
    display: none;
  }

  /* Hero */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  header.hero {
    padding: 50px 0 30px;
  }
  h1 {
    font-size: clamp(28px, 5vw, 42px);
  }
  .mock {
    min-height: 350px;
  }

  /* Cards */
  .card {
    grid-column: span 6;
  }

  /* Sections */
  section {
    padding: 45px 0;
  }
  .highlight-inner {
    grid-template-columns: 1fr;
  }
  .highlight-right {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 280px;
  }
  .pricing {
    grid-template-columns: 1fr;
  }
  .faq {
    grid-template-columns: 1fr;
  }
  .contact {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Responsive - Small Tablet (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  /* Container */
  .container {
    width: calc(100% - 30px);
  }

  /* Navigation */
  .cta {
    gap: 8px;
  }
  .btn {
    padding: 10px 12px;
    font-size: 13px;
  }
  .lang a {
    padding: 8px 8px;
    font-size: 12px;
  }

  /* Hero */
  h1 {
    font-size: clamp(26px, 6vw, 36px);
  }
  .sub {
    font-size: 15px;
  }
  .hero-badges {
    gap: 8px;
  }
  .badge {
    padding: 8px 10px;
    font-size: 12px;
  }

  /* Mock */
  .mock {
    min-height: 300px;
  }
  .mock-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Sections */
  h2 {
    font-size: clamp(20px, 4vw, 28px);
  }
  .section-lead {
    font-size: 14px;
  }

  /* Pricing */
  .amount {
    font-size: 32px;
  }
}

/* ============================================
   Responsive - Mobile (max-width: 560px)
   ============================================ */
@media (max-width: 560px) {
  /* Navigation */
  .nav-inner {
    padding: 10px 0;
    flex-wrap: wrap;
    gap: 10px;
  }
  .brand {
    flex: 1;
    min-width: 0;
  }
  .logo {
    width: 80px;
    height: 40px;
  }
  /* Removed .brand > div:last-child rules as .brand-text is now used */
  .cta {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .lang {
    display: none;
  }
  #btnPricingTop {
    display: none;
  }

  /* Hero */
  header.hero {
    padding: 30px 0 20px;
  }
  h1 {
    font-size: 26px;
    margin: 12px 0 10px;
  }
  .sub {
    font-size: 14px;
    line-height: 1.5;
  }
  .pill {
    padding: 8px 12px;
    font-size: 11px;
    gap: 8px;
  }
  .dot {
    width: 8px;
    height: 8px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-badges {
    flex-direction: column;
    gap: 8px;
  }
  .badge {
    text-align: center;
  }

  /* Mock */
  .mock {
    min-height: 250px;
  }
  .mock-inner {
    padding: 12px;
    gap: 10px;
  }
  .screen {
    min-height: 180px;
  }
  .mini {
    padding: 10px;
  }
  .mini strong {
    font-size: 13px;
  }
  .mini span {
    font-size: 11px;
  }

  /* Cards */
  .card {
    grid-column: span 12;
    padding: 14px;
  }
  .icon {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
  .card h3 {
    font-size: 15px;
  }
  .card p {
    font-size: 13px;
  }

  /* Sections */
  section {
    padding: 35px 0;
  }
  h2 {
    font-size: 20px;
  }
  .section-lead {
    font-size: 13px;
  }
  .section-title {
    margin-bottom: 18px;
  }

  /* Highlight */
  .highlight-left {
    padding: 18px;
  }
  .checklist li {
    font-size: 13px;
  }
  .tick {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }

  /* Pricing */
  .price-card {
    padding: 16px;
  }
  .amount {
    font-size: 28px;
  }
  .amount small {
    font-size: 12px;
  }
  .price-list {
    font-size: 13px;
  }

  /* FAQ */
  details {
    padding: 12px 14px;
  }
  summary {
    font-size: 14px;
  }
  details p {
    font-size: 13px;
  }

  /* Contact */
  form {
    padding: 14px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  label {
    font-size: 12px;
  }
  input,
  textarea,
  select {
    padding: 10px;
    font-size: 14px;
  }
  .contact-card {
    padding: 14px;
  }
  .contact-card h3 {
    font-size: 18px;
  }
  .contact-card p {
    font-size: 13px;
  }
  .contact-line {
    padding: 10px;
    font-size: 13px;
  }

  /* Footer */
  footer {
    padding: 20px 0 30px;
  }
  .footer-grid {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .small-links {
    justify-content: center;
  }

  /* WhatsApp */
  #waFloat {
    padding: 10px 12px;
    font-size: 12px;
    right: 12px;
    bottom: 12px;
  }
}

/* ============================================
   Responsive - Extra Small (max-width: 380px)
   ============================================ */
@media (max-width: 380px) {
  .container {
    width: calc(100% - 20px);
  }
  h1 {
    font-size: 22px;
  }
  .btn {
    padding: 10px 10px;
    font-size: 12px;
  }
  .logo {
    width: 60px;
    height: 30px;
  }
  /* Removed .brand > div:last-child display:none as checking .brand-text handles it */
}

/* ============================================
   RTL (Right-to-Left) Support for Arabic
   ============================================ */
[dir="rtl"] {
  text-align: right;
}

[dir="rtl"] .nav-inner,
[dir="rtl"] .cta,
[dir="rtl"] .lang,
[dir="rtl"] .brand,
[dir="rtl"] .hero-actions,
[dir="rtl"] .hero-badges,
[dir="rtl"] .checklist li,
[dir="rtl"] .price-list li,
[dir="rtl"] .contact-line,
[dir="rtl"] .footer-grid,
[dir="rtl"] .small-links {
  flex-direction: row-reverse;
}

@media (min-width: 981px) {
  [dir="rtl"] .nav-links {
    flex-direction: row-reverse;
  }
}

[dir="rtl"] .hero-grid {
  direction: rtl;
}

[dir="rtl"] .pill {
  flex-direction: row-reverse;
}

[dir="rtl"] .highlight-inner {
  direction: rtl;
}

[dir="rtl"] .highlight-right {
  border-left: none;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

[dir="rtl"] .overlay {
  background: linear-gradient(
    -90deg,
    rgba(11, 11, 14, 0.85),
    rgba(11, 11, 14, 0.15) 60%,
    rgba(11, 11, 14, 0.65)
  );
}

[dir="rtl"] .amount small {
  margin-left: 0;
  margin-right: 6px;
}

[dir="rtl"] #waFloat {
  right: auto;
  left: 18px;
}

[dir="rtl"] .tick {
  margin-top: 1px;
}

[dir="rtl"] .price-top {
  flex-direction: row-reverse;
}

[dir="rtl"] .section-title {
  text-align: right;
}

[dir="rtl"] .mock-row {
  direction: rtl;
}
