@font-face {
  font-family: 'Modam';
  src:
    url('fonts/ModamFaNumWeb-Light.woff2') format('woff2'),
    url('fonts/ModamFaNum-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Modam';
  src:
    url('fonts/ModamFaNumWeb-Regular.woff2') format('woff2'),
    url('fonts/ModamFaNum-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Modam';
  src:
    url('fonts/ModamFaNumWeb-Bold.woff2') format('woff2'),
    url('fonts/ModamFaNum-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Modam';
  src:
    url('fonts/ModamFaNumWeb-Black.woff2') format('woff2'),
    url('fonts/ModamFaNum-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-dark: #020418;
  --blue-black: #030630;
  --dark-navy: #040c4f;
  --card-bg: rgba(6, 12, 59, 0.65);
  --card-hover-bg: rgba(10, 20, 85, 0.78);
  --glass-surface: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(250, 221, 133, 0.22);
  --glass-border-light: rgba(255, 255, 255, 0.12);

  --sunshine: #fadd85;
  --sunshine-glow: rgba(250, 221, 133, 0.35);
  --amber: #f5b73d;
  --teal: #158087;
  --slate: #808a96;
  --fog: #d7dcdf;
  --white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.68);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-gold: 0 10px 30px rgba(250, 221, 133, 0.15);
  --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.55);
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  direction: rtl;
}

body {
  font-family:
    'Modam',
    system-ui,
    -apple-system,
    sans-serif;
  background-color: var(--bg-dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  text-align: right;
  -webkit-font-smoothing: antialiased;
  background-image:
    linear-gradient(rgba(250, 221, 133, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 221, 133, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center top;
}

/* Ambient Backdrops */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

.ambient-top-right {
  top: -150px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(250, 221, 133, 0.12) 0%,
    rgba(21, 128, 135, 0.08) 50%,
    transparent 70%
  );
}

.ambient-middle-left {
  top: 900px;
  left: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(21, 128, 135, 0.14) 0%,
    rgba(4, 12, 79, 0.1) 50%,
    transparent 75%
  );
}

.ambient-bottom-center {
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(circle, rgba(250, 221, 133, 0.1) 0%, transparent 65%);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Status Pulse Dot */
.status-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sunshine);
  box-shadow: 0 0 10px var(--sunshine);
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
    box-shadow: 0 0 8px var(--sunshine);
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
    box-shadow: 0 0 16px var(--sunshine);
  }
}

/* Main Navigation / Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(2, 4, 24, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 18px 0;
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--white);
}

.brand-icon-box {
  width: 32px;
  height: 48px;
  border-radius: 9px;
  border: 1.5px solid var(--sunshine);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: rgba(3, 6, 48, 0.85);
  box-shadow: 0 0 16px rgba(250, 221, 133, 0.3);
}

.brand-icon-box i {
  display: block;
  width: 10px;
  height: 12px;
  background: var(--sunshine);
  border-radius: 2px;
}

.brand-texts {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-weight: 900;
  font-size: 26px;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 11px;
  color: var(--sunshine);
  letter-spacing: 0.12em;
  font-weight: 500;
  text-transform: uppercase;
}

/* Domain Indicators in Header (Non-clickable, elegant icons) */
.header-domains {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 20px;
  border-radius: var(--radius-full);
}

.domain-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13.5px;
  font-weight: 500;
  cursor: default;
  user-select: none;
}

.domain-item svg {
  color: var(--sunshine);
  flex-shrink: 0;
}

.domain-sep {
  color: rgba(250, 221, 133, 0.35);
  font-size: 11px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sunshine);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: rgba(250, 221, 133, 0.08);
  border: 1px solid rgba(250, 221, 133, 0.25);
  transition: var(--transition);
  direction: ltr;
}

.header-phone-cta:hover {
  background: rgba(250, 221, 133, 0.18);
  border-color: var(--sunshine);
  transform: translateY(-1px);
}

