:root {
    --bg: #060816;
    --bg-soft: #0b1020;
    --card: rgba(15, 22, 40, 0.72);
    --card-border: rgba(91, 227, 255, 0.18);
    --text: #f3f7ff;
    --muted: #9ba8c7;
    --primary: #5be3ff;
    --primary-2: #8d5bff;
    --accent: #00ffc6;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.28), 0 0 22px rgba(91, 227, 255, 0.08);
    --shadow-strong: 0 12px 34px rgba(0, 0, 0, 0.3), 0 0 24px rgba(0, 255, 198, 0.16);
    --radius: 22px;
    --container: 1180px;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: "Inter", "Noto Sans", "Noto Sans Georgian", "Noto Sans Arabic", sans-serif;
    background:
      radial-gradient(circle at top left, rgba(91, 227, 255, 0.08), transparent 30%),
      radial-gradient(circle at top right, rgba(141, 91, 255, 0.12), transparent 25%),
      linear-gradient(180deg, #050816 0%, #070b18 100%);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  .container {
    width: min(92%, var(--container));
    margin: 0 auto;
  }

  img,
  video,
  iframe {
    max-width: 100%;
    height: auto;
  }
  
  .bg-grid {
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
    pointer-events: none;
    z-index: -3;
  animation: gridPulse 8s ease-in-out infinite;
  }
  
  .bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: -2;
  }
  
  .glow-1 {
    width: 320px;
    height: 320px;
    background: rgba(0, 255, 198, 0.12);
    top: 80px;
    left: -80px;
  animation: floatGlowA 9s ease-in-out infinite;
  }
  
  .glow-2 {
    width: 360px;
    height: 360px;
    background: rgba(91, 227, 255, 0.12);
    bottom: 40px;
    right: -100px;
  animation: floatGlowB 11s ease-in-out infinite;
  }
  
  .header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 8, 22, 0.72);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    position: relative;
  }
  
  .logo {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.4px;
  }
  
  .logo span {
    color: var(--primary);
    text-shadow: 0 0 14px rgba(91, 227, 255, 0.65);
  }
  
  .menu {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  
  .menu a {
    color: var(--muted);
    font-weight: 500;
    transition: 0.3s ease;
  }
  
  .menu a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(91, 227, 255, 0.6);
  }

  .menu a.active {
    color: var(--primary);
    text-shadow: 0 0 12px rgba(91, 227, 255, 0.5);
  }

  .menu a.btn,
  .menu a.btn:hover {
    color: #000;
    text-shadow: none;
  }

  .menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(91, 227, 255, 0.35);
    background: rgba(91, 227, 255, 0.08);
    color: var(--primary);
    font-weight: 700;
    cursor: pointer;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    min-height: 48px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: #041018;
    font-weight: 800;
    box-shadow: var(--shadow-strong);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
    border: none;
    cursor: pointer;
  }
  
  .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28), 0 0 20px rgba(0, 255, 198, 0.2);
  }

  .btn:disabled {
    opacity: 0.72;
    cursor: not-allowed;
    transform: none;
  }

  .btn-sm {
    padding: 11px 18px;
    min-height: 42px;
  }
  
  .btn-secondary {
    background: rgba(9, 18, 34, 0.72);
    color: var(--text);
    border: 1px solid rgba(91, 227, 255, 0.24);
    box-shadow: inset 0 0 0 1px rgba(19, 71, 100, 0.22);
  }
  
  .btn-secondary:hover {
    color: var(--primary);
    border-color: rgba(91, 227, 255, 0.44);
    box-shadow: inset 0 0 0 1px rgba(91, 227, 255, 0.2);
  }
  
  .btn-full {
    width: 100%;
  }
  
  .hero {
    padding: 100px 0 70px;
  }
  
  .hero-wrap {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
  }
  
  .eyebrow {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid rgba(91, 227, 255, 0.25);
    border-radius: 999px;
    color: var(--primary);
    font-size: 0.92rem;
    margin-bottom: 18px;
    background: rgba(91, 227, 255, 0.05);
    box-shadow: 0 0 20px rgba(91, 227, 255, 0.08);
  }
  
  .hero h1 {
    font-size: clamp(2.3rem, 5vw, 4.6rem);
    line-height: 1.08;
    margin-bottom: 20px;
    font-weight: 800;
    max-width: 800px;
  }
  
  .neon-text {
    color: var(--primary);
    text-shadow:
      0 0 10px rgba(91, 227, 255, 0.7),
      0 0 22px rgba(91, 227, 255, 0.45),
      0 0 40px rgba(0, 255, 198, 0.18);
  }
  
  .hero-desc {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 660px;
    margin-bottom: 28px;
  }
  
  .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 34px;
  }
  
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  
  .stat {
    padding: 18px;
    border-radius: 18px;
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: var(--shadow);
  }
  
  .stat h3 {
    color: var(--accent);
    margin-bottom: 6px;
    font-size: 1.05rem;
  }
  
  .stat p {
    color: var(--muted);
    font-size: 0.95rem;
  }
  
  .hero-card {
    display: flex;
    justify-content: center;
  }
  
  .screen {
    width: 100%;
    max-width: 460px;
    border-radius: 28px;
    padding: 18px;
    background: linear-gradient(180deg, rgba(12,18,34,0.95), rgba(8,12,24,0.85));
    border: 1px solid rgba(91, 227, 255, 0.2);
    box-shadow:
      0 0 40px rgba(91, 227, 255, 0.12),
      inset 0 0 35px rgba(141, 91, 255, 0.05);
    position: relative;
  }
  
  .screen::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 28px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(91,227,255,0.5), rgba(141,91,255,0.35), rgba(0,255,198,0.45));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
  }
  
  .screen-top {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
  }
  
  .screen-top span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
  }
  
  .screen-body {
    padding: 20px 6px 10px;
  }
  
  .screen-badge {
    display: inline-block;
    color: var(--accent);
    border: 1px solid rgba(0,255,198,0.22);
    background: rgba(0,255,198,0.05);
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
    font-size: 0.92rem;
  }
  
  .screen-body h3 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.1;
    margin-bottom: 14px;
  }

  .screen-photo {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
    margin-bottom: 14px;
    border: 1px solid rgba(91, 227, 255, 0.25);
    box-shadow: 0 0 20px rgba(91, 227, 255, 0.15);
  }
  
  .screen-body p {
    color: var(--muted);
    margin-bottom: 20px;
  }
  
  .screen-lines {
    display: grid;
    gap: 12px;
  }
  
  .screen-lines div {
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(91,227,255,0.75), rgba(141,91,255,0.45), rgba(0,255,198,0.65));
    box-shadow: 0 0 18px rgba(91, 227, 255, 0.2);
  }
  
  .screen-lines div:nth-child(2) {
    width: 80%;
  }
  
  .screen-lines div:nth-child(3) {
    width: 62%;
  }
  
  .section {
    padding: 108px 0;
  }
  
  .section-head {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
  }
  
  .section-tag {
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-size: 0.86rem;
  }
  
  .section-head h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 14px;
  }
  
  .section-head p {
    color: var(--muted);
    font-size: 1rem;
  }
  
  .about-grid,
  .services-grid,
  .portfolio-grid,
  .pricing-grid,
  .process-grid,
  .faq-list,
  .contact-grid {
    display: grid;
    gap: 22px;
  }
  
  .about-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  
  .card,
  .service-card,
  .portfolio-card,
  .price-card,
  .process-step,
  .faq-item {
    background: var(--card);
    border: 1px solid rgba(91, 227, 255, 0.14);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  }
  
  .card:hover,
  .service-card:hover,
  .portfolio-card:hover,
  .price-card:hover,
  .process-step:hover,
  .faq-item:hover {
    transform: translateY(-3px);
    border-color: rgba(91, 227, 255, 0.26);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.32), 0 0 18px rgba(91, 227, 255, 0.1);
  }
  
  .card h3,
  .service-card h3,
  .portfolio-card h3,
  .price-card h3,
  .process-step h3,
  .faq-item h3 {
    margin-bottom: 10px;
    font-size: 1.15rem;
  }
  
  .card p,
  .service-card p,
  .portfolio-card p,
  .process-step p,
  .faq-item p {
    color: var(--muted);
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .service-card .icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 1.5rem;
    line-height: 1;
    background: rgba(91, 227, 255, 0.08);
    border: 1px solid rgba(91, 227, 255, 0.18);
    box-shadow: 0 0 20px rgba(91, 227, 255, 0.08);
  }

  .service-card .icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    fill: currentColor;
    filter: drop-shadow(0 0 8px rgba(91, 227, 255, 0.45));
  animation: iconFloat 2.8s ease-in-out infinite;
  }
  
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  position: relative;
  align-items: start;
}

