/* ===== DESIGN SYSTEM ===== */
:root {
  --bg:          #050A18;
  --bg-2:        #080E1F;
  --surface:     rgba(255,255,255,0.04);
  --surface-2:   rgba(255,255,255,0.07);
  --border:      rgba(255,255,255,0.08);
  --border-glow: rgba(59,130,246,0.4);

  --blue:        #3B82F6;
  --blue-bright: #60A5FA;
  --blue-dark:   #1D4ED8;
  --gold:        #F59E0B;
  --gold-light:  #FCD34D;
  --purple:      #8B5CF6;
  --teal:        #14B8A6;
  --green:       #10B981;

  --text:        #F0F4FF;
  --text-muted:  rgba(240,244,255,0.5);
  --text-dim:    rgba(240,244,255,0.3);

  --radius:      16px;
  --radius-sm:   10px;
  --radius-xs:   6px;
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', sans-serif;
  direction: rtl;
  text-align: right;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* dot-grid background texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(59,130,246,0.12) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

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

section { padding: 100px 0; }

/* ===== TYPOGRAPHY ===== */
h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 { margin: 12px 0 16px; }

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-bright);
  border: 1px solid rgba(96,165,250,0.3);
  background: rgba(59,130,246,0.08);
  padding: 5px 14px;
  border-radius: 20px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer;
  white-space: nowrap;
  justify-content: center;
  font-family: 'Heebo', sans-serif;
}

.btn:hover { transform: translateY(-3px); }

.btn-glow {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(59,130,246,0.5);
}
.btn-glow:hover {
  background: var(--blue-dark);
  box-shadow: 0 0 28px rgba(59,130,246,0.5), 0 8px 24px rgba(59,130,246,0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.25);
  background: var(--surface-2);
}

.btn-full { width: 100%; }

.wa-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ===== HEADER ===== */
#header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}

#header.scrolled {
  background: rgba(5,10,24,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

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

.logo img { height: 44px; width: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav ul {
  display: flex;
  align-items: center;
}

.nav ul li a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-xs);
  transition: color var(--transition), background var(--transition);
}

.nav ul li a:hover, .nav ul li a.active {
  color: var(--text);
  background: var(--surface-2);
}

.nav-cta { margin-right: 16px; padding: 10px 22px; font-size: 0.9rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
}

/* Animated orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: orbFloat 8s ease-in-out infinite;
  pointer-events: none;
}

.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.25) 0%, transparent 70%);
  top: -200px; left: -200px;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
  bottom: -150px; right: -100px;
  animation-delay: -3s;
}

.orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(139,92,246,0.18) 0%, transparent 70%);
  top: 40%; right: 25%;
  animation-delay: -6s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -40px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(0.95); }
}

.noise-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--blue-bright);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.1s;
}

.tag-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 8px var(--green); }
  50%       { box-shadow: 0 0 16px var(--green), 0 0 24px rgba(16,185,129,0.4); }
}

#hero h1 {
  display: flex;
  flex-direction: column;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.h1-line {
  color: var(--text);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}
.h1-line:nth-child(1) { animation-delay: 0.2s; }
.h1-line:nth-child(3) { animation-delay: 0.5s; }

.h1-gradient {
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.35s;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.55s;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.7s;
}

.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.9s;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--text-dim), transparent);
}

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

/* ===== STATS STRIP ===== */
#stats {
  padding: 40px 0;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 48px;
  text-align: center;
}

.stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--blue-bright), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-plus {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat-num, .stat-plus { display: inline; }

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-icon { font-size: 1.8rem; }

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===== SERVICES ===== */
#services { background: transparent; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: default;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: 0 0 40px rgba(59,130,246,0.1), 0 20px 40px rgba(0,0,0,0.3);
}

.service-card[data-color="gold"]:hover { border-color: rgba(245,158,11,0.4); box-shadow: 0 0 40px rgba(245,158,11,0.08), 0 20px 40px rgba(0,0,0,0.3); }
.service-card[data-color="purple"]:hover { border-color: rgba(139,92,246,0.4); box-shadow: 0 0 40px rgba(139,92,246,0.08), 0 20px 40px rgba(0,0,0,0.3); }
.service-card[data-color="teal"]:hover { border-color: rgba(20,184,166,0.4); box-shadow: 0 0 40px rgba(20,184,166,0.08), 0 20px 40px rgba(0,0,0,0.3); }

.card-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.service-card[data-color="blue"]  .card-glow { background: rgba(59,130,246,0.25); }
.service-card[data-color="gold"]  .card-glow { background: rgba(245,158,11,0.2); }
.service-card[data-color="purple"].card-glow { background: rgba(139,92,246,0.2); }
.service-card[data-color="teal"]  .card-glow { background: rgba(20,184,166,0.2); }