.header-consult-btn {
  background: linear-gradient(135deg, var(--sunshine), var(--amber));
  color: var(--blue-black);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(245, 183, 61, 0.25);
}

.header-consult-btn:hover {
  background: linear-gradient(135deg, #fff3c4, var(--sunshine));
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(250, 221, 133, 0.4);
}

/* =====================================================
   ۲. بخش هیرو (Hero Section)
===================================================== */
.hero-section {
  padding: 60px 0 90px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-kicker-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: rgba(250, 221, 133, 0.08);
  border: 1px solid rgba(250, 221, 133, 0.3);
  color: var(--sunshine);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.35;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-title span.highlight {
  color: var(--sunshine);
  text-shadow: 0 0 25px rgba(250, 221, 133, 0.4);
}

.hero-subtitle {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 28px;
  max-width: 620px;
}

.hero-value-add {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

.value-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--sunshine);
  background: rgba(250, 221, 133, 0.08);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(250, 221, 133, 0.2);
}

.value-item svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Hero Lead Form Box */
.hero-form-card {
  background: rgba(6, 12, 59, 0.7);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow:
    var(--shadow-card),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  margin-bottom: 20px;
}

.hero-form-title {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-form-title svg {
  color: var(--sunshine);
}

.hero-form-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.phone-input-wrap {
  flex: 1 1 240px;
  position: relative;
}

.phone-input {
  width: 100%;
  height: 54px;
  background: rgba(2, 4, 24, 0.85);
  border: 1px solid rgba(250, 221, 133, 0.3);
  border-radius: var(--radius-md);
  padding: 0 18px 0 46px;
  color: var(--white);
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  outline: none;
  transition: var(--transition);
  direction: ltr;
  text-align: right;
}

.phone-input::placeholder {
  color: var(--slate);
  font-family: 'Modam', sans-serif;
  direction: rtl;
  text-align: right;
  font-size: 14px;
}

.phone-input:focus {
  border-color: var(--sunshine);
  box-shadow: 0 0 18px rgba(250, 221, 133, 0.25);
  background: rgba(3, 6, 48, 0.95);
}

.phone-input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sunshine);
  pointer-events: none;
}

.hero-cta-btn {
  height: 54px;
  padding: 0 28px;
  background: linear-gradient(135deg, var(--sunshine), var(--amber));
  color: var(--blue-black);
  border: none;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(245, 183, 61, 0.35);
}

.hero-cta-btn:hover {
  background: linear-gradient(135deg, #fff3c4, var(--sunshine));
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(250, 221, 133, 0.5);
}

.hero-form-footnote {
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Hero Visual Showcase */
.hero-visual-col {
  position: relative;
}

.hero-main-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1.8px solid var(--glass-border);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.8),
    0 0 45px rgba(250, 221, 133, 0.18);
  background: #050b28;
}

.hero-main-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  filter: brightness(0.9) contrast(1.05);
}

.hero-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(2, 4, 24, 0.1) 0%,
    rgba(2, 4, 24, 0.4) 50%,
    rgba(2, 4, 24, 0.95) 100%
  );
  pointer-events: none;
}

.hero-status-floating {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(3, 6, 48, 0.85);
  border: 1px solid var(--sunshine);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--sunshine);
  font-size: 13.5px;
  font-weight: 700;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.hero-status-bottom {
  position: absolute;
  bottom: 24px;
  right: 24px;
  left: 24px;
  background: rgba(6, 12, 59, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  backdrop-filter: blur(14px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: center;
}

.metric-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.metric-value {
  font-size: 18px;
  font-weight: 900;
  color: var(--sunshine);
}

.metric-label {
  font-size: 11.5px;
  color: var(--fog);
}

/* =====================================================
   ۳. بخش بدنه (Body Section) - نمایش سه‌گانه راهکارها
===================================================== */
.solutions-section {
  padding: 80px 0 100px;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 54px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sunshine);
  background: rgba(250, 221, 133, 0.08);
  border: 1px solid rgba(250, 221, 133, 0.25);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-title {
  font-size: 38px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 17.5px;
  color: var(--fog);
  line-height: 1.7;
}

/* Three Cards Grid */
.cards-triplet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.solution-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition);
  position: relative;
}

