@font-face {
  font-family: "my-font";
  src: url(../fonts/iranyekan.ttf) format("truetype");
}

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  direction: rtl;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "my-font", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #080808;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

/* ════════════════════════════════════════
   HEADER & NAVBAR
════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  direction: rtl;
}

.header-glass {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: border-color 0.35s ease, background 0.35s ease;
  z-index: 0;
}

.header-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 100vw);
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(180, 30, 50, 0.12) 0%,
    transparent 70%
  );
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
  animation: hGlow 5s ease-in-out infinite;
}

@keyframes hGlow {
  0%,
  100% {
    opacity: 0.7;
    transform: translateX(-50%) scaleX(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scaleX(1.15);
  }
}

.header-accent-line {
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(180, 30, 50, 0.3) 30%,
    rgba(180, 30, 50, 0.5) 50%,
    rgba(180, 30, 50, 0.3) 70%,
    transparent
  );
  z-index: 0;
}

.nav-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  opacity: 0;
  animation: navIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
}

@keyframes navIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Logo */
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.25s ease;
}
.nav-logo:hover {
  opacity: 0.85;
}

.logo-icon {
  width: 50px;
  height: 50px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-logo:hover .logo-icon {
  transform: rotate(-8deg) scale(1.06);
}
.logo-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.logo-name {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.03em;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.75) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.logo-sub {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.25s ease, background 0.25s ease;
  white-space: nowrap;
  font-family: "my-font", sans-serif;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  right: 50%;
  height: 1.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, #c8223a, #e8556a);
  transition: left 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    right 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
  opacity: 0;
}
.nav-link:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
}
.nav-link:hover::after {
  left: 14px;
  right: 14px;
  opacity: 1;
}
.nav-link.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}
.nav-link.is-active::after {
  left: 14px;
  right: 14px;
  opacity: 1;
}

.nav-link.nav-cta {
  background: linear-gradient(
    135deg,
    rgba(180, 30, 50, 0.22) 0%,
    rgba(180, 30, 50, 0.1) 100%
  );
  border: 1px solid rgba(180, 30, 50, 0.32);
  color: rgba(232, 85, 106, 0.9);
  padding: 7px 16px;
}
.nav-link.nav-cta::after {
  display: none;
}
.nav-link.nav-cta:hover {
  background: linear-gradient(
    135deg,
    rgba(180, 30, 50, 0.35) 0%,
    rgba(180, 30, 50, 0.18) 100%
  );
  border-color: rgba(180, 30, 50, 0.55);
  color: #ff8fa0;
  box-shadow: 0 0 18px rgba(180, 30, 50, 0.2);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  gap: 5px;
  transition: background 0.25s ease, border-color 0.25s ease;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease,
    width 0.3s ease;
}
.nav-hamburger:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu */
.nav-mobile {
  position: absolute;
  top: calc(100% + 8px);
  left: 12px;
  right: 12px;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(180, 30, 50, 0.08);
  display: flex;
  flex-direction: column;
  gap: 3px;
  z-index: 200;
  opacity: 0;
  transform: translateY(-10px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}
.nav-mobile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1) 50%,
    transparent
  );
}
.nav-mobile.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.nav-mobile-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border-radius: 11px;
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  transition: color 0.22s ease, background 0.22s ease;
  font-family: "my-font", sans-serif;
}
.nav-mobile-link .m-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(180, 30, 50, 0.5);
  flex-shrink: 0;
  transition: background 0.22s ease;
}
.nav-mobile-link:hover {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.06);
}
.nav-mobile-link:hover .m-dot {
  background: #c8223a;
}
.nav-mobile-link.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}
.nav-mobile-link.is-active .m-dot {
  background: #e8556a;
  box-shadow: 0 0 6px rgba(200, 34, 58, 0.7);
}

