/* ══════════════════════════════════════ROOT & RESET
══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:       #2BAE8E;
  --teal-d:     #1A7A5E;
  --teal-l:     #3DD9AD;
  --navy:       #1B2E6B;
  --navy-d:     #0D1F4C;
  --red:        #E63946;
  --red-d:      #c1121f;
  --red-l:      #ff6b6b;
  --gold:       #F5C842;
  --mint:       #E8F7F3;
  --mint2:      #C5EEE1;
  --white:      #FFFFFF;
  --gray:       #F4F7FA;
  --text:       #1a1a2e;
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Vazirmatn', sans-serif;
  direction: rtl;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.8;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; object-fit: cover; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ══════════════════════════════════════LOADING SCREEN
══════════════════════════════════════ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.loader-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #050d1f 0%, #0a1628 30%, #0d2137 60%, #091a2e 100%);
  z-index: 0;
}

.loader-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(43,174,142,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(230,57,70,0.12) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 80%, rgba(27,46,107,0.3) 0%, transparent 50%);
}

.loader-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.loader-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  animation: lParticle linear infinite;
  opacity: 0;
}

@keyframes lParticle {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1.5); }
}

.loader-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.loader-logo-wrap {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
}

.loader-ring-1 {
  width: 160px; height: 160px;
  border-top-color: var(--teal);
  border-right-color: rgba(43,174,142,0.3);
  animation: spinRing 1.5s linear infinite;
}

.loader-ring-2 {
  width: 130px; height: 130px;
  border-bottom-color: var(--red);
  border-left-color: rgba(230,57,70,0.2);
  animation: spinRing 2s linear infinite reverse;
}

.loader-ring-3 {
  width: 100px; height: 100px;
  border-top-color: var(--gold);
  border-right-color: rgba(245,200,66,0.2);
  animation: spinRing 1s linear infinite;
}

@keyframes spinRing {
  to { transform: rotate(360deg); }
}

.loader-logo-core {
  width: 72px; height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--teal), var(--navy-d));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 30px rgba(43,174,142,0.5),
    0 0 60px rgba(43,174,142,0.2),
    inset 0 1px 0 rgba(255,255,255,0.2);
  animation: corePulse 2s ease-in-out infinite;
}

@keyframes corePulse {
  0%, 100% { box-shadow: 0 0 30px rgba(43,174,142,0.5), 0 0 60px rgba(43,174,142,0.2); }
  50% { box-shadow: 0 0 50px rgba(43,174,142,0.8), 0 0 100px rgba(43,174,142,0.4), 0 0 150px rgba(43,174,142,0.1); }
}

.loader-logo-icon {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
}

.loader-text-wrap { text-align: center; }

.loader-brand {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.5s forwards;
}

.loader-sub {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal-l);
  letter-spacing: 4px;
  margin-top: 4px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.7s forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.loader-bar-wrap {
  width: 360px;
  max-width: 90vw;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.9s forwards;
}

.loader-bar-track {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-l), var(--red), var(--gold));
  background-size: 300% 100%;
  animation: barGradient 2s linear infinite;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(43,174,142,0.8);
}

@keyframes barGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

.loader-percent {
  text-align: left;
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--teal-l);
  font-weight: 700;
  font-feature-settings: "tnum";
}

.loader-status {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.1s forwards;
  min-height: 20px;
}

.loader-bottom-strip {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--red), var(--gold), var(--teal));
  background-size: 400% 100%;
  animation: stripAnim 3s linear infinite;
}

@keyframes stripAnim {
  0% { background-position: 0% 0%; }
  100% { background-position: 400% 0%; }
}

#loader.hide-loader {
  animation: loaderExit 1s var(--ease) forwards;
}

@keyframes loaderExit {
  0% { opacity: 1; transform: scale(1); }
  30% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 0; transform: scale(1.15); pointer-events: none; }
}

/* ══════════════════════════════════════TYPOGRAPHY UTILITIES
══════════════════════════════════════ */
.sec-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--teal), var(--teal-l));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.sec-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--navy-d);
  line-height: 1.3;
  margin-bottom: 16px;
}
.sec-title span { color: var(--teal); }