.solution-card:hover {
  transform: translateY(-8px);
  border-color: var(--sunshine);
  background: var(--card-hover-bg);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(250, 221, 133, 0.2);
}

.solution-card.featured {
  border-color: rgba(250, 221, 133, 0.5);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.6),
    0 0 25px rgba(250, 221, 133, 0.15);
}

.card-image-wrap {
  width: 100%;
  height: 230px;
  overflow: hidden;
  position: relative;
  background: #030630;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 6, 48, 0.1) 0%, rgba(3, 6, 48, 0.85) 100%);
  pointer-events: none;
}

.card-pill-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(3, 6, 48, 0.85);
  border: 1px solid var(--sunshine);
  color: var(--sunshine);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.card-content {
  padding: 28px 24px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title-meta {
  font-size: 12.5px;
  color: var(--slate);
  margin-bottom: 6px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}

.card-body-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 24px;
  flex-grow: 1;
}

.card-action-wrap {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.card-micro-btn {
  width: 100%;
  padding: 13px 20px;
  background: rgba(250, 221, 133, 0.1);
  border: 1.2px solid rgba(250, 221, 133, 0.35);
  border-radius: var(--radius-md);
  color: var(--sunshine);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.card-micro-btn:hover {
  background: var(--sunshine);
  color: var(--blue-black);
  border-color: var(--sunshine);
  box-shadow: 0 6px 20px rgba(250, 221, 133, 0.3);
  transform: translateY(-2px);
}

.card-micro-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.card-micro-btn:hover svg {
  transform: translateX(-4px);
}

/* =====================================================
   ۴. بخش ارزش‌ها / اعتمادسازی (Trust Bar)
===================================================== */
.trust-bar-section {
  padding: 30px 0;
  margin: 20px 0 60px;
  position: relative;
}

.trust-bar-wrapper {
  background: linear-gradient(135deg, rgba(6, 12, 59, 0.9), rgba(3, 6, 48, 0.95));
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 34px 40px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.trust-boxes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  position: relative;
}

.trust-box-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  position: relative;
}

.trust-box-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: -18px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(250, 221, 133, 0.18);
}

.trust-box-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(250, 221, 133, 0.12);
  border: 1.5px solid rgba(250, 221, 133, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sunshine);
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(250, 221, 133, 0.15);
}

.trust-box-icon svg {
  width: 26px;
  height: 26px;
}

.trust-box-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.trust-box-title {
  font-size: 17.5px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
}

.trust-box-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--fog);
  line-height: 1.6;
}

/* =====================================================
   ۵. بخش پایانی و فوتر (Footer CTA)
===================================================== */
.footer-cta-section {
  padding: 80px 0 60px;
  position: relative;
}

.footer-cta-card {
  background: radial-gradient(
    circle at 50% -20%,
    rgba(250, 221, 133, 0.15) 0%,
    rgba(4, 12, 79, 0.8) 50%,
    rgba(2, 4, 24, 0.95) 100%
  );
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7);
  position: relative;
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto;
}

.footer-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sunshine);
  font-size: 13px;
  font-weight: 700;
  background: rgba(250, 221, 133, 0.1);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(250, 221, 133, 0.3);
  margin-bottom: 20px;
}