.process-grid::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(0, 255, 198, 0.35) 0%,
    rgba(91, 227, 255, 0.75) 50%,
    rgba(0, 255, 198, 0.35) 100%
  );
  box-shadow: 0 0 14px rgba(91, 227, 255, 0.35);
  pointer-events: none;
  z-index: 0;
  animation: lineFlow 3.6s linear infinite;
}

.process-step {
  position: relative;
  z-index: 1;
  background: rgba(10, 16, 32, 0.92);
  }
  
.process-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  background: rgba(0, 255, 198, 0.08);
  border: 1px solid rgba(0, 255, 198, 0.2);
  box-shadow: 0 0 18px rgba(0, 255, 198, 0.12);
}

.process-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  fill: currentColor;
  filter: drop-shadow(0 0 8px rgba(0, 255, 198, 0.45));
}
  
  .portfolio-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .price-card {
    position: relative;
  }
  
  .price-card .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin: 14px 0 8px;
    text-shadow: 0 0 12px rgba(91, 227, 255, 0.28);
  }
  
  .price-card p {
    color: var(--muted);
    margin-bottom: 16px;
  }
  
  .price-card ul {
    list-style: none;
    margin-bottom: 22px;
  }
  
  .price-card ul li {
    color: var(--text);
    margin-bottom: 10px;
    position: relative;
    padding-left: 22px;
  }
  
  .price-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 1.2rem;
  }
  
  .featured {
    border-color: rgba(0,255,198,0.25);
    box-shadow:
      0 0 28px rgba(0,255,198,0.12),
      inset 0 0 24px rgba(0,255,198,0.04);
  }
  
  .popular {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    background: rgba(0,255,198,0.1);
    border: 1px solid rgba(0,255,198,0.2);
    color: var(--accent);
    font-weight: 700;
  }
  
  .contact-section {
    padding-bottom: 100px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  
  .contact-text {
    color: var(--muted);
    max-width: 560px;
    margin: 14px 0 24px;
  }
  
  .contact-info {
    display: grid;
    gap: 12px;
    color: var(--text);
  }
  
  .contact-form {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 16px 18px;
    margin-bottom: 14px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: rgba(91, 227, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(91, 227, 255, 0.18);
  }

  .btn:focus-visible,
  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  textarea:focus-visible,
  select:focus-visible {
    outline: 2px solid rgba(91, 227, 255, 0.72);
    outline-offset: 2px;
  }

  .btn:focus-visible,
  button:focus-visible {
    box-shadow: 0 0 0 3px rgba(6, 8, 22, 0.9), 0 0 0 5px rgba(91, 227, 255, 0.28);
  }
  
  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: #7c89a7;
  }

  .contact-form .form-status {
    min-height: 22px;
    margin: -2px 0 10px;
    color: #ff9da7;
    font-size: 0.92rem;
  }

  .contact-form .form-status.ok {
    color: #7bffd8;
  }

  .contact-form input.invalid,
  .contact-form textarea.invalid {
    border-color: rgba(255, 87, 110, 0.7);
    box-shadow: 0 0 0 4px rgba(255, 87, 110, 0.12);
  }

  .faq-collapsible h3 {
    cursor: pointer;
    user-select: none;
    position: relative;
    padding-right: 24px;
  }

  .faq-collapsible h3::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    color: var(--accent);
    font-weight: 800;
    transition: transform 0.25s ease;
  }

  .faq-collapsible.open h3::after {
    transform: rotate(45deg);
  }

  .faq-collapsible p {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.28s ease;
  }

  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.45s ease, transform 0.45s ease;
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(3, 6, 16, 0.85);
  }
  
  .footer-wrap {
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
  }
  
  .footer-logo {
    margin-bottom: 6px;
    display: inline-block;
  }
  
  .footer p {
    color: var(--muted);
  }
  
  .footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .footer-links a {
    color: var(--muted);
  }
  
  .footer-links a:hover {
    color: var(--primary);
  }

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(91, 227, 255, 0.08);
  border: 1px solid rgba(91, 227, 255, 0.22);
  box-shadow: 0 0 14px rgba(91, 227, 255, 0.1);
  transition: 0.25s ease;
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: var(--primary);
  filter: drop-shadow(0 0 6px rgba(91, 227, 255, 0.45));
}