.mobile-cta-wrap {
  margin-top: 4px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.nav-mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 16px;
  border-radius: 11px;
  font-size: 14.5px;
  font-weight: 600;
  color: #e8556a;
  text-decoration: none;
  background: linear-gradient(
    135deg,
    rgba(180, 30, 50, 0.2) 0%,
    rgba(180, 30, 50, 0.08) 100%
  );
  border: 1px solid rgba(180, 30, 50, 0.28);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  font-family: "my-font", sans-serif;
}
.nav-mobile-cta:hover {
  background: linear-gradient(
    135deg,
    rgba(180, 30, 50, 0.32) 0%,
    rgba(180, 30, 50, 0.15) 100%
  );
  border-color: rgba(180, 30, 50, 0.5);
  color: #ff8fa0;
}

/* Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

/* ════════════════════════════════════════
   SHARED BACKGROUND UTILITIES
════════════════════════════════════════ */
.bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bg-gradient {
  background: radial-gradient(
      ellipse 80% 60% at 70% 50%,
      rgba(180, 30, 50, 0.13) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 60% 80% at 20% 80%,
      rgba(180, 30, 50, 0.07) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 50% at 85% 10%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #0c0c0c 0%, #080808 50%, #0a0505 100%);
}

.bg-grid {
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 20%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 20%,
    transparent 100%
  );
}

/* ════════════════════════════════════════
   SHARED BADGE / ANIMATION TOKENS
════════════════════════════════════════ */
@keyframes orbPulse {
  0%,
  100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.15) translateY(-20px);
  }
}
@keyframes dotPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes sweep {
  0% {
    left: -60%;
  }
  100% {
    left: 130%;
  }
}

.anim-in {
  opacity: 0;
  animation: fadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.d1 {
  animation-delay: 0.05s;
}
.d2 {
  animation-delay: 0.15s;
}
.d3 {
  animation-delay: 0.22s;
}
.d4 {
  animation-delay: 0.3s;
}
.d5 {
  animation-delay: 0.38s;
}
.d6 {
  animation-delay: 0.46s;
}
.d7 {
  animation-delay: 0.54s;
}

/* ════════════════════════════════════════
   SHOWCASE SECTION
════════════════════════════════════════ */
.showcase-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(60px, 8vw, 100px) clamp(16px, 4vw, 48px);
  overflow: hidden;
}

.bg-orb-1 {
  position: absolute;
  width: clamp(260px, 40vw, 500px);
  height: clamp(260px, 40vw, 500px);
  top: -100px;
  right: -80px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(180, 30, 50, 0.18) 0%,
    transparent 70%
  );
  filter: blur(60px);
  animation: orbPulse 8s ease-in-out infinite;
}
.bg-orb-2 {
  position: absolute;
  width: clamp(200px, 30vw, 350px);
  height: clamp(200px, 30vw, 350px);
  bottom: -60px;
  left: 5%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(180, 30, 50, 0.1) 0%,
    transparent 70%
  );
  filter: blur(50px);
  animation: orbPulse 10s ease-in-out infinite reverse;
}
.bg-orb-3 {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 30%;
  left: 48%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.04) 0%,
    transparent 70%
  );
  filter: blur(40px);
}

.inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1160px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

/* Glass Card */
.glass-card {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.065) 0%,
    rgba(255, 255, 255, 0.03) 50%,
    rgba(180, 30, 50, 0.04) 100%
  );
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 52px) clamp(22px, 3.5vw, 48px);
  cursor: default;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4),
    0 1px 0 rgba(255, 255, 255, 0.05) inset, 0 -1px 0 rgba(0, 0, 0, 0.3) inset;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -60%;
  width: 60%;
  height: 200%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0.06) 50%,
    rgba(255, 255, 255, 0) 60%,
    transparent 100%
  );
  transform: skewX(-15deg);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
}
.glass-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 23px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.55s ease;
}
.glass-card:hover {
  transform: translateY(-8px) scale(1.012);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.09) 0%,
    rgba(255, 255, 255, 0.045) 50%,
    rgba(180, 30, 50, 0.06) 100%
  );
  border-color: rgba(180, 30, 50, 0.45);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(180, 30, 50, 0.2),
    0 0 40px rgba(180, 30, 50, 0.12), 0 1px 0 rgba(255, 255, 255, 0.1) inset;
}
.glass-card:hover::before {
  animation: sweep 0.85s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 1;
}