.sec-sub {
  font-size: 1rem;
  color: #556;
  max-width: 640px;
  line-height: 1.9;
  margin-bottom: 40px;
}

.sec-header { text-align: center; margin-bottom: 64px; }
.sec-header .sec-sub { margin: 0 auto; }

.grad-text {
  background: linear-gradient(135deg, var(--teal-l), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.red-text { color: var(--red-l); }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-delay-1 { transition-delay: 0.1s; }
.fade-delay-2 { transition-delay: 0.2s; }
.fade-delay-3 { transition-delay: 0.3s; }
.fade-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  transition: all 0.4s var(--ease);
}

#navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 40px rgba(0,0,0,0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 24px;
}

.nav-logo { display: flex; align-items: center; gap: 12px; 
  width: 90px; height: 90px;
  background: linear-gradient(135deg, var(--teal), var(--teal-d));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 900; color: #fff;
  }

/*.nav-logo-icon { 
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--teal), var(--teal-d));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 900; color: #fff;
  box-shadow: 0 4px 15px rgba(43,174,142,0.4);
}*/

.nav-logo-text strong {
  display: block;
  font-size: 1rem; font-weight: 900;
  color: var(--navy-d);
  transition: color 0.3s;
}
.nav-logo-text span {
  font-size: 0.65rem;
  color: var(--teal);
  letter-spacing: 1px;
  font-weight: 600;
}

#navbar:not(.scrolled) .nav-logo-text strong { color: #fff; }
#navbar:not(.scrolled) .nav-logo-text span { color: var(--teal-l); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-menu li { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-d);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s;
}

#navbar:not(.scrolled) .nav-link { color: rgba(255,255,255,0.9); }
.nav-link:hover { background: rgba(43,174,142,0.12); color: var(--teal); }
#navbar:not(.scrolled) .nav-link:hover { background: rgba(255,255,255,0.12); color: #fff; }

.nav-arrow { font-size: 0.65rem; transition: transform 0.3s; }
.has-drop:hover .nav-arrow { transform: rotate(180deg); }

.nav-drop {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  min-width: 210px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s var(--ease);
  border: 1px solid rgba(43,174,142,0.1);
}
.has-drop:hover .nav-drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-drop a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.85rem; font-weight: 600;
  color: var(--navy-d);
  transition: all 0.2s;
}
.nav-drop a:hover { background: var(--mint); color: var(--teal); }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.btn-login {
  padding: 9px 20px;
  border-radius: 50px;
  font-family: 'Vazirmatn', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  cursor: pointer;
  border: 2px solid rgba(43,174,142,0.7);
  background: transparent;
  color: var(--teal);
  transition: all 0.3s;
}
#navbar:not(.scrolled) .btn-login { border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-login:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

.btn-register {
  padding: 9px 20px;
  border-radius: 50px;
  font-family: 'Vazirmatn', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  cursor: pointer;
  border: none;
  background: linear-gradient(135deg, var(--teal), var(--teal-d));
  color: #fff;
  box-shadow: 0 4px 15px rgba(43,174,142,0.35);
  transition: all 0.3s;
}
.btn-register:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(43,174,142,0.5); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 26px; height: 3px;
  border-radius: 3px;
  background: var(--teal);
  transition: all 0.3s;
}
#navbar:not(.scrolled) .hamburger span { background: #fff; }

.mobile-menu {
  display: none;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  padding: 16px 24px;
  border-top: 1px solid var(--mint2);
}
.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-weight: 600;
  color: var(--navy-d);
  border-bottom: 1px solid var(--mint);
  font-size: 0.95rem;
}
.mobile-drop-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-weight: 600;
  color: var(--navy-d);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--mint);
  cursor: pointer;
}

.mobile-drop-toggle .nav-arrow {
  transition: transform 0.3s;
}

.mobile-drop.open .mobile-drop-toggle .nav-arrow {
  transform: rotate(180deg);
}

