*, *::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);
      -webkit-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: rgba(230,57,70,0.18);
      border: 1px solid rgba(230,57,70,0.45);
      color: #fca5a5;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 5px 13px;
      border-radius: 10px;
      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;
      display: flex;
      flex-direction: column;
    }
    .pricing-card .btn-plan { margin-top: auto; }
    .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 {
      position: relative;
      overflow: hidden;
      background: #e63946;
      color: #fff;
      border-color: #e63946;
      box-shadow: 0 0 0 0 rgba(230,57,70,0.45), 0 18px 40px -12px rgba(230,57,70,0.55);
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    }
    .pricing-card.popular .btn-plan::after {
      content: "";
      position: absolute; inset: 0; border-radius: inherit;
      background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
      transform: translateX(-120%); pointer-events: none;
      animation: sfBtnShine 3.4s 1.2s ease-in-out infinite;
    }
    .pricing-card.popular .btn-plan:hover {
      transform: translateY(-2px);
      background: #d62b38;
      color: #fff;
      box-shadow: 0 0 0 4px rgba(230,57,70,0.18), 0 22px 44px -10px rgba(230,57,70,0.7);
    }
    .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: #0d0d0d;
      padding: 160px 90px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    /* Carousel container */
    .testimonials-carousel {
      position: relative;
      max-width: 1280px;
      margin: 40px auto 0;
      padding: 0 60px;
    }
    .testimonials-track {
      display: flex;
      gap: 22px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      scrollbar-width: none;
      padding: 14px 6px 60px;
      scroll-padding-left: 6px;
    }
    .testimonials-track::-webkit-scrollbar { display: none; }

    .testimonial-card {
      flex: 0 0 360px;
      scroll-snap-align: start;
      display: flex;
      flex-direction: column;
      background: linear-gradient(180deg, #181818 0%, #0f0f0f 100%);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 16px;
      padding: 32px 28px;
      text-align: left;
      min-height: 300px;
      transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    }
    .testimonial-card:hover {
      border-color: rgba(230,57,70,0.32);
      transform: translateY(-3px);
      box-shadow: 0 18px 50px -18px rgba(230,57,70,0.35), 0 0 0 1px rgba(230,57,70,0.05);
    }
    .stars { color: #f5c518; font-size: 17px; margin-bottom: 18px; letter-spacing: 2px; }
    .testimonial-card p { font-size: 15px; color: #b8b8b8; line-height: 1.7; margin: 0 0 28px; }

    /* Author pinned to bottom regardless of text length */
    .testimonial-author { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); }
    .testimonial-author .avatar {
      width: 42px; height: 42px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 15px; font-weight: 800; color: #fff;
      flex-shrink: 0;
    }
    .testimonial-author .avatar.a-1 { background: linear-gradient(135deg, #e63946, #ff7043); }
    .testimonial-author .avatar.a-2 { background: linear-gradient(135deg, #5AA9FF, #1F4A8B); }
    .testimonial-author .avatar.a-3 { background: linear-gradient(135deg, #B78CFF, #5A3FB7); }
    .testimonial-author .name { font-size: 14.5px; font-weight: 700; color: #fff; line-height: 1.2; }
    .testimonial-author .role { font-size: 12.5px; color: #888; line-height: 1.3; margin-top: 3px; }

    /* Nav arrows */
    .t-nav {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 44px; height: 44px; border-radius: 50%;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.14);
      color: #fff; font-size: 24px; line-height: 1; font-weight: 600;
      cursor: pointer; z-index: 5;
      display: flex; align-items: center; justify-content: center;
      backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
      transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    }
    .t-nav: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);
    }
    .t-nav:active { transform: translateY(-50%) scale(0.94); }
    .t-prev { left: 0; }
    .t-next { right: 0; }

    @media (max-width: 700px) {
      .testimonials-carousel { padding: 0 16px; }
      .t-nav { display: none; }
      .testimonial-card { flex: 0 0 calc(100vw - 64px); }
    }

    /* ── 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 ── */

    /* ── 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; }

    /* ── REAL CLIENT USE CASES ── */
    .cases-section { background: linear-gradient(180deg, #0d0d0d 0%, #080808 100%); padding: 120px 0; position: relative; overflow: hidden; }
    .cases-header { text-align: center; padding: 0 60px; margin-bottom: 64px; }
    .cases-header h2 { font-size: 42px; font-weight: 800; color: #fff; margin-bottom: 12px; }
    .cases-header p { font-size: 16px; color: #666; max-width: 520px; margin: 0 auto; }
    .cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1280px; margin: 0 auto; padding: 0 60px; }
    .case-tile {
      position: relative;
      aspect-ratio: 3 / 4;
      border-radius: 22px;
      overflow: hidden;
      background-size: cover;
      background-position: center;
      text-decoration: none;
      color: #fff;
      display: block;
      transition: transform 0.35s ease, box-shadow 0.35s;
    }
    .case-tile:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 48px rgba(230,57,70,0.15); }
    .case-overlay { position: absolute; inset: -1px; background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 50%, #000 80%); transition: background 0.35s; }
    .case-tile:hover .case-overlay { background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.65) 50%, #000 78%); }
    .case-content { position: relative; z-index: 1; height: 100%; padding: 28px 28px 30px; display: flex; flex-direction: column; justify-content: flex-end; gap: 10px; }
    .case-metric { align-self: flex-start; display: inline-block; background: #e63946; border: 1px solid #e63946; color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; box-shadow: 0 2px 12px rgba(230,57,70,0.4); }
    .case-label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.55); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px; }
    .case-content h3 { font-size: 22px; font-weight: 800; line-height: 1.25; margin: 0; color: #fff; }
    .case-content p { font-size: 13.5px; color: #bbb; line-height: 1.6; margin: 0; }
    .case-read { font-size: 13px; font-weight: 600; color: #e63946; margin-top: 6px; transition: gap 0.3s; }
    .case-tile:hover .case-read { letter-spacing: 0.4px; }
    .cases-see-more { text-align: center; margin-top: 48px; }
    @media (max-width: 900px) {
      .cases-grid { grid-template-columns: 1fr; }
      .case-tile { aspect-ratio: 4 / 3; }
    }

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

    /* ── PLATFORM SECTION (Way of working) ── */
    .platform-section { background: #0d0d0d; }

    .platform-head {
      display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end;
      max-width: 1140px; margin: 0 auto;
    }
    .platform-head-left .section-badge { margin-bottom: 16px; }
    .platform-head-left h2 {
      font-size: clamp(34px, 3.5vw, 52px);
      font-weight: 800; color: #fff; line-height: 1.12; margin: 0;
    }
    .platform-head-right p {
      color: #888; font-size: 17px; line-height: 1.7; margin: 0;
    }

    .platform-cta-row { display: flex; gap: 14px; align-items: stretch; flex-wrap: wrap; justify-content: center; margin-top: 40px; }
    .platform-cta-row-wide { max-width: 1140px; margin-left: auto; margin-right: auto; }
    .platform-cta-full { width: 100%; }

    @media (max-width: 900px) {
      .platform-head { grid-template-columns: 1fr; gap: 28px; text-align: center; }
      .platform-cta-row { justify-content: center; }
    }
    .platform-cta-row .btn-primary,
    .platform-cta-row .btn-outline {
      display: inline-flex !important; align-items: center; justify-content: center;
      padding: 16px 32px !important;
      font-size: 14.5px !important;
      font-weight: 700 !important;
      line-height: 1 !important;
      border-radius: 8px !important;
      margin-bottom: 0 !important;
      min-height: 50px;
      box-sizing: border-box;
    }

    .platform-cta-primary {
      position: relative; overflow: hidden;
      box-shadow: 0 0 0 0 rgba(230,57,70,0.45), 0 18px 40px -12px rgba(230,57,70,0.55);
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    }
    .platform-cta-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 0 4px rgba(230,57,70,0.18), 0 22px 44px -10px rgba(230,57,70,0.7);
    }
    .platform-cta-arrow {
      display: inline-flex; align-items: center; justify-content: center;
      margin-right: 8px; font-size: 20px; line-height: 1; height: 1em;
      transform: translateY(-1px);
      transition: transform 0.25s ease;
    }
    .platform-cta-primary:hover .platform-cta-arrow { transform: translateY(-1px) translateX(3px); }
    .platform-cta-pulse {
      position: absolute; inset: 0; border-radius: inherit;
      background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
      transform: translateX(-120%); pointer-events: none;
      animation: sfShine 3.4s 1.2s ease-in-out infinite;
    }
    @keyframes sfShine {
      0%   { transform: translateX(-120%); }
      55%  { transform: translateX(120%); }
      100% { transform: translateX(120%); }
    }

    .sf-dash {
      max-width: 1140px; margin: 56px auto 0;
      background: linear-gradient(180deg, #14171f 0%, #0e1018 100%);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 18px; overflow: hidden;
      box-shadow: 0 14px 40px rgba(0,0,0,0.32), 0 0 0 1px rgba(232,54,66,0.04) inset;
    }
    .sf-dash-chrome {
      display: flex; align-items: center; gap: 14px;
      padding: 12px 16px; background: rgba(255,255,255,0.02);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .sf-dash-dots { display: flex; gap: 6px; }
    .sf-dash-dots span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.18); }
    .sf-dash-dots span:nth-child(1) { background: #ff5f57; }
    .sf-dash-dots span:nth-child(2) { background: #febc2e; }
    .sf-dash-dots span:nth-child(3) { background: #28c840; }
    .sf-dash-url {
      flex: 1; text-align: center; font-size: 12.5px; color: rgba(255,255,255,0.55);
      font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
      background: rgba(0,0,0,0.35); padding: 6px 14px; border-radius: 8px;
      border: 1px solid rgba(255,255,255,0.06);
    }
    .sf-dash-url .lock { color: #28c840; margin-right: 6px; font-size: 9px; vertical-align: middle; }

    .sf-dash-body { display: grid; grid-template-columns: 220px 1fr; min-height: 440px; }
    .sf-dash-side {
      background: rgba(0,0,0,0.25); border-right: 1px solid rgba(255,255,255,0.06);
      padding: 18px 14px; font-size: 13px;
    }
    .sf-dash-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
    .sf-dash-brand-dot {
      width: 30px; height: 30px; border-radius: 8px;
      background: linear-gradient(135deg, #e63946 0%, #ff7043 100%);
      display: flex; align-items: center; justify-content: center;
      font-size: 11px; font-weight: 800; color: #fff; letter-spacing: 0.5px;
    }
    .sf-dash-brand-name { font-size: 12.5px; font-weight: 700; color: #fff; line-height: 1.25; }
    .sf-dash-brand-name small { display: block; font-weight: 500; font-size: 10px; color: rgba(255,255,255,0.4); margin-top: 1px; }
    .sf-dash-side h6 {
      font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.4);
      letter-spacing: 1.4px; text-transform: uppercase; margin: 18px 0 10px; padding: 0 6px;
    }
    .sf-dash-side ul { list-style: none; padding: 0; margin: 0 0 6px; }
    .sf-dash-side li {
      display: flex; align-items: center; gap: 10px;
      padding: 8px 10px; border-radius: 7px; color: rgba(255,255,255,0.7); font-size: 12.5px;
      cursor: default;
    }
    .sf-dash-side li.active { background: rgba(232,54,66,0.12); color: #fff; }
    .sf-dash-side li .dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.35); flex-shrink: 0; }
    .sf-dash-side li.active .dot { background: #e63946; box-shadow: 0 0 8px #e63946; }
    .sf-dash-side li .badge {
      margin-left: auto; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
      padding: 1px 8px; border-radius: 999px; font-size: 10.5px; font-weight: 700;
    }

    .sf-dash-main { padding: 22px 24px; min-width: 0; }
    .sf-dash-topline { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; gap: 14px; flex-wrap: wrap; }
    .sf-dash-topline h3 { font-size: 16px; font-weight: 700; color: #fff; margin: 0; line-height: 1.3; }
    .sf-dash-topline h3 small { display: block; font-size: 11.5px; font-weight: 500; color: rgba(255,255,255,0.4); margin-top: 4px; }
    .sf-dash-pills { display: flex; gap: 4px; background: rgba(0,0,0,0.4); padding: 3px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.06); }
    .sf-dash-pills .pill {
      background: transparent; border: 0; color: rgba(255,255,255,0.6);
      font-size: 11.5px; font-weight: 600; padding: 5px 12px; border-radius: 6px; cursor: pointer;
    }
    .sf-dash-pills .pill.active { background: rgba(232,54,66,0.18); color: #fff; }

    .sf-dash-funnel {
      display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px;
      background: rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.05);
      border-radius: 12px; padding: 14px; margin-bottom: 18px;
    }
    .funnel-cell { padding: 0 6px; border-right: 1px solid rgba(255,255,255,0.05); }
    .funnel-cell:last-child { border-right: 0; }
    .funnel-cell .stage { font-size: 10.5px; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 6px; }
    .funnel-cell .stage b { color: #e63946; font-weight: 800; }
    .funnel-cell .num { font-size: 19px; font-weight: 800; color: #fff; line-height: 1; }
    .funnel-cell .delta { font-size: 11px; font-weight: 700; margin-top: 4px; }
    .funnel-cell .delta.up { color: #5fd49b; }
    .funnel-cell .delta.down { color: #ff7c7c; }

    .sf-dash-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .sf-dash-card { background: rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 16px; }
    .sf-dash-card h5 { font-size: 13.5px; font-weight: 700; color: #fff; margin: 0 0 2px; }
    .sf-dash-card .h5-sub { font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 12px; }
    .sf-dash-card .chart-wrap { width: 100%; height: 130px; }
    .sf-dash-card .chart-wrap svg { width: 100%; height: 100%; display: block; }
    .sf-dash-card .chart-grid line { stroke: rgba(255,255,255,0.05); stroke-dasharray: 2 4; }

    .sf-work-list { display: flex; flex-direction: column; gap: 8px; }
    .work-item {
      display: grid; grid-template-columns: 78px 1fr auto; gap: 12px; align-items: center;
      padding: 10px 12px; border-radius: 8px; background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.04);
    }
    .work-item .key { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10.5px; color: rgba(255,255,255,0.5); }
    .work-item .title { font-size: 12.5px; font-weight: 600; color: #fff; line-height: 1.3; }
    .work-item .title small { display: block; font-size: 10.5px; font-weight: 500; color: rgba(255,255,255,0.4); margin-top: 2px; }
    .work-item .status { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 3px 8px; border-radius: 4px; white-space: nowrap; }
    .work-item .status.doing { background: rgba(96,165,250,0.18); color: #93c5fd; }
    .work-item .status.review { background: rgba(255,179,71,0.18); color: #ffd28a; }
    .work-item .status.todo { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.6); }
    .work-item .status.done { background: rgba(95,212,155,0.18); color: #8eebbb; }

    @media (max-width: 900px) {
      .sf-dash-body { grid-template-columns: 1fr; }
      .sf-dash-side { display: none; }
      .sf-dash-funnel { grid-template-columns: repeat(3, 1fr); }
      .funnel-cell:nth-child(3n) { border-right: 0; }
      .sf-dash-cols { grid-template-columns: 1fr; }
      .sf-dash-url { font-size: 10.5px; }
    }

/* ── Data analytics feature dashboard (replaces feature-img) ── */
.feature-dash { padding: 0 !important; }
.feature-dash .sf-dash { max-width: none !important; margin: 0 !important; }
.feature-dash .sf-dash-funnel .funnel-cell .num { font-size: 16px; }
.feature-dash .sf-dash-topline h3 { font-size: 14.5px; }
.feature-dash .sf-dash-card .chart-wrap { height: 120px; }
@media (max-width: 1100px) {
  .feature-dash .sf-dash-side { display: none; }
  .feature-dash .sf-dash-body { grid-template-columns: 1fr; min-height: 0; }
  .feature-dash .sf-dash-funnel { grid-template-columns: repeat(3, 1fr); gap: 4px; }
  .feature-dash .sf-dash-funnel .funnel-cell { border-bottom: 1px solid rgba(255,255,255,0.05); }
  .feature-dash .sf-dash-funnel .funnel-cell:nth-child(3n) { border-right: 0; }
  .feature-dash .sf-dash-funnel .funnel-cell:nth-child(n+4) { border-bottom: 0; }
}

/* ── Extra dashboard blocks for Data Analytics feature ── */
.feature-dash .sf-dash-cols-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.feature-dash .sf-dash-mini {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 12px 14px;
  min-width: 0;
}
.feature-dash .mini-label {
  font-size: 10px; font-weight: 700; letter-spacing: 1.4px;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}
.feature-dash .mini-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11.5px; color: rgba(255,255,255,0.85);
  margin-top: 8px;
}
.feature-dash .mini-row:first-of-type { margin-top: 0; }
.feature-dash .mini-key { font-weight: 600; }
.feature-dash .mini-val { font-weight: 700; color: #fff; }
.feature-dash .mini-bar {
  height: 4px; border-radius: 99px; background: rgba(255,255,255,0.06);
  overflow: hidden; margin: 4px 0 2px;
}
.feature-dash .mini-bar span { display: block; height: 100%; border-radius: inherit; }

.feature-dash .device-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.feature-dash .device-cell {
  text-align: center;
  padding: 8px 4px; border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.04);
}
.feature-dash .device-cell .dv-ico { font-size: 16px; line-height: 1; margin-bottom: 4px; }
.feature-dash .device-cell .dv-num { font-size: 14px; font-weight: 800; color: #fff; line-height: 1; }
.feature-dash .device-cell .dv-lbl { font-size: 9.5px; font-weight: 600; color: rgba(255,255,255,0.5); margin-top: 3px; letter-spacing: 0.4px; text-transform: uppercase; }

.feature-dash .goal-row { display: grid; grid-template-columns: 1fr 60px 28px; gap: 8px; align-items: center; margin-top: 8px; font-size: 11px; }
.feature-dash .goal-row:first-of-type { margin-top: 0; }
.feature-dash .goal-name { color: rgba(255,255,255,0.7); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 600; }
.feature-dash .goal-bar { height: 4px; border-radius: 99px; background: rgba(255,255,255,0.06); overflow: hidden; }
.feature-dash .goal-bar span {
  display: block; height: 100%; border-radius: inherit;
  background: linear-gradient(90deg, #e63946, #ff7043);
}
.feature-dash .goal-pct { font-weight: 800; color: #fff; text-align: right; }

@media (max-width: 1100px) {
  .feature-dash .sf-dash-cols-3 { grid-template-columns: 1fr; }
}

/* ── Tighter work items inside the home Data Analytics feature dash ── */
.feature-dash .sf-work-list .work-item {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 7px 9px;
  min-width: 0;
}
.feature-dash .sf-work-list .work-item .key { display: none; }
.feature-dash .sf-work-list .work-item .title {
  font-size: 12px;
  min-width: 0;
  overflow: hidden;
}
.feature-dash .sf-work-list .work-item .title small {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.feature-dash .sf-work-list .work-item .status { font-size: 9.5px; padding: 2px 6px; }

/* ── KANBAN BOARD (Digital Leadership feature) ── */
.feature-board { padding: 0 !important; }
.feature-board .sf-dash { max-width: none !important; margin: 0 !important; }

.feature-board .kanban {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.feature-board .kanban-col {
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 10px 8px;
  display: flex; flex-direction: column; gap: 8px;
  min-width: 0;
}
.feature-board .kb-head {
  display: flex; align-items: center; gap: 8px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  padding: 0 4px 6px; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.feature-board .kb-dot { width: 7px; height: 7px; border-radius: 50%; }
.feature-board .kb-dot-todo   { background: rgba(255,255,255,0.5); }
.feature-board .kb-dot-doing  { background: #93c5fd; box-shadow: 0 0 6px rgba(147,197,253,0.7); }
.feature-board .kb-dot-review { background: #ffd28a; box-shadow: 0 0 6px rgba(255,210,138,0.7); }
.feature-board .kb-dot-done   { background: #5fd49b; box-shadow: 0 0 6px rgba(95,212,155,0.7); }
.feature-board .kb-title { flex: 1; }
.feature-board .kb-count {
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
  font-size: 10px; font-weight: 700; padding: 1px 7px; border-radius: 999px;
}

.feature-board .kb-card {
  background: linear-gradient(180deg, #1c1f29 0%, #14171f 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 9px 10px;
  display: flex; flex-direction: column; gap: 7px;
  cursor: grab;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.feature-board .kb-card:hover { transform: translateY(-1px); border-color: rgba(230,57,70,0.3); }
.feature-board .kb-card-done { opacity: 0.55; }
.feature-board .kb-card-done .kb-text { text-decoration: line-through; }

.feature-board .kb-tag {
  align-self: flex-start;
  font-size: 9px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase;
  padding: 2px 7px; border-radius: 999px;
}
.feature-board .tag-purple { background: rgba(167,139,250,0.18); color: #c4b5fd; border: 1px solid rgba(167,139,250,0.32); }
.feature-board .tag-blue   { background: rgba(96,165,250,0.18);  color: #93c5fd; border: 1px solid rgba(96,165,250,0.32); }
.feature-board .tag-red    { background: rgba(230,57,70,0.18);   color: #fca5a5; border: 1px solid rgba(230,57,70,0.4); }
.feature-board .tag-orange { background: rgba(255,179,71,0.18);  color: #ffd28a; border: 1px solid rgba(255,179,71,0.32); }
.feature-board .tag-green  { background: rgba(95,212,155,0.18);  color: #8eebbb; border: 1px solid rgba(95,212,155,0.32); }

.feature-board .kb-text {
  font-size: 12px; font-weight: 600; color: #fff; line-height: 1.35;
}
.feature-board .kb-meta { display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.feature-board .kb-avatar {
  width: 20px; height: 20px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800; color: #fff; letter-spacing: 0.3px;
  border: 1.5px solid rgba(0,0,0,0.4);
}
.feature-board .a-1 { background: linear-gradient(135deg, #e63946, #ff7043); }
.feature-board .a-2 { background: linear-gradient(135deg, #5AA9FF, #1F4A8B); }
.feature-board .a-3 { background: linear-gradient(135deg, #B78CFF, #5A3FB7); }
.feature-board .kb-priority {
  font-size: 9px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase;
  padding: 2px 6px; border-radius: 4px;
}
.feature-board .kb-priority.high { background: rgba(230,57,70,0.25); color: #fca5a5; }

@media (max-width: 1100px) {
  .feature-board .sf-dash-side { display: none; }
  .feature-board .sf-dash-body { grid-template-columns: 1fr; min-height: 0; }
  .feature-board .kanban { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .feature-board .kanban { grid-template-columns: 1fr; }
}

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.07); color: #fff;
  border: 1px solid rgba(255,255,255,0.14);
  padding: 16px 32px; border-radius: 8px;
  font-size: 14.5px; font-weight: 600;
  text-decoration: none; backdrop-filter: blur(14px);
  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); transform: translateY(-2px); color: #fff; }

.page-deco { position: absolute; pointer-events: none; opacity: 0.32; z-index: 0; }

/* ── HERO ── */
.careers-hero {
  background: radial-gradient(ellipse 1200px 700px at 50% 0%, rgba(230,57,70,0.10) 0%, transparent 60%), #0a0a0a;
  overflow: hidden; padding-top: 120px;
}
.careers-hero-inner { padding-top: 60px; padding-bottom: 80px; max-width: 1100px; }
.careers-hero h1 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800; color: #fff; line-height: 1.05; letter-spacing: -1.5px; margin: 0 0 24px;
}
.careers-hero-sub {
  font-size: 18.5px; color: rgba(255,255,255,0.72);
  line-height: 1.65; margin: 0 auto; max-width: 720px;
}
.careers-pillars {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin: 56px auto 0; max-width: 880px;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.careers-pillars .pillar {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.careers-pillars .pillar:last-child { border-right: 0; }
.careers-pillars .pillar .num { font-size: 30px; font-weight: 800; color: #fff; line-height: 1; letter-spacing: -0.8px; }
.careers-pillars .pillar .num::after { content: ""; display: block; width: 26px; height: 2px; background: #e63946; margin: 12px auto 0; }
.careers-pillars .pillar .lbl { margin-top: 12px; font-size: 12.5px; color: rgba(255,255,255,0.6); letter-spacing: 0.3px; line-height: 1.4; }

/* ── PERKS GRID ── */
.perks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1180px; margin: 0 auto; }
.perk-card {
  padding: 28px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.perk-card:hover {
  transform: translateY(-4px);
  border-color: rgba(230,57,70,0.4);
  box-shadow: 0 18px 40px -16px rgba(230,57,70,0.4), 0 0 0 1px rgba(230,57,70,0.15);
}
.perk-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: #fff;
  background: rgba(230,57,70,0.12);
  border: 1px solid rgba(230,57,70,0.32);
  border-radius: 10px;
  margin-bottom: 16px;
}
.perk-card h3 { font-size: 18px; font-weight: 800; color: #fff; margin: 0 0 8px; line-height: 1.25; }
.perk-card p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; margin: 0; }

/* ── ROLES LIST ── */
.roles-list { display: flex; flex-direction: column; gap: 14px; max-width: 980px; margin: 0 auto; }
.role-card {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "meta cta" "title cta" "body cta";
  gap: 6px 32px;
  align-items: center;
  padding: 24px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  text-decoration: none; color: inherit;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.role-card:hover { transform: translateY(-3px); border-color: rgba(230,57,70,0.4); box-shadow: 0 16px 36px -16px rgba(230,57,70,0.4); }
.role-card .role-meta { grid-area: meta; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.role-tag {
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(230,57,70,0.16);
  color: #fca5a5;
  border: 1px solid rgba(230,57,70,0.32);
}
.role-loc { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.55); letter-spacing: 0.3px; }
.role-card h3 { grid-area: title; font-size: 22px; font-weight: 800; color: #fff; margin: 4px 0 0; line-height: 1.2; }
.role-card p { grid-area: body; font-size: 14.5px; color: rgba(255,255,255,0.7); line-height: 1.55; margin: 6px 0 0; }
.role-card .role-cta {
  grid-area: cta;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: rgba(230,57,70,0.16);
  border: 1px solid rgba(230,57,70,0.45);
  color: #fca5a5;
  font-size: 13px; font-weight: 700;
  border-radius: 8px;
  transition: gap 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.role-card:hover .role-cta { gap: 12px; background: #e63946; color: #fff; }
.role-card .role-cta .arr { transition: transform 0.25s ease; }
.role-card:hover .role-cta .arr { transform: translateX(3px); }
.role-card-open { background: linear-gradient(180deg, rgba(230,57,70,0.06) 0%, rgba(230,57,70,0.02) 100%); border-color: rgba(230,57,70,0.25); }

/* ── APPLY FORM ── */
.careers-apply { background: #0d0d0d; }
.apply-form {
  margin-top: 48px;
  padding: 36px 36px 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  max-width: 760px;
  margin-left: auto; margin-right: auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field-label { font-size: 12.5px; font-weight: 700; letter-spacing: 0.5px; color: rgba(255,255,255,0.7); text-transform: uppercase; }
.field input, .field select, .field textarea {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  padding: 12px 14px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14.5px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.3); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: rgba(230,57,70,0.55);
  background: rgba(0,0,0,0.5);
  box-shadow: 0 0 0 3px rgba(230,57,70,0.14);
}
.field select { appearance: none; -webkit-appearance: none; cursor: pointer; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%23ffffff80' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; background-size: 12px; padding-right: 36px; }

.file-input { position: relative; display: flex; align-items: center; gap: 10px; padding: 11px 14px; background: rgba(0,0,0,0.4); border: 1px dashed rgba(255,255,255,0.18); border-radius: 8px; }
.file-input input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.file-input .file-label { flex: 1; font-size: 13.5px; color: rgba(255,255,255,0.55); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.file-input .file-btn { font-size: 12px; font-weight: 700; padding: 6px 12px; background: rgba(230,57,70,0.16); border: 1px solid rgba(230,57,70,0.4); color: #fca5a5; border-radius: 6px; }
.file-input:hover { border-color: rgba(230,57,70,0.4); }

.form-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 28px; text-align: center; }
.apply-submit { padding: 16px 38px !important; font-size: 15px !important; }
.form-note { font-size: 12px; color: rgba(255,255,255,0.45); margin: 0; max-width: 520px; line-height: 1.5; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success .success-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #e63946, #ff7043);
  border-radius: 50%;
  font-size: 28px; font-weight: 800;
  color: #fff;
  margin: 0 auto 20px;
  box-shadow: 0 12px 32px rgba(230,57,70,0.35);
}
.form-success h3 { font-size: 24px; color: #fff; margin: 0 0 8px; font-weight: 800; }
.form-success p { color: rgba(255,255,255,0.65); margin: 0; }

@media (max-width: 980px) {
  .perks-grid { grid-template-columns: repeat(2, 1fr); }
  .role-card {
    grid-template-columns: 1fr;
    grid-template-areas: "meta" "title" "body" "cta";
    gap: 8px;
  }
  .role-card .role-cta { justify-self: flex-start; }
  .careers-pillars { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .careers-pillars .pillar { padding: 12px 8px; border: 0; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .perks-grid { grid-template-columns: 1fr; }
  .apply-form { padding: 26px 22px; }
}


    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; }