.card-content {
  position: relative;
  z-index: 2;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(180, 30, 50, 0.15);
  border: 1px solid rgba(180, 30, 50, 0.35);
  border-radius: 100px;
  padding: 5px 14px 5px 10px;
  margin-bottom: clamp(18px, 2.5vw, 28px);
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c8223a;
  box-shadow: 0 0 6px rgba(200, 34, 58, 0.8);
  animation: dotPulse 2s ease-in-out infinite;
}
.badge span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #e8556a;
}

/* Heading */
.heading {
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: clamp(14px, 2vw, 20px);
}
.heading em {
  font-style: normal;
  background: linear-gradient(135deg, #c8223a 0%, #e8556a 50%, #ff8fa0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Description */
.description {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: clamp(24px, 3vw, 36px);
  max-width: 100%;
  text-align: justify;
}

/* Features */
.features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: clamp(13px, 1.4vw, 14.5px);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}
.feature-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(180, 30, 50, 0.2);
  border: 1px solid rgba(180, 30, 50, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.feature-icon svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: #e8556a;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* CTA Row */
.cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #b8182e 0%, #d42840 50%, #c8223a 100%);
  color: #fff;
  font-size: clamp(13px, 1.4vw, 14.5px);
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: clamp(11px, 1.5vw, 14px) clamp(18px, 2.5vw, 28px);
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 20px rgba(180, 30, 50, 0.4),
    0 1px 0 rgba(255, 255, 255, 0.15) inset;
  font-family: "my-font", sans-serif;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 60%
  );
  border-radius: 12px;
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px rgba(180, 30, 50, 0.55),
    0 1px 0 rgba(255, 255, 255, 0.15) inset;
}
.btn-primary:active {
  transform: translateY(0) scale(0.99);
}
.btn-primary svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.btn-ghost {
  font-size: clamp(12.5px, 1.3vw, 13.5px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  font-family: "my-font", sans-serif;
}
.btn-ghost:hover {
  color: rgba(255, 255, 255, 0.8);
}
.btn-ghost svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Image Column */
.image-col {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatImg 5s ease-in-out infinite;
  width: 100%;
}
.image-wrapper img {
  width: auto;
  height: clamp(240px, 35vw, 400px);
  max-width: 100%;
  border-radius: 7.5%;
  box-shadow: 15px 15px 0 rgba(255, 255, 255, 0.12);
  object-fit: cover;
}
@keyframes floatImg {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-14px) rotate(0.5deg);
  }
  66% {
    transform: translateY(-6px) rotate(-0.3deg);
  }
}
.img-glow {
  position: absolute;
  width: clamp(200px, 30vw, 340px);
  height: clamp(200px, 30vw, 340px);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(180, 30, 50, 0.28) 0%,
    rgba(180, 30, 50, 0.08) 50%,
    transparent 70%
  );
  filter: blur(50px);
  z-index: 0;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}
.img-shadow {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
  height: 30px;
  background: radial-gradient(
    ellipse,
    rgba(180, 30, 50, 0.35) 0%,
    transparent 70%
  );
  filter: blur(14px);
  z-index: 0;
}
.accent-ring {
  position: absolute;
  width: clamp(260px, 38vw, 420px);
  height: clamp(260px, 38vw, 420px);
  border-radius: 50%;
  border: 1px solid rgba(180, 30, 50, 0.12);
  z-index: 0;
  animation: ringRotate 20s linear infinite;
}
.accent-ring-2 {
  width: clamp(200px, 30vw, 340px);
  height: clamp(200px, 30vw, 340px);
  border-color: rgba(255, 255, 255, 0.04);
  animation-direction: reverse;
  animation-duration: 14s;
}
@keyframes ringRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.spec-pill {
  position: absolute;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
}
.spec-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c8223a;
  box-shadow: 0 0 5px rgba(200, 34, 58, 0.7);
}
.pill-1 {
  top: 8%;
  right: -10px;
  animation: pillFloat 5.5s ease-in-out infinite;
}
.pill-2 {
  bottom: 18%;
  left: -16px;
  animation: pillFloat 6.5s ease-in-out infinite 1s;
}
.pill-3 {
  top: 60%;
  right: -12px;
  animation: pillFloat 5s ease-in-out infinite 2.5s;
}
@keyframes pillFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ════════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════════ */
.contact-section {
  position: relative;
  padding: clamp(60px, 8vw, 100px) clamp(16px, 4vw, 48px)
    clamp(70px, 9vw, 120px);
  overflow: hidden;
}