.mobile-drop-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-drop.open .mobile-drop-content {
  max-height: 260px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-drop-content a {
  padding: 10px 16px;
  border-bottom: none;
  font-size: 0.9rem;
}

.mobile-drop-content a {
  padding: 10px 16px;
  border-bottom: none;
  font-size: 0.9rem;
}
/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5,13,31,0.92) 0%,
    rgba(13,31,76,0.85) 40%,
    rgba(26,122,94,0.7) 100%
  );
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(43,174,142,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43,174,142,0.07) 1px, transparent 1px);
  background-size: 70px 70px;
}

.hero-particles {
  position: absolute; inset: 0; z-index: 1;
}
.hero-particle {
  position: absolute;
  border-radius: 50%;
  animation: hParticle linear infinite;
}
@keyframes hParticle {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

.hero-content { position: relative; z-index: 10; width: 100%; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 130px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(43,174,142,0.15);
  border: 1px solid rgba(43,174,142,0.4);
  color: var(--teal-l);
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 1s ease forwards;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal-l);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.7)}
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 2;
  max-width: 520px;
  margin-bottom: 36px;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s both;
}

/* ── FIXED: was "0 8 px 30px" (space before px) ── */
.btn-hero-primary {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--teal), var(--teal-d));
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Vazirmatn', sans-serif;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(43,174,142,0.4);
  transition: all 0.3s;
}

.btn-hero-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(43,174,142,0.5);
}

.btn-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: btnShine 3s infinite;
}

@keyframes btnShine {
  0% { left: -100%; }
  100% { left: 100%; }
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Vazirmatn', sans-serif;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 50px;
  animation: fadeInUp 1s ease 0.8s both;
}

.h-stat { display: flex; flex-direction: column; }
.h-stat strong { font-size: 1.4rem; color: #fff; line-height: 1.1; }
.h-stat span { font-size: 0.72rem; color: var(--teal-l); font-weight: 700; }
.h-stat-div { width: 1px; height: 35px; background: rgba(255,255,255,0.1); }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 1.2s ease 0.4s both;
}

.card-scene {
  position: relative;
  width: 100%;
  max-width: 450px;
  height: 350px;
  perspective: 1500px;
}

.floating-card {
  position: absolute;
  width: 380px; height: 230px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,10);
  transition: transform 0.1s;
}

.card-main {
  z-index: 5;
  
  border: 1px solid rgba(255,255,255,0.15);
  
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation: floatCard 6s ease-in-out infinite alternate;
}

@keyframes floatCard {
  0% { transform: translateY(0) rotateX(10deg) rotateY(-15deg); }
  100% { transform: translateY(-30px) rotateX(5deg) rotateY(-5deg); }
}

