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

    body {
      font-family: 'Open Sans', Arial, sans-serif;
      background-color: #0d0d0d;
      color: #ccc;
      font-size: 16px;
      line-height: 1.7;
      overflow-x: hidden;
      position: relative;
    }

    /* ── DECORATIVE SIDE ELEMENTS ── */
    .page-deco { position: absolute; opacity: 0.28; pointer-events: none; z-index: 0; filter: drop-shadow(0 0 18px rgba(220,40,50,0.45)); }

    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }

    /* ── NAVBAR ── */
    .nav-wrapper {
      position: fixed;
      top: 16px; left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      width: calc(100% - 120px);
      max-width: 1400px;
    }
    nav {
      background: transparent;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      border: 1px solid transparent;
      border-radius: 50px;
      padding: 20px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    }
    nav.glass {
      background: rgba(18,18,18,0.45);
      backdrop-filter: blur(18px) saturate(1.6);
      -webkit-backdrop-filter: blur(18px) saturate(1.6);
      border-color: rgba(255,255,255,0.1);
      box-shadow: 0 4px 32px rgba(0,0,0,0.4);
    }
    .nav-logo img { height: 22px; width: auto; display: block; }
    .nav-links { display: flex; gap: 28px; align-items: center; }
    .nav-links a {
      font-size: 14px;
      color: #bbb;
      font-weight: 500;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: #fff; }
    .nav-links .nav-lang {
      font-size: 12px;
      color: #888;
    }

    /* ── HERO ── */
    #stars-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 120px 40px 100px;
      position: relative;
      background: #000;
      overflow: hidden;
    }
    /* Hero background video */
    #hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center bottom;
      z-index: 0;
      opacity: 0.95;
      filter: contrast(1.2) brightness(1.08) saturate(1.4) sharpen(1);
      image-rendering: high-quality;
    }
    .hero-content {
      position: relative;
      z-index: 2;
    }
    .hero h1 {
      font-size: clamp(62px, 8vw, 100px);
      font-weight: 800;
      color: #fff;
      line-height: 1.05;
      letter-spacing: -2px;
      margin-bottom: 20px;
    }
    .hero h1 em {
      font-style: normal;
      font-weight: 800;
      color: #fff;
    }
    .hero h1 .alt-font {
      font-family: 'Playfair Display', Georgia, serif;
      font-style: italic;
      font-weight: 400;
    }
    .hero .sub {
      font-size: 16px;
      color: #aaa;
      letter-spacing: 1px;
      margin-bottom: 24px;
    }
    .btn-hero {
      background: rgba(255,255,255,0.08);
      color: #fff;
      border: 1px solid rgba(255,255,255,0.2);
      padding: 16px 38px;
      border-radius: 6px;
      font-size: 15px;
      font-weight: 600;
      display: inline-block;
      transition: background 0.2s, border-color 0.2s, transform 0.2s;
      margin-bottom: 16px;
      backdrop-filter: blur(4px);
    }
    .btn-hero:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.35); transform: scale(1.06); }
    .btn-primary {
      background: #e63946;
      color: #fff;
      padding: 14px 32px;
      border-radius: 4px;
      font-size: 13px;
      font-weight: 700;
      display: inline-block;
      transition: background 0.2s;
      margin-bottom: 40px;
    }
    .btn-primary:hover { background: #c0222e; }
    .hero-socials { display: flex; gap: 20px; justify-content: center; position: relative; z-index: 2; }
    .hero-socials a {
      width: 38px; height: 38px;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #aaa;
      font-size: 16px;
      transition: border-color 0.2s, color 0.2s;
    }
    .hero-socials a:hover { border-color: #fff; color: #fff; }

    /* ── SECTION WRAPPER ── */
    section { position: relative; z-index: 1; }
    .section-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 160px 90px;
    }
    .section-title {
      text-align: center;
      margin-bottom: 20px;
    }
    .section-title h2 {
      font-size: 64px;
      font-weight: 800;
      color: #fff;
    }
    .section-title p {
      color: #888;
      font-size: 18px;
      margin-top: 16px;
    }

    /* ── MOST POPULAR SERVICES ── */
    .services-section-bg { background: radial-gradient(ellipse 900px 600px at 50% 50%, rgba(230,57,70,0.04) 0%, transparent 70%); }
    .services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 56px; }
    .svc-card { background: #161616; border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; padding: 28px 20px; text-align: center; text-decoration: none; color: inherit; display: block; transition: border-color 0.3s, transform 0.25s, box-shadow 0.3s; }
    .svc-card:hover { border-color: rgba(230,57,70,0.45); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.4), 0 0 24px rgba(230,57,70,0.08); }
    .svc-card .svc-icon { width: 60px; height: 60px; background: rgba(230,57,70,0.1); border: 1px solid rgba(230,57,70,0.2); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; transition: background 0.3s; }
    .svc-card:hover .svc-icon { background: rgba(230,57,70,0.18); }
    .svc-card .svc-icon img { width: 34px; height: 34px; object-fit: contain; }
    .svc-card h3 { font-size: 13px; font-weight: 700; color: #fff; }

    /* ── FEATURE ROW (image left/right) ── */
    .feature-row {
      display: flex;
      align-items: center;
      gap: 100px;
      padding: 160px 90px;
      max-width: 1400px;
      margin: 0 auto;
    }
    .feature-row.reverse { flex-direction: row-reverse; }
    .feature-text { flex: 1; }
    .feature-text .tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 700;
      color: #e63946;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 16px;
    }
    .feature-text h2 { font-size: 52px; font-weight: 800; color: #fff; margin-bottom: 24px; line-height: 1.2; }
    .feature-text p  { font-size: 18px; color: #888; line-height: 1.8; margin-bottom: 36px; }
    .feature-text .see-more {
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 13px 26px;
      border-radius: 10px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.14);
      letter-spacing: 0.3px;
      transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s, color 0.3s;
    }
    .feature-text .see-more::after {
      content: '→';
      display: inline-block;
      transition: transform 0.3s;
    }
    .feature-text .see-more:hover {
      background: rgba(230,57,70,0.18);
      border-color: rgba(230,57,70,0.55);
      box-shadow: 0 0 28px rgba(230,57,70,0.25), 0 8px 32px rgba(0,0,0,0.35);
      transform: translateY(-2px);
      color: #fff;
    }
    .feature-text .see-more:hover::after { transform: translateX(5px); }
    .feature-text .feature-sub {
      font-size: 20px;
      color: #bbb;
      font-style: italic;
      line-height: 1.5;
      margin-bottom: 24px;
    }
    .section-badge {
      display: inline-block;
      background: #e63946;
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 4px 14px;
      border-radius: 20px;
      margin-bottom: 20px;
    }
    .btn-outline {
      display: inline-block;
      background: rgba(255,255,255,0.07);
      color: #fff;
      border: 1px solid rgba(255,255,255,0.14);
      padding: 18px 40px;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 600;
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      letter-spacing: 0.3px;
      transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    }
    .btn-outline:hover { background: rgba(230,57,70,0.18); border-color: rgba(230,57,70,0.55); box-shadow: 0 0 28px rgba(230,57,70,0.25), 0 8px 32px rgba(0,0,0,0.35); transform: translateY(-2px); }
    .feature-img {
      flex: 1;
      border-radius: 16px;
      overflow: hidden;
      background: transparent;
      min-height: 520px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .feature-img img { width: 100%; border-radius: 16px; }
    .feature-img gif-wrap { width: 100%; }
    .feature-img .gif-media { width: 100%; display: block; border-radius: 16px; }
    .phone-mockup {
      width: 200px;
      margin: 0 auto;
      background: #222;
      border-radius: 36px;
      padding: 12px;
      border: 4px solid #333;
    }
    .phone-mockup .screen {
      background: #111;
      border-radius: 28px;
      height: 380px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #555;
      font-size: 12px;
    }

    /* ── TRUSTED LOGOS ── */
    .trusted-section {
      background: #111;
      padding: 0 0 80px;
      text-align: center;
    }
    .logos-marquee-wrapper {
      overflow: hidden;
      width: 100%;
      -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
      mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
    }
    .logos-track {
      display: flex;
      gap: 24px;
      width: max-content;
      animation: marquee-ltr 48s linear infinite;
    }
    @keyframes marquee-ltr {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .logo-item {
      background: rgba(255,255,255,0.78);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(255,255,255,0.35);
      border-radius: 16px;
      padding: 0 32px;
      height: 80px;
      min-width: 150px;
      display: flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
      flex-shrink: 0;
      transition: background 0.3s, border-color 0.3s, transform 0.25s;
    }
    .logo-item:hover { background: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.5); transform: translateY(-2px); }
    .logo-item img {
      height: 34px;
      width: auto;
      max-width: 130px;
      object-fit: contain;
    }

    /* ── PRICING ── */
    .pricing-section {
      background: #0d0d0d;
      padding: 140px 90px;
      position: relative;
      overflow: hidden;
    }
    .pricing-section::before {
      content: '';
      position: absolute;
      bottom: 0px;
      left: -200px;
      width: 1100px;
      height: 1100px;
      background: radial-gradient(circle, rgba(255,255,255,0.13) 0%, rgba(255,255,255,0.05) 30%, transparent 65%);
      pointer-events: none;
      z-index: 0;
    }
    .pricing-section .astronaut {
      position: absolute;
      left: -40px;
      bottom: 30px;
      width: 1000px;
      opacity: 0.85;
      pointer-events: none;
    }
    .pricing-inner {
      max-width: 1320px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 1;
    }
    .pricing-inner h2 { font-size: 52px; font-weight: 800; color: #fff; margin-bottom: 10px; }
    .pricing-inner .sub { font-size: 16px; color: #888; margin-bottom: 40px; }
    .pricing-toggle {
      display: inline-flex;
      background: #1a1a1a;
      border-radius: 30px;
      padding: 4px;
      gap: 0;
      margin-bottom: 56px;
      position: relative;
    }
    .pricing-toggle .slider {
      position: absolute;
      top: 4px;
      left: 4px;
      height: calc(100% - 8px);
      border-radius: 26px;
      background: #e63946;
      box-shadow: 0 0 16px rgba(230,57,70,0.55), 0 0 40px rgba(230,57,70,0.25);
      transition: left 0.35s cubic-bezier(0.4,0,0.2,1), width 0.35s cubic-bezier(0.4,0,0.2,1);
      z-index: 0;
    }
    .pricing-toggle span {
      padding: 10px 28px;
      border-radius: 26px;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      color: #888;
      position: relative;
      z-index: 1;
      transition: color 0.35s ease;
    }
    .pricing-toggle span.active {
      color: #fff;
    }
    .pricing-cards {
      display: flex;
      justify-content: center;
      gap: 24px;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }
    .pricing-card {
      background: rgba(0,0,0,0.3);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 20px;
      padding: 48px 40px;
      width: 320px;
      text-align: left;
      position: relative;
    }
    .pricing-card.popular {
      border-color: rgba(230,57,70,0.6);
      box-shadow: 0 0 48px rgba(230,57,70,0.18), 0 0 100px rgba(230,57,70,0.07);
    }
    .pricing-card .badge {
      position: absolute;
      top: -13px; left: 50%;
      transform: translateX(-50%);
      background: #e63946;
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      padding: 4px 18px;
      border-radius: 20px;
      white-space: nowrap;
      letter-spacing: 0.5px;
    }
    .pricing-card .label { font-size: 12px; color: rgba(255,255,255,0.12); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1.5px; }
    .pricing-card .card-title { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 20px; }
    .pricing-card .price { font-size: 64px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 28px; display: flex; align-items: flex-end; gap: 6px; }
    .pricing-card .price .unit { font-size: 16px; font-weight: 400; color: #555; margin-bottom: 10px; }
    .pricing-card ul { list-style: none; margin-bottom: 36px; }
    .pricing-card ul li {
      font-size: 14px;
      color: #aaa;
      padding: 9px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .pricing-card ul li::before { content: '✓'; color: #e63946; font-weight: 700; font-size: 13px; }
    .pricing-card .btn-plan {
      display: block;
      text-align: center;
      padding: 14px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 700;
      background: transparent;
      border: 1px solid rgba(230,57,70,0.5);
      color: #e63946;
      letter-spacing: 0.3px;
      transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    }
    .pricing-card.popular .btn-plan {
      background: #e63946;
      color: #fff;
      border-color: #e63946;
    }
    .pricing-card .btn-plan:hover { background: #e63946; color: #fff; box-shadow: 0 0 20px rgba(230,57,70,0.35); }
    .pricing-cards { transition: opacity 0.3s ease, transform 0.3s ease; }
    .pricing-cards.hidden { opacity: 0; transform: translateY(8px); pointer-events: none; position: absolute; }

    /* ── TESTIMONIALS ── */
    .testimonials-section {
      background: #111;
      padding: 160px 90px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .testimonials-grid {
      display: flex;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap;
      margin-top: 80px;
      max-width: 1400px;
      margin-left: auto;
      margin-right: auto;
    }
    .testimonial-card {
      background: #161616;
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 12px;
      padding: 40px 32px;
      width: 340px;
      text-align: left;
    }
    .stars { color: #f5c518; font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
    .testimonial-card p { font-size: 15px; color: #aaa; line-height: 1.7; margin-bottom: 28px; }
    .testimonial-author { display: flex; align-items: center; gap: 14px; }
    .testimonial-author .avatar {
      width: 44px; height: 44px;
      background: #e63946;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 15px;
      font-weight: 700;
      color: #fff;
    }
    .testimonial-author .name { font-size: 15px; font-weight: 700; color: #fff; }
    .testimonial-author .role { font-size: 13px; color: #666; }

    /* ── USE CASES ── */
    .use-cases-grid {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 64px;
    }
    .use-case-card {
      background: #161616;
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 12px;
      overflow: hidden;
      width: 300px;
    }
    .use-case-card .img-placeholder {
      height: 180px;
      background: linear-gradient(135deg, #1a1a1a, #222);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #333;
      font-size: 32px;
    }
    .use-case-card .card-body { padding: 20px; }
    .use-case-card h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 8px; }
    .use-case-card p  { font-size: 12px; color: #888; line-height: 1.6; }

    /* ── CTA ── */
    .cta-section {
      background: #111;
      padding: 120px 90px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-card {
      max-width: 1200px;
      margin: 0 auto;
      background: #161616;
      border: 1px solid rgba(230,57,70,0.35);
      border-radius: 24px;
      padding: 80px 60px;
      box-shadow: 0 0 48px rgba(230,57,70,0.12), 0 0 120px rgba(230,57,70,0.06);
      transition: border-color 0.3s, box-shadow 0.3s;
    }
    .cta-card:hover {
      border-color: rgba(230,57,70,0.65);
      box-shadow: 0 0 64px rgba(230,57,70,0.22), 0 0 140px rgba(230,57,70,0.1);
    }
    .cta-section h2 { font-size: 52px; font-weight: 800; color: #fff; margin-bottom: 12px; }
    .cta-section h2 span { color: #e63946; }
    .cta-section p  { font-size: 18px; color: #888; margin-bottom: 40px; }

    /* ── FOOTER ── */
    footer { background: #0a0a0a; padding: 80px 40px 40px; }
    .footer-inner { max-width: 1200px; margin: 0 auto; }
    .footer-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 48px; }
    .footer-logo img { height: 36px; width: auto; display: block; }
    .footer-cols { display: flex; gap: 60px; flex-wrap: wrap; margin-bottom: 48px; }
    .footer-col { flex: 1; min-width: 140px; }
    .footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
    .footer-col a, .footer-col span { display: block; font-size: 13px; color: #888; margin-bottom: 10px; transition: color 0.2s; }
    .footer-col a:hover { color: #e63946; }
    .footer-col a.accent { color: #888; }
    .footer-col a.accent:hover { color: #e63946; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
    .footer-bottom p, .footer-legal { font-size: 12px; color: #555; }
    .footer-legal a { color: #555; transition: color 0.2s; }
    .footer-legal a:hover { color: #e63946; }
    .footer-socials { display: flex; gap: 12px; }
    .footer-socials a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #888; font-size: 13px; transition: border-color 0.2s, color 0.2s; }
    .footer-socials a:hover { border-color: #e63946; color: #e63946; }

    /* ── SERVICES DROPDOWN ── */
    /* ── MODAL CHECKBOXES / RADIO ── */
    .modal-options { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
    .modal-option { position:relative; }
    .modal-option input { position:absolute; opacity:0; width:0; height:0; }
    .modal-option label { display:flex; align-items:center; gap:9px; background:#1e1e1e; border:1px solid rgba(255,255,255,0.1); border-radius:8px; padding:9px 12px; font-size:12.5px; color:#aaa; cursor:pointer; transition:border-color 0.2s, background 0.2s, color 0.2s; user-select:none; line-height:1.3; }
    .modal-option label::before { content:''; width:14px; height:14px; min-width:14px; border:1.5px solid rgba(255,255,255,0.2); border-radius:50%; transition:border-color 0.2s, background 0.2s, box-shadow 0.2s; }
    .modal-option input[type="checkbox"] + label::before { border-radius:4px; }
    .modal-option input[type="radio"]:checked + label::before { background:#e63946; border-color:#e63946; box-shadow:inset 0 0 0 3px #1e1e1e; }
    .modal-option input[type="checkbox"]:checked + label::before { background:#e63946; border-color:#e63946; background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:center; background-size:10px; }
    .modal-option input:checked + label { border-color:rgba(230,57,70,0.45); background:rgba(230,57,70,0.07); color:#fff; }
    .modal-option label:hover { border-color:rgba(255,255,255,0.22); color:#fff; }
    .nav-dropdown { position: relative; }
    .nav-dropdown-btn { font-size: 14px; color: #bbb; font-weight: 500; cursor: pointer; transition: color 0.2s; white-space: nowrap; }
    .nav-dropdown:hover .nav-dropdown-btn { color: #fff; }
    .dropdown-menu { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(-6px); background: rgba(14,14,14,0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 8px; min-width: 210px; opacity: 0; visibility: hidden; transition: opacity 0.2s, visibility 0.2s, transform 0.2s; z-index: 200; box-shadow: 0 16px 48px rgba(0,0,0,0.5); }
    .nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
    .dropdown-menu a { display: block; padding: 9px 14px; font-size: 13px; color: #aaa; border-radius: 8px; transition: background 0.15s, color 0.15s; white-space: nowrap; }
    .dropdown-menu a:hover { background: rgba(255,255,255,0.06); color: #fff; }
    @keyframes border-spin { from { transform:translate(-50%,-50%) rotate(0deg); } to { transform:translate(-50%,-50%) rotate(360deg); } }
    .modal-box-wrapper { position:relative; border-radius:24px; overflow:hidden; box-shadow:0 0 64px rgba(230,57,70,0.15), 0 0 120px rgba(230,57,70,0.07); padding:2px; }
    .modal-box-wrapper::before { content:''; position:absolute; top:50%; left:50%; width:250%; height:250%; background:conic-gradient(from 0deg, transparent 0deg, transparent 280deg, rgba(230,57,70,0.4) 310deg, #e63946 330deg, rgba(230,57,70,0.4) 350deg, transparent 360deg); animation:border-spin 6s linear infinite; }

    /* ── USE CASES CAROUSEL ── */
    .usecases-section { background: #0d0d0d; padding: 100px 0; overflow: hidden; position: relative; }
    .usecases-header { text-align: center; padding: 0 60px; margin-bottom: 56px; }
    .usecases-header h2 { font-size: 42px; font-weight: 800; color: #fff; margin-bottom: 12px; }
    .usecases-header h2 span { color: #e63946; }
    .usecases-header p { font-size: 16px; color: #666; max-width: 480px; margin: 0 auto; }
    .usecases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; padding: 0 60px; }
    .usecase-card { background: #161616; border: 1px solid rgba(255,255,255,0.07); border-radius: 18px; overflow: hidden; cursor: pointer; transition: border-color 0.3s, transform 0.25s, box-shadow 0.3s; text-decoration: none; color: inherit; display: block; }
    .usecases-see-more { text-align: center; margin-top: 48px; }
    .usecase-card:hover { border-color: rgba(230,57,70,0.45); transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 32px rgba(230,57,70,0.1); }
    .usecase-card-img { height: 170px; overflow: hidden; background: #1a1a1a; }
    .usecase-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
    .usecase-card:hover .usecase-card-img img { transform: scale(1.05); }
    .usecase-card-body { padding: 20px 22px 24px; }
    .usecase-card-body .blog-tag { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #e63946; background: rgba(230,57,70,0.1); border: 1px solid rgba(230,57,70,0.2); border-radius: 20px; padding: 3px 10px; display: inline-block; margin-bottom: 10px; }
    .usecase-card-body h3 { font-size: 14px; font-weight: 700; color: #fff; line-height: 1.45; margin-bottom: 8px; }
    .usecase-card-body p { font-size: 12.5px; color: #777; line-height: 1.6; }

    /* ── LANGUAGE SWITCHER ── */
    .lang-btn { cursor: pointer; }
    .lang-menu a.lang-active { color: #e63946 !important; font-weight: 600 !important; }