.divider-fade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(180, 30, 50, 0.25) 30%,
    rgba(180, 30, 50, 0.4) 50%,
    rgba(180, 30, 50, 0.25) 70%,
    transparent 100%
  );
}

.bg-base {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(
      ellipse 65% 55% at 15% 50%,
      rgba(180, 30, 50, 0.11) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 55% 70% at 90% 20%,
      rgba(180, 30, 50, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 40% at 50% 95%,
      rgba(180, 30, 50, 0.06) 0%,
      transparent 60%
    ),
    linear-gradient(170deg, #0a0505 0%, #080808 40%, #0c0c0c 100%);
}
.bg-grid-c {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(
    ellipse 70% 80% at 50% 50%,
    black 10%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 70% 80% at 50% 50%,
    black 10%,
    transparent 100%
  );
}
.orb-c1 {
  position: absolute;
  width: clamp(220px, 35vw, 420px);
  height: clamp(220px, 35vw, 420px);
  top: -60px;
  left: -80px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(180, 30, 50, 0.14) 0%,
    transparent 70%
  );
  filter: blur(55px);
  z-index: 0;
  animation: cOrbPulse 9s ease-in-out infinite;
}
.orb-c2 {
  position: absolute;
  width: clamp(160px, 25vw, 300px);
  height: clamp(160px, 25vw, 300px);
  bottom: -40px;
  right: 5%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(180, 30, 50, 0.1) 0%,
    transparent 70%
  );
  filter: blur(45px);
  z-index: 0;
  animation: cOrbPulse 7s ease-in-out infinite 2s reverse;
}
.orb-c3 {
  position: absolute;
  width: 180px;
  height: 180px;
  top: 40%;
  right: 30%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 70%
  );
  filter: blur(35px);
  z-index: 0;
}
@keyframes cOrbPulse {
  0%,
  100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.12) translateY(-16px);
  }
}

.contact-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}

/* Badge reuse */
.c-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(180, 30, 50, 0.15);
  border: 1px solid rgba(180, 30, 50, 0.35);
  border-radius: 100px;
  padding: 5px 14px 5px 10px;
  margin-bottom: clamp(18px, 2.5vw, 28px);
}
.c-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c8223a;
  box-shadow: 0 0 6px rgba(200, 34, 58, 0.8);
  animation: dotPulse 2s ease-in-out infinite;
}
.c-badge span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #e8556a;
}

.contact-heading {
  font-size: clamp(24px, 3.5vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: clamp(12px, 1.5vw, 18px);
}
.contact-heading em {
  font-style: normal;
  background: linear-gradient(135deg, #c8223a 0%, #e8556a 50%, #ff8fa0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-desc {
  font-size: clamp(13.5px, 1.4vw, 15.5px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: clamp(24px, 3vw, 40px);
  max-width: 100%;
}

/* Info grid */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.info-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.025) 60%,
    rgba(180, 30, 50, 0.03) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: clamp(16px, 2vw, 22px) clamp(14px, 1.8vw, 20px);
  cursor: default;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.04) inset;
  position: relative;
  overflow: hidden;
}
.info-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 55%;
  height: 180%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0) 60%,
    transparent 100%
  );
  transform: skewX(-15deg);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
.info-card:hover {
  transform: translateY(-4px) scale(1.012);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.09) 0%,
    rgba(255, 255, 255, 0.04) 60%,
    rgba(180, 30, 50, 0.05) 100%
  );
  border-color: rgba(180, 30, 50, 0.4);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(180, 30, 50, 0.15),
    0 0 22px rgba(180, 30, 50, 0.1), 0 1px 0 rgba(255, 255, 255, 0.08) inset;
}
.info-card:hover::before {
  animation: cardSweep 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 1;
}
@keyframes cardSweep {
  0% {
    left: -60%;
  }
  100% {
    left: 120%;
  }
}