.fc-glow {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(43,174,142,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.fc-chip {
  width: 45px; height: 35px;
  background: linear-gradient(135deg, #f5c842, #e6a800);
  border-radius: 6px;
  position: relative;
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.2);
}

.fc-chip::before {
  content: ''; position: absolute; inset: 5px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 2px;
}

.fc-number {
  font-family: monospace;
  font-size: 1.35rem;
  color: #fff;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.fc-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.fc-holder small {
  display: block;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2px;
}

.fc-holder strong {
  font-size: 0.85rem;
  color: #fff;
  text-transform: uppercase;
}

.fc-brand { display: flex; align-items: center; gap: 8px; }

.fc-brand-icon {
  width: 32px; height: 32px;
  background: #fff; color: var(--navy-d);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
}

.fc-brand span { font-weight: 900; color: #fff; font-size: 0.75rem; letter-spacing: 1px; }

.fc-wave {
  position: absolute;
  right: -20px; top: 50%;
  width: 150px; height: 150px;
  background: rgba(43,174,142,0.1);
  border-radius: 50%;
  transform: translateY(-50%);
  filter: blur(40px);
}

.card-back {
  z-index: 4;
  top: 40px; right: -20px;
  background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
  opacity: 0.6;
  filter: blur(2px);
  transform: scale(0.9) rotateY(15deg) rotateX(10deg);
  animation: floatCardBack 6s ease-in-out infinite alternate-reverse;
}

@keyframes floatCardBack {
  0% { transform: translateY(0) scale(0.9) rotateY(15deg) rotateX(10deg); }
  100% { transform: translateY(-30px) scale(0.92) rotateY(5deg) rotateX(5deg); }
}

.f-badge {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 10px 20px;
  color: #0066ff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  z-index: 5;
}

.f-dot { width: 8px; height: 8px; background: #2bae8e; border-radius: 50%; }

.f-badge-1 { top: 10%; right: -30px; animation: fb1 4s ease-in-out infinite alternate; }
.f-badge-2 { bottom: 0; left: -10px; animation: fb2 5s ease-in-out infinite alternate; }
.f-badge-3 { top: 60%; right: -20px; animation: fb1 6s ease-in-out infinite alternate-reverse; }
.f-badge-4 { top: -20px; left: 10%; animation: fb2 4s ease-in-out infinite alternate-reverse; }

@keyframes fb1 {
  from { transform: translateX(0); } to { transform: translateX(15px); }
}

@keyframes fb2 {
  from { transform: translateY(0); } to { transform: translateY(15px); }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 10;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  font-weight: 600;
}

.scroll-mouse {
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  position: relative;
}

.scroll-wheel {
  width: 4px; height: 8px;
  background: var(--teal)
  border-radius: 2px;
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  animation: wheelScroll 1.5s infinite;
}

@keyframes wheelScroll {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 15px); }
}

/* ══════════════════════════════════════TICKER
══════════════════════════════════════ */
.ticker-outer {
  background: var(--navy-d);
  height: 54px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 2px solid var(--teal);
}

.ticker-label {
  background: var(--red);
  color: #fff;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 25px;
  font-weight: 900;
  font-size: 0.85rem;
  z-index: 2;
  box-shadow: 10px 0 30px rgba(0,0,0,0.3);
}

.ticker-wrap { flex: 1; overflow: hidden; position: relative; }

.ticker-track {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: tickerAnim 30s linear infinite;
}

.ticker-track span {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}

@keyframes tickerAnim {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

/* ══════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════ */
#about { padding: 120px 0; overflow: hidden; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-stack {
  position: relative;
  height: 520px;
}

.about-img-1 {
  width: 85%; height: 440px;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.about-img-2 {
  position: absolute;
  bottom: 0; left: 0;
  width: 50%; height: 260px;
  border-radius: 24px;
  border: 10px solid #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.about-badge-float {
  position: absolute;
  top: 30px; left: -20px;
  background: var(--navy);
  color: #fff;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(27,46,107,0.3);
}

.about-badge-float strong { display: block; font-size: 1.8rem; line-height: 1; }
.about-badge-float span { font-size: 0.75rem; color: var(--teal-l); font-weight: 700; }

.about-badge-float2 {
  position: absolute;
  bottom: 120px; right: -20px;
  background: var(--red);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 15px 30px rgba(230,57,70,0.3);
}

.about-badge-float2 strong { display: block; font-size: 1rem; }
.about-badge-float2 small { font-size: 0.65rem; opacity: 0.8; }

.about-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.af-item { display: flex; gap: 15px; }

.af-icon {
  flex-shrink: 0;
  width: 54px; height: 54px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.af-item h4 { font-size: 0.95rem; font-weight: 800; color: var(--navy-d); margin-bottom: 4px; }
.af-item p { font-size: 0.8rem; color: #778; line-height: 1.6; }

.about-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 50px;
}

.cert-badge {
  background: var(--gray);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 10px;
  border: 1px solid #e1e8f0;
}

/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
#stats-bar {
  position: relative;
  padding: 80px 0;
  color: #fff;
  overflow: hidden;
}

.sb-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-d), #050d1f);
  z-index: -1;
}

.sb-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/carbon-fibre.png");
  opacity: 0.1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-icon { font-size: 2.2rem; margin-bottom: 15px; opacity: 0.7; }

.stat-num {
  display: inline-block;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.stat-plus {
  display: inline-block;
  font-size: 1.8rem;
  color: var(--teal);
  margin-right: 2px;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  margin-top: 10px;
}

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
#services { padding: 120px 0; background: var(--gray); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.srv-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  transition: all 0.4s var(--ease);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.srv-card:hover { transform: translateY(-12px); box-shadow: 0 30px 60px rgba(0,0,0,0.1); }

.srv-img-wrap { position: relative; height: 200px; overflow: hidden; }
.srv-img-wrap img { width: 100%; height: 100%; transition: transform 0.6s; }
.srv-card:hover .srv-img-wrap img { transform: scale(1.1); }

.srv-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.6));
}

