/*
 # AlvandNetwork.com
 # Coded by AmirAbbas Moghanloo
*/
html,
body {
    width: 100%;
    height: 100%;
}

@font-face {
    font-family: IRANYekan;
    font-stretch: normal;
    font-style: normal;
    font-weight: 100 900;
    src: url('../fonts/IRANYekanXVF.woff');
}

html, body {
    margin: 0;
    font-family: "IRANYekan", system-ui;
    min-height: 100%;
    color: #0f172a;
    background: linear-gradient(180deg, #f8fbff, #e8f1ff);
    background-color: #f3f7ff;
    overflow-x: hidden;
    overflow-y: auto !important;
}

.luna-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    opacity: 0.4;
    pointer-events: none;
}

.custom-scrollbar {
    direction: ltr;
    padding-right: 2px;
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%; 
}
.custom-scrollbar > * {
    direction: rtl;
    text-align: right;
}

/* #OTHER =================================================================== */
.nav-link,
.btn {
    display: flex;
    align-items: center;
    gap: 0.375rem;

    text-decoration: none;
}

img {
    max-width: 100%;
}

.offcanvas a,
.stretched-link,
.list-group-item a {
    text-decoration: none;
}

.dropdown-menu .dropdown-item.active i {
    color: var(--bs-light) !important;
}

.readable {
    max-width: 70ch;
    line-height: 2;
}

/* #CLAMP =================================================================== */
.clamp-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.clamp-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.clamp-4 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

/* #SWIPER ================================================================== */
.swiper-slide {
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--swiper-theme-color);
}

.autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 4px;
    stroke: var(--swiper-theme-color);
    fill: none;
    stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
}

/* #FONTWEIGHT ============================================================== */
.nt-fw-100 {
    font-weight: 100;
    font-variation-settings: "wght" 100;
}

.nt-fw-lighter,
.nt-fw-200 {
    font-weight: lighter;
    font-variation-settings: "wght" 200;
}

.nt-fw-light,
.nt-fw-300 {
    font-weight: 300;
    font-variation-settings: "wght" 300;
}

.nt-fw-normal,
.nt-fw-400 {
    font-weight: 400;
    font-variation-settings: "wght" 400;
}

.nt-fw-medium,
.nt-fw-500 {
    font-weight: 500;
    font-variation-settings: "wght" 500;
}

.nt-fw-semibold,
.nt-fw-600 {
    font-weight: 600;
    font-variation-settings: "wght" 600;
}

.nt-fw-bold,
.nt-fw-700 {
    font-weight: bold;
    font-variation-settings: "wght" 700;
}

.nt-fw-800 {
    font-weight: 800;
    font-variation-settings: "wght" 800;
}

.nt-fw-bolder,
.nt-fw-900 {
    font-weight: bolder;
    font-variation-settings: "wght" 900;
}

.nt-fw-1000 {
    font-weight: 1000;
    font-variation-settings: "wght" 1000;
}

/* #FLEX ==================================================================== */
.nt-flex,
.nt-flex-start-start {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: flex-start;
    align-items: start;
}

.nt-flex-start-center {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: flex-start;
    align-items: center;
}

.nt-flex-start-end {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: flex-start;
    align-items: end;
}

.nt-flex-start-stretch {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: flex-start;
    align-items: stretch;
}

.nt-flex-center-start {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: center;
    align-items: start;
}

.nt-flex-center-center {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: center;
    align-items: center;
}

.nt-flex-center-end {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: center;
    align-items: end;
}

.nt-flex-center-stretch {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: center;
    align-items: stretch;
}

.nt-flex-end-start {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: flex-end;
    align-items: start;
}

.nt-flex-end-center {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: flex-end;
    align-items: center;
}

.nt-flex-end-end {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: flex-end;
    align-items: end;
}

.nt-flex-end-stretch {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: flex-end;
    align-items: stretch;
}

.nt-flex-around-start {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: space-around;
    align-items: start;
}

.nt-flex-around-center {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: space-around;
    align-items: center;
}

.nt-flex-around-end {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: space-around;
    align-items: end;
}

.nt-flex-around-stretch {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: space-around;
    align-items: stretch;
}

.nt-flex-between-start {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: space-between;
    align-items: start;
}

.nt-flex-between-center {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: space-between;
    align-items: center;
}

.nt-flex-between-end {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: space-between;
    align-items: end;
}

.nt-flex-between-stretch {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: space-between;
    align-items: end;
}

.nt-flex-column,
.nt-flex-column-start-start {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: flex-start;
    align-items: start;
}

.nt-flex-column-start-center {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: flex-start;
    align-items: center;
}

.nt-flex-column-start-end {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: flex-start;
    align-items: end;
}

.nt-flex-column-start-stretch {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: flex-start;
    align-items: stretch;
}

.nt-flex-column-center-start {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: center;
    align-items: start;
}

.nt-flex-column-center-center {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: center;
    align-items: center;
}

.nt-flex-colum-center-end {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: center;
    align-items: end;
}

.nt-flex-column-center-stretch {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: center;
    align-items: stretch;
}

.nt-flex-column-end-start {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: flex-end;
    align-items: start;
}

.nt-flex-column-end-center {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: flex-end;
    align-items: center;
}

.nt-flex-column-end-end {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: flex-end;
    align-items: end;
}

.nt-flex-column-end-stretch {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: flex-end;
    align-items: stretch;
}

.nt-flex-column-around-start {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: space-around;
    align-items: start;
}

.nt-flex-column-around-center {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: space-around;
    align-items: center;
}

.nt-flex-column-around-end {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: space-around;
    align-items: end;
}

.nt-flex-column-around-stretch {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: space-around;
    align-items: stretch;
}

.nt-flex-column-between-start {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: space-between;
    align-items: start;
}

.nt-flex-column-between-center {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: space-between;
    align-items: center;
}

.nt-flex-column-between-end {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: space-between;
    align-items: end;
}

.nt-flex-column-between-stretch {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: space-between;
    align-items: stretch;
}

/* #MAIN ==================================================================== */
.main {
    position: relative;
    min-height: 400px;
    min-height: clamp(400px, 75vh, 800px);
    height: 100%;
}

/* #404 ===================================================================== */
.page404 {
    flex-grow: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page404-anim {
    --height: 150px;
    height: var(--height);

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
    z-index: 1;
}

.page404-anim:before {
    content: '';
    width: 12px;
    width: 100vw;
    height: var(--height);
    background: url('../img/pages/404/cable.png');

    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    z-index: -1;

}

.page404-anim:after {
    content: '';
    width: 12px;
    width: 100vw;
    height: var(--height);
    background: url('../img/pages/404/cable.png');

    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    z-index: -1;

}

.page404-anim-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.page404-anim-in {
    width: 290px;
    height: var(--height);
    background-image: url('../img/pages/404/in.png');

    animation: page404in 1s ease 1s forwards;
}

.page404-anim-out {
    width: 220px;
    height: var(--height);
    background-image: url('../img/pages/404/out.png');

    animation: page404out 1s ease 1s forwards;
}

@keyframes page404out {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(75%)
    }
}

@keyframes page404in {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-75%)
    }
}

.w-100 {
  width: 100% !important;
}

.flag-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 30px;
  height: auto;
  border-radius: 4px;
}

.parent {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.child {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  transition: all 0.3s cubic-bezier(0.68, 0.85, 0.265, 1.85);
  border-radius: 5px;
  margin: 0 5px;
  box-shadow:
    inset 1px 1px 2px #fff,
    0 0 5px #4442;
}

.child:hover {
  background-color: white;
  background-position:
    -100px 100px,
    -100px 100px;
  /*transform: rotate3d(0.5, 1, 0, 30deg);*/
  transform: perspective(180px) rotateX(60deg) translateY(2px);
}

.child-1:hover {
  box-shadow: 0px 10px 10px #1e90ff;
}
.child-2:hover {
  box-shadow: 0px 10px 10px #ff00ff;
}
.child-3:hover {
  box-shadow: 0px 10px 10px #000;
}
.child-4:hover {
  box-shadow: 0px 10px 10px #4267b2;
}

.button {
  cursor: pointer;
  width: 100%;
  height: 100%;
  border: none;
  background-color: transparent;
  font-size: 20px;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.68, -0.85, 0.265, 1.55);
}

.child:hover > .button {
  transform: translate3d(0px, 20px, 30px) perspective(80px) rotateX(-60deg)
    translateY(2px) translateZ(10px);
}


/* #LUNA ================================= */
:root{
  --luna-bg: radial-gradient(1200px 600px at 120% -10%, #7ab3ff22, #0000),
             radial-gradient(900px 500px at -20% 120%, #caa8ff22, #0000),
             linear-gradient(180deg,#f7fafc,#eef2f7);
  --luna-glass: rgba(255,255,255,.85);
  --luna-stroke: rgba(15,23,42,.12);
  --luna-primary: #2563eb;
  --luna-accent:  #7c3aed;
  --luna-glow: 0 0 0 1px #0b13240a, 0 8px 22px #0b132412, 0 0 40px #2563eb14;
  --line-width: 5px;
  --line-gap: 14px;
  --luna-primary:#2563eb; --luna-accent:#7c3aed; --luna-sun:#facc15;
  --luna-ink:#0f172a; --luna-mute:#475569; --luna-stroke:rgba(15,23,42,.10);
  --lp:#2563eb;
  --lp-2:#3b82f6;
  --lp-3:#60a5fa;
  --lx:#7c3aed;

  --ink:#0f172a; --muted:#475569;

  --panel-from:#ffffff;
  --panel-to:#f0f6ff;
  --stroke:rgba(37,99,235,.12);
  --glow-1:#7ab3ff22;
  --glow-2:#b6a7ff1a;
}

/* #LUNA-CARD ================================= */
.luna-card {
  position: relative;
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.98));
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(11, 19, 36, 0.08), 0 0 0 1px rgba(37, 99, 235, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
  isolation: isolate;
}

.luna-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.03), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.luna-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15), 0 20px 48px rgba(11, 19, 36, 0.15), 0 0 80px rgba(37, 99, 235, 0.015);
  border-color: rgba(37, 99, 235, 0.3);
}

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

.luna-orbit {
  position: absolute;
  width: 430px;
  aspect-ratio: 1;
  top: -182px;
  left: 50%;
  margin-left: -215px;
  pointer-events: none;
  border: 2px dashed rgba(148, 163, 184, 0.15);
  border-radius: 50%;
  animation: orbit-rotate 30s linear infinite;
}