.info-card-content {
  position: relative;
  z-index: 2;
}
.info-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(180, 30, 50, 0.18);
  border: 1px solid rgba(180, 30, 50, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.info-card:hover .info-icon-wrap {
  background: rgba(180, 30, 50, 0.28);
  border-color: rgba(180, 30, 50, 0.5);
}
.info-icon-wrap svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #e8556a;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.info-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 4px;
}
.info-value {
  font-size: clamp(12px, 1.3vw, 13.5px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

/* Form */
.form-glass {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.065) 0%,
    rgba(255, 255, 255, 0.03) 50%,
    rgba(180, 30, 50, 0.035) 100%
  );
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: clamp(24px, 3.5vw, 48px) clamp(20px, 3vw, 44px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4),
    0 1px 0 rgba(255, 255, 255, 0.05) inset;
  position: relative;
  overflow: hidden;
  transition: border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.form-glass::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.12) 40%,
    rgba(180, 30, 50, 0.2) 60%,
    transparent
  );
  pointer-events: none;
}
.form-glass:focus-within {
  border-color: rgba(180, 30, 50, 0.3);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(180, 30, 50, 0.1),
    0 0 30px rgba(180, 30, 50, 0.07), 0 1px 0 rgba(255, 255, 255, 0.07) inset;
}
.form-title {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}
.form-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: clamp(22px, 3vw, 36px);
  line-height: 1.5;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.form-group:last-of-type {
  margin-bottom: 0;
}
.form-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  transition: color 0.25s ease;
}
.form-group:focus-within .form-label {
  color: rgba(232, 85, 106, 0.85);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: clamp(13.5px, 1.4vw, 14.5px);
  font-family: "my-font", sans-serif;
  color: rgba(255, 255, 255, 0.85);
  outline: none;
  transition: border-color 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s ease, box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.22);
  transition: opacity 0.25s ease;
}
.form-input:focus::placeholder,
.form-textarea:focus::placeholder {
  opacity: 0.5;
}
.form-input:hover,
.form-textarea:hover,
.form-select:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: rgba(180, 30, 50, 0.55);
  background: rgba(180, 30, 50, 0.04);
  box-shadow: 0 0 0 3px rgba(180, 30, 50, 0.1), 0 0 16px rgba(180, 30, 50, 0.06);
}
.form-select {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpolyline points='2,4 6,8 10,4' fill='none' stroke='rgba(255,255,255,0.3)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 14px center;
  padding-left: 36px;
}
.form-select option {
  background: #1a1a1a;
  color: #fff;
}
.form-textarea {
  resize: none;
  min-height: 110px;
  line-height: 1.6;
  font-family: "my-font", sans-serif;
}

.submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #b8182e 0%, #d42840 50%, #c8223a 100%);
  color: #fff;
  font-size: clamp(14px, 1.5vw, 15px);
  font-weight: 700;
  padding: clamp(13px, 1.8vw, 16px) 28px;
  border-radius: 13px;
  border: none;
  cursor: pointer;
  margin-top: clamp(18px, 2.5vw, 28px);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 24px rgba(180, 30, 50, 0.45),
    0 1px 0 rgba(255, 255, 255, 0.18) inset;
  font-family: "my-font", sans-serif;
}
.submit-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18) 0%,
    transparent 55%
  );
  border-radius: 13px;
  pointer-events: none;
}
.submit-btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    105deg,
    transparent,
    rgba(255, 255, 255, 0.12),
    transparent
  );
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
}
.submit-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 36px rgba(180, 30, 50, 0.6),
    0 1px 0 rgba(255, 255, 255, 0.2) inset;
}
.submit-btn:hover::after {
  animation: btnSweep 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 1;
}
@keyframes btnSweep {
  0% {
    left: -75%;
  }
  100% {
    left: 130%;
  }
}
.submit-btn:active {
  transform: translateY(-1px) scale(0.99);
}
.submit-btn svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.submit-btn:hover svg {
  transform: translateX(-4px);
}