.service-card:hover .card-glow { opacity: 1; }

.service-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
  line-height: 1.4;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.card-arrow {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-size: 1.3rem;
  color: var(--text-dim);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity var(--transition), transform var(--transition), color var(--transition);
}

.service-card[data-color="blue"]:hover  .card-arrow { opacity: 1; transform: translateX(0); color: var(--blue-bright); }
.service-card[data-color="gold"]:hover  .card-arrow { opacity: 1; transform: translateX(0); color: var(--gold); }
.service-card[data-color="purple"]:hover .card-arrow { opacity: 1; transform: translateX(0); color: var(--purple); }
.service-card[data-color="teal"]:hover  .card-arrow { opacity: 1; transform: translateX(0); color: var(--teal); }

/* ===== WHY AMIT ===== */
#why-amit {
  background: linear-gradient(180deg, transparent, rgba(59,130,246,0.03), transparent);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-visual { position: relative; }

.why-bg-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.why-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.why-stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}

.why-stat-card:hover { transform: translateY(-4px); border-color: var(--border-glow); }

.why-stat-card.accent { background: rgba(59,130,246,0.1); border-color: rgba(59,130,246,0.3); }
.why-stat-card.accent-gold { background: rgba(245,158,11,0.08); border-color: rgba(245,158,11,0.2); }

.wsc-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-bright), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.wsc-icon { display: block; font-size: 2rem; margin-bottom: 4px; }

.wsc-label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.why-text .section-tag { margin-bottom: 20px; display: inline-block; }

.why-text h2 { margin-bottom: 20px; }

.why-intro {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 36px;
  line-height: 1.75;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.why-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-check {
  width: 26px; height: 26px;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.35);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-list li > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.why-list li strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.why-list li span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ===== PROCESS ===== */
#process { background: transparent; }

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 32px;
}

.process-line {
  position: absolute;
  top: 28px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--gold), transparent);
  opacity: 0.3;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 28px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  transition: transform var(--transition), border-color var(--transition);
}

.process-step:hover { transform: translateY(-6px); border-color: var(--border-glow); }

.ps-num {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-bright), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.ps-content h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.ps-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
#testimonials { background: transparent; }

.testimonials-wrapper { position: relative; }

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: 0 0 30px rgba(59,130,246,0.08);
}

.tc-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.tc-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.tc-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.tc-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tc-info strong { font-size: 0.9rem; font-weight: 700; }
.tc-info span { font-size: 0.8rem; color: var(--text-muted); }

.tc-tag {
  display: inline-block;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  color: var(--blue-bright);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.72rem !important;
  font-weight: 600;
}

.testimonial-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background var(--transition), transform var(--transition);
}

.dot.active { background: var(--blue); transform: scale(1.3); }

.testimonials-note {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.78rem;
  margin-top: 28px;
}

/* ===== FAQ ===== */
#faq { background: transparent; }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item:has(.faq-q[aria-expanded="true"]) {
  border-color: rgba(59,130,246,0.3);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  gap: 16px;
  text-align: right;
  transition: color var(--transition);
}

.faq-q:hover { color: var(--blue-bright); }
.faq-q[aria-expanded="true"] { color: var(--blue-bright); }

.faq-icon {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--blue-bright);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}

.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a.open { max-height: 200px; }

.faq-a p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ===== CONTACT ===== */
#contact { background: transparent; }

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.contact-left .section-tag { display: inline-block; margin-bottom: 20px; }
.contact-left h2 { margin-bottom: 16px; font-size: clamp(1.8rem, 3vw, 2.4rem); }
.contact-left > p { color: var(--text-muted); margin-bottom: 40px; font-size: 1rem; }

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.c-link:hover {
  border-color: var(--border-glow);
  background: var(--surface-2);
  transform: translateX(-4px);
}

.c-link-icon { font-size: 1.3rem; flex-shrink: 0; }

.c-link div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.c-link strong { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.c-link span { font-size: 0.82rem; color: var(--text-muted); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  font-family: 'Heebo', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  direction: rtl;
  text-align: right;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
  background: rgba(59,130,246,0.04);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(240,244,255,0.3)' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 14px center;
}

.form-group select option { background: #0D1530; color: var(--text); }

.form-group textarea { resize: vertical; min-height: 100px; }

/* ===== FOOTER ===== */
#footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
  background: rgba(0,0,0,0.2);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 260px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px; height: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), background var(--transition);
}

.footer-socials a:hover { border-color: var(--border-glow); background: var(--surface-2); }
.footer-socials svg { width: 16px; height: 16px; color: var(--text-muted); }

