/* ===========================
   TOKENS
   =========================== */
:root {
  --bg: #080808;
  --bg2: #0F0F0F;
  --card: #141414;
  --card2: #1A1A1A;
  --border: rgba(255, 255, 255, 0.07);
  --border-hover: rgba(255, 255, 255, 0.15);

  --orange: #FF5500;
  --orange-hover: #FF6A1A;
  --orange-dim: rgba(255, 85, 0, 0.12);
  --orange-glow: rgba(255, 85, 0, 0.25);
  --gold: #FFB700;

  --white: #FFFFFF;
  --gray-100: #F0F0F0;
  --gray-400: #AAAAAA;
  --gray-600: #666666;
  --text: #E8E8E8;
  --text-dim: #888888;

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;

  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-orange: 0 0 40px rgba(255, 85, 0, 0.2);

  --nav-h: 72px;
  --container: 1180px;
  --gap: 32px;
}

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Heebo', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

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

/* ===========================
   LAYOUT
   =========================== */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

section { padding-block: 100px; }

/* ===========================
   TYPOGRAPHY HELPERS
   =========================== */
.tag {
  display: inline-block;
  background: var(--orange-dim);
  color: var(--orange);
  border: 1px solid rgba(255, 85, 0, 0.25);
  border-radius: 100px;
  padding: 4px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

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

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-dim);
  font-size: 1.05rem;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px var(--orange-glow);
}
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--orange-glow);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid var(--border-hover);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  margin-top: 8px;
}
.btn-whatsapp:hover { background: #1ebe5d; }

.btn-full { width: 100%; justify-content: center; padding: 16px; font-size: 1.05rem; }

/* ===========================
   NAV
   =========================== */
.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-size: 1.3rem;
  font-weight: 900;
  flex-shrink: 0;
}

.logo-main { color: var(--white); }
.logo-plus { color: var(--orange); }

.nav-links {
  display: flex;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: var(--gray-400);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.nav-mobile-bottom { display: none; }

.nav-mobile-phone {
  display: block;
  color: var(--orange);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

.nav-mobile-social {
  display: flex;
  gap: 10px;
  padding: 12px 16px 4px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 8px 16px;
  border: 1px solid rgba(255, 85, 0, 0.3);
  border-radius: var(--radius);
  transition: background 0.2s;
  flex-shrink: 0;
}
.nav-phone:hover { background: var(--orange-dim); }

.nav-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
  padding-top: 20px;
}

.nav-social {
  display: flex;
  gap: 6px;
}

.nav-social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
  color: #fff;
}

.nav-social-icon:hover { transform: scale(1.15); box-shadow: 0 4px 12px rgba(0,0,0,0.4); }

.nav-social-web { background: var(--orange); }
.nav-social-fb  { background: #1877F2; }
.nav-social-ig  { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.nav-social-tt  { background: #010101; border: 1px solid #EE1D52; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-inline-start: auto;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(8,8,8,0.6) 0%, rgba(8,8,8,0.85) 60%, var(--bg) 100%),
    url('https://images.unsplash.com/photo-1694522362256-6c907336af43?w=1920&auto=format&fit=crop&q=80') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 50%, rgba(255,85,0,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,85,0,0.12) 0%, transparent 65%);
  top: -100px;
  right: -200px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 120px;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 28px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: blink 2s infinite;
  flex-shrink: 0;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: normal;
  color: var(--orange);
  display: block;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray-400);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  max-width: 560px;
}

.stat {
  flex: 1;
  text-align: center;
}

.stat-number {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-number span { font-size: inherit; }

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

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

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-dim);
  animation: bounce 2s infinite;
  opacity: 0.6;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===========================
   SERVICES
   =========================== */
.services {
  background: var(--bg2);
}

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

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: default;
}

.service-card:hover {
  border-color: rgba(255, 85, 0, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,85,0,0.12);
}

.service-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  filter: brightness(0.85);
}

.service-card:hover .service-img img {
  transform: scale(1.05);
  filter: brightness(1);
}

.service-body {
  padding: 24px 24px 28px;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.service-tags span {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ===========================
   WHY US
   =========================== */
.why-us {
  background: var(--bg);
}

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

.why-us-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.why-us-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 480px;
  filter: brightness(0.9);
}

.exp-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--orange);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(255, 85, 0, 0.4);
}