@keyframes orbit-rotate {
  from { transform: rotate(-8deg); }
  to { transform: rotate(352deg); }
}

.luna-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: 
    radial-gradient(2.5px 2.5px at 10% 20%, rgba(255, 255, 255, 0.9), transparent),
    radial-gradient(3px 3px at 30% 80%, rgba(96, 165, 250, 0.8), transparent),
    radial-gradient(4px 4px at 50% 50%, rgba(147, 197, 253, 0.9), transparent),
    radial-gradient(2.5px 2.5px at 70% 30%, rgba(186, 230, 253, 0.7), transparent),
    radial-gradient(3.5px 3.5px at 90% 70%, rgba(255, 255, 255, 0.85), transparent),
    radial-gradient(2px 2px at 80% 10%, rgba(224, 242, 254, 0.8), transparent),
    radial-gradient(2.5px 2.5px at 25% 60%, rgba(255, 255, 255, 0.9), transparent),
    radial-gradient(4px 4px at 60% 85%, rgba(199, 210, 254, 0.8), transparent),
    radial-gradient(2.5px 2.5px at 45% 15%, rgba(255, 255, 255, 0.95), transparent),
    radial-gradient(3px 3px at 15% 90%, rgba(147, 197, 253, 0.85), transparent);
  background-size: cover;
  opacity: 0.7;
  animation: twinkle 8s ease-in-out infinite alternate;
}

@keyframes twinkle {
  0%, 20% { opacity: 0.5; }
  50% { opacity: 0.9; }
  100% { opacity: 1; }
}

.luna-planet {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  box-shadow: 
    inset 0 0 0 1px rgba(11, 19, 36, 0.06),
    0 8px 24px rgba(11, 19, 36, 0.02),
    0 0 40px rgba(37, 99, 235, 0.2);
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
}

.luna-card:hover .luna-planet {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 
    inset 0 0 0 1px rgba(11, 19, 36, 0.08),
    0 12px 32px rgba(11, 19, 36, 0.15),
    0 0 60px rgba(37, 99, 235, 0.3);
}

.luna-planet img {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 2px 12px rgba(37, 99, 235, 0.4));
  transition: filter 0.3s ease;
}

.luna-card:hover .luna-planet img {
  filter: drop-shadow(0 4px 16px rgba(37, 99, 235, 0.6));
}

.luna-body {
  padding: 44px 24px 20px;
}

.luna-title {
  text-align: center;
  margin: 0;
  padding-bottom: 16px;
  font: 400 20px/1.4 IRANYekan;
  color: #0f172a;
  border-bottom: 2px solid rgba(148, 163, 184, 0.15);
  position: relative;
}

.luna-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #2563eb, transparent);
}

.luna-price {
  display: grid;
  place-items: center;
  gap: 0.5rem;
  padding: 24px 0 20px;
  border-bottom: 2px solid rgba(148, 163, 184, 0.15);
  position: relative;
}

.luna-price::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.05), transparent);
  pointer-events: none;
}

.luna-price .amount {
  font: 700 46px/1 IRANYekan;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(37, 99, 235, 0.2));
}

.luna-price .cycle {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  color: #64748b;
  font-size: 15px;
}

.luna-price .cycle b {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.luna-specs {
  list-style: none;
  margin: 18px 0 0;
  padding: 0 6px;
}

.luna-specs li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 2px;
  color: #475569;
  font-size: 15px;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.2);
  transition: all 0.2s ease;
}

.luna-specs li:hover {
  background: rgba(37, 99, 235, 0.02);
  padding-right: 8px;
  padding-left: 8px;
  margin: 0 -4px;
  border-radius: 8px;
  border-bottom-color: transparent;
}

.luna-specs li.no-border {
  border-bottom: none !important;
}

.luna-specs li i {
  margin-left: 8px;
  color: #2563eb;
  opacity: 0.7;
  transition: all 0.2s ease;
}

.luna-specs li:hover i {
  opacity: 1;
  transform: scale(1.1);
}

.luna-specs b {
  color: #0f172a;
  font-weight: 800;
}

.luna-tip {
  cursor: help;
  margin-inline-start: 8px;
  opacity: 0.75;
  position: relative;
  transition: opacity 0.2s ease;
}

.luna-tip:hover {
  opacity: 1;
}

.luna-tip:hover::after {
  content: attr(data-title);
  position: absolute;
  right: 0;
  bottom: 160%;
  white-space: nowrap;
  padding: 0.5rem 0.85rem;
  font: 600 13px/1.5 IRANYekan;
  color: #0f172a;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(11, 19, 36, 0.15);
  animation: tooltip-appear 0.2s ease;
  z-index: 10;
}