.footer-nav h4, .footer-contact-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 18px;
}

.footer-nav ul, .footer-contact-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a, .footer-contact-col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-nav a:hover, .footer-contact-col a:hover { color: var(--blue-bright); }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .process-track { grid-template-columns: repeat(2, 1fr); }
  .process-line { display: none; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }

  /* Mobile Header */
  .hamburger { display: flex; }

  .nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5,10,24,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
    gap: 0;
  }

  .nav.open { display: flex; }

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 32px;
  }

  .nav ul li a {
    font-size: 1.4rem;
    padding: 14px 32px;
    color: var(--text) !important;
    display: block;
  }

  .nav-cta { margin-right: 0; }

  /* Hero */
  #hero { padding: 110px 0 70px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Why */
  .why-stats-grid { grid-template-columns: 1fr 1fr; }

  /* Process */
  .process-track { grid-template-columns: 1fr; }

  /* Testimonials slider */
  .testimonials-track {
    display: flex;
    transition: transform 0.4s ease;
    width: 300%;
  }
  .testimonial-card { width: calc(100% / 3); flex-shrink: 0; }
  .testimonial-dots { display: flex; }

  /* Stats */
  .stats-list { gap: 0; }
  .stat-item { padding: 16px 24px; }
  .stat-divider { height: 32px; }

  /* Contact form */
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (max-width: 480px) {
  .why-stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-divider { display: none; }
  .stats-list { justify-content: space-around; gap: 8px; }
  .stat-item { padding: 12px 16px; }
}

/* ===== THEME TRANSITION (smooth swap) ===== */
body,
#header,
.service-card, .service-icon-wrap,
.why-stat-card,
.process-step,
.testimonial-card,
.faq-item,
.contact-form,
.c-link,
.section-tag,
.faq-q,
.btn-ghost {
  transition-property: background, color, border-color, box-shadow;
  transition-duration: 0.35s;
  transition-timing-function: ease;
}

/* ===== THEME TOGGLE BUTTON ===== */
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  flex-shrink: 0;
  margin: 0 6px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.4s ease, color 0.3s ease;
}

.theme-toggle:hover {
  border-color: var(--border-glow);
  background: var(--surface-2);
  color: var(--gold);
  transform: rotate(25deg);
}

.theme-toggle svg { width: 17px; height: 17px; }

/* dark = default: show moon, hide sun */
.theme-toggle .icon-sun  { display: none; }
.theme-toggle .icon-moon { display: block; }

html[data-theme="light"] .theme-toggle .icon-sun  { display: block; }
html[data-theme="light"] .theme-toggle .icon-moon { display: none; }

/* ===== LIGHT MODE ===== */
html[data-theme="light"] {
  --bg:          #F2F6FF;
  --bg-2:        #E8EEFF;
  --surface:     rgba(255,255,255,0.95);
  --surface-2:   #ffffff;
  --border:      rgba(37,99,235,0.13);
  --border-glow: rgba(37,99,235,0.35);
  --text:        #0A1628;
  --text-muted:  #4A5870;
  --text-dim:    #9aaabf;
}

html[data-theme="light"] body { background: var(--bg); }

html[data-theme="light"] body::before {
  background-image: radial-gradient(rgba(37,99,235,0.07) 1px, transparent 1px);
}

/* Header – light */
html[data-theme="light"] #header.scrolled {
  background: rgba(242,246,255,0.92);
  border-bottom: 1px solid rgba(37,99,235,0.1);
}
html[data-theme="light"] .nav ul li a            { color: var(--text-muted); }
html[data-theme="light"] .nav ul li a:hover,
html[data-theme="light"] .nav ul li a.active     { color: var(--blue); background: rgba(37,99,235,0.06); }
html[data-theme="light"] .hamburger span          { background: var(--text); }
html[data-theme="light"] .nav.open               { background: rgba(242,246,255,0.98); }
html[data-theme="light"] .nav.open .nav ul li a  { color: var(--text) !important; }