.exp-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.exp-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.why-us-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.why-intro {
  color: var(--text-dim);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

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

.why-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--text);
}

.check {
  width: 22px;
  height: 22px;
  background: var(--orange-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.check svg {
  width: 12px;
  height: 12px;
  color: var(--orange);
}

/* ===========================
   PROCESS
   =========================== */
.process {
  background: var(--bg2);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 28px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s, transform 0.3s;
}

.process-step:hover {
  border-color: rgba(255, 85, 0, 0.3);
  transform: translateY(-3px);
}

.step-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  opacity: 0.7;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}

.process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.55;
}

.process-arrow {
  color: var(--text-dim);
  opacity: 0.4;
  flex-shrink: 0;
  margin-top: 48px;
  transform: scaleX(-1);
}

.process-arrow svg {
  width: 36px;
  height: 18px;
}

/* ===========================
   GALLERY
   =========================== */
.gallery {
  background: var(--bg);
  overflow: hidden;
  padding-bottom: 60px;
}

.gallery .container { margin-bottom: 40px; }

.gallery-swiper {
  padding-inline: 24px !important;
  overflow: visible !important;
}

.gallery-slide {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.92) contrast(1.08) saturate(1.1);
}

.gallery-slide:hover img {
  transform: scale(1.06);
  filter: brightness(1.05) contrast(1.08) saturate(1.15);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-slide:hover .slide-overlay { opacity: 1; }

.slide-overlay span {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

.gallery-next,
.gallery-prev {
  color: var(--white) !important;
  background: rgba(255,255,255,0.1) !important;
  border-radius: 50% !important;
  width: 44px !important;
  height: 44px !important;
  backdrop-filter: blur(8px);
  transition: background 0.2s !important;
}

.gallery-next:hover,
.gallery-prev:hover {
  background: var(--orange) !important;
}

.gallery-next::after,
.gallery-prev::after {
  font-size: 16px !important;
  font-weight: 800;
}

.gallery-pagination .swiper-pagination-bullet {
  background: var(--text-dim);
  opacity: 0.5;
}

.gallery-pagination .swiper-pagination-bullet-active {
  background: var(--orange);
  opacity: 1;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials {
  background: var(--bg2);
}

.testimonials-swiper {
  overflow: visible !important;
  padding-inline: 4px !important;
  padding-bottom: 48px !important;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: border-color 0.3s;
}

.testimonial-card:hover { border-color: rgba(255, 85, 0, 0.25); }

.stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange-dim);
  border: 2px solid rgba(255, 85, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--orange);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.testimonials-pagination { bottom: 0 !important; }
.testimonials-pagination .swiper-pagination-bullet { background: var(--text-dim); opacity: 0.5; }
.testimonials-pagination .swiper-pagination-bullet-active { background: var(--orange); opacity: 1; }

/* ===========================
   FAQ
   =========================== */
.faq {
  background: var(--bg);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: start;
}

.faq-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 40px;
}

.faq-list { display: flex; flex-direction: column; gap: 12px; }

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

.faq-item.open { border-color: rgba(255, 85, 0, 0.3); }

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

.faq-item.open .faq-question { color: var(--orange); }

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--text-dim);
}