.success-msg {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px 20px;
  text-align: center;
}
.success-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(180, 30, 50, 0.18);
  border: 1px solid rgba(180, 30, 50, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #e8556a;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.success-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.success-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

/* ════════════════════════════════════════
   FAQ SECTION
════════════════════════════════════════ */
.faq-section {
  position: relative;
  padding: clamp(60px, 8vw, 100px) clamp(16px, 4vw, 48px)
    clamp(70px, 9vw, 120px);
  overflow: hidden;
  direction: rtl;
}
.faq-divider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(180, 30, 50, 0.25) 30%,
    rgba(180, 30, 50, 0.4) 50%,
    rgba(180, 30, 50, 0.25) 70%,
    transparent 100%
  );
}
.faq-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(
      ellipse 60% 55% at 85% 40%,
      rgba(180, 30, 50, 0.12) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 50% 60% at 10% 70%,
      rgba(180, 30, 50, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 35% 35% at 50% 5%,
      rgba(255, 255, 255, 0.025) 0%,
      transparent 55%
    ),
    linear-gradient(160deg, #0c0808 0%, #080808 45%, #0a0a0c 100%);
}
.faq-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(
    ellipse 75% 75% at 50% 50%,
    black 10%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 75% 75% at 50% 50%,
    black 10%,
    transparent 100%
  );
}
.faq-orb-1 {
  position: absolute;
  width: clamp(200px, 32vw, 380px);
  height: clamp(200px, 32vw, 380px);
  top: -50px;
  right: -60px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(180, 30, 50, 0.14) 0%,
    transparent 70%
  );
  filter: blur(55px);
  z-index: 0;
  animation: faqOrb 9s ease-in-out infinite;
}
.faq-orb-2 {
  position: absolute;
  width: clamp(150px, 24vw, 280px);
  height: clamp(150px, 24vw, 280px);
  bottom: -30px;
  left: 8%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(180, 30, 50, 0.09) 0%,
    transparent 70%
  );
  filter: blur(45px);
  z-index: 0;
  animation: faqOrb 7.5s ease-in-out infinite 2.5s reverse;
}
@keyframes faqOrb {
  0%,
  100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.12) translateY(-14px);
  }
}