.footer-social a:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 255, 198, 0.45);
  box-shadow: 0 0 18px rgba(0, 255, 198, 0.24);
}

.footer-social a svg {
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.75; }
  50% { opacity: 1; }
}

@keyframes floatGlowA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(18px, -10px) scale(1.06); }
}

@keyframes floatGlowB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-14px, 10px) scale(1.05); }
}

@keyframes buttonBreath {
  0%, 100% { box-shadow: var(--shadow-strong); }
  50% { box-shadow: 0 0 28px rgba(0, 255, 198, 0.26); }
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes lineFlow {
  0% { opacity: 0.45; }
  50% { opacity: 1; }
  100% { opacity: 0.45; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
  
  /* Responsive */
  @media (max-width: 1100px) {
    .hero-wrap,
    .contact-grid {
      grid-template-columns: 1fr;
    }
  
    .about-grid,
    .process-grid,
    .portfolio-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .services-grid,
    .pricing-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .hero-card {
      margin-top: 10px;
    }
  }
  
  @media (max-width: 820px) {
    .menu {
      display: none;
    }
  
    .hero {
      padding-top: 70px;
    }
  
    .hero h1 {
      font-size: 2.2rem;
    }
  
    .hero-stats,
    .about-grid,
    .services-grid,
    .process-grid,
    .portfolio-grid,
    .pricing-grid {
      grid-template-columns: 1fr;
    }

  .process-grid::before {
    display: none;
  }
  
    .footer-wrap {
      flex-direction: column;
      align-items: flex-start;
    }

  .footer-social {
    margin-top: 4px;
  }
  
    .section {
      padding: 72px 0;
    }
  }


  .compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  
  .compare-card {
    padding: 28px;
    border-radius: 22px;
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: var(--shadow);
    transition: 0.3s ease;
  }
  
  .compare-card:hover {
    transform: translateY(-5px);
  }
  
  .compare-card h3 {
    margin-bottom: 18px;
    font-size: 1.3rem;
  }
  
  .compare-card ul {
    list-style: none;
  }
  
  .compare-card ul li {
    margin-bottom: 12px;
    padding-left: 22px;
    position: relative;
    color: var(--muted);
  }
  
  .compare-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
  }
  
  /* NEGATIVE */
  .compare-card.negative {
    border-color: rgba(255, 71, 87, 0.2);
    box-shadow: 0 0 20px rgba(255, 71, 87, 0.1);
  }
  
  .compare-card.negative h3 {
    color: #ff4757;
  }
  
  /* POSITIVE */
  .compare-card.positive {
    border-color: rgba(0, 255, 198, 0.25);
    box-shadow: 0 0 25px rgba(0, 255, 198, 0.12);
  }
  
  .compare-card.positive h3 {
    color: var(--accent);
  }

.scroll-top-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(91, 227, 255, 0.28);
  background: linear-gradient(180deg, rgba(8, 18, 36, 0.95), rgba(6, 13, 26, 0.95));
  box-shadow: 0 0 18px rgba(91, 227, 255, 0.22);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  z-index: 1200;
}

.scroll-top-btn svg {
  width: 22px;
  height: 22px;
  fill: var(--primary);
  filter: drop-shadow(0 0 8px rgba(91, 227, 255, 0.45));
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  box-shadow: 0 0 22px rgba(0, 255, 198, 0.28);
}

.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1200;
}

