*, *::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 {
      position: relative;
      overflow: hidden;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #e63946;
      color: #fff;
      border: 0;
      padding: 16px 38px;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0.2px;
      line-height: 1;
      margin-bottom: 16px;
      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;
    }
    .btn-hero: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);
    }
    .btn-hero::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;
    }
    .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: #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 ── */

    /* ── 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: 0; background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.92) 85%, #000 100%); 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%, rgba(0,0,0,0.96) 85%, #000 100%); }
    .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; }
    }
/* ── BASE LAYOUT (shared with other salesfision pages) ── */
section { position: relative; z-index: 1; }
.section-inner { max-width: 1400px; margin: 0 auto; padding: 100px 90px; }
.section-title { text-align: center; margin-bottom: 56px; }
.section-title h2 { font-size: 56px; font-weight: 800; color: #fff; line-height: 1.12; margin: 0; }
.section-title p { color: #888; font-size: 17px; line-height: 1.7; margin: 16px auto 0; max-width: 760px; }
.page-deco { position: absolute; pointer-events: none; opacity: 0.32; z-index: 0; }
.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;
  letter-spacing: 0.3px;
  text-decoration: none;
  backdrop-filter: blur(14px);
  -webkit-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), 0 8px 32px rgba(0,0,0,0.35); transform: translateY(-2px); color: #fff; }

/* ── PLATFORM HERO ── */
.platform-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;
}
.platform-hero-inner { padding-top: 60px; padding-bottom: 80px; max-width: 1280px; }
.platform-hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center;
}
.platform-hero-text .section-badge { margin-bottom: 22px; }
.platform-hero-text h1 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800; color: #fff; line-height: 1.05; letter-spacing: -1.5px; margin: 0 0 24px;
}
.platform-hero-sub { font-size: 18.5px; color: rgba(255,255,255,0.72); line-height: 1.65; margin: 0 0 36px; max-width: 560px; }
.platform-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: stretch; margin-bottom: 48px; }
.platform-hero-ctas .btn-primary,
.platform-hero-ctas .btn-outline {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  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;
}

/* Pillars */
.platform-pillars {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pillar { text-align: left; }
.pillar .num { font-size: 32px; font-weight: 800; color: #fff; line-height: 1; letter-spacing: -1px; }
.pillar .num::after { content: ""; display: block; width: 24px; height: 2px; background: #e63946; margin-top: 10px; }
.pillar .lbl { font-size: 12.5px; color: rgba(255,255,255,0.55); margin-top: 12px; line-height: 1.4; }

/* Hero art — orbiting rings */
.platform-hero-art { display: flex; align-items: center; justify-content: center; min-height: 480px; position: relative; }
.art-orbit { position: relative; width: 460px; height: 460px; }
.art-core {
  position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%);
  width: 110px; height: 110px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ff6b75 0%, #e63946 55%, #a51220 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 60px rgba(230,57,70,0.55), 0 0 120px rgba(230,57,70,0.25), inset 0 -10px 30px rgba(0,0,0,0.3);
  z-index: 3;
}
.art-core img { width: 56%; height: auto; opacity: 0.95; filter: brightness(0) invert(1); }
.art-ring {
  position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%);
  border-radius: 50%; border: 1px dashed rgba(255,255,255,0.18); pointer-events: none;
}
.art-ring-1 { width: 220px; height: 220px; animation: artSpin 30s linear infinite; }
.art-ring-2 { width: 320px; height: 320px; border-color: rgba(230,57,70,0.32); border-style: solid; animation: artSpin 50s linear infinite reverse; }
.art-ring-3 { width: 440px; height: 440px; animation: artSpin 80s linear infinite; }
@keyframes artSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }
.art-dot {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: #e63946; box-shadow: 0 0 14px rgba(230,57,70,0.8);
  top: 50%; left: 50%;
}
.art-dot-1 { transform: translate(100px, -100px); animation: orbit1 8s linear infinite; }
.art-dot-2 { width: 7px; height: 7px; background: #ffb347; box-shadow: 0 0 10px rgba(255,179,71,0.9); transform: translate(-160px, 60px); animation: orbit2 12s linear infinite; }
.art-dot-3 { width: 5px; height: 5px; background: #fff; box-shadow: 0 0 8px rgba(255,255,255,0.8); transform: translate(190px, 90px); animation: orbit3 16s linear infinite; }
.art-dot-4 { width: 6px; height: 6px; background: #ff7043; box-shadow: 0 0 10px rgba(255,112,67,0.8); transform: translate(-100px, -140px); animation: orbit1 14s linear infinite reverse; }
.art-dot-5 { width: 4px; height: 4px; background: rgba(255,255,255,0.9); transform: translate(140px, 150px); animation: orbit2 20s linear infinite; }
@keyframes orbit1 { from { transform: rotate(0deg) translate(110px) rotate(0deg); } to { transform: rotate(360deg) translate(110px) rotate(-360deg); } }
@keyframes orbit2 { from { transform: rotate(0deg) translate(160px) rotate(0deg); } to { transform: rotate(360deg) translate(160px) rotate(-360deg); } }
@keyframes orbit3 { from { transform: rotate(0deg) translate(220px) rotate(0deg); } to { transform: rotate(360deg) translate(220px) rotate(-360deg); } }
.art-glow {
  position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%);
  width: 320px; height: 320px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(230,57,70,0.22) 0%, rgba(230,57,70,0) 65%);
  filter: blur(40px); z-index: 0;
}

/* ── DASHBOARD MOCKUP (shared with home) ── */
.sf-dash {
  max-width: 1140px; margin: 0 auto;
  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);
}
.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; }
.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; }
.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; }
.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; }