/* Hero – light */
html[data-theme="light"] #hero        { background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 50%, #f0f5ff 100%); }
html[data-theme="light"] .orb-1      { background: radial-gradient(circle, rgba(59,130,246,0.32) 0%, transparent 70%); }
html[data-theme="light"] .orb-2      { background: radial-gradient(circle, rgba(245,158,11,0.22) 0%, transparent 70%); }
html[data-theme="light"] .orb-3      { background: radial-gradient(circle, rgba(139,92,246,0.18) 0%, transparent 70%); }
html[data-theme="light"] .noise-overlay { opacity: 0.01; }
html[data-theme="light"] .hero-tag   { color: var(--blue-dark); border-color: rgba(37,99,235,0.25); background: rgba(37,99,235,0.07); }
html[data-theme="light"] .h1-line    { color: var(--text); }
html[data-theme="light"] .hero-sub   { color: var(--text-muted); }
html[data-theme="light"] .hero-scroll-hint { color: var(--text-dim); }
html[data-theme="light"] .scroll-line { background: linear-gradient(90deg, var(--text-dim), transparent); }
html[data-theme="light"] .btn-ghost  { border-color: rgba(37,99,235,0.22); color: var(--text); }
html[data-theme="light"] .btn-ghost:hover { background: rgba(37,99,235,0.06); border-color: rgba(37,99,235,0.3); }

/* Stats – light */
html[data-theme="light"] #stats { background: rgba(37,99,235,0.04); border-color: rgba(37,99,235,0.1); }

/* Section tag – light */
html[data-theme="light"] .section-tag { color: var(--blue-dark); border-color: rgba(37,99,235,0.22); background: rgba(37,99,235,0.06); }

/* Services – light */
html[data-theme="light"] .service-card {
  background: #ffffff;
  box-shadow: 0 2px 16px rgba(37,99,235,0.07), 0 1px 4px rgba(0,0,0,0.04);
  border-color: rgba(37,99,235,0.1);
}
html[data-theme="light"] .service-card:hover {
  box-shadow: 0 8px 36px rgba(37,99,235,0.14), 0 4px 16px rgba(0,0,0,0.05);
}
html[data-theme="light"] .service-icon-wrap { background: rgba(37,99,235,0.06); border-color: rgba(37,99,235,0.1); }

/* Why Amit – light */
html[data-theme="light"] #why-amit { background: linear-gradient(180deg, transparent, rgba(37,99,235,0.025), transparent); }
html[data-theme="light"] .why-stat-card { background: #ffffff; box-shadow: 0 2px 16px rgba(37,99,235,0.07); border-color: rgba(37,99,235,0.1); }
html[data-theme="light"] .why-stat-card.accent { background: rgba(37,99,235,0.07); border-color: rgba(37,99,235,0.2); }
html[data-theme="light"] .why-stat-card.accent-gold { background: rgba(245,158,11,0.06); border-color: rgba(245,158,11,0.18); }
html[data-theme="light"] .why-bg-glow { background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%); }
html[data-theme="light"] .why-check { background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.3); }

/* Process – light */
html[data-theme="light"] .process-step { background: #ffffff; box-shadow: 0 2px 16px rgba(37,99,235,0.07); border-color: rgba(37,99,235,0.1); }

/* Testimonials – light */
html[data-theme="light"] .testimonial-card { background: #ffffff; box-shadow: 0 2px 16px rgba(37,99,235,0.07); border-color: rgba(37,99,235,0.1); }
html[data-theme="light"] .tc-text { color: var(--text-muted); }
html[data-theme="light"] .dot { background: rgba(37,99,235,0.2); }

/* FAQ – light */
html[data-theme="light"] .faq-item { background: #ffffff; box-shadow: 0 2px 8px rgba(37,99,235,0.05); border-color: rgba(37,99,235,0.1); }
html[data-theme="light"] .faq-item:has(.faq-q[aria-expanded="true"]) { border-color: rgba(37,99,235,0.3); }
html[data-theme="light"] .faq-a p { border-top-color: rgba(37,99,235,0.08); }

/* Contact – light */
html[data-theme="light"] .contact-form { background: #ffffff; box-shadow: 0 4px 32px rgba(37,99,235,0.1); border-color: rgba(37,99,235,0.1); }
html[data-theme="light"] .form-group input,
html[data-theme="light"] .form-group select,
html[data-theme="light"] .form-group textarea { background: #F7FAFF; color: var(--text); border-color: rgba(37,99,235,0.15); }
html[data-theme="light"] .form-group input::placeholder,
html[data-theme="light"] .form-group textarea::placeholder { color: var(--text-dim); }
html[data-theme="light"] .form-group input:focus,
html[data-theme="light"] .form-group select:focus,
html[data-theme="light"] .form-group textarea:focus { background: #ffffff; }
html[data-theme="light"] .form-group select option { background: #ffffff; color: var(--text); }
html[data-theme="light"] .c-link { background: #ffffff; box-shadow: 0 2px 10px rgba(37,99,235,0.07); border-color: rgba(37,99,235,0.1); }
html[data-theme="light"] .c-link:hover { background: #f0f5ff; border-color: rgba(37,99,235,0.22); }
html[data-theme="light"] .c-link strong { color: var(--text); }

/* Footer intentionally stays dark in both themes */