.floating-actions .scroll-top-btn {
  position: static;
  right: auto;
  bottom: auto;
}

.whatsapp-float-btn svg {
  width: 23px;
  height: 23px;
}
  
  /* RESPONSIVE */
  @media (max-width: 820px) {
    .compare-grid {
      grid-template-columns: 1fr;
    }

  .scroll-top-btn {
    right: 14px;
    bottom: 14px;
    width: 46px;
    height: 46px;
  }

  .floating-actions {
    right: 14px;
    bottom: 14px;
    gap: 8px;
  }

  .floating-actions .scroll-top-btn {
    width: 46px;
    height: 46px;
  }
  }

  /* Unified responsive system */
  @media (min-width: 1400px) {
    :root {
      --container: 1280px;
    }
  }

  @media (max-width: 1200px) {
    .hero-wrap,
    .contact-grid {
      grid-template-columns: 1fr;
    }

    .hero-card {
      margin-top: 10px;
    }

    .about-grid,
    .process-grid,
    .portfolio-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-grid,
    .pricing-grid,
    .compare-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 992px) {
    .nav {
      padding: 14px 0;
    }

    .menu {
      gap: 18px;
    }

    .hero {
      padding: 78px 0 56px;
    }

    .hero h1 {
      font-size: clamp(2rem, 6vw, 3.2rem);
    }

    .hero-stats {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section {
      padding: 84px 0;
    }

    .process-grid::before {
      display: none;
    }

    .footer-wrap {
      flex-wrap: wrap;
    }
  }

  @media (max-width: 768px) {
    .nav {
      display: grid;
      grid-template-columns: 1fr auto auto;
      align-items: center;
      gap: 10px;
      padding: 12px 0;
    }

    .logo {
      font-size: 1.2rem;
      line-height: 1.2;
    }

    .menu-toggle {
      display: inline-flex;
      min-height: 40px;
      padding: 8px 12px;
      font-size: 0.9rem;
    }

    .menu {
      display: none;
      position: absolute;
      top: calc(100% + 10px);
      right: 0;
      width: min(88vw, 320px);
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
      padding: 14px;
      border-radius: 16px;
      border: 1px solid rgba(91, 227, 255, 0.2);
      background: rgba(7, 12, 24, 0.95);
      box-shadow: 0 0 24px rgba(91, 227, 255, 0.12);
      backdrop-filter: blur(12px);
      z-index: 1200;
      max-height: min(68vh, 460px);
      overflow-y: auto;
    }

    .menu.open {
      display: flex;
    }

    .menu a {
      width: 100%;
      padding: 8px 0;
    }

    .menu a.btn {
      width: 100%;
      justify-content: center;
      margin-top: 4px;
    }

    .about-grid,
    .services-grid,
    .process-grid,
    .portfolio-grid,
    .pricing-grid,
    .compare-grid,
    .hero-stats {
      grid-template-columns: 1fr;
    }

    .section-head {
      margin-bottom: 28px;
    }

    .card,
    .service-card,
    .portfolio-card,
    .price-card,
    .process-step,
    .faq-item,
    .compare-card {
      padding: 24px;
    }

    .footer-wrap {
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
    }

    .footer-links {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px 14px;
    }

    .footer-links a {
      display: block;
      min-width: 0;
    }

    .footer-social {
      margin-top: 2px;
    }
  }

  @media (max-width: 576px) {
    .container {
      width: min(94%, var(--container));
    }

    .nav {
      grid-template-columns: 1fr auto;
      grid-template-areas:
        "logo lang"
        "toggle toggle";
      gap: 8px 10px;
      align-items: start;
    }

    .logo {
      grid-area: logo;
      font-size: 1.05rem;
    }

    .menu-toggle {
      grid-area: toggle;
      justify-self: start;
    }

    .lang-switcher {
      grid-area: lang;
      justify-self: end;
    }

    .lang-switcher-toggle {
      min-height: 38px;
      padding: 0 10px;
      max-width: min(62vw, 200px);
    }

    .lang-name-short {
      font-size: 0.76rem;
    }

    .hero {
      padding-top: 64px;
    }

    .hero-actions {
      width: 100%;
      gap: 10px;
    }

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

    .btn,
    .btn-secondary {
      width: 100%;
    }

    .screen {
      padding: 14px;
      border-radius: 22px;
    }

    .screen-photo {
      height: 210px;
      border-radius: 14px;
    }

    .section {
      padding: 72px 0;
    }

    .contact-form {
      padding: 20px;
    }

    .contact-form input,
    .contact-form textarea,
    .form-row input,
    .form-row textarea,
    .form-row select {
      font-size: 16px;
    }

    .scroll-top-btn {
      right: 12px;
      bottom: 12px;
      width: 44px;
      height: 44px;
    }

    .footer-links {
      grid-template-columns: 1fr;
      gap: 8px;
    }
  }

  @media (max-width: 420px) {
    .container {
      width: min(95%, var(--container));
    }

    .menu {
      width: min(94vw, 320px);
      padding: 12px;
      gap: 8px;
    }

    .card,
    .service-card,
    .portfolio-card,
    .price-card,
    .process-step,
    .faq-item,
    .compare-card,
    .contact-form {
      padding: 18px;
    }

    .hero h1 {
      font-size: clamp(1.65rem, 8vw, 2rem);
      line-height: 1.16;
    }

    .hero-desc,
    .section-head p,
    .card p,
    .service-card p,
    .portfolio-card p,
    .process-step p,
    .faq-item p {
      font-size: 0.95rem;
    }
  }

  @media (max-width: 360px) {
    .logo {
      font-size: 0.98rem;
    }

    .menu-toggle {
      width: 100%;
      justify-content: center;
    }

    .lang-switcher-toggle {
      max-width: 56vw;
      min-height: 36px;
      padding: 0 8px;
    }

    .lang-name-short {
      display: none;
    }
  }

.lang-switcher {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.lang-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(91, 227, 255, 0.28);
  background: rgba(91, 227, 255, 0.08);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: 0.2s ease;
}
.lang-switcher a.active {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #041018;
  border-color: transparent;
}
.lang-switcher a:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 14px rgba(91, 227, 255, 0.2);
}
html[dir="rtl"] body {
  font-family: "Noto Sans Arabic", "Noto Sans", "Inter", sans-serif;
}
html[dir="rtl"] .nav,
html[dir="rtl"] .menu,
html[dir="rtl"] .footer-wrap,
html[dir="rtl"] .contact-grid,
html[dir="rtl"] .hero-wrap,
html[dir="rtl"] .about-grid,
html[dir="rtl"] .services-grid,
html[dir="rtl"] .pricing-grid,
html[dir="rtl"] .process-grid,
html[dir="rtl"] .faq-list { direction: rtl; }
html[dir="rtl"] .hero-text,
html[dir="rtl"] .section-head,
html[dir="rtl"] .about-text-card,
html[dir="rtl"] .contact-info,
html[dir="rtl"] .contact-text,
html[dir="rtl"] .footer-links,
html[dir="rtl"] .footer { text-align: right; }