.srv-num {
  position: absolute; top: 20px; right: 20px;
  font-size: 2.5rem; font-weight: 900; color: rgba(255,255,255,0.2);
  line-height: 1;
}

.srv-body { padding: 30px; position: relative; flex-grow: 1; display: flex; flex-direction: column; }

.srv-icon {
  width: 60px; height: 60px;
  background: var(--mint);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-top: -60px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(43,174,142,0.2);
}

.srv-body h3 { font-size: 1.25rem; font-weight: 800; color: var(--navy-d); margin-bottom: 12px; }
.srv-body p { font-size: 0.9rem; color: #667; margin-bottom: 25px; flex-grow: 1; }

.srv-link {
  font-size: 0.9rem; font-weight: 800; color: var(--teal);
  transition: gap 0.3s;
}
.srv-link:hover { gap: 15px; }

.srv-card.featured {
  background: var(--navy-d);
  border: 1px solid var(--teal);
}

.srv-card.featured .srv-body h3 { color: #fff; }
.srv-card.featured .srv-body p { color: rgba(255,255,255,0.7); }
.srv-card.featured .srv-icon { background: var(--teal); box-shadow: 0 10px 25px rgba(43,174,142,0.4); }

.featured-tag {
  position: absolute; top: 20px; left: -35px;
  background: var(--red); color: #fff;
  padding: 5px 40px;
  font-size: 0.7rem; font-weight: 800;
  transform: rotate(-45deg);
  box-shadow: 0 4px 10px rgba(230,57,70,0.3);
}

/* ══════════════════════════════════════
   GALLERY SECTION
══════════════════════════════════════ */
#gallery-section { padding: 120px 0; background: #fff; }

.gallerySwiper { padding: 20px 0 80px; }

.gallerySwiper .swiper-slide {
  width: 80%;
  height: 500px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  opacity: 0.4;
  transition: 0.5s;
  transform: scale(0.9);
}

.gallerySwiper .swiper-slide-active { opacity: 1; transform: scale(1); box-shadow: 0 40px 80px rgba(0,0,0,0.15); }
.gallerySwiper img { width: 100%; height: 100%; }

.slide-caption {
  position: absolute;
  bottom: 40px; right: 40px;
  background: rgba(255,255,255,0.95);
  padding: 15px 30px;
  border-radius: 15px;
  font-weight: 800;
  color: var(--navy-d);
  font-size: 1.1rem;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* ══════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════ */
#how-it-works {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.hiw-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1b2e6b 0%, #0a1628 100%);
}

.hiw-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(var(--teal) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.05;
}

.hiw-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 60px;
}

.htab {
  padding: 14px 35px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-family: 'Vazirmatn', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.htab.active { background: var(--teal); border-color: var(--teal); box-shadow: 0 10px 25px rgba(43,174,142,0.4); }

.htab-content { display: none; }
.htab-content.active { display: block; animation: fadeIn 0.6s ease; }

@keyframes fadeIn { from { opacity:0; transform: translateY(20px); } to { opacity:1; transform: translateY(0); } }

.hiw-steps-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
}

.hiw-step { text-align: center; position: relative; }

.hs-icon {
  width: 90px; height: 90px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(43,174,142,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 25px;
  position: relative;
  transition: 0.3s;
}

.hiw-step:hover .hs-icon { background: var(--teal); transform: translateY(-10px); }

.hs-num {
  position: absolute; top: -5px; right: -5px;
  width: 30px; height: 30px;
  background: var(--red); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.8rem;
}

.hiw-step h4 { color: #fff; font-size: 1.15rem; margin-bottom: 12px; }
.hiw-step p { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.6; }

.hiw-connector {
  width: 40px;
  display: flex; flex-direction: column; align-items: center;
  margin-top: -60px;
}

.hc-line { width: 2px; height: 60px; background: linear-gradient(to bottom, var(--teal), transparent); opacity: 0.3; }
.hc-dot { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; }

/* ══════════════════════════════════════
   CLIENTS SECTION
══════════════════════════════════════ */
#clients { padding: 120px 0; background: var(--gray); }

.clientsSwiper { padding: 20px 0 60px; }

.client-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  height: 100%;
}

.client-card img { width: 100%; height: 160px; filter: grayscale(1); transition: 0.4s; }
.client-card:hover img { filter: grayscale(0); }

.cc-body { padding: 20px; position: relative; }

.cc-icon {
  position: absolute; top: -30px; left: 20px;
  width: 50px; height: 50px;
  background: #fff; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cc-body h4 { font-size: 1rem; font-weight: 800; color: var(--navy-d); margin-bottom: 5px; }
.cc-body p { font-size: 0.78rem; color: #778; }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
#testimonials {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.test-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-d), #050d1f);
}

.testSwiper { padding: 40px 0 80px; }

.test-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px;
  border-radius: 24px;
  backdrop-filter: blur(10px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.test-quote { font-size: 3rem; color: var(--teal); line-height: 1; margin-bottom: 10px; opacity: 0.5; }
.test-card p { font-size: 1.1rem; color: #fff; line-height: 1.8; margin-bottom: 30px; }

.test-author { display: flex; align-items: center; gap: 15px; }
.test-author img { width: 60px; height: 60px; border-radius: 50%; border: 3px solid var(--teal); }
.test-author strong { display: block; color: #fff; font-size: 1rem; }
.test-author span { color: var(--teal-l); font-size: 0.75rem; }

.test-stars { color: var(--gold); margin-top: 15px; font-size: 1.2rem; }

/* ══════════════════════════════════════
   SECURITY SECTION
══════════════════════════════════════ */
#security { padding: 120px 0; background: #fff; }

.sec-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; align-items: center; }

.sec-badges-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.sb-item {
  display: flex; align-items: center; gap: 15px;
  padding: 20px;
  background: var(--gray);
  border-radius: 16px;
  border: 1px solid #e1e8f0;
}

.sb-item span { font-size: 1.8rem; }
.sb-item strong { display: block; font-size: 0.95rem; color: var(--navy-d); }
.sb-item small { font-size: 0.7rem; color: #778; }

.sec-img-wrap { position: relative; }
.sec-img-wrap img { width: 100%; border-radius: 30px; box-shadow: 0 40px 80px rgba(0,0,0,0.1); }

.sec-float {
  position: absolute;
  background: #fff;
  padding: 15px 25px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  text-align: center;
}

.sec-float-1 { top: -20px; right: -20px; border-right: 5px solid var(--teal); }
.sec-float-2 { bottom: 40px; left: -30px; border-left: 5px solid var(--red); }
.sec-float-3 { top: 40%; left: -50px; display: flex; align-items: center; gap: 10px; padding: 10px 20px; border-radius: 50px; }

.sec-float strong { display: block; font-size: 1.4rem; color: var(--navy-d); line-height: 1; }
.sec-float span { font-size: 0.72rem; font-weight: 700; color: #778; }

.pulse-ring {
  width: 12px; height: 12px;
  background: #2bae8e;
  border-radius: 50%;
  position: relative;
}

.pulse-ring::after {
  content: ''; position: absolute; inset: -4px;
  border: 2px solid #2bae8e; border-radius: 50%;
  animation: pulseAnim 1.5s infinite;
}

@keyframes pulseAnim {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */
#cta {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-bg-img { position: absolute; inset: 0; }
.cta-bg-img img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(27,46,107,0.95), rgba(43,174,142,0.85)); }

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-text h2 { font-size: 2.8rem; color: #fff; line-height: 1.2; }
.cta-text h2 span { color: var(--red-l); }
.cta-text p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-top: 15px; }

.cta-btns { text-align: left; }

.btn-cta-main {
  position: relative; overflow: hidden;
  background: var(--red); color: #fff;
  padding: 18px 45px;
  border-radius: 50px;
  font-size: 1.1rem; font-weight: 800;
  font-family: 'Vazirmatn', sans-serif;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(230,57,70,0.4);
  transition: 0.3s;
  margin-bottom: 20px;
}

.btn-cta-main:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(230,57,70,0.6); }

.cta-contact-info { display: flex; flex-direction: column; gap: 5px; color: #fff; font-weight: 700; }

/* ══════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════ */
#contact { padding: 120px 0; background: var(--gray); }

.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; }

.contact-details { margin: 40px 0; }

.cd-item { display: flex; gap: 20px; margin-bottom: 25px; }

.cd-icon {
  width: 50px; height: 50px;
  background: #fff; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.cd-item h5 { font-size: 1rem; color: var(--navy-d); margin-bottom: 3px; }
.cd-item p { font-size: 0.9rem; color: #778; }

.contact-img-wrap img { border-radius: 24px; height: 200px; width: 100%; box-shadow: 0 20px 40px rgba(0,0,0,0.08); }

.contact-form-card {
  background: #fff;
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

.contact-form-card h3 { font-size: 1.6rem; color: var(--navy-d); margin-bottom: 10px; }
.contact-form-card p { font-size: 0.9rem; color: #778; margin-bottom: 35px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--navy-d); margin-bottom: 8px; }

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: var(--gray);
  border: 2px solid transparent;
  padding: 14px 20px;
  border-radius: 12px;
  font-family: 'Vazirmatn', sans-serif;
  font-size: 0.9rem;
  transition: 0.3s;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  background: #fff;
  border-color: var(--teal);
  outline: none;
  box-shadow: 0 10px 20px rgba(43,174,142,0.1);
}

.form-group textarea { height: 120px; resize: none; }

.form-btn {
  width: 100%;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--teal), var(--teal-d));
  color: #fff;
  padding: 18px;
  border-radius: 15px;
  font-family: 'Vazirmatn', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(43,174,142,0.3);
  transition: 0.3s;
  margin-top: 10px;
}

.form-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(43,174,142,0.5); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer { background: var(--navy-d); color: #fff; padding-top: 80px; }

.footer-grid { display: grid; grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr; gap: 50px; padding-bottom: 60px; }

.fb-logo { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; }

.fb-icon {
  width: 45px; height: 45px;
  background: var(--teal); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 900;
}

.fb-logo strong { display: block; font-size: 1.1rem; }
.fb-logo small { font-size: 0.65rem; color: var(--teal-l); letter-spacing: 1px; }

.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.8; margin-bottom: 25px; }

.footer-social { display: flex; gap: 10px; }

.fs-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem;
  transition: 0.3s;
}

.fs-btn:hover { background: var(--teal); transform: translateY(-3px); }

.footer-col h4 { font-size: 1.1rem; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; right: 0; width: 40px; height: 2px; background: var(--teal); }

.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: 0.3s; }
.footer-col ul li a:hover { color: var(--teal-l); padding-right: 8px; }

.footer-contact p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 12px; }

.footer-cert-logos { display: flex; gap: 10px; margin-top: 25px; }

.fcl-item {
  background: rgba(255,255,255,0.05);
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 0.7rem; font-weight: 900; color: var(--teal-l);
}

.footer-bottom {
  background: rgba(0,0,0,0.2);
  padding: 25px 0;
  text-align: center;
}

.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

.fb-links { display: flex; gap: 20px; }
.fb-links a { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.fb-links a:hover { color: #fff; }

/* ══════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════ */
#backTop {
  position: fixed;
  bottom: 30px; left: 30px;
  width: 50px; height: 50px;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  display: none;
  transition: 0.3s;
}

#backTop:hover { transform: translateY(-5px); background: var(--teal-d); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner, .about-grid, .contact-grid, .sec-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-text { order: 2; } .hero-visual { order: 1; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-btns, .hero-stats { justify-content: center; }
  .about-img-stack { height: 400px; margin-bottom: 50px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hiw-steps-wrap { grid-template-columns: 1fr; gap: 40px; }
  .hiw-connector { display: none; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns { text-align: center; }
}

@media (max-width: 768px) {
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-col h4::after { right: 50%; transform: translateX(50%); }
  .footer-bottom .container { flex-direction: column; gap: 15px; }
  .floating-card { width: 280px; height: 170px; }
  .fc-number { font-size: 1rem; }
}