.footer-cta-title {
  font-size: 34px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.footer-cta-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 34px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.footer-action-box {
  max-width: 580px;
  margin: 0 auto 30px;
}

.footer-form-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-form-group .phone-input-wrap {
  flex: 1 1 240px;
}

.footer-form-group .hero-cta-btn {
  flex-shrink: 0;
}

.footer-guarantee-note {
  font-size: 13.5px;
  color: var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-guarantee-note span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-guarantee-note svg {
  color: var(--sunshine);
}

/* Minimal Footer */
.minimal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 0 35px;
  background: #010313;
  color: var(--slate);
  font-size: 14px;
}

.minimal-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.footer-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand-side {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-slogan {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-slogan em {
  font-style: normal;
  color: var(--sunshine);
}

.footer-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13.5px;
  color: var(--slate);
}

.footer-contact-items {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fog);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-item:hover {
  color: var(--sunshine);
}

.footer-contact-item svg {
  color: var(--sunshine);
  width: 16px;
  height: 16px;
}

.footer-sharif-credit {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.footer-sharif-credit strong {
  color: var(--sunshine);
  font-weight: 700;
}

/* =====================================================
   ۶. مودال پاپ‌آپ لاگین و دریافت مشاوره
===================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 4, 24, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: #040c4f;
  background: linear-gradient(145deg, #060e4b, #030630);
  border: 1.5px solid var(--sunshine);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 480px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.85),
    0 0 50px rgba(250, 221, 133, 0.2);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  position: relative;
}

.modal-backdrop.active .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}

.modal-close-btn:hover {
  background: var(--sunshine);
  color: var(--blue-black);
  transform: rotate(90deg);
}

.modal-header {
  padding: 32px 32px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.modal-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--sunshine);
  background: rgba(250, 221, 133, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.modal-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.35;
}

.modal-desc {
  font-size: 14px;
  color: var(--fog);
  margin-top: 6px;
}

.modal-body {
  padding: 24px 32px 32px;
}

.form-field {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--fog);
  margin-bottom: 8px;
}

.form-input,
.form-select {
  width: 100%;
  height: 50px;
  background: rgba(2, 4, 24, 0.85);
  border: 1px solid rgba(250, 221, 133, 0.25);
  border-radius: var(--radius-md);
  padding: 0 16px;
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: var(--transition);
}

.form-input:focus,
.form-select:focus {
  border-color: var(--sunshine);
  box-shadow: 0 0 15px rgba(250, 221, 133, 0.25);
  background: rgba(3, 6, 48, 0.95);
}

.form-select {
  cursor: pointer;
}

.form-select option {
  background: #030630;
  color: #ffffff;
}

.modal-submit-btn {
  width: 100%;
  height: 52px;
  background: linear-gradient(135deg, var(--sunshine), var(--amber));
  color: var(--blue-black);
  border: none;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(245, 183, 61, 0.35);
  margin-top: 24px;
}

.modal-submit-btn:hover {
  background: linear-gradient(135deg, #fff3c4, var(--sunshine));
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(250, 221, 133, 0.5);
}

.modal-privacy-note {
  margin-top: 14px;
  text-align: center;
  font-size: 12px;
  color: var(--slate);
}

/* Toast Message */
.toast-notice {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #060e4b;
  border: 1.5px solid var(--sunshine);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.7),
    0 0 20px rgba(250, 221, 133, 0.3);
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 420px;
}

.toast-notice.show {
  transform: translateY(0);
}

.toast-icon {
  color: var(--sunshine);
  flex-shrink: 0;
}

/* =====================================================
   Responsive Media Queries
===================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 38px;
  }

  .cards-triplet-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin: 0 auto;
  }

  .trust-boxes-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .trust-box-item:not(:last-child)::after {
    display: none;
  }

  .header-domains {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-form-group,
  .footer-form-group {
    flex-direction: column;
  }

  .hero-form-group .phone-input-wrap,
  .footer-form-group .phone-input-wrap {
    flex: none;
    width: 100%;
  }

  .hero-cta-btn {
    width: 100%;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .footer-top-row,
  .footer-info-row {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-contact-items {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .trust-bar-wrapper {
    padding: 24px 20px;
  }
}