.faq-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faq-header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(180, 30, 50, 0.15);
  border: 1px solid rgba(180, 30, 50, 0.35);
  border-radius: 100px;
  padding: 5px 14px 5px 10px;
  margin-bottom: clamp(16px, 2.5vw, 28px);
}
.faq-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c8223a;
  box-shadow: 0 0 6px rgba(200, 34, 58, 0.8);
  animation: dotPulse 2s ease-in-out infinite;
}
.faq-badge span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #e8556a;
}
.faq-heading {
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: clamp(10px, 1.5vw, 16px);
}
.faq-heading em {
  font-style: normal;
  background: linear-gradient(135deg, #c8223a 0%, #e8556a 50%, #ff8fa0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.faq-desc {
  font-size: clamp(13.5px, 1.4vw, 15.5px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.45);
  max-width: 520px;
  margin: 0 auto;
}

.faq-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.062) 0%,
    rgba(255, 255, 255, 0.028) 55%,
    rgba(180, 30, 50, 0.03) 100%
  );
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.32),
    0 1px 0 rgba(255, 255, 255, 0.04) inset;
  opacity: 0;
  animation: faqUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.faq-item:nth-child(1) {
  animation-delay: 0.05s;
}
.faq-item:nth-child(2) {
  animation-delay: 0.12s;
}
.faq-item:nth-child(3) {
  animation-delay: 0.19s;
}
.faq-item:nth-child(4) {
  animation-delay: 0.26s;
}
.faq-item:nth-child(5) {
  animation-delay: 0.33s;
}
.faq-item:nth-child(6) {
  animation-delay: 0.4s;
}
@keyframes faqUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1) 50%,
    transparent
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.faq-item:hover::after,
.faq-item.is-open::after {
  opacity: 1;
}
.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.42),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
}
.faq-item.is-open {
  border-color: rgba(180, 30, 50, 0.38);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.075) 0%,
    rgba(255, 255, 255, 0.035) 55%,
    rgba(180, 30, 50, 0.05) 100%
  );
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(180, 30, 50, 0.18),
    0 0 28px rgba(180, 30, 50, 0.09), 0 1px 0 rgba(255, 255, 255, 0.07) inset;
  transform: none;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: clamp(18px, 2.2vw, 24px) clamp(18px, 2.2vw, 26px);
  background: none;
  border: none;
  cursor: pointer;
  text-align: right;
  -webkit-tap-highlight-color: transparent;
}
.faq-trigger:focus-visible {
  outline: 2px solid rgba(180, 30, 50, 0.6);
  outline-offset: -2px;
  border-radius: 16px;
}
.faq-question {
  font-size: clamp(13.5px, 1.5vw, 15.5px);
  font-weight: 600;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  text-align: right;
  flex: 1;
  transition: color 0.25s ease;
  font-family: "my-font", sans-serif;
}
.faq-item.is-open .faq-question {
  color: #ffffff;
}
.faq-item:hover .faq-question {
  color: rgba(255, 255, 255, 0.95);
}
.faq-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item.is-open .faq-icon {
  background: rgba(180, 30, 50, 0.2);
  border-color: rgba(180, 30, 50, 0.4);
  transform: rotate(45deg);
}
.faq-icon svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.5);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
}
.faq-item.is-open .faq-icon svg {
  stroke: #e8556a;
}
.faq-item:hover .faq-icon {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-panel-inner {
  padding: 0 clamp(18px, 2.2vw, 26px) clamp(18px, 2vw, 24px);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: clamp(14px, 1.8vw, 20px);
}
.faq-answer {
  font-size: clamp(13px, 1.4vw, 14.5px);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.5);
  text-align: right;
  font-family: "my-font", sans-serif;
}
.faq-item.is-open .faq-answer {
  color: rgba(255, 255, 255, 0.58);
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.site-footer {
  position: relative;
  padding: clamp(36px, 5vw, 48px) 24px clamp(40px, 5.5vw, 52px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-divider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(180, 30, 50, 0.2) 25%,
    rgba(180, 30, 50, 0.45) 50%,
    rgba(180, 30, 50, 0.2) 75%,
    transparent 100%
  );
}
.footer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(
      ellipse 70% 120% at 50% 100%,
      rgba(180, 30, 50, 0.1) 0%,
      transparent 65%
    ),
    linear-gradient(180deg, #080808 0%, #0a0505 100%);
}
.footer-orb {
  position: absolute;
  width: min(320px, 80vw);
  height: 120px;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(180, 30, 50, 0.18) 0%,
    transparent 70%
  );
  filter: blur(40px);
  z-index: 0;
  animation: footOrb 6s ease-in-out infinite;
}
@keyframes footOrb {
  0%,
  100% {
    opacity: 0.7;
    transform: translateX(-50%) scaleX(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scaleX(1.15);
  }
}
.footer-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(
    ellipse 80% 100% at 50% 100%,
    black 0%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 80% 100% at 50% 100%,
    black 0%,
    transparent 100%
  );
}
.footer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: footUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}
@keyframes footUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  position: relative;
  padding: 12px clamp(20px, 3vw, 32px);
  border-radius: 100px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.055) 0%,
    rgba(255, 255, 255, 0.02) 60%,
    rgba(180, 30, 50, 0.04) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.05) inset;
  overflow: hidden;
  cursor: default;
  transition: border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.footer-brand::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -70%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    105deg,
    transparent,
    rgba(255, 255, 255, 0.07),
    transparent
  );
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
}
.footer-brand::after {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.14) 50%,
    transparent
  );
  pointer-events: none;
}
.footer-brand:hover {
  transform: translateY(-3px);
  border-color: rgba(180, 30, 50, 0.42);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 60%,
    rgba(180, 30, 50, 0.06) 100%
  );
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(180, 30, 50, 0.18),
    0 0 28px rgba(180, 30, 50, 0.12), 0 1px 0 rgba(255, 255, 255, 0.08) inset;
}
.footer-brand:hover::before {
  animation: fSweep 0.75s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 1;
}
@keyframes fSweep {
  from {
    left: -70%;
  }
  to {
    left: 130%;
  }
}
.footer-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, #b8182e 0%, #d42840 55%, #c8223a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(180, 30, 50, 0.5),
    0 1px 0 rgba(255, 255, 255, 0.2) inset;
  flex-shrink: 0;
  transition: box-shadow 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.footer-brand:hover .footer-icon {
  box-shadow: 0 5px 18px rgba(180, 30, 50, 0.7),
    0 1px 0 rgba(255, 255, 255, 0.25) inset;
  transform: rotate(-8deg) scale(1.08);
}
.footer-icon svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-powered {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.3);
}
.footer-name {
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 800;
  letter-spacing: 0.06em;
  background: linear-gradient(
    135deg,
    #c8223a 0%,
    #e8556a 45%,
    #ff9aac 70%,
    #e8556a 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: nameShimmer 4s linear infinite;
}
@keyframes nameShimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}
.footer-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.15);
  letter-spacing: 0.06em;
}