.lang-switcher .lang-flag {
  font-size: 1.05rem;
  line-height: 1;
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
}

.lang-switcher .lang-code {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.lang-switcher a {
  gap: 6px;
}


.lang-switcher.lang-dropdown {
  position: relative;
}

.lang-dropdown {
  position: relative;
}

.lang-dropdown summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 70px;
  height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(91, 227, 255, 0.28);
  background: rgba(91, 227, 255, 0.08);
  cursor: pointer;
  user-select: none;
}

.lang-dropdown summary::-webkit-details-marker {
  display: none;
}

.lang-dropdown summary::after {
  content: "▾";
  font-size: 0.7rem;
  opacity: 0.8;
  margin-left: 2px;
}

.lang-dropdown[open] summary {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #041018;
  border-color: transparent;
}

.lang-dropdown-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 88px;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid rgba(91, 227, 255, 0.2);
  background: rgba(7, 14, 28, 0.98);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  display: grid;
  gap: 6px;
  z-index: 1300;
}

.lang-dropdown-menu a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 30px;
  padding: 0 8px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: rgba(91, 227, 255, 0.04);
}

.lang-dropdown-menu a.active {
  border-color: rgba(91, 227, 255, 0.38);
  background: rgba(91, 227, 255, 0.12);
}

.lang-dropdown-menu a:hover {
  border-color: rgba(0, 255, 198, 0.45);
}

