:root {
      --dm-primary: var(--wp--preset--color--primary, #4e54c8);
      --dm-primary-light: var(--wp--preset--color--primary-light, #6c63ff);
      --dm-secondary: var(--wp--preset--color--secondary, #f77062);
      --dm-accent-green: var(--wp--preset--color--accent-green, #2ecc71);
      --dm-accent-yellow: var(--wp--preset--color--accent-yellow, #f1c40f);
      --dm-dark: var(--wp--preset--color--dark, #2c3e50);
      --dm-light: var(--wp--preset--color--light, #f8f9fc);
      --dm-body: var(--wp--preset--color--body, #4a4a6a);
      --dm-creative: var(--wp--preset--color--creative, #e74c8b);
      --dm-game: var(--wp--preset--color--game, #3498db);
      --dm-edu: var(--wp--preset--color--edu, #27ae60);
      --dm-gradient: var(--wp--preset--gradient--dm-primary, linear-gradient(135deg, #4e54c8 0%, #8f94fb 100%));
      --dm-gradient-warm: var(--wp--preset--gradient--dm-warm, linear-gradient(135deg, #f77062 0%, #fe5196 100%));
    }

    * { scroll-behavior: smooth; }

    body {
      font-family: 'Nunito', sans-serif;
      color: var(--dm-body);
      font-size: 16px;
      line-height: 1.7;
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Quicksand', sans-serif;
      font-weight: 700;
      color: var(--dm-dark);
    }

    .section-title {
      font-size: 2.2rem;
      font-weight: 800;
      margin-bottom: 0.5rem;
    }

    .section-subtitle {
      font-size: 1.15rem;
      color: #6c757d;
      max-width: 700px;
      margin: 0 auto 2.5rem;
    }

    /* ─── Navbar ─── */
    .navbar-digimata {
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(12px);
      box-shadow: 0 2px 20px rgba(0,0,0,0.06);
      padding: 0.6rem 0;
      transition: all 0.3s;
    }
    .navbar-digimata .navbar-brand {
      font-family: 'Quicksand', sans-serif;
      font-weight: 900;
      font-size: 1.6rem;
      color: var(--dm-primary);
      padding: 0.2rem 0;
    }
    .navbar-digimata .navbar-brand img {
      height: 60px;
      width: auto;
      transition: height 0.3s;
    }
    .navbar-digimata .navbar-brand span {
      color: var(--dm-secondary);
    }
    .navbar-digimata .nav-link {
      font-weight: 600;
      color: var(--dm-dark);
      padding: 0.5rem 1rem;
      transition: color 0.2s;
    }
    .navbar-digimata .nav-link:hover {
      color: var(--dm-primary);
    }
    /* ─── Mobile menu ─── */
    .navbar-digimata .navbar-toggler {
      padding: 0.4rem 0.6rem;
      font-size: 1.2rem;
      color: var(--dm-dark);
      transition: all 0.2s;
    }
    .navbar-digimata .navbar-toggler:focus {
      box-shadow: 0 0 0 3px rgba(78,84,200,0.25);
    }
    @media (max-width: 991.98px) {
      .navbar-digimata .navbar-brand img {
        height: 36px;
      }
      .navbar-digimata .navbar-collapse {
        background: #fff;
        border-radius: 0 0 16px 16px;
        padding: 1rem 0.5rem;
        margin-top: 0.5rem;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
      }
      .navbar-digimata .nav-link {
        padding: 0.65rem 1rem;
        border-radius: 10px;
        margin-bottom: 0.15rem;
      }
      .navbar-digimata .nav-link:hover,
      .navbar-digimata .nav-link:active {
        background: var(--dm-light);
      }
      .navbar-digimata .d-flex.gap-2 {
        padding-top: 0.5rem;
        border-top: 1px solid rgba(0,0,0,0.06);
        margin-top: 0.5rem;
      }
    }

    /* ─── Buttons ─── */
    .btn-dm-primary {
      background: var(--dm-gradient);
      color: #fff;
      border: none;
      padding: 0.75rem 2rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1rem;
      transition: all 0.3s;
      box-shadow: 0 4px 15px rgba(78,84,200,0.3);
    }
    .btn-dm-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(78,84,200,0.4);
      color: #fff;
    }
    .btn-dm-secondary {
      background: #fff;
      color: var(--dm-primary);
      border: 2px solid var(--dm-primary);
      padding: 0.7rem 2rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1rem;
      transition: all 0.3s;
    }
    .btn-dm-secondary:hover {
      background: var(--dm-primary);
      color: #fff;
      transform: translateY(-2px);
    }
    .btn-dm-warm {
      background: var(--dm-gradient-warm);
      color: #fff;
      border: none;
      padding: 0.75rem 2rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1rem;
      transition: all 0.3s;
      box-shadow: 0 4px 15px rgba(247,112,98,0.3);
    }
    .btn-dm-warm:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(247,112,98,0.4);
      color: #fff;
    }

    /* ─── Hero ─── */
    .hero-section {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: stretch;
      background: url('../images/banner-1920x850.png') center/cover no-repeat; /* fallback */
      background-image: -webkit-image-set(url('../images/banner-1920x850.webp') 1x);
      background-image: image-set(url('../images/banner-1920x850.webp') 1x);
      overflow: hidden;
      padding-top: 80px;
      padding-bottom: 0;
    }
    .hero-section > .container {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
    }
    .hero-section .hero-main-content {
      flex: 1;
      display: flex;
      align-items: center;
    }
    .hero-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to bottom, rgba(78,84,200,1) 0%, transparent 24%, transparent 80%, rgba(78,84,200,0.95) 100%),
        linear-gradient(to right, rgba(78,84,200,0.95) 0%, rgba(78,84,200,0.88) 25%, rgba(78,84,200,0.55) 50%, rgba(78,84,200,0.15) 75%, transparent 100%);
      z-index: 1;
    }
    .hero-section::after { display: none; }
    .hero-title {
      font-size: 3.5rem;
      font-weight: 900;
      line-height: 1.15;
      color: #fff;
      font-style: normal;
      text-shadow: 0 4px 4px rgba(0,0,0,0.5);
    }
    .hero-title .highlight {
      color: inherit;
      background: none;
      -webkit-background-clip: unset;
      -webkit-text-fill-color: unset;
      background-clip: unset;
    }
    .hero-lead {
      font-size: 1.15rem;
      color: rgba(255,255,255,0.88);
      max-width: 560px;
    }
    .hero-badge {
      display: inline-block;
      background: rgba(0,0,0,0.3);
      color: #fff;
      padding: 0.4rem 1.2rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.9rem;
      margin-bottom: 1.2rem;
      backdrop-filter: blur(4px);
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .hero-section .btn-dm-warm {
      padding: 0.85rem 2.2rem;
      font-size: 1.05rem;
    }
    .hero-section .btn-hero-outline {
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255,255,255,0.6);
      padding: 0.8rem 2.2rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1.05rem;
      transition: all 0.3s;
    }
    .hero-section .btn-hero-outline:hover {
      background: rgba(255,255,255,0.15);
      border-color: #fff;
      color: #fff;
    }

    /* ─── Stats in Hero ─── */
    .hero-stats-bar {
      margin-top: auto;
      padding-top: 2rem;
      padding-bottom: 2rem;
      border-top: 1px solid rgba(255,255,255,0.15);
    }
    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 3rem;
      flex-wrap: wrap;
    }
    .hero-stat {
      text-align: center;
    }
    .hero-stat-number {
      font-family: 'Quicksand', sans-serif;
      font-size: 2.2rem;
      font-weight: 900;
      color: #fff;
      line-height: 1;
      margin-bottom: 0.3rem;
    }
    .hero-stat-label {
      font-size: 0.85rem;
      line-height: 1.2;
      color: rgba(255,255,255,0.65);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* ─── How It Works (Jak to działa?) Section ─── */
    .how-it-works-section {
      padding: 5rem 0;
      background: #fff;
    }
    .how-it-works-section .section-title {
      color: var(--dm-dark);
      font-style: normal;
    }
    .how-it-works-img {
      border-radius: 20px;
      box-shadow: 0 16px 48px rgba(0,0,0,0.10);
      width: 100%;
      height: auto;
    }
    .how-step-full {
      display: flex;
      align-items: flex-start;
      gap: 1.1rem;
      margin-bottom: 2rem;
    }
    .how-step-full:last-child { margin-bottom: 0; }
    .how-step-num {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      font-weight: 900;
      color: #fff;
      flex-shrink: 0;
      margin-top: 0.15rem;
    }
    .how-step-num.num-1 { background: var(--dm-primary); }
    .how-step-num.num-2 { background: var(--dm-primary); }
    .how-step-num.num-3 { background: var(--dm-primary); }
    .how-step-content h5 {
      font-size: 1.15rem;
      font-weight: 800;
      margin-bottom: 0.3rem;
    }
    .num-1 + .how-step-content h5 { color: var(--dm-primary); }
    .num-2 + .how-step-content h5 { color: var(--dm-primary); }
    .num-3 + .how-step-content h5 { color: var(--dm-primary); }
    .how-step-content p {
      font-size: 1rem;
      color: var(--dm-body);
      margin: 0;
      line-height: 1.6;
    }

    /* ─── Packages Section ─── */
    .packages-section {
      padding: 6rem 0;
      background: #fff;
    }
    .package-card {
      border: none;
      border-radius: 20px;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
      height: 100%;
    }
    .package-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    }
    .package-card .card-header-img {
      height: 220px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
      position: relative;
    }
    .package-card .card-header-img img {
      max-height: 160px;
      max-width: 160px;
      object-fit: contain;
      filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
    }
    .package-card .card-header-img .package-badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: rgba(255,255,255,0.9);
      padding: 0.25rem 0.75rem;
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: 700;
      backdrop-filter: blur(4px);
    }
    .pkg-creative .card-header-img {
      background: linear-gradient(135deg, #fff5f8 0%, #ffe8f0 100%);
      padding: 0;
      overflow: hidden;
    }
    .pkg-creative .card-header-img img {
      width: 100%;
      height: 100%;
      max-width: none;
      max-height: none;
      object-fit: cover;
      filter: none;
    }
    .pkg-creative .package-badge { color: var(--dm-creative); }
    .pkg-game .card-header-img { background: linear-gradient(135deg, #f0f7ff 0%, #e0efff 100%); }
    .pkg-game .package-badge { color: var(--dm-game); }
    .pkg-edu .card-header-img { background: linear-gradient(135deg, #f0faf4 0%, #dff5e8 100%); }
    .pkg-edu .package-badge { color: var(--dm-edu); }
    .pkg-game .card-header-img,
    .pkg-edu .card-header-img {
      padding: 0;
      overflow: hidden;
    }
    .pkg-game .card-header-img img,
    .pkg-edu .card-header-img img {
      width: 100%;
      height: 100%;
      max-width: none;
      max-height: none;
      object-fit: cover;
      filter: none;
    }
    .package-card .card-body {
      padding: 1.75rem;
    }
    .package-card .card-title {
      font-size: 1.2rem;
      font-weight: 800;
      margin-bottom: 0.75rem;
    }
    .package-card .card-text {
      font-size: 0.95rem;
      color: var(--dm-body);
    }
    .package-card .card-footer {
      background: transparent;
      border-top: 1px solid rgba(0,0,0,0.05);
      padding: 1.25rem 1.75rem;
    }
    .package-features {
      list-style: none;
      padding: 0;
      margin: 1rem 0 0;
    }
    .package-features li {
      padding: 0.3rem 0;
      font-size: 0.9rem;
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
    }
    .package-features li i {
      flex-shrink: 0;
      margin-top: 3px;
    }
    .pkg-btn-creative { background: var(--dm-creative); color: #fff; border: none; border-radius: 50px; padding: 0.5rem 1.5rem; font-weight: 700; transition: all 0.3s; }
    .pkg-btn-creative:hover { background: #c93d75; color: #fff; }
    .pkg-btn-game { background: var(--dm-game); color: #fff; border: none; border-radius: 50px; padding: 0.5rem 1.5rem; font-weight: 700; transition: all 0.3s; }
    .pkg-btn-game:hover { background: #2980b9; color: #fff; }
    .pkg-btn-edu { background: var(--dm-edu); color: #fff; border: none; border-radius: 50px; padding: 0.5rem 1.5rem; font-weight: 700; transition: all 0.3s; }
    .pkg-btn-edu:hover { background: #219a52; color: #fff; }

    /* ─── Why Section ─── */
    .why-section {
      padding: 6rem 0;
      background: var(--dm-light);
    }
    .why-card {
      background: #fff;
      border-radius: 16px;
      padding: 2rem;
      text-align: center;
      height: 100%;
      transition: all 0.3s;
      border: 1px solid rgba(0,0,0,0.04);
    }
    .why-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }
    .why-icon {
      width: 72px;
      height: 72px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      margin: 0 auto 1.25rem;
    }
    .why-icon.icon-1 { background: rgba(78,84,200,0.1); color: var(--dm-primary); }
    .why-icon.icon-2 { background: rgba(247,112,98,0.1); color: var(--dm-secondary); }
    .why-icon.icon-3 { background: rgba(46,204,113,0.1); color: var(--dm-accent-green); }
    .why-icon.icon-4 { background: rgba(241,196,15,0.1); color: #d4a00a; }
    .why-icon.icon-5 { background: rgba(231,76,139,0.1); color: var(--dm-creative); }
    .why-icon.icon-6 { background: rgba(52,152,219,0.1); color: var(--dm-game); }
    .why-card h5 {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 0.6rem;
    }
    .why-card p {
      font-size: 0.9rem;
      color: #6c757d;
      margin: 0;
    }

    /* ─── Use Cases ─── */
    .usecases-section {
      padding: 6rem 0;
      background: #fff;
    }
    .usecase-tab-card {
      cursor: pointer;
      padding: 1.25rem;
      border-radius: 14px;
      border: 2px solid transparent;
      transition: all 0.3s;
      background: var(--dm-light);
      margin-bottom: 0.75rem;
    }
    .usecase-tab-card.active,
    .usecase-tab-card:hover {
      border-color: var(--dm-primary);
      background: #fff;
      box-shadow: 0 4px 16px rgba(78,84,200,0.1);
    }
    .usecase-tab-card h5 {
      font-size: 1rem;
      margin-bottom: 0.3rem;
    }
    .usecase-tab-card p {
      font-size: 0.85rem;
      color: #888;
      margin: 0;
    }
    .usecase-tab-card .usecase-icon {
      font-size: 1.5rem;
      color: var(--dm-primary);
    }

    /* ─── Gallery ─── */
    .gallery-section {
      padding: 5rem 0;
      background: var(--dm-light);
    }
    .gallery-item {
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(0,0,0,0.08);
      transition: all 0.3s;
    }
    .gallery-item:hover {
      transform: scale(1.03);
      box-shadow: 0 8px 24px rgba(0,0,0,0.14);
    }
    .gallery-item img {
      width: 100%;
      height: 270px;
      object-fit: cover;
    }

    /* ─── How It Works ─── */
    .tech-section {
      padding: 6rem 0;
      background: linear-gradient(160deg, #2c3e50 0%, #3d5166 100%);
      color: #fff;
    }
    .tech-section h2, .tech-section h5 { color: #fff; }
    .tech-section .section-subtitle { color: rgba(255,255,255,0.7); }
    .tech-step-card {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px;
      padding: 2rem;
      text-align: center;
      transition: all 0.3s;
      height: 100%;
    }
    .tech-step-card:hover {
      background: rgba(255,255,255,0.12);
      transform: translateY(-4px);
    }
    .tech-step-num {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--dm-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: 900;
      color: #fff;
      margin: 0 auto 1rem;
    }
    .tech-step-card h5 { font-size: 1.05rem; }
    .tech-step-card p { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin: 0; }
    .tech-note {
      background: rgba(255,255,255,0.06);
      border-radius: 12px;
      padding: 1.5rem;
      margin-top: 3rem;
      border-left: 4px solid var(--dm-primary-light);
    }
    .tech-note p { color: rgba(255,255,255,0.8); margin: 0; font-size: 0.95rem; }
    .tech-note i { color: var(--dm-primary-light); }

    /* ─── Video Section ─── */
    .video-section {
      padding: 5rem 0;
      background: #fff;
    }
    .video-wrapper {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    }
    .video-wrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* ─── Downloads ─── */
    .downloads-section {
      padding: 6rem 0;
      background: var(--dm-light);
    }
    .download-card {
      background: #fff;
      border-radius: 14px;
      padding: 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      transition: all 0.3s;
      border: 1px solid rgba(0,0,0,0.05);
      height: 100%;
    }
    .download-card:hover {
      box-shadow: 0 6px 20px rgba(0,0,0,0.08);
      transform: translateY(-2px);
      text-decoration: none;
    }
    .download-icon {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      flex-shrink: 0;
    }
    .download-icon.pdf { background: rgba(231,76,60,0.1); color: #e74c3c; }
    .download-icon.doc { background: rgba(52,152,219,0.1); color: #3498db; }
    .download-card h6 {
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 0.15rem;
      color: var(--dm-dark);
    }
    .download-card small { color: #888; font-size: 0.8rem; }

    /* ─── FAQ ─── */
    .faq-section {
      padding: 6rem 0;
      background: #fff;
    }
    .faq-section .accordion-item {
      border: 1px solid rgba(0,0,0,0.06);
      border-radius: 14px !important;
      margin-bottom: 0.75rem;
      overflow: hidden;
    }
    .faq-section .accordion-button {
      font-weight: 700;
      font-size: 1.05rem;
      color: var(--dm-dark);
      background: #fff;
      box-shadow: none;
      padding: 1.25rem 1.5rem;
    }
    .faq-section .accordion-button:not(.collapsed) {
      background: var(--dm-light);
      color: var(--dm-primary);
    }
    .faq-section .accordion-button:focus {
      box-shadow: none;
    }
    .faq-section .accordion-body {
      padding: 1rem 1.5rem 1.5rem;
      font-size: 0.95rem;
      color: var(--dm-body);
      line-height: 1.8;
    }

    /* ─── CTA ─── */
    .cta-section {
      padding: 6rem 0;
      background:
        linear-gradient(135deg, rgba(78,84,200,0.88) 0%, rgba(143,148,251,0.88) 100%),
        url('https://cdn.motioncube.io/images/gallery/a378642a375a702af9f73c775664cd62.jpg') center/cover no-repeat;
      color: #fff;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      top: -60%;
      right: -20%;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: rgba(255,255,255,0.04);
    }
    .cta-section h2 { color: #fff; font-size: 2.5rem; }
    .cta-section p { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }
    .cta-section .btn-dm-secondary {
      background: #fff;
      color: var(--dm-primary);
      border-color: #fff;
    }
    .cta-section .btn-dm-secondary:hover {
      background: transparent;
      color: #fff;
      border-color: #fff;
    }

    /* ─── For whom ─── */
    .audience-section {
      padding: 6rem 0;
      background: #fff;
    }
    .audience-card {
      text-align: center;
      padding: 2rem 1.5rem;
      border-radius: 16px;
      transition: all 0.3s;
      height: 100%;
    }
    .audience-card:hover {
      background: var(--dm-light);
    }
    .audience-card .audience-icon {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      margin: 0 auto 1rem;
      background: var(--dm-light);
    }

    /* ─── Benefits ─── */
    .benefits-section {
      padding: 6rem 0;
      background: linear-gradient(180deg, #fff 0%, var(--dm-light) 100%);
    }
    .benefit-list-card {
      background: #fff;
      border-radius: 20px;
      padding: 2rem;
      height: 100%;
      border: 1px solid rgba(0,0,0,0.05);
      box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    }
    .benefit-list-title {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      margin-bottom: 1.4rem;
    }
    .benefit-list-icon {
      width: 54px;
      height: 54px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      flex-shrink: 0;
    }
    .benefit-list-icon.teacher { background: rgba(78,84,200,0.12); color: var(--dm-primary); }
    .benefit-list-icon.child { background: rgba(247,112,98,0.12); color: var(--dm-secondary); }
    .benefit-list-icon.director { background: rgba(46,204,113,0.14); color: var(--dm-edu); }
    .benefit-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .benefit-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.7rem;
      margin-bottom: 0.95rem;
      color: var(--dm-body);
      font-size: 0.96rem;
      line-height: 1.55;
    }
    .benefit-list li:last-child {
      margin-bottom: 0;
    }
    .benefit-list li i {
      color: var(--dm-accent-green);
      margin-top: 0.15rem;
      font-size: 1rem;
      flex-shrink: 0;
    }

    /* ─── Footer ─── */
    .footer-digimata {
      background: var(--dm-dark);
      color: rgba(255,255,255,0.7);
      padding: 3rem 0 1.5rem;
    }
    .footer-digimata a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-digimata a:hover { color: #fff; }
    .footer-brand {
      font-family: 'Quicksand', sans-serif;
      font-weight: 900;
      font-size: 1.4rem;
      color: #fff;
    }
    .footer-brand span { color: var(--dm-secondary); }
    .footer-socials a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: rgba(255,255,255,0.08);
      font-size: 1.1rem;
      margin-right: 0.5rem;
      transition: all 0.3s;
    }
    .footer-socials a:hover {
      background: var(--dm-primary);
      color: #fff;
    }

    /* ─── Misc ─── */
    .separator-dots {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 1rem 0;
    }
    .separator-dots span {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #ddd;
    }
    .separator-dots span:nth-child(2) { background: var(--dm-primary); width: 24px; border-radius: 4px; }

    .img-float-badge {
      position: absolute;
      bottom: -10px;
      right: -10px;
      background: #fff;
      border-radius: 12px;
      padding: 0.6rem 1rem;
      box-shadow: 0 4px 16px rgba(0,0,0,0.1);
      font-weight: 700;
      font-size: 0.85rem;
      color: var(--dm-primary);
    }

    /* ─── Skills tags ─── */
    .skill-tag {
      display: inline-block;
      background: var(--dm-light);
      color: var(--dm-body);
      padding: 0.3rem 0.8rem;
      border-radius: 50px;
      font-size: 0.92rem;
      font-weight: 600;
      margin: 0.2rem;
    }

    /* ─── Minimum text size ─── */
    .hero-badge,
    .hero-stat-label,
    .how-step-content p,
    .package-card .card-header-img .package-badge,
    .package-card .card-text,
    .package-features li,
    .why-card p,
    .usecase-tab-card p,
    .tech-step-card p,
    .tech-note p,
    .download-card h6,
    .download-card small,
    .faq-section .accordion-body,
    .benefit-list li,
    .skill-tag,
    .footer-digimata p,
    .footer-digimata ul,
    .footer-digimata h6,
    .footer-digimata .d-flex {
      font-size: 1rem;
    }

    [style*="font-size: 0.8rem"],
    [style*="font-size: 0.85rem"],
    [style*="font-size: 0.9rem"],
    [style*="font-size: 0.92rem"],
    [style*="font-size: 0.95rem"],
    [style*="font-size: 0.96rem"] {
      font-size: 1rem !important;
    }

    /* ─── Responsive ─── */
    @media (max-width: 991.98px) {
      .hero-title { font-size: 2.4rem; }
      .hero-stats { gap: 1.5rem; }
      .section-title { font-size: 1.8rem; }
      .how-it-works-img { margin-bottom: 2.5rem; }
    }
    @media (max-width: 767.98px) {
      .hero-title { font-size: 1.8rem; }
      .hero-section { padding-top: 80px; min-height: auto; padding-bottom: 3rem; }
      .hero-stats { gap: 1rem; }
      .hero-stats-bar { margin-top: 2rem; }
      .stats-mini-section { padding: 1.5rem 0; }
      .section-title { font-size: 1.5rem; }
    }

    /* ─── Animations ─── */
    .fade-in-up {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease-out;
    }
    .fade-in-up.visible {
      opacity: 1;
      transform: translateY(0);
    }