.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--orange); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
}

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

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.faq-cta-card {
  background: var(--orange);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.faq-cta-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.faq-cta-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.faq-cta-card .btn-primary {
  background: var(--white);
  color: var(--orange);
  box-shadow: none;
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
}

.faq-cta-card .btn-primary:hover { background: var(--gray-100); transform: none; }

.faq-cta-card .btn-whatsapp { width: 100%; justify-content: center; }

/* ===========================
   CONTACT
   =========================== */
.contact {
  background: var(--bg2);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.contact-info > p {
  color: var(--text-dim);
  margin-bottom: 36px;
}

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

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, transform 0.2s;
}

.contact-method:hover {
  border-color: var(--border-hover);
  transform: translateX(-4px);
}

.method-icon {
  width: 44px;
  height: 44px;
  background: var(--orange-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.method-icon svg { width: 20px; height: 20px; }

.method-icon--green { background: rgba(37, 211, 102, 0.12); color: #25D366; }

.contact-method strong {
  display: block;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}

.contact-method span {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* FORM */
.contact-form {
  background: #FDF8F2;
  border: 1px solid #E8DDD0;
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
}

.contact-form .sq-label { color: #555; }
.contact-form .sq-card-inner { background: #fff; border-color: #DDD; color: #333; }
.contact-form .sq-card:hover .sq-card-inner { border-color: var(--orange); color: #111; }
.contact-form .sq-card input[type="radio"]:checked + .sq-card-inner { background: var(--orange-dim); color: var(--orange); border-color: var(--orange); }
.contact-form .form-group label { color: #555; }
.contact-form input,
.contact-form select,
.contact-form textarea { background: #fff; border-color: #DDD; color: #111; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #AAA; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--orange); }

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-400);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  direction: rtl;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
}

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

.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 100px; }

/* Smart form */
.sq-block { margin-bottom: 22px; }

.sq-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray-400);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sq-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.sq-cards-5 {
  grid-template-columns: repeat(5, 1fr);
}

.sq-card { cursor: pointer; }

.sq-card input[type="radio"] { display: none; }

.sq-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 10px;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dim);
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
}

.sq-card:hover .sq-card-inner {
  border-color: rgba(255, 85, 0, 0.4);
  color: var(--white);
}

.sq-card input[type="radio"]:checked + .sq-card-inner {
  border-color: var(--orange);
  background: var(--orange-dim);
  color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
}

@media (max-width: 600px) {
  .sq-cards-5 { grid-template-columns: repeat(3, 1fr); }
  .sq-card-inner { padding: 10px 6px; font-size: 0.85rem; }
}

.form-success {
  position: absolute;
  inset: 0;
  background: var(--card);
  border-radius: var(--radius-lg);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  text-align: center;
  padding: 40px;
}

.form-success.visible {
  display: flex;
}

.form-success svg { color: #22c55e; }
.form-success strong { font-size: 1.2rem; font-weight: 800; }
.form-success span { color: var(--text-dim); }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding-top: 64px;
}

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

.footer-logo {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 14px;
}

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

.footer-clients {
  font-size: 0.78rem !important;
  color: var(--text-dim) !important;
  line-height: 1.7 !important;
  margin-top: 4px !important;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.social-link:hover { transform: scale(1.12); box-shadow: 0 4px 14px rgba(0,0,0,0.4); }

.social-link-web { background: var(--orange); }
.social-link-fb  { background: #1877F2; }
.social-link-ig  { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link-tt  { background: #010101; border-color: #EE1D52; }

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

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

.footer-col a {
  font-size: 0.88rem;
  color: var(--text-dim);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-block: 20px;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom span {
  font-size: 0.82rem;
  color: var(--gray-600);
}

.footer-bottom-social {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* ===========================
   WHATSAPP FAB
   =========================== */
.wa-fab {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 90;
}

.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

/* ===========================
   SWIPER OVERRIDES
   =========================== */
.swiper-slide { height: auto; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-us-image img { height: 360px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .faq-inner { grid-template-columns: 1fr; gap: 48px; }
  .faq-cta-card { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .process-steps { flex-wrap: wrap; gap: 16px; }
  .process-arrow { display: none; }
  .process-step { flex: 1 1 calc(50% - 8px); min-width: 160px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  section { padding-block: 64px; }

  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); inset-inline: 0; background: rgba(8,8,8,0.97); backdrop-filter: blur(16px); padding: 20px 24px 28px; border-bottom: 1px solid var(--border); gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 16px; font-size: 1rem; min-height: 44px; display: flex; align-items: center; }
  .nav-phone { display: none; }
  .nav-right { display: none; }
  .burger { display: flex; }
  .nav-mobile-bottom { display: block; }
  .site-header { position: fixed; }

  .hero-title { font-size: 2.6rem; }
  .hero-stats { padding: 18px 20px; gap: 0; }
  .stat-number { font-size: 1.4rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  .services-grid { grid-template-columns: 1fr; gap: 16px; }

  .why-us-image { display: none; }

  .process-step { flex: 1 1 100%; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .exp-badge { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-stats { flex-wrap: wrap; gap: 12px; padding: 16px; }
  .stat-divider { display: none; }
  .stat { flex: 1 1 calc(50% - 12px); }
  .section-header h2 { font-size: 1.6rem; }
  .container { padding-inline: 16px; }
  .contact-form { padding: 20px 16px; }
  .faq-answer p { padding: 0 16px 16px; }
  .hero-inner { padding-inline: 16px; }
}