.lang-dropdown .lang-flag {
  font-size: 1.05rem;
  line-height: 1;
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
}

.lang-dropdown .lang-code {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.3px;
}

html[dir="rtl"] .lang-dropdown-menu {
  right: auto;
  left: 0;
}


/* Language Switcher Dropdown */
.lang-switcher {
  position: relative;
  margin-left: 10px;
}

.lang-switcher-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(91, 227, 255, 0.3);
  background: linear-gradient(180deg, rgba(10, 21, 40, 0.95), rgba(7, 14, 27, 0.95));
  color: var(--text);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  cursor: pointer;
  box-shadow: 0 0 14px rgba(91, 227, 255, 0.14);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.lang-switcher-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 255, 198, 0.45);
  box-shadow: 0 0 20px rgba(0, 255, 198, 0.2);
}

.lang-switcher-toggle:focus-visible {
  outline: 2px solid rgba(91, 227, 255, 0.65);
  outline-offset: 2px;
}

.lang-switcher.open .lang-switcher-toggle {
  border-color: rgba(0, 255, 198, 0.5);
  box-shadow: 0 0 22px rgba(0, 255, 198, 0.22);
}

.lang-flag {
  font-size: 1.05rem;
  line-height: 1;
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
}

.lang-name,
.lang-name-short {
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
}