/* ════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
════════════════════════════════════════ */

/* ── Tablet landscape & small desktop ── */
@media (max-width: 1024px) {
  .inner {
    gap: 32px;
  }
  .contact-inner {
    gap: 36px;
  }
  .spec-pill {
    font-size: 11px;
    padding: 6px 12px;
  }
}

/* ── Tablet portrait ── */
@media (max-width: 900px) {
  /* Showcase */
  .inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .image-col {
    order: -1;
  }
  .pill-1 {
    right: 0;
  }
  .pill-2 {
    left: 0;
  }
  .pill-3 {
    right: 0;
  }

  /* Contact */
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-desc {
    max-width: 100%;
  }
}

/* ── Nav breakpoint ── */
@media (max-width: 780px) {
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
}

/* ── Phablet ── */
@media (max-width: 640px) {
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .spec-pill {
    display: none;
  }
  .accent-ring,
  .accent-ring-2 {
    display: none;
  }
  .cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-primary {
    width: 100%;
    justify-content: center;
  }
}

/* ── Mobile ── */
@media (max-width: 480px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
  .nav-inner {
    height: 58px;
  }
  .logo-sub {
    display: none;
  }
  .image-wrapper img {
    height: clamp(200px, 55vw, 280px);
  }
}

/* ── Small mobile ── */
@media (max-width: 360px) {
  .badge span,
  .c-badge span,
  .faq-badge span {
    font-size: 10px;
    letter-spacing: 0.04em;
  }
  .form-glass {
    border-radius: 18px;
  }
  .glass-card {
    border-radius: 18px;
  }
  .faq-item {
    border-radius: 14px;
  }
}

/* ── Touch: disable hover transforms ── */
@media (hover: none) {
  .glass-card:hover {
    transform: none;
  }
  .info-card:hover {
    transform: none;
  }
  .btn-primary:hover {
    transform: none;
  }
  .submit-btn:hover {
    transform: none;
  }
  .footer-brand:hover {
    transform: none;
  }
  .nav-logo:hover {
    opacity: 1;
  }
}

/* ════════════════════════════════════════
   MOBILE & TABLET: DISABLE AUTOMATIC ANIMATIONS
   Continuous / infinite / auto-running effects are
   turned off below 1024px to improve performance,
   battery life, and scroll smoothness on touch
   devices. Keyframes and desktop behavior are left
   untouched; user-triggered animations (hover, tap,
   accordion, modal, nav transitions) still work.
════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Decorative glows / orbs (background pulse effects) */
  .header-glow,
  .bg-orb-1,
  .bg-orb-2,
  .img-glow,
  .orb-c1,
  .orb-c2,
  .faq-orb-1,
  .faq-orb-2,
  .footer-orb {
    animation: none;
  }

  /* Pulsing status dots */
  .badge-dot,
  .c-badge-dot,
  .faq-badge-dot {
    animation: none;
  }

  /* Floating image / floating pills */
  .image-wrapper,
  .pill-1,
  .pill-2,
  .pill-3 {
    animation: none;
  }

  /* Continuously rotating rings */
  .accent-ring,
  .accent-ring-2 {
    animation: none;
  }

  /* Shimmering gradient text */
  .footer-name {
    animation: none;
    background-position: 0% center;
  }

  /* One-time on-load reveal animations: disable the
     animation but keep the element in its finished
     (visible) state instead of the opacity:0 start
     state, so content isn't left hidden. */
  .nav-inner,
  .anim-in,
  .faq-item,
  .footer-inner {
    animation: none;
    opacity: 1;
    transform: none;
  }
}