@keyframes tooltip-appear {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.luna-os {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  filter: drop-shadow(0 6px 16px rgba(11, 19, 36, 0.1));
}

.luna-os img {
  opacity: 0.8;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.luna-os img:hover {
  opacity: 1;
  transform: translateY(-4px) scale(1.1);
  filter: drop-shadow(0 8px 20px rgba(37, 99, 235, 0.3));
}

.luna-footer {
  padding: 16px 20px 24px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.luna-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  font: 600 16px/1.5 IRANYekan;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border: none;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.luna-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.luna-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.luna-btn:hover::before {
  opacity: 1;
}

.luna-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

/* #LUNA-MAIN-TITLE ================================= */
.luna-main-title {
  font-size: 40px;
  font-weight: 700;
  text-align: right;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  background:linear-gradient(135deg,var(--lp),var(--lp-2),var(--lp-3));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  text-shadow: 0 0 12px rgba(124,58,237,0.25);
  animation: fadeInDown 1s ease both;
}

.luna-main-title::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 0;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 40%, #6366f1 80%);
  animation: underline 1.2s ease forwards .8s;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes underline {
  from { width: 0; }
  to   { width: 100%; }
}
@keyframes blink {
  from, to { border-color: transparent }
  50%      { border-color: #7c3aed }
}

/* #LUNA-TEXT =============================================================== */
.luna-text {
  font-size: 18px;
  line-height: 1.8;
  color: #334155;
  position: relative;
  animation: fadeInUp .8s ease both;
}

.text-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.text-glow {
    color: #3b82f6;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

.luna-desc {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.9;
    margin-bottom: 30px;
    text-align: justify;
}

.text-highlight {
    color: #3b82f6;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* #LUNA-BTN ================================================================ */

.luna-plus{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.6rem;
  flex-direction: row-reverse;
  margin-top: 12px;
  font:400 14px/1 IRANYekan, sans-serif;
  text-decoration:none;
  border:0;
  transition:transform .2s ease, box-shadow .25s ease, filter .2s ease;
}


.luna-btn2{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.6rem;
  flex-direction: row-reverse;
  padding:.9rem 1.2rem;
  min-height:44px;
  border-radius: 12px;
  font:600 16px/1 IRANYekan, sans-serif;
  text-decoration:none;
  border:0;
  transition:transform .2s ease, box-shadow .25s ease, filter .2s ease;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
}

.luna-btn2 i{
  font-size:1.15rem;
  line-height:1;
  color:currentColor;
}
.luna-btn2.primary{
  color:#fff;
  background:linear-gradient(135deg,#2563eb,#3b82f6);
  box-shadow:0 6px 20px rgba(37,99,235,.35);
}
.luna-btn2.warning{
  color:#fff;
  background:linear-gradient(135deg,#facc15,#f59e0b);
  box-shadow:0 6px 20px rgba(251,191,36,.35);
}
.luna-btn2.danger{
  color:#fff;
  background:linear-gradient(135deg,#ef4444,#dc2626);
  box-shadow:0 6px 20px rgba(220,38,38,.35);
}
.luna-btn2.light{
  color:#0f172a;
  background:#fff; border:1px solid rgba(37,99,235,.18);
  box-shadow:0 6px 20px rgba(37,99,235,.35);
}
.btn-nova.light:hover{ filter:brightness(1.03); transform:translateY(-2px) }


.luna-btn2:hover{ transform:translateY(-2px) scale(1.03); filter:saturate(1.05) }
.luna-btn2:active{ transform:translateY(0) scale(.98) }

.luna-btn2.small {
  padding: .75rem .9rem;
  font-size: 14px;
  min-height: 34px;
  border-radius: 12px;
  gap: .4rem;
}
.luna-btn2.small i {
  font-size: 1rem;
}

.luna-btn-gradient {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-direction: row-reverse;
  padding:.9rem 1.2rem;
  min-height:44px;
  border-radius:14px;
  font:600 16px/1 IRANYekan, sans-serif;
  text-decoration: none;
  border:0;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #7c3aed, #facc15);
  background-size: 200% 200%;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.25);
  transition: background-position 0.5s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.luna-btn-gradient:hover {
  background-position: 100% 0;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 26px rgba(124, 58, 237, 0.35);
}

.luna-btn-gradient:active {
  transform: translateY(0) scale(.97);
}

.luna-btn-gradient.small {
  padding: .75rem .9rem;
  font-size: 14px;
  min-height: 34px;
  border-radius: 10px;
  gap: .4rem;
}
.luna-btn-gradient.small i {
  font-size: 1rem;
}

/* #LUNA-FAQ ================================= */
.ah-faq-ultra {
    position: relative;
}

.ah-sticky-sidebar {
    position: sticky;
    top: 100px;
}

.ah-help-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 16px;
    padding: 25px 25px;
    text-align: center;
    box-shadow: 0 10px 40px -10px rgba(59, 130, 246, 0.1);
}

.icon-blob {
    width: 60px;
    height: 60px;
    background: #eff6ff;
    color: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px auto;
    box-shadow: 0 0 0 8px #f8fafc;
}

.help-title {
    font-weight: 700;
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.help-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 25px;
}

.btn-support-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: #3b82f6;
    color: #fff;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}
.btn-support-primary:hover { background: #2563eb; transform: translateY(-2px); color: #fff; }

.btn-support-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px;
    color: #64748b;
    font-size: 0.9rem;
    text-decoration: none;
    transition: 0.3s;
}
.btn-support-link:hover { color: #3b82f6; }

.ah-modern-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ah-q-card {
    background: #fff;
    border: 1px solid #eff6ff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px -5px rgba(0,0,0,0.03);
}

.ah-q-card:has(.accordion-button:not(.collapsed)) {
    border-color: #3b82f6;
    box-shadow: 0 10px 30px -5px rgba(59, 130, 246, 0.15);
    transform: translateX(-5px);
}

.ah-modern-accordion .accordion-button {
    background: linear-gradient(200deg, #ffffff 50%, #93c5fd 280%);
    padding: 12px 12px;
    font-weight: 700;
    color: #334155;
    font-size: 1rem;
    box-shadow: none !important;
    border: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.ah-modern-accordion .accordion-button:not(.collapsed) {
    background: #f8fbff;
    color: #3b82f6;
}

.num-badge {
    font-size: 0.85rem;
    font-weight: 700;
    color: #cbd5e1;
    font-family: sans-serif;
    transition: 0.3s;
}
.accordion-button:not(.collapsed) .num-badge { color: #3b82f6; }

.ah-modern-accordion .accordion-button::after {
    margin-right: auto;
    margin-left: 0;
    content: '\ea5f';
    font-family: 'tabler-icons';
    font-size: 1.2rem;
    background: #f1f5f9;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #64748b;
    transition: 0.3s;
}

.ah-modern-accordion .accordion-button:not(.collapsed)::after {
    background: #3b82f6;
    color: #fff;
    transform: rotate(180deg);
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.ah-q-body {
    padding: 0 25px 25px 65px;
    color: #475569;
    line-height: 1.8;
    text-align: justify;
    background: #f8fbff;
    border-top: none;
}

.ah-tag-list {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}
.ah-tag-list span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    padding: 4px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.os-grid-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
}
.os-item {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}
.os-item:hover { transform: translateY(-2px); }
.os-item img { width: 35px; height: 35px; object-fit: contain; }

@media (max-width: 992px) {
    .ah-sticky-sidebar { position: static; margin-bottom: 30px; }
    .ah-q-body { padding: 0 20px 20px 20px; }
}
/* #LUNA-PRICING-HEADER ================================= */
.luna-pricing-head {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 30%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.lp-dots-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#e2e8f0 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: 0;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.lp-wrap {
    max-width: 700px;
}

.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eff6ff;
    color: #3b82f6;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid #dbeafe;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}
.lp-badge i { font-size: 1rem; }

.lp-title {
    font-weight: 900;
    font-size: 2.5rem;
    color: #1e293b;
    line-height: 1.3;
    margin: 0;
}

.lp-highlight {
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.lp-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(59, 130, 246, 0.1);
    z-index: -1;
    transform: skewX(-15deg);
    border-radius: 4px;
}

.lp-sub {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
}
.lp-sub strong {
    color: #334155;
    font-weight: 700;
}

.lp-arrow-down {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 50%;
    color: #94a3b8;
    animation: bounce-arrow 2s infinite;
}

@keyframes bounce-arrow {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@media (max-width: 768px) {
    .lp-title { font-size: 2rem; }
    .lp-sub { font-size: 1rem; }
}

/* #LUNA-PRICING-COMPARE ================================= */

.compare-title {
  text-align: center;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 32px;
  background: linear-gradient(135deg,#2563eb,#7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.compare-card {
  border-radius: 13px;
  padding: 20px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  background: #fff;
  transition: transform .3s ease, box-shadow .3s ease;
}
.compare-card:hover {
  transform: translateY(-4px);
}

.compare-card.titan {
  background: linear-gradient(145deg,#2563eb,#7c3aed);
  color: #fff;
  box-shadow: 0 12px 28px rgba(37,99,235,.35);
}
.compare-card.titan:hover {
  box-shadow: 0 16px 40px rgba(124,58,237,.45);
}

.card-head {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.features li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(255,255,255,.2);
}
.normal .features li {
  border-bottom: 1px dashed rgba(0,0,0,.1);
}
.features li:last-child { border: none; }

.features span {
  font-size: 15px;
  opacity: .9;
}
.features b {
  font-weight: 700;
  font-size: 15px;
}
.features i {
  font-size: 20px;
}
.titan .features i { color: #22c55e; }
.normal .features i { color: #ef4444; }

/* #LUNA-PRICING-SPECS ================================= */

.luna-specs .swiper-slide > .h-100{
  background: linear-gradient(180deg,#ffffff,#f6f8fb);
  border:1px solid var(--stroke);
  border-radius:20px;
  padding:28px;
  box-shadow:0 12px 28px rgba(0,0,0,.06);
}

.luna-specs .fs-3.nt-fw-500{
  font-weight:900 !important;
  background: linear-gradient(135deg,var(--luna-primary),var(--luna-accent));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  text-shadow:0 0 10px #93c5fd55;
}

.luna-specs .readable{
  color:#334155; line-height:1.95; margin:0;
}


.luna-specs .autoplay-progress{
  position:absolute; left:16px; bottom:16px; width:48px; height:48px;
  z-index:10; display:grid; place-items:center;
  background:#fff; border:1px solid var(--stroke); border-radius:50%;
  box-shadow:0 8px 18px rgba(0,0,0,.08);
}
.luna-specs .autoplay-progress svg{
  --size:48; position:absolute; inset:0; transform:rotate(-90deg);
}
.luna-specs .autoplay-progress circle{
  fill:none; stroke-width:4; r:20; cx:24; cy:24;
  stroke: #e5e7eb;
}
.luna-specs .autoplay-progress circle:nth-child(1){
  stroke:#e5e7eb;
}
.luna-specs .autoplay-progress circle:nth-child(2){ }

.luna-specs .autoplay-progress span{
  font-weight:800; color:var(--ink); font-size:12px;
}

.luna-specs .swiper {
  --swiper-theme-color: var(--luna-primary);
  padding-bottom: 36px;
}

/* #LUNA-ALERT ================================= */
.ah-tech-alert {
    position: relative;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 8px 25px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.ah-tech-alert::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 10px 10px;
    opacity: 0.15;
    z-index: 0;
}

.status-line {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #3b82f6, #06b6d4, #3b82f6);
    background-size: 100% 200%;
    animation: gradient-slide 3s linear infinite;
}

@keyframes gradient-slide {
    0% { background-position: 0% 0%; }
    100% { background-position: 0% 200%; }
}

.alert-icon {
    position: relative;
    width: 48px;
    height: 48px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 1;
    border: 1px solid #dbeafe;
}

.radar-wave {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    border-radius: 12px;
    border: 1px solid #2563eb;
    animation: radar-ping 2s infinite;
    opacity: 0;
    z-index: -1;
}

@keyframes radar-ping {
    0% { width: 100%; height: 100%; opacity: 0.5; }
    100% { width: 160%; height: 160%; opacity: 0; }
}

.alert-content {
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.alert-text {
    font-size: 0.95rem;
    color: #334155;
    font-weight: 500;
    line-height: 1.8;
}

.data-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 800;
    margin: 0 3px;
    transition: 0.3s;
    cursor: default;
}

.data-tag.dl {
    background: #fff1f2;
    color: #e11d48;
    border: 1px solid #ffe4e6;
}
.data-tag.dl i { font-size: 0.8rem; }

.data-tag.up {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #dcfce7;
}
.data-tag.up i { font-size: 0.8rem; }

.ah-tech-alert:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px -10px rgba(59, 130, 246, 0.1);
    border-color: #cbd5e1;
}
.ah-tech-alert:hover .data-tag.dl { background: #e11d48; color: #fff; }
.ah-tech-alert:hover .data-tag.up { background: #16a34a; color: #fff; }

@media (max-width: 576px) {
    .ah-tech-alert {
        flex-direction: column;
        text-align: center;
        padding: 25px 15px;
    }
    .status-line {
        width: 100%;
        height: 4px;
        top: 0;
        bottom: auto;
        right: 0;
        left: 0;
    }
}

/* #LUNA-CONTACT ================================= */
.luna-contact .contact-card{
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(12px);
  border-radius: 13px;
  border: 1px solid rgba(0,0,0,.05);
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.luna-contact .contact-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(124,58,237,.15);
}

.luna-contact i{
  color: var(--lp);
}

.luna-contact .map-card{
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.06);
}

.luna-btn.primary.small{
  padding: .45rem .9rem;
  font-size: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg,#2563eb,#7c3aed);
  color: #fff;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.luna-btn.primary.small:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37,99,235,.35);
}

.luna-seals .seal-item{
  display:flex; align-items:center; justify-content:center;
  width:120px; height:120px;
  border-radius:16px;
  background:rgba(255,255,255,.5);
  backdrop-filter:blur(10px);
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 6px 16px rgba(0,0,0,.08);
  transition:transform .25s ease, box-shadow .25s ease;
}
.luna-seals .seal-item img{
  max-width:70px; max-height:70px;
}
.luna-seals .seal-item:hover{
  transform:translateY(-4px) scale(1.05);
  box-shadow:0 10px 24px rgba(124,58,237,.25);
}

@media (max-width:576px){
  .luna-seals .seal-item{
    width:100px; height:100px;
    margin:4px;
  }
  .luna-seals .seal-item img{ max-width:60px; }
}

/* #LUNA-TBL ================================= */
.luna-list-wrapper {
    font-family: 'IRANYekan', system-ui, sans-serif;
    max-width: auto;
    margin: auto auto -60px auto;
}

.list-header {
    display: grid;
    grid-template-columns: 1fr 1.1fr 0.7fr 1fr 0.8fr 1.2fr 0.8fr;
    padding: 0 20px 15px;
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 700;
    opacity: 0.8;
}

.col-head {
    text-align: center;
}

.luna-row-container {
    margin-bottom: 16px;
    border-radius: 18px;
    transition: transform 0.2s ease;
}

.luna-row {
    display: grid;
    grid-template-columns: 1fr 1.1fr 0.7fr 1fr 0.8fr 1.2fr 0.8fr;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
    padding: 10px 10px;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.01), 
        0 2px 4px -1px rgba(0, 0, 0, 0.01);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.luna-row:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.05), 
        0 10px 10px -5px rgba(0, 0, 0, 0.01);
    border-color: #3b82f6;
    z-index: 10;
}

.l-cell {
    text-align: center;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.plan-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.plan-info img {
    width: 100px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.badge-plan {
    background: #eff6ff;
    color: #2563eb;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
}

.spec-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    padding: 6px 12px;
    border-radius: 10px;
    font-weight: 600;
    color: #334155;
    font-size: 16px;
}

.spec-text {
    font-weight: 700;
    color: #475569;
    font-size: 16px;
}

.sub-text {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 4px;
}

.spec-badge {
    background: #f0fdf4;
    color: #166534;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(22, 163, 74, 0.1);
}

.spec-badge2 {
    background: #fdf5f0;
    color: #653816;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(22, 163, 74, 0.1);
}

.cell-price .num {
    font: 800 28px/1 IRANYekan;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(37, 99, 235, 0.2));
}

.cell-price .cur {
    display: flex;
    gap: 0.35rem;
    align-items: center;
    color: #64748b;
    font-size: 12px;
    margin-top: 5px;
}

.cell-price .cur b {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.cell-action {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.btn-order {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
    color: white;
}

.btn-more {
    background: #f1f5f9;
    border: none;
    color: #64748b;
    width: 28px;
    height: 28px;
    border-radius: 10px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(122, 122, 121, 0.2);
}

.btn-more:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.row-details {
    margin-top: -10px;
    padding-top: 10px;
}

.details-inner {
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-top: none;
    border-radius: 0 0 18px 18px;
    padding: 20px;
    padding-top: 30px;
    margin: 0 10px;
}

.d-label {
    display: block;
    color: #94a3b8;
    font-size: 0.8rem;
    margin-bottom: 6px;
}

.d-val {
    display: block;
    color: #334155;
    font-weight: 700;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .list-header {
        display: none;
    }

    .luna-row {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
        text-align: right;
        display: flex;
        flex-direction: column;
    }

    .l-cell {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
        padding-bottom: 12px;
        order: 2; 
    }

    .l-cell:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-top: 10px;
    }

    .l-cell::before {
        content: attr(data-label);
        font-weight: 700;
        color: #94a3b8;
        font-size: 0.85rem;
    }

    .cell-plan {
        order: 1; 
        justify-content: center;
        background: #f8fafc;
        border-radius: 12px;
        padding: 15px;
        margin-bottom: 10px;
        border: none;
    }
    .cell-plan::before { content: none; }

    .cell-action {
        order: 10;
        justify-content: center;
        border: none;
        padding-top: 10px;
    }
    .cell-action::before { content: none; }

    .cell-price {
        order: 3;
    }

    .btn-order {
        width: 100%;
        text-align: center;
    }
}
/* #LUNA-BTN-TAB ================================= */
.luna-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: .6rem 1.2rem;
  font-weight: 600;
  font-size: 14px;
  border-radius: 12px !important;
  border: 1px solid rgba(37,99,235,.25) !important;
  background: #fff;
  color: #1e293b;
  transition: all .25s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,.05);
}

.luna-tab-btn img {
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
}

.luna-tab-btn:hover {
  transform: translateY(-2px);
  border-color: var(--lp) !important;
  box-shadow: 0 6px 14px rgba(124,58,237,.18);
  color: var(--lp);
}

.luna-tab-btn.active {
  background: linear-gradient(135deg, var(--lp), var(--lp-2) 45%, var(--lp-3)) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 6px 16px rgba(37,99,235,.25);
  border-radius: 12px !important;
}


.luna-tab-btn.active img {
  box-shadow: 0 0 10px rgba(255,255,255,.5);
}

/* #LUNA-TEXT ================================= */

.text-luna {
  background: linear-gradient(135deg, var(--lp), var(--lx));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 10px #93c5fd55;
}

.text-luna i,
.text-luna .ti,
.text-luna svg {
  background: inherit;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: inherit;
}

/* #LUNA-HR ================================= */

:root {
  --lp:#2563eb;
  --lx:#7c3aed;
  --sun:#facc15;
}

.luna-hr {
  border:0;
  height:3px;
  border-radius:999px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--lp),
    var(--lx),
    var(--sun),
    var(--lx),
    var(--lp),
    transparent
  );
  background-size: 300% 100%;
  animation: sweep 4s linear infinite;
  box-shadow: 0 0 10px rgba(37,99,235,.25),
              0 0 18px rgba(124,58,237,.25),
              0 0 22px rgba(250,204,21,.2);
}

@keyframes sweep {
  0%   { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

/* #LUNA-RULES ================================= */

.luna-rules h3 {
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 1rem;
  text-align: center;
  background: linear-gradient(135deg, var(--lp), var(--lx));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 14px rgba(124,58,237,.25);
  position: relative;
  display: inline-block;
}

.luna-rules h3::after {
  content: "";
  display: block;
  height: 3px;
  margin: 8px auto 0;
  width: 80px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lp), var(--lx), var(--sun));
  box-shadow: 0 0 10px rgba(124,58,237,.3);
  animation: sweep 4s linear infinite;
}

.luna-rules .lead {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  color: #334155;
  background: linear-gradient(180deg,#ffffff,#f8fafc);
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 6px 16px rgba(0,0,0,.05);
}

/* #LUNA-HERO ================================= */
.ah-hero-section {
    position: relative;
    padding: 85px 0 0 0;
    overflow: hidden;
}

.ah-hero-blob {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    z-index: 0;
    pointer-events: none;
}

.ah-hero-content {
    position: relative;
    z-index: 2;
    text-align: right; 
}

.ah-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: #eff6ff;
    color: #3b82f6;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid #dbeafe;
}

.ah-hero-title {
    font-weight: 900;
    font-size: 3rem;
    line-height: 1.3;
    color: #1e293b;
    margin-bottom: 20px;
}

.ah-hero-desc {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 90%;
}

.ah-hero-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    border-radius: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.4);
    transition: 0.3s;
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px -5px rgba(59, 130, 246, 0.5);
    color: #fff;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #334155;
    border-radius: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}
.btn-hero-secondary .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #f1f5f9;
    border-radius: 50%;
    color: #3b82f6;
}
.btn-hero-secondary:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    background: #eff6ff;
}

.ah-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
    background: #fff;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.feature-item i { font-size: 1.2rem; }
.text-blue { color: #3b82f6; }
.text-purple { color: #8b5cf6; }
.text-green { color: #10b981; }
.text-red { color: #ef4444; }

.ah-hero-media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
.animate-float {
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

.glow-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    border: 1px solid rgba(255,255,255,0.6);
    animation: float 5s ease-in-out infinite;
    animation-delay: 1s;
}

.card-1 { top: 10%; left: 0; }
.card-2 { bottom: 10%; right: 0; animation-delay: 2s; }

.floating-card .icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .ah-hero-section { padding-top: 30px; text-align: center; }
    .ah-hero-content { text-align: center; }
    .ah-hero-desc { padding: 15px 0 10px 0; margin: 0 auto 30px auto; }
    .ah-hero-actions { justify-content: center; }
    .ah-hero-features { justify-content: center; }
    .ah-hero-title { font-size: 2rem; }
    .floating-card { display: none; /* مخفی کردن کارت‌های شناور در موبایل برای شلوغ نشدن */ }
}

/* #LUNA-SERVICE-CARD ================================= */
.ah-service-section {
    position: relative;
    overflow: hidden;
    padding-top: 60px;
    padding-bottom: 60px;
}

.ah-glass-bg {
    position: absolute;
    inset: 0;
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: 0;
}

.ah-luminous-card {
    position: relative;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 25px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 10px 25px -5px rgba(0, 0, 0, 0.03),
        inset 0 0 15px rgba(255, 255, 255, 0.4);
    overflow: hidden;
    transform: translateZ(0);
    will-change: transform, background, box-shadow;
}

.ah-luminous-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 
        0 15px 40px -10px rgba(0, 0, 0, 0.06),
        inset 0 0 0 1px #fff;
    border-radius: 16px; 
}

.card-glow-bg {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 220px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.25;
    transition: 0.4s;
    z-index: 0;
}

.ah-luminous-card:hover .card-glow-bg {
    opacity: 0.5;
    width: 265px;
    height: 265px;
}

.card-glow-bg.blue { background: #93c5fd; }

.card-icon-box {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.icon-circle-service {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    box-shadow: 
        0 8px 15px -5px rgba(0,0,0,0.04),
        inset 0 0 0 1px rgba(255,255,255,0.5);
}
.icon-circle-service img {
    width: 50px;
    height: auto;
}

.bg-blue-light { background: linear-gradient(135deg, #f0f7ff 0%, #e0efff 100%); }

.ah-luminous-card:hover .icon-circle-service {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 10px 20px -5px rgba(0,0,0,0.08);
}

.card-body { position: relative; z-index: 1; width: 100%; flex-grow: 1; }

.card-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #334155;
    margin-bottom: 15px;
}

.price-display {
    border-radius: 16px;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 10px;
    transition: 0.3s;
}
.ah-luminous-card:hover .price-display { border-color: transparent; }

.price-display .label {
    display: block;
    font-size: 0.7rem;
    color: #94a3b8;
    margin-bottom: 2px;
}

.amount-wrapper {
    font-weight: 900;
    font-size: 1.40rem;
    letter-spacing: -0.5px;
}
.amount-wrapper .currency {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.8;
    margin-right: 3px;
}

.text-blue { color: #60a5fa; }

.btn-luminous {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.0);
    border: 1px solid transparent;
    color: #64748b
}

.ah-luminous-card:hover .btn-luminous.blue {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    color: #fff;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.25);
}

.btn-luminous i { transition: transform 0.3s; }
.btn-luminous:hover i { transform: translateX(-3px); }
/* #LUNA-FEATURES =========================================================== */
.ah-features-clean {
    position: relative;
    padding-top: 35px;
    padding-bottom: 50px;
    overflow: hidden;
}

.ah-grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.12) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
}

.ah-tech-card {
    background: linear-gradient(135deg, #ffffff 50%, #93c5fd 280%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 85px 16px 85px 16px;
    padding: 35px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.ah-tech-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
    box-shadow: 0 20px 50px -10px rgba(59, 130, 246, 0.15);
}

.icon-stage {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: 0.4s ease;
}

.icon-stage.blue { background: #eff6ff; }
.icon-stage.purple { background: #f5f3ff; }
.icon-stage.indigo { background: #eef2ff; }
.icon-stage.orange { background: #fff7ed; }

.ah-tech-card:hover .icon-stage {
    transform: scale(1.1) rotate(5deg);
}

.icon-stage img {
    transition: 0.3s;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.05));
}

.card-content .title {
    font-weight: 800;
    font-size: 1.15rem;
    color: #1e293b;
    margin-bottom: 12px;
}

.card-content .desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.hover-line.blue { background: #3b82f6; }
.hover-line.purple { background: #a855f7; }
.hover-line.indigo { background: #6366f1; }
.hover-line.orange { background: #f97316; }

.ah-tech-card:hover .hover-line {
    transform: scaleX(1);
}

@media (max-width: 768px) {
    .ah-features-clean { padding: 60px 0; }
    .ah-tech-card { padding: 30px 20px; border-radius: 85px 16px 85px 16px; }
}
/* #LUNA-FEATURES-2 ========================================================= */
.luna-features2 {
    padding: 60px 0;
    overflow: hidden;
}

.luna-features2-card {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 26px;
    padding: 30px 50px 30px 50px;
    border: 2px solid transparent;
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), 
                      linear-gradient(135deg, #e2e8f0 0%, #3b82f6 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 20px 50px -10px rgba(59, 130, 246, 0.1);
    overflow: hidden;
}

.mesh-bg {
    position: absolute;
    width: 150%;
    height: 150%;
    top: -50%;
    right: -20%;
    background: radial-gradient(circle at 50% 50%, rgba(239, 246, 255, 1) 0%, rgba(255, 255, 255, 0) 60%);
    z-index: 0;
    pointer-events: none;
}

.img-composition {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 400px;
}

.main-img {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.1));
    transition: 0.3s;
}

.float-chip {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    padding: 4px 16px 4px 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #334155;
    z-index: 2;
    animation: float-y 4s ease-in-out infinite;
}

.float-chip .icon-box {
    width: 32px;
    height: 32px;
    background: #eff6ff;
    color: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.chip-1 { top: 10%; right: -20px; animation-delay: 0s; }
.chip-2 { bottom: 20%; left: -30px; animation-delay: 1.5s; }
.chip-3 { top: 0; left: 20px; animation-delay: 2.5s; opacity: 0.9; transform: scale(0.9); }

@keyframes float-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0fdf4;
    color: #16a34a;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid #dcfce7;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #16a34a;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(22, 163, 74, 0); }
    100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

.title-ultra {
    font-weight: 900;
    font-size: 2.2rem;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.3;
}

.highlight-text {
    color: #3b82f6;
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(59, 130, 246, 0.15);
    z-index: -1;
    border-radius: 4px;
}

.check-list {
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
}
.check-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f8fafc;
    padding: 6px 12px;
    border-radius: 8px;
}
.check-item i {
    color: #3b82f6;
}

@media (max-width: 992px) {
    .luna-features2-card { padding: 40px 20px; }
    .img-composition { margin-bottom: 40px; }
    .content-side { text-align: center; }
    .check-list { justify-content: center; }
    .title-ultra { font-size: 1.8rem; }
}

/* #LUNA-FEATURES-3 ========================================================= */
.ah-compact-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 26px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.ah-compact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px -10px rgba(59, 130, 246, 0.12);
    border: var(--glass-border);
}

.wp-icon-wrapper {
    position: relative;
    display: inline-block;
    padding: 10px;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: #3b82f6;
    opacity: 2;
    filter: blur(55px);
    border-radius: 50%;
    z-index: 0;
}

.wp-img-float {
    position: relative;
    z-index: 1;
    animation: float-soft 5s ease-in-out infinite;
}

@keyframes float-soft {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

.ah-mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
    background: #eff6ff;
    padding: 5px 12px;
    border-radius: 8px;
}

.wp-title {
    font-weight: 800;
    color: #1e293b;
    font-size: 1.5rem;
    line-height: 1.4;
}

.wp-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 25px;
}

.small-features {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}
.text-blue { color: #3b82f6; }

@media (max-width: 992px) {
    .ah-compact-card { padding: 25px 20px; text-align: center; }
    .wp-icon-wrapper { margin-bottom: 20px; }
    .d-flex { justify-content: center; }
    .ps-lg-4 { padding-right: 0 !important; padding-left: 0 !important; }
}

/* #LUNA-FEATURES-3 ========================================================= */
.ah-panel-nextgen {
    position: relative;
    overflow: hidden;
}

@keyframes pulse-blue-ring {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(14, 165, 233, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(14, 165, 233, 0); }
}

.panel-heading {
    font-weight: 900;
    font-size: 2.5rem;
    color: #0f172a;
    line-height: 1.3;
}

.feature-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stack-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    background: #fff;
}

.stack-item:hover {
    background: #f8fafc;
    border-color: #e2e8f0;
    transform: translateX(-5px);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
}

.icon-holder {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: 0.3s;
}

.icon-holder.blue { background: #eff6ff; color: #3b82f6; }
.icon-holder.purple { background: #f5f3ff; color: #a855f7; }
.icon-holder.green { background: #f0fdf4; color: #10b981; }

.stack-item:hover .icon-holder { transform: scale(1.1) rotate(5deg); }

.stack-item .content h5 {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 5px;
}

.stack-item .content p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.panel-3d-stage {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    perspective: 1000px;
}

.blob-decor {
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    opacity: 0.6;
}

.grid-decor {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.4;
    z-index: 0;
    mask-image: radial-gradient(circle, black 40%, transparent 70%);
}

.panel-3d-wrapper {
    position: relative;
    z-index: 1;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
    border-radius: 20px;
    box-shadow: 
        -20px 30px 60px rgba(59, 130, 246, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.5);
}

.panel-3d-stage:hover .panel-3d-wrapper {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.panel-img-3d {
    border-radius: 20px;
    display: block;
    max-width: 100%;
}

.glass-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 70%);
    z-index: 2;
    pointer-events: none;
    border-radius: 20px;
}

.floating-notif {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 3;
    border: 1px solid #fff;
    animation: float-notif 4s ease-in-out infinite;
}

.floating-notif .icon {
    width: 30px; height: 30px; background: #22c55e; color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
}

.floating-notif .txt { display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1.1; }
.floating-notif .txt span { font-size: 0.6rem; color: #94a3b8; font-weight: 700; text-transform: uppercase; }
.floating-notif .txt strong { font-size: 0.9rem; color: #1e293b; margin-top: 5px;  }

@keyframes float-notif {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 992px) {
    .panel-3d-wrapper { transform: none; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
    .panel-3d-stage:hover .panel-3d-wrapper { transform: scale(1.02); }
    .floating-notif { right: 0; bottom: -10px; }
}

/* #LUNA-TRAFFIC ============================================================ */
.ah-traffic-compact {
    overflow: hidden;
}

.scroll-badge { font-size: 0.75rem; color: #94a3b8; background: #f8fafc; padding: 4px 10px; border-radius: 20px; }

.compact-scroll-mask {
    position: relative;
    padding: 10px 0 20px 0;
}

.compact-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 5px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.compact-track::-webkit-scrollbar { display: none; }

.c-plan {
    min-width: 133px;
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    scroll-snap-align: start;
    transition: all 0.2s ease;
    box-shadow: 0 5px 15px -5px rgba(0,0,0,0.03);
    position: relative;
    text-decoration: none;
}

.c-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.12);
    border-color: #dbeafe;
}

.cp-head {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
}

.cp-icon {
    font-size: 1.2rem;
    color: #cbd5e1;
    transition: 0.3s;
}
.c-plan:hover .cp-icon { color: #3b82f6; }

.cp-vol {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
}
.cp-vol small { font-size: 0.8rem; color: #64748b; font-weight: 600; }

.cp-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 10px;
}
.cp-price small { font-size: 0.7rem; font-weight: 400; }

.cp-bar {
    height: 3px;
    background: #e2e8f0;
    border-radius: 10px;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.cp-bar::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    width: 100%;
}

.c-plan.popular {
    background: #f8fbff;
    border-color: #bfdbfe;
}
.c-plan.popular .cp-vol { color: #2563eb; }
.pop-dot {
    position: absolute;
    top: 10px; left: 10px;
    width: 8px; height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #dbeafe;
}

.c-plan.call-action {
    background: #1e293b;
    border-color: #1e293b;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.call-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #fff;
}
.call-content i { font-size: 1.5rem; color: #60a5fa; margin-bottom: 2px; }
.call-content span { font-weight: 700; font-size: 0.9rem; }
.c-plan.call-action:hover { background: #0f172a; }

/* #LUNA-IMPACT ============================================================= */
.luna-impact-glass {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
}

.section-title {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
}

.section-desc-glass {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.ah-review-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 28px;
    padding: 30px;
    height: 100%;
    position: relative;
    transition: 0.3s;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.03);
}

.ah-review-card:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px -10px rgba(0,0,0,0.08);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.user-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.bg-blue-grad { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.bg-purple-grad { background: linear-gradient(135deg, #a855f7, #9333ea); }
.bg-orange-grad { background: linear-gradient(135deg, #f97316, #ea580c); }

.user-meta .name {
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    font-size: 1rem;
}
.user-meta .role {
    font-size: 0.8rem;
    color: #64748b;
}

.quote-icon {
    margin-right: auto;
    font-size: 1.5rem;
    color: #cbd5e1;
}

.review-text {
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 20px;
    min-height: 75px;
    text-align: justify;
}

.review-rating { color: #facc15; font-size: 0.9rem; }

.glass-pagination .swiper-pagination-bullet {
    background: #94a3b8;
    opacity: 0.5;
    width: 10px;
    height: 10px;
    transition: 0.3s;
}
.glass-pagination .swiper-pagination-bullet-active {
    background: #3b82f6;
    width: 25px;
    border-radius: 10px;
    opacity: 1;
}

.ah-stat-capsule {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50px 50px 50px 6px;
    padding: 15px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px -5px rgba(0,0,0,0.03);
}

.ah-stat-capsule:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.8);
    border-color: #fff;
    box-shadow: 0 10px 30px -5px rgba(59, 130, 246, 0.25);
}

.stat-icon-glow {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    background: rgba(255,255,255,0.5);
    box-shadow: inset 0 0 10px rgba(255,255,255,0.8);
    transition: 0.3s;
}

.ah-stat-capsule.blue .stat-icon-glow { color: #3b82f6; box-shadow: 0 0 20px rgba(59, 130, 246, 0.2), inset 0 0 10px rgba(255,255,255,0.8); }
.ah-stat-capsule.purple .stat-icon-glow { color: #a855f7; box-shadow: 0 0 20px rgba(168, 85, 247, 0.2), inset 0 0 10px rgba(255,255,255,0.8); }
.ah-stat-capsule.cyan .stat-icon-glow { color: #06b6d4; box-shadow: 0 0 20px rgba(6, 182, 212, 0.2), inset 0 0 10px rgba(255,255,255,0.8); }
.ah-stat-capsule.orange .stat-icon-glow { color: #f97316; box-shadow: 0 0 20px rgba(249, 115, 22, 0.2), inset 0 0 10px rgba(255,255,255,0.8); }

.ah-stat-capsule:hover .stat-icon-glow {
    transform: scale(1.1) rotate(5deg);
    background: #fff;
}

.stat-details {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 1.6rem;
    font-weight: 900;
    color: #1e293b;
    line-height: 1.1;
}
.ah-stat-capsule.blue .stat-num { color: #2563eb; }
.ah-stat-capsule.purple .stat-num { color: #9333ea; }
.ah-stat-capsule.cyan .stat-num { color: #0891b2; }
.ah-stat-capsule.orange .stat-num { color: #ea580c; }


.stat-lbl {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

@media (max-width: 576px) {
    .ah-stat-capsule {
        padding: 12px 15px;
    }
    .stat-icon-glow {
        width: 45px; height: 45px; font-size: 1.2rem;
    }
    .stat-num { font-size: 1.4rem; }
}

@media (max-width: 768px) {
    .mw-800 { width: 100%; }
    .luna-impact-glass { padding: 50px 0; }
    .ah-review-card { padding: 20px; }
}
/* #LUNA-BLOG ================================= */
.ah-blog-section {
    position: relative;
    margin-top: -35px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    color: #64748b;
    font-size: 0.9rem;
    text-decoration: none;
    transition: 0.3s;
}
.btn-view-all:hover { color: #3b82f6; }

/* --- کارت وبلاگ (Blog Card) --- */
.ah-blog-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ah-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

/* بخش تصویر */
.blog-img-wrap {
    position: relative;
    overflow: hidden;
    height: 200px; /* ارتفاع ثابت عکس */
}

.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ah-blog-card:hover .blog-img-wrap img {
    transform: scale(1.1); /* زوم هنگام هاور */
}

.category-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #334155;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.overlay-hover {
    position: absolute;
    inset: 0;
    background: rgba(59, 130, 246, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
    z-index: 1;
}

.ah-blog-card:hover .overlay-hover { opacity: 1; }

.read-icon {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.2rem;
    transform: scale(0);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ah-blog-card:hover .read-icon { transform: scale(1); }

/* محتوا */
.blog-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.meta-info {
    display: flex;
    gap: 15px;
    font-size: 0.75rem;
    color: #94a3b8;
    margin-bottom: 10px;
}
.meta-info i { margin-left: 4px; }

.blog-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 10px;
}
.blog-title a {
    color: #1e293b;
    text-decoration: none;
    transition: 0.2s;
}
.blog-title a:hover { color: #3b82f6; }

.blog-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    text-align: justify;
}

/* محدود کردن خطوط متن (Clamping) */
.clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* دکمه ادامه مطلب */
.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #3b82f6;
    text-decoration: none;
    transition: 0.3s;
    margin-top: auto;
}
.btn-read-more:hover { gap: 8px; color: #2563eb; }
/* #LUNA-TOP-HEADER ================================= */
.ah-promo-container {
    position: relative;
    z-index: 1060;
    margin-bottom: 8px;
}

.ah-promo-pill {
    background: linear-gradient(90deg, #1e293b, #0f172a);
    color: #fff;
    border-radius: 16px;
    padding: 6px 26px 6px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
    min-height: 46px;
}

.ah-promo-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: skewX(-20deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.promo-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: #e2e8f0;
}

.promo-action {
    background: #fff;
    color: #0f172a;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.1s ease;
    white-space: nowrap;
}

.promo-action:hover {
    background: #eff6ff;
    color: #3b82f6;
    transform: translateX(-2px);
    box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

@media (max-width: 992px) {
    .ah-promo-pill {
        flex-direction: column;
        padding: 15px;
        text-align: center;
        border-radius: 16px;
        gap: 10px;
    }
    .content-wrapper {
        flex-direction: column;
        gap: 8px;
    }
    .promo-action {
        width: 100%;
        justify-content: center;
    }
}

/*============================================================================*/
.space-selector-section {
    z-index: 1;
    padding:  0 40px 0 40px;
    border-bottom: none;
}
.slider-control-area {
    position: relative;
    padding-top: 43px;
    margin-bottom: 0;
}

.price-summary-section .luna-body {
    padding-top: 24px;
    padding-bottom: 24px;
}
.slider-value-box {
    position: absolute;
    top: 0;
    transform: translateX(50%);
    background: var(--luna-glass);
    border: 1px solid var(--luna-stroke);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    color: var(--luna-ink);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    z-index: 10;
    backdrop-filter: blur(8px);
}

.space-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: var(--luna-stroke);
    border-radius: 8px;
    outline: none;
    opacity: 1;
    transition: background 0.2s ease-in-out;
    cursor: pointer;
}
.space-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 8px;
    background: var(--luna-primary);
    border: 4px solid #fff;
    cursor: grab;
    box-shadow: 0 6px 8px rgba(37,99,235,0.35);
    margin-top: -5px; 
}

/* #LUNA-FOOTER ==============================================================*/
:root {
    --af-bg-light: #f8fafc;
    --af-primary: #3b82f6;
    --af-primary-dark: #2563eb;
    --af-text-dark: #0f172a;
    --af-text-muted: #64748b;
    --af-border: #e2e8f0;
    --af-shadow-soft: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.alvand-footer {
    background-color: var(--af-bg-light);
    position: relative;
    margin-top: 20px !important;
    padding-top: 0; 
    font-family: inherit;
    border-top: 1px solid var(--af-border);
    overflow: visible !important;
    z-index: 10;
}

.af-pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.relative-container {
    position: relative;
    z-index: 20;
}

.alvand-support-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.5rem 2rem;
    box-shadow: var(--af-shadow-soft);
    border: 1px solid #ffffff;
    margin-top: -50px; 
    margin-bottom: 3rem;
    position: relative;
    width: 100%;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: #eff6ff;
    color: var(--af-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: 0.3s;
}

.alvand-support-card:hover .icon-circle {
    background: var(--af-primary);
    color: #fff;
    transform: rotate(-10deg);
}

.text-dark-blue { color: var(--af-text-dark); }
.text-muted-blue { color: var(--af-text-muted); }

.alvand-phone-btn {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px 6px 6px;
    background: #fff;
    border: 1px solid #dbeafe;
    border-radius: 50px;
    color: var(--af-text-dark);
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.btn-icon-box {
    width: 36px;
    height: 36px;
    background: var(--af-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 1rem;
    transition: 0.3s;
}

.alvand-phone-btn:hover {
    border-color: var(--af-primary);
    transform: translateY(-2px);
}
.alvand-phone-btn:hover .btn-icon-box {
    background: var(--af-primary-dark);
    transform: scale(1.1);
}

.af-logo-symbol {
    width: 10px;
    height: 10px;
    background: var(--af-primary);
    border-radius: 2px;
    transform: rotate(45deg);
    display: inline-block;
}

.footer-heading {
    color: var(--af-text-dark);
    font-weight: 700;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-right: 12px;
}

.footer-heading::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 16px;
    background: var(--af-primary);
    border-radius: 10px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: var(--af-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--af-primary);
    transform: translateX(-5px);
}

.trust-seals-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.trust-item {
    background: #fff;
    border: 1px solid var(--af-border);
    border-radius: 12px;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    transition: 0.3s;
}

.trust-item img {
    max-width: 100%;
    max-height: 100%;
    opacity: 0.7;
    transition: 0.3s;
}

.trust-item:hover {
    border-color: var(--af-primary);
    transform: translateY(-3px);
}
.trust-item:hover img { filter: grayscale(0); opacity: 1; }

.license-box {
    background: #fff;
    border: 1px solid var(--af-border);
    border-radius: 12px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    transition: 0.3s;
}
.license-box:hover { border-color: var(--af-primary); }

.license-box .icon {
    width: 32px;
    height: 32px;
    background: #dbeafe;
    color: var(--af-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.license-box .content { display: flex; flex-direction: column; text-decoration: none; }
.license-box .title { font-weight: 700; font-size: 0.85rem; color: var(--af-text-dark); }
.license-box .subtitle { font-size: 0.7rem; color: var(--af-text-muted); }

.badge-new {
    position: absolute;
    top: -8px;
    left: 10px;
    background: #10b981;
    color: #fff;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 10px;
}

.social-btn {
    width: 38px;
    height: 38px;
    background: #fff;
    border: 1px solid var(--af-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--af-text-muted);
    transition: 0.3s;
    font-size: 1.1rem;
}
.social-btn:hover { color: #fff; border-color: transparent; transform: translateY(-3px); }
.social-btn.telegram:hover { background: #0088cc; }
.social-btn.instagram:hover { background: #E1306C; }
.social-btn.whatsapp:hover { background: #25D366; }
.social-btn.linkedin:hover { background: #0077b5; }

.copyright-bar {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 1.5rem 0;
    margin-top: 2rem;
    background: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.hover-primary:hover { color: var(--af-primary) !important; }

@media (max-width: 768px) {
    .alvand-footer { margin-top: 80px !important; }
    .alvand-support-card {
        text-align: center;
        margin-top: -40px;
    }
    .alvand-support-card .d-flex {
        flex-direction: column;
        justify-content: center;
    }
    .footer-content { text-align: center; }
    .footer-heading { 
        justify-content: center; 
        padding-right: 0;
    }
    .footer-heading::before {
        display: none;
    }
    .trust-seals-grid { justify-content: center; }
    .license-box { justify-content: center; text-align: right; }
}

/* #LUNA-BADGE ===============================================================*/
.af-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    vertical-align: middle;
    transition: 0.3s;
    border: 1px solid transparent;
}

.af-badge2 {
    display: inline-flex;
    align-items: center;
    width: max-content; 
    padding: .15rem .50rem;
    border-radius: 8px;
    font: 500 12px/1.6 IRANYekan;
    color:#1e293b; background:#ffffff; border:1px solid #e5e7eb;
}

.af-badge-green {
    background-color: #dcfce7;
    color: #166534;
    border-color: #bbf7d0;
}

.af-badge-yellow {
    background-color: #fef9c3;
    color: #854d0e;
    border-color: #fde047;
}

.af-badge-blue {
    background-color: #dbeafe;
    color: #1e40af;
    border-color: #bfdbfe;
}

.af-badge-red {
    background-color: #fee2e2;
    color: #991b1b;
    border-color: #fecaca;
}

.luna-badge {
  width:max-content; margin:0 auto 8px;
  padding:.25rem .75rem; border-radius:999px;
  font: 500 12px/1.6 IRANYekan;
  color:#1e293b; background:#ffffff; border:1px solid #e5e7eb;
}

.luna-badge-outline {
    display: inline-block;
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    background: #f8fafc;
}
/* #LUNA-HEADER ==============================================================*/
:root {
    --ah-capsule-height: 75px;
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: 1px solid rgba(255, 255, 255, 0.7);
    --glass-shadow: 
        0 4px 24px -1px rgba(0, 0, 0, 0.05),
        0 10px 30px -5px rgba(0, 0, 0, 0.02),
        inset 0 0 0 1px rgba(255,255,255,0.6); 
    --glass-blur: blur(20px);
    --ah-primary: #3b82f6;
    --ah-primary-soft: rgba(59, 130, 246, 0.08);
    --ah-text: #1e293b;
    --ah-text-muted: #64748b;
    --ah-radius: 26px; 
    --ah-ease: cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
    background: linear-gradient(135deg, #f0f4ff 0%, #eef2f6 100%);
    min-height: 100vh;
}

.ah-header-floating {
    position: sticky;
    top: 15px;
    z-index: 1050;
    padding: 0 10px;
}

.ah-glass-capsule {
    height: var(--ah-capsule-height);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: var(--ah-radius);
    box-shadow: var(--glass-shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px 0 25px;
    width: 100%;
}

.ah-brand, .ah-action-btn {
    display: flex;
    align-items: center;
    height: 100%;
}
.ah-brand img {
    display: block;
}

.ah-nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    height: 100%;
}

.ah-nav-list {
    list-style: none;
    margin: 0 !important; 
    padding: 0 !important;
    display: flex;
    align-items: center;
    gap: 4px;
    height: 100%;
}

.ah-nav-item {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
}

.ah-nav-link {
    color: var(--ah-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 0 16px;
    height: 44px; 
    border-radius: 50px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center; 
    justify-content: center;
    gap: 6px;
    line-height: 1; 
    white-space: nowrap;
    border: 1px solid transparent;
}

.arrow-icon {
    font-size: 0.9em;
    margin-top: 2px;
    transition: transform 0.3s var(--ah-ease);
    opacity: 0.6;
}

.ah-nav-link:hover, .ah-nav-item:hover .ah-nav-link {
    background: var(--ah-primary-soft);
    color: var(--ah-primary);
}

.ah-nav-item:hover .arrow-icon {
    transform: rotate(180deg);
    opacity: 1;
}

.ah-btn-glass-glow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 48px;
    padding: 0 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    border: none;
    border-radius: 18px;
    
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    overflow: hidden;
    position: relative;
}
.ah-btn-glass-glow .icon-circle {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    font-size: 1.1rem;
}
.ah-btn-glass-glow:hover {
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
}
.ah-btn-glass-glow:hover .icon-circle {
    background: #fff;
    color: #3b82f6;
    transform: scale(1.1);
    transform: rotate(360deg);
}
.ah-btn-glass-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}
.ah-btn-glass-glow:hover::before {
    left: 100%;
}

.ah-mega-menu.glass-panel {
    position: absolute;
    top: 105%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 850px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s var(--ah-ease);
    z-index: 100;
    overflow: hidden;
    padding: 0;
}

.ah-mega-menu.medium-width { width: 600px; }
.ah-mega-menu.compact { width: 380px; }

.ah-nav-item:hover .ah-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.ah-mega-sidebar { padding: 25px; background: rgba(248, 250, 252, 0.6); height: 100%; }
.border-end-soft { border-left: 1px solid rgba(0,0,0,0.05); }
.ah-mega-content { padding: 25px; }

.ah-menu-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    background: transparent;
}

.ah-menu-card:hover {
    background: #fff;
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 20px -5px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}
.ah-menu-card .text {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.ah-menu-card .title {
    font-weight: 700;
    color: var(--ah-text);
    font-size: 0.95rem;
    margin-bottom: 6px;
    line-height: 1.4;
}
.ah-menu-card .desc {
    color: var(--ah-text-muted);
    font-size: 0.8rem;
    line-height: 1.6;
    text-align: justify;
    direction: rtl;
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s;
    margin-top: 2px;
}

.bg-blue { background: #eff6ff; } .bg-indigo { background: #eef2ff; }
.bg-green { background: #f0fdf4; } .bg-red { background: #fef2f2; }
.bg-orange { background: #fff7ed; } .bg-dark { background: #f8fafc; }
.bg-slate { background: #f1f5f9; }


.ah-menu-card.small-card { padding: 8px; }
.ah-menu-card.small-card .icon.small img { width: 34px; }
.ah-menu-card.small-card .title { font-size: 0.88rem; margin-bottom: 0; }

/* #LUNA-HEADER-MOBILE =======================================================*/
.ah-mobile-offcanvas {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.05);
}

.ah-mobile-body {
    background: transparent !important;
}

.ah-mobile-link, 
.ah-mobile-accordion .accordion-button {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.4); 
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px !important;
    
    color: #334155;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.01);
}

.ah-mobile-link:hover, 
.ah-mobile-link:active,
.ah-mobile-accordion .accordion-button:not(.collapsed) {
    background: #fff;
    color: #3b82f6;
    border-color: #3b82f6;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

.ah-mobile-accordion .accordion-item {
    border: none;
    background: transparent;
}
.ah-mobile-accordion .accordion-button:focus {
    box-shadow: none;
}

.ah-mobile-link .icon-wrap, 
.accordion-button .icon-wrap {
    width: 38px;
    height: 38px;
    background: #fff;
    color: #3b82f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    font-size: 1.2rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.ah-mobile-link:hover .icon-wrap,
.ah-mobile-accordion .accordion-button:not(.collapsed) .icon-wrap {
    background: #3b82f6;
    color: #fff;
}

.ah-mobile-accordion .accordion-button::after {
    background-size: 14px;
    filter: grayscale(1);
    opacity: 0.6;
    transition: 0.3s;
}
.ah-mobile-accordion .accordion-button:not(.collapsed)::after {
    filter: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233b82f6'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.ah-mobile-accordion .accordion-body {
    padding: 10px 15px 15px 15px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-top: none;
    
    border-radius: 0 0 16px 16px;
    margin: -10px 8px 10px 8px;
}

.ah-sub-link {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    color: #475569;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 10px;
    margin-bottom: 2px;
    transition: 0.2s;
}

.ah-sub-link img {
    margin-left: 10px;
    filter: grayscale(0.2);
    transition: 0.2s;
}

.ah-sub-link:hover {
    background-color: #fff;
    color: #3b82f6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transform: translateX(-3px);
}
.ah-sub-link:hover img { filter: none; transform: scale(1.1); }

.ah-mobile-footer {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.6) !important;
}

.ah-btn-mobile-login {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}
.ah-btn-mobile-login:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    color: white;
    transform: translateY(-2px);
}

.offcanvas, .ah-mobile-offcanvas {
    z-index: 9999 !important;
}
.offcanvas-backdrop {
    z-index: 9998 !important;
    backdrop-filter: blur(4px);
}

.ah-toggle {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%  !important;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.ah-toggle span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: #334155;
    border-radius: 2px;
    transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ah-toggle span:nth-child(1) { transform: translateY(-6px); }
.ah-toggle span:nth-child(2) { width: 14px; margin-left: 6px; }
.ah-toggle span:nth-child(3) { transform: translateY(6px); }

.ah-toggle:not(.collapsed) {
    background: #3b82f6;
    border-color: #3b82f6;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.ah-toggle:not(.collapsed) span {
    background: #fff;
    width: 22px;
    margin: 0;
}

.ah-toggle:not(.collapsed) span:nth-child(1) { transform: rotate(45deg); }
.ah-toggle:not(.collapsed) span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.ah-toggle:not(.collapsed) span:nth-child(3) { transform: rotate(-45deg); }

/* #LUNA-CONSULT =============================================================*/
.ah-consult-ultra {
    position: relative;
    z-index: 10;
}

.ah-glass-bar {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 24px;
    padding: 20px 30px;
    border: 2px solid transparent;
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), 
                      linear-gradient(135deg, rgba(255,255,255,0.5) 0%, rgba(59, 130, 246, 0.3) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 20px 50px -15px rgba(59, 130, 246, 0.15);
    overflow: hidden;
}

.ah-glass-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255, 255, 255, 0.6) 50%,
        transparent 100%
    );
    transform: skewX(-20deg);
    animation: shimmer-sweep 6s infinite cubic-bezier(0.4, 0.0, 0.2, 1);
    pointer-events: none;
}

@keyframes shimmer-sweep {
    0% { left: -100%; opacity: 0; }
    20% { opacity: 1; }
    100% { left: 200%; opacity: 0; }
}

.bar-content {
    display: flex;
    position: relative;
    z-index: 2;
}

.icon-float-box {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.5);
    animation: smooth-float 3s ease-in-out infinite alternate;
}

@keyframes smooth-float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

.consult-heading {
    font-weight: 800;
    font-size: 1.3rem;
    color: #1e293b;
}

.consult-sub {
    font-size: 0.95rem;
    color: #64748b;
}

.phone-link {
    display: block;
    font-weight: 900;
    font-size: 1.6rem;
    color: #1e293b;
    text-decoration: none;
    line-height: 1;
    transition: 0.3s;
}
.phone-link:hover { color: #3b82f6; }

.mini-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: #94a3b8;
    background: #f1f5f9;
    padding: 3px 8px;
    border-radius: 6px;
}

.btn-shine-call {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    border-radius: 16px;
    font-weight: 700;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 8px 20px -5px rgba(16, 185, 129, 0.4);
    transition: 0.3s;
}

.btn-shine-call::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
    );
    transition: 0.6s;
}

.btn-shine-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px -5px rgba(16, 185, 129, 0.6);
    color: #fff;
}

.btn-shine-call:hover::before {
    left: 100%;
}

.wave-icon {
    font-size: 1.2rem;
    transition: 0.3s;
}

.btn-shine-call:hover .wave-icon {
    animation: gentle-wave 1s ease-in-out infinite;
}

@keyframes gentle-wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
}

@media (max-width: 992px) {
    .bar-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .d-flex.gap-4 { flex-direction: column; gap: 15px !important; }
    .actions-wrapper {
        flex-direction: column;
        width: 100%;
        gap: 20px !important;
    }
    .phone-data { text-align: center; }
    .btn-shine-call { width: 100%; justify-content: center; }
}

/* #LUNA-AI ==================================================================*/
:root {
    --ai-primary: #4f46e5;
    --ai-secondary: #ec4899;
    --ai-bg-glass: rgba(255, 255, 255, 0.65);
    --ai-border: 1px solid rgba(255, 255, 255, 0.8);
    --ai-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    --ai-text-dark: #1e293b;
    --ai-text-muted: #64748b;
}

section.container {
    position: relative;
}

section.container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-card {
    position: relative;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.planet {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.4), rgba(59, 130, 246, 0.1) 60%, transparent 80%);
    filter: blur(40px);
    top: -40px;
    right: -40px;
    z-index: -1;
    animation: planet-pulse 8s infinite alternate;
}

@keyframes planet-pulse {
    0% { transform: scale(1) translate(0, 0); opacity: 0.7; }
    100% { transform: scale(1.2) translate(-20px, 20px); opacity: 1; }
}

.hero__content {
    position: relative;
    z-index: 2;
}



.ai-title {
    font-weight: 900;
    font-size: 2.2rem;
    color: var(--ai-text-dark);
    line-height: 1.5;
    margin-bottom: 20px;
}

.ai-subtitle {
    font-size: 1.05rem;
    color: var(--ai-text-muted);
    line-height: 1.9;
    background: rgba(255,255,255,0.5);
    padding: 15px;
    border-radius: 16px;
    border-right: 4px solid var(--ai-primary);
    backdrop-filter: blur(5px);
}

.chat {
    background: var(--ai-bg-glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: var(--ai-border);
    border-radius: 24px;
    box-shadow: var(--ai-shadow);
    display: flex;
    flex-direction: column;
    height: 580px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.chat:hover {
    box-shadow: 0 30px 60px -15px rgba(59, 130, 246, 0.2);
}

.chat__head {
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat__meta {
    font-weight: 700;
    color: var(--ai-text-dark);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.chat__meta::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
    animation: blink-dot 2s infinite;
}

@keyframes blink-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.msgs {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(248, 250, 252, 0.6);
    scroll-behavior: smooth;
}

.msgs::-webkit-scrollbar { width: 6px; }
.msgs::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
.msgs::-webkit-scrollbar-track { background: transparent; }

.msg {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    max-width: 85%;
    animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    font-size: 1.2rem;
}

.bubble {
    padding: 12px 18px;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    word-wrap: break-word;
}

.msg:not(:has(.user)) {
    align-self: flex-start;
}
.avatar.bot {
    background: #fff;
    border: 1px solid #e2e8f0;
}
.bubble.bot {
    background: #ffffff;
    color: var(--ai-text-dark);
    border: 1px solid #e2e8f0;
    border-bottom-right-radius: 4px;
}

.msg:has(.user) {
    align-self: flex-end;
    flex-direction: row-reverse;
}
.avatar.user {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: #fff;
}
.bubble:not(.bot) {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    border-bottom-left-radius: 4px;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.25);
}

.chat__foot {
    padding: 15px 20px;
    background: #fff;
    border-top: 1px solid #f1f5f9;
    display: flex;
    gap: 12px;
    align-items: center;
}

.input {
    flex-grow: 1;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px 20px;
    font-size: 0.95rem;
    color: var(--ai-text-dark);
    outline: none;
    transition: all 0.3s ease;
}

.input:focus {
    background: #fff;
    border-color: var(--ai-primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

@keyframes popIn {
    0% { opacity: 0; transform: translateY(10px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 992px) {
    .chat { height: 500px; }
    .hero-card { text-align: center; margin-bottom: 30px; }
    .subtitle { border-right: none; }
    .planet { left: 50%; transform: translateX(-50%); top: -50px; right: auto; }
}


.bot-orbit {
    width: 100%;
    height: 100%;
    position: relative;
    animation: orbit-spin 10s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: #3b82f6;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(59, 130, 246, 0.6);
    top: 50%;
    left: 50%;
    margin-top: -3.5px;
    margin-left: -3.5px;
}

@keyframes orbit-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.particle:nth-child(1) { transform: rotate(0deg) translate(12px); }
.particle:nth-child(2) { transform: rotate(45deg) translate(13px); background-color: #8b5cf6; /* بنفش */ }
.particle:nth-child(3) { transform: rotate(90deg) translate(12px); }
.particle:nth-child(4) { transform: rotate(135deg) translate(13px); opacity: 0.7; }
.particle:nth-child(5) { transform: rotate(180deg) translate(12px); background-color: #a855f7; }
.particle:nth-child(6) { transform: rotate(225deg) translate(13px); }
.particle:nth-child(7) { transform: rotate(270deg) translate(12px); opacity: 0.8; }
.particle:nth-child(8) { transform: rotate(315deg) translate(13px); background-color: #6366f1; }

.particle:nth-child(9)  { transform: rotate(20deg) translate(6px); opacity: 0.6; width: 3px; height: 3px; }
.particle:nth-child(10) { transform: rotate(160deg) translate(7px); opacity: 0.6; width: 3px; height: 3px; }
.particle:nth-child(11) { transform: rotate(250deg) translate(6px); background-color: #8b5cf6; width: 3px; height: 3px; }
.particle:nth-child(12) { transform: rotate(330deg) translate(7px); opacity: 0.6; width: 3px; height: 3px; }

.particle:nth-child(13) { 
    transform: rotate(80deg) translate(14px); 
    background-color: #22c55e; 
    box-shadow: 0 0 5px rgba(34, 197, 94, 0.6);
}

.typing-dots {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 2px 4px;
}

.typing-dots span {
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: #94a3b8;
    border-radius: 50%;
    animation: typing-bounce 1.4s infinite ease-in-out both;
}

.typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.typing-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing-bounce {
    0%, 80%, 100% { transform: scale(0); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}
/* #HERO-PAGE =============================================================== */
.ah-hero-crystal {
    position: relative;
    overflow: hidden;
    padding-bottom: 5px;
}

.mesh-background {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(219, 234, 254, 0.4) 0%, rgba(255, 255, 255, 0) 50%);
    filter: blur(80px);
    opacity: 0.8;
    z-index: 0;
    pointer-events: none;
    animation: rotate-mesh 20s linear infinite;
}
@keyframes rotate-mesh { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.crystal-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 6px 8px 6px 8px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid #f1f5f9;
}
.badge-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.badge-txt {
    font-size: 0.85rem;
    font-weight: 700;
    color: #334155;
    padding-left: 5px;
}

.hero-title-crystal {
    font-weight: 900;
    font-size: 3.5rem;
    color: #0f172a;
    line-height: 1.2;
    letter-spacing: -1.5px;
}

.highlight-shape {
    position: relative;
    color: #2563eb;
    z-index: 1;
}
.highlight-shape::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: -5px;
    width: 105%;
    height: 15px;
    background: #dbeafe;
    z-index: -1;
    border-radius: 4px;
    transform: rotate(-1deg);
}

.hero-desc-crystal {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    max-width: 580px;
    text-align: justify;
}

.spec { display: flex; align-items: center; gap: 8px; font-weight: 600; color: #475569; }
.spec .icon { color: #3b82f6; font-size: 1.3rem; }
.sep-dot { width: 4px; height: 4px; background: #cbd5e1; border-radius: 50%; }

.crystal-visual-deck {
    position: relative;
    display: inline-block;
    padding: 40px;
    perspective: 1000px;
}

.back-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%) rotate(-5deg);
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 40px;
    z-index: 0;
    opacity: 0.6;
    transition: 0.5s ease;
}

.hero-page-card {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;

    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 40px;
    padding: 20px;
    z-index: 1;
    
    box-shadow: 
        0 20px 60px -15px rgba(59, 130, 246, 0.15),
        inset 0 0 0 2px rgba(255, 255, 255, 0.5);
    transition: 0.5s ease;
    transform-style: preserve-3d;
}

.hero-page-card img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.reflection {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 40px;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
    opacity: 0.7;
    pointer-events: none;
}

.crystal-visual-deck:hover .back-card {
    transform: translate(-55%, -45%) rotate(-8deg) scale(1.05);
}
.crystal-visual-deck:hover .glass-card {
    transform: translateY(-5px) rotateY(2deg);
    box-shadow: 0 30px 70px -15px rgba(59, 130, 246, 0.25);
}

.floating-widget {
    position: absolute;
    background: #fff;
    padding: 10px 15px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    min-width: 140px;
    border: 1px solid #f8fafc;
    animation: float-widget 4s ease-in-out infinite;
}

.widget-ping { top: 15%; right: -20px; animation-delay: 0s; }
.widget-cpu { bottom: 15%; left: -30px; animation-delay: 2s; }

.floating-widget .dot { width: 8px; height: 8px; border-radius: 50%; }
.floating-widget .dot.green { background: #22c55e; box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2); }

.floating-widget .icon-chip {
    width: 36px; height: 36px; background: #eff6ff; color: #3b82f6;
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
}

.floating-widget .info { display: flex; flex-direction: column; line-height: 1.2; }
.floating-widget .info small { font-size: 0.7rem; color: #94a3b8; font-weight: 700; text-transform: uppercase; }
.floating-widget .info strong { font-size: 0.8rem; margin-top: 5px; color: #1e293b; }

@keyframes float-widget {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 992px) {
    .hero-title-crystal { font-size: 2.5rem; text-align: center; }
    .hero-desc-crystal { text-align: center; margin: 0 auto 30px auto; text-align: justify; }
    .hero-text-crystal { display: flex; flex-direction: column; align-items: center; }
    .crystal-visual-deck { margin-top: 50px; padding: 20px; }
    .widget-cpu { bottom: 15%; left: -13px; animation-delay: 2s; }
}