.lang-caret {
  font-size: 0.72rem;
  opacity: 0.82;
  transition: transform 0.2s ease;
}

.lang-switcher.open .lang-caret {
  transform: rotate(180deg);
}

.lang-switcher-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 190px;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid rgba(91, 227, 255, 0.24);
  background: rgba(7, 14, 28, 0.98);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4), 0 0 24px rgba(91, 227, 255, 0.12);
  display: grid;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.98);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1400;
}

.lang-switcher.open .lang-switcher-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.lang-switcher-option {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 9px;
  border: 1px solid transparent;
  background: rgba(91, 227, 255, 0.04);
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.lang-switcher-option:hover {
  border-color: rgba(0, 255, 198, 0.45);
  background: rgba(0, 255, 198, 0.08);
}

.lang-switcher-option.active {
  border-color: rgba(91, 227, 255, 0.5);
  background: rgba(91, 227, 255, 0.14);
}

html[dir="rtl"] .lang-switcher {
  margin-left: 0;
  margin-right: 10px;
}

html[dir="rtl"] .lang-switcher-menu {
  right: auto;
  left: 0;
}

@media (max-width: 900px) {
  .lang-switcher {
    margin-left: 0;
    width: auto;
    margin-right: 0;
  }

  .lang-switcher-toggle {
    width: auto;
    justify-content: flex-start;
    max-width: min(60vw, 220px);
  }

  .lang-switcher-menu {
    position: absolute;
    right: 0;
    left: auto;
    top: calc(100% + 8px);
    margin-top: 0;
    min-width: 190px;
  }
}


.lang-flag-img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(91, 227, 255, 0.22);
  flex-shrink: 0;
}