/* ── DIFFERENCE TABLE ── */
.diff-section { background: #0a0a0a; }
.diff-table {
  max-width: 980px; margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; overflow: hidden;
  background: rgba(0,0,0,0.2);
}
.diff-head { display: grid; grid-template-columns: 1fr 1fr; }
.diff-col {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 24px; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.4px;
  background: rgba(255,255,255,0.02);
}
.diff-col-other { color: rgba(255,255,255,0.55); border-right: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.diff-col-us { color: #fca5a5; background: linear-gradient(180deg, rgba(230,57,70,0.12), rgba(230,57,70,0.04)); border-bottom: 1px solid rgba(230,57,70,0.25); }
.diff-mark { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; font-size: 14px; font-weight: 800; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.55); }
.diff-mark.check { background: #e63946; color: #fff; box-shadow: 0 6px 18px rgba(230,57,70,0.4); }
.diff-row { display: grid; grid-template-columns: 1fr 1fr; }
.diff-row + .diff-row { border-top: 1px solid rgba(255,255,255,0.05); }
.diff-cell { padding: 18px 24px; font-size: 15px; line-height: 1.5; }
.diff-cell.other { color: rgba(255,255,255,0.55); border-right: 1px solid rgba(255,255,255,0.08); position: relative; }
.diff-cell.other::before { content: "✕"; display: inline-block; margin-right: 12px; color: rgba(255,255,255,0.32); font-size: 13px; }
.diff-cell.us { color: #fff; background: rgba(230,57,70,0.04); position: relative; }
.diff-cell.us::before { content: "✓"; display: inline-block; margin-right: 12px; color: #e63946; font-weight: 800; }

/* ── 9 APPS ── */
.apps-section { background: #0d0d0d; }
.apps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1180px; margin: 0 auto; }
.app-card {
  display: flex; flex-direction: column; gap: 18px;
  padding: 26px 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;
}
.app-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); }
.app-who {
  display: inline-block; font-size: 9.5px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px; margin-bottom: 12px;
}
.app-who-shared { background: rgba(96,165,250,0.16); color: #93c5fd; border: 1px solid rgba(96,165,250,0.32); }
.app-who-internal { background: rgba(255,179,71,0.14); color: #ffd28a; border: 1px solid rgba(255,179,71,0.32); }
.app-who-client { background: rgba(95,212,155,0.14); color: #8eebbb; border: 1px solid rgba(95,212,155,0.32); }
.app-card h4 { font-size: 19px; font-weight: 800; color: #fff; margin: 0 0 6px; line-height: 1.25; }
.app-tag { font-size: 11.5px; font-weight: 600; color: rgba(255,255,255,0.55); letter-spacing: 0.4px; margin-bottom: 12px; }
.app-card p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; margin: 0; }
.app-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.06); }
.app-features li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.85); }
.app-features .check {
  flex-shrink: 0; width: 16px; height: 16px; border-radius: 50%;
  background: rgba(230,57,70,0.15); border: 1px solid rgba(230,57,70,0.45);
  display: inline-flex; align-items: center; justify-content: center; position: relative;
}
.app-features .check::after {
  content: ""; width: 6px; height: 3px;
  border-left: 1.5px solid #fca5a5; border-bottom: 1.5px solid #fca5a5;
  transform: rotate(-45deg) translate(0px, -1px);
}

/* ── TOUR ── */
.tour-section { background: #0a0a0a; }
.tour-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 1080px; margin: 0 auto; }
.tour-card {
  padding: 28px 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;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.tour-card:hover { transform: translateY(-3px); border-color: rgba(230,57,70,0.35); }
.tour-time { display: inline-flex; align-items: center; gap: 8px; font-size: 11.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 14px; }
.dot-red { width: 7px; height: 7px; border-radius: 50%; background: #e63946; box-shadow: 0 0 8px #e63946; }
.tour-card h4 { font-size: 22px; font-weight: 800; color: #fff; margin: 0 0 10px; line-height: 1.2; }
.tour-card p { font-size: 14.5px; color: rgba(255,255,255,0.7); line-height: 1.65; margin: 0; }

/* ── FAQ ── */
.faq-section { background: #0d0d0d; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.faq-item[open] { background: rgba(255,255,255,0.05); border-color: rgba(230,57,70,0.32); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  font-size: 16px; font-weight: 700; color: #fff;
  cursor: pointer; list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chev {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(230,57,70,0.16); border: 1px solid rgba(230,57,70,0.32);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fca5a5; font-size: 16px; font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease;
  flex-shrink: 0; margin-left: 14px;
}
.faq-item[open] .faq-chev { transform: rotate(45deg); background: #e63946; color: #fff; border-color: #e63946; }
.faq-body {
  padding: 0 22px 22px;
  font-size: 15px; color: rgba(255,255,255,0.72); line-height: 1.65;
}

/* ── PLATFORM CTA-PRIMARY (matches home shine button) ── */
.platform-cta-primary { position: relative; overflow: hidden; }
.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: sfBtnShine 3.4s 1.2s ease-in-out infinite;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .apps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  .platform-hero { padding-top: 100px; }
  .platform-hero-inner { padding-top: 32px; padding-bottom: 56px; }
  .platform-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .platform-hero-art { min-height: 0; }
  .art-orbit { transform: scale(0.8); margin: -46px; }
  .page-deco { display: none; }
  .platform-pillars { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .section-title h2 { font-size: 40px; }
  .section-inner { padding: 80px 24px; }
  .diff-cell { padding: 16px; font-size: 14px; }
  .tour-grid { grid-template-columns: 1fr; }
  .sf-dash-body { grid-template-columns: 1fr; }
  .sf-dash-side { display: none; }
  .sf-dash-funnel { grid-template-columns: repeat(3, 1fr); }
  .sf-dash-cols { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .apps-grid { grid-template-columns: 1fr; }
  .section-title h2 { font-size: 32px; }
  .platform-hero-text h1 { font-size: 38px; letter-spacing: -0.6px; }
}
@media (max-width: 600px) {
  .platform-hero { padding-top: 84px; }
  .platform-hero-inner { padding-top: 20px; padding-bottom: 44px; }
  .platform-hero-grid { gap: 28px; }
  .art-orbit { transform: scale(0.6); margin: -92px; }
  .platform-hero-sub { font-size: 16px; }
  .platform-hero-ctas { gap: 12px; }
  .platform-hero-ctas .btn-primary,
  .platform-hero-ctas .btn-outline { width: 100%; }
  .platform-pillars { gap: 16px 18px; padding: 20px 0; }
  .pillar .num { font-size: 28px; }
}


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