

  :root {
  --navy:        #0C2144;
  --navy-2:      #112a52;
  --navy-3:      #1a3a6b;
  --teal:        #00E4AD;
  --teal-dim:    #00c495;
  --teal-soft:   rgba(0,228,173,0.12);
  --teal-soft2:  rgba(0,228,173,0.06);
  --white:       #FFFFFF;
  --off-white:   #F7F9FC;
  --surface:     #EFF3F9;
  --body-text:   #344054;
  --muted:       #6B7A8D;
  --light-muted: #98A6B5;
  --border:      #DDE3ED;
  --border-soft: #EEF1F7;
  --shadow-sm:   0 1px 3px rgba(12,33,68,0.06), 0 1px 2px rgba(12,33,68,0.04);
  --shadow-md:   0 4px 20px rgba(12,33,68,0.08), 0 2px 8px rgba(12,33,68,0.04);
  --shadow-lg:   0 12px 48px rgba(12,33,68,0.12), 0 4px 16px rgba(12,33,68,0.06);
  --shadow-xl:   0 24px 80px rgba(12,33,68,0.16);
  --font-serif:  'Montserrat', sans-serif;
  --font-sans:   'Plus Jakarta Sans', sans-serif;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --gradient-blue: linear-gradient(155deg, #3381FF, #002C72);
}

/* ------------ Careers ----------------- */
     /* ═══════════════════════════════════════
      CAREERS BANNER
    ═══════════════════════════════════════ */
    .careers-section {
      position: relative;
      overflow: hidden;
      min-height: 480px;
      display: flex; align-items: center;
      margin: 0px 64px 0px 64px;
      border-radius: 20px;
    }

    /* Full-bleed background image */
    .careers-bg-img {
      position: absolute; inset: 0;
      background-image: url('images/careers2.webp');
      background-size: cover;
      background-position: center 30%;
      transition: transform 8s ease;
    }
    .careers-section:hover .careers-bg-img { transform: scale(1.04); }

    /* Gradient overlay: dark left, fade right — like Stripe Sessions */
    .careers-overlay {
      position: absolute; inset: 0;
      background:
        linear-gradient(to right,
          rgba(7, 20, 50, 0.96) 0%,
          rgba(7, 20, 50, 0.82) 42%,
          rgba(7, 20, 50, 0.35) 72%,
          rgba(7, 20, 50, 0.08) 100%
        );
    }

    /* Subtle teal glow at bottom-left */
    .careers-glow {
      position: absolute;
      bottom: -120px; left: -80px;
      width: 520px; height: 520px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0,228,173,0.13) 0%, transparent 70%);
      pointer-events: none;
    }

    /* Content layer */
    .careers-content {
      position: relative; z-index: 2;
      max-width: 90%; margin: 0 auto;
      padding: 80px 0px;
      width: 100%;
    }

    /* Eyebrow */
    .careers-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 20px;
      font-family: var(--font-sans);
    }
    .careers-eyebrow::before {
      content: '';
      width: 24px; height: 2px;
      background: var(--teal);
      border-radius: 2px;
      display: none;
    }

    /* Title */
    .careers-title {
      font-family: var(--font-serif);
      font-size: clamp(38px, 5.5vw, 42px);
      font-weight: 400;
      color: #fff;
      line-height: 1.08;
      letter-spacing: -2px;
      margin-bottom: 22px;
      max-width: 580px;
    }
    .careers-title .ct-teal { color: var(--teal); }
    .careers-title .ct-dot  { color: var(--teal); font-size: 0.9em; }

    /* Description */
    .careers-desc {
      font-size: 16px;
      color: rgba(255,255,255,0.62);
      line-height: 1.6;
      max-width: 470px;
      margin-bottom: 38px;
      font-family: var(--font-sans);
    }
    /* CTA row */
    .careers-cta-row {
      display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
    }
    .btn-careers-primary {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 15px; font-weight: 700;
      color: var(--navy);
      background: var(--teal);
      padding: 15px 32px; border-radius: 10px;
      transition: all 0.25s;
      white-space: nowrap;
      font-family: var(--font-sans);
    }
    .btn-careers-primary:hover {
      background: #00F5BB;
      transform: translateY(-2px);
      box-shadow: 0 12px 36px rgba(0,228,173,0.4);
    }
    .btn-careers-ghost {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 15px; font-weight: 600;
      color: rgba(255,255,255,0.75);
      border: 1.5px solid rgba(255,255,255,0.22);
      padding: 14px 28px; border-radius: 10px;
      transition: all 0.25s;
      white-space: nowrap;
    }
    .btn-careers-ghost:hover {
      color: #fff;
      border-color: rgba(255,255,255,0.5);
      background: rgba(255,255,255,0.07);
    }

    /* Floating stat pills */
    .careers-stats {
      display: flex; gap: 12px; flex-wrap: wrap;
      margin-top: 48px;
    }
    .careers-stat-pill {
      display: flex; align-items: center; gap: 10px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      padding: 10px 18px; border-radius: 50px;
      backdrop-filter: blur(8px);
    }
    .csp-val {
      font-size: 17px; font-weight: 800;
      color: var(--teal);
      line-height: 1;
    }
    .csp-label {
      font-size: 12px; font-weight: 500;
      color: rgba(255,255,255,0.55);
      line-height: 1.3;
    }

    /* Branding badge bottom-right — like "stripe sessions" */
    .careers-badge {
      position: absolute; bottom: 32px; right: 48px; z-index: 3;
      display: flex; align-items: center; gap: 8px;
    }
    .careers-badge-logo {
      font-size: 13px; font-weight: 800;
      color: rgba(255,255,255,0.9);
      letter-spacing: -0.3px;
    }
    .careers-badge-logo span { color: var(--teal); }
    .careers-badge-sub {
      font-size: 13px; font-weight: 400;
      color: rgba(255,255,255,0.45);
      letter-spacing: 0.3px;
    }

    /* Responsive */
    @media (max-width: 960px) {
      .careers-content { padding: 0px; }
      .careers-title { font-size: clamp(32px,6vw,52px); letter-spacing: -1.5px; }
      .careers-badge { right: 24px; bottom: 20px; }
    }
    @media (max-width: 640px) {
      .careers-section { min-height: 400px; margin-bottom: 0 !important; margin: 0px 20px 0px 20px; padding: 20px;}
      .careers-content { padding: 0px; }
      .careers-overlay {
        background: linear-gradient(to bottom,
          rgba(7,20,50,0.90) 0%,
          rgba(7,20,50,0.80) 60%,
          rgba(7,20,50,0.60) 100%
        );
      }
      .careers-title { font-size: 36px; letter-spacing: -1px; max-width: 100%; }
      .careers-desc { font-size: 15px; max-width: 100%; }
      .careers-stats { gap: 8px; }
      .careers-badge { display: none; }
    }



    /* ------------- Contact CTA -------------- */
    /* ═══════════════════════════════════════
   CONTACT / CTA
═══════════════════════════════════════ */
.cta-section {
  background: #fff;
  padding: 100px 64px;
  position: relative; overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,100,60,0.12) 0%, transparent 60%);
}
.cta-grid {
  max-width: 95%; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 2;
}
.cta-h2 {
  font-family: var(--font-serif) !important;
  font-size: clamp(36px,4.5vw,42px);
  font-weight: 300; color: var(--navy);
  letter-spacing: -2px; line-height: 1.1;
  margin-bottom: 16px;
}
.cta-h2 strong { font-weight: 700; }
.cta-sub { font-size: 16px; color: rgba(12,33,68,0.7); line-height: 1.7; max-width: fit-content; font-family: var(--font-sans); }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: end; }
.btn-navy-lg {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 700;
  color: var(--white);
  background: var(--navy);
  padding: 15px 32px; border-radius: 10px;
  transition: all 0.25s;
}

.btn-navy-lg:hover {
  background: var(--navy-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(12,33,68,0.3);
}


.btn-outline-navy {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600;
  color: var(--navy);
  padding: 14px 28px; border-radius: 10px;
  border: 2px solid rgba(12,33,68,0.25);
  transition: all 0.25s;
}
.btn-outline-navy:hover { border-color: var(--navy); background: rgba(12,33,68,0.06); }

.contact-form {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-xl);
}
.form-title {
  font-size: 18px; font-weight: 700; color: var(--navy);
  margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-label {
  display: block; font-size: 12px; font-weight: 700;
  color: var(--navy); letter-spacing: 0.3px;
  margin-bottom: 7px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: var(--font-sans); font-size: 14px;
  color: var(--navy);
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 12px 16px;
  outline: none;
  transition: all 0.2s;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--light-muted); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(12, 33, 68, 0.12);
}
.form-textarea { resize: vertical; min-height: 90px; }
.btn-form-submit {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 15px; font-weight: 700;
  color: var(--white); background: var(--navy);
  padding: 15px; border-radius: 10px;
  border: none; cursor: pointer;
  transition: all 0.25s;
  margin-top: 4px;
}
.btn-form-submit:hover { background: var(--navy-3); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(12, 33, 68, 0.12); }

    /* Responsive */
    @media (max-width: 560px) {
      .cta-section {padding: 50px 20px;}
      .cta-grid {gap: 20px; justify-content: center;}
      .cta-actions {gap: 7px; justify-content: left; width: 135%;}
      .btn-outline-navy {padding: 14px 20px;}
      .btn-navy-lg {padding: 14px 20px;}
    }




/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer-link-mbl {display: flex; width: 60%;} 
footer {
  background: var(--navy);
  padding: 80px 64px 40px;
}
.link-2, .footer-mob-hide, .link-3 {width: 33%;}
.footer-inner { max-width: 95%; margin: 0 auto; }
.footer-top {
  display: flex; 
  gap: 60px; margin-bottom: 64px;
}
.footer-brand {width: 36%;}

.footer-brand .logo-hex-footer {
  width: 38px; 
  height: 38px;
  background: var(--teal);
  clip-path: polygon(50% 0%,93% 25%,93% 75%,50% 100%,7% 75%,7% 25%);
  position: relative;
  display: inline-flex; 
  align-items: center; 
  justify-content: center;
  margin-bottom: 14px;
}
.footer-logo-text {
  font-size: 18px; font-weight: 800;
  color: var(--white); letter-spacing: -0.4px;
}
.footer-logo-text sup {
  font-size: 9px; font-weight: 700;
  color: var(--teal); vertical-align: super;
}
.footer-desc {
  font-size: 14px; color: rgba(255,255,255,0.5);
  line-height: 1.75; max-width: 355px; margin: 16px 0 24px;
  font-family: var(--font-sans);
}
.footer-socials { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
}
.social-link:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--navy);
}
.footer-col-head {
  font-size: 14px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255);
  margin-bottom: 20px;
  font-family: var(--font-serif);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  font-family: var(--font-sans);
}
.footer-links a:hover { color: var(--teal); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 20px; white-space: nowrap !important; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-legal a:hover { color: var(--teal); }
/* FOOTER */
.mobile-nav-footer {
  margin-top: 20px;
}
.mobile-top-right {
  display: flex;
  align-items: center;
  gap: 25px;
}
.nav-logo-img {
    height: 50px; 
    width: auto;
    display: block;
  }

.mobile-flag-top {
  width: 40px;
  height: auto;
  opacity: 0.85;
  transition: 0.25s;
}

.mobile-flag-top:hover {
  transform: scale(1.1);
  opacity: 1;
}

.mobile-nav-footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* CTA centered */
.mobile-cta {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* Flag below */
.mobile-flag {
  width: 28px;
  height: auto;
  opacity: 0.85;
}

.mobile-flag:hover {
  transform: scale(1.1);
  opacity: 1;
}
/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 960px) {
  footer { 
    /* padding-left: 24px;  */
    /* padding-right: 24px; */
    padding: 50px 20px 20px 20px;
    margin: 0px;
    border-radius: 0px;
  }
  .footer-top {
    margin-bottom: 35px;
  }
  .about-grid,.cases-grid,.ind-grid,.careers-grid,.cta-grid,.footer-top { grid-template-columns: 1fr; }
  .footer-top { display: block; }
  .tab-nav {display: grid; width: 100%;}
  .footer-mob-hide {display: none;}
  .footer-desc {max-width: 355px;}
}
@media (max-width: 640px) {
  .footer-link-mbl {display: flex; justify-content: space-between; width: 100%;}
  .footer-brand {width: 100%;}
  .link-2{width: 60%;}
  .link-3{width: 40%;}
}







/* -------------SKILLS-------------- */
.sec-h2 {
font-size: clamp(32px, 4vw, 42px);
  line-height: 1.28;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #0A2654;
  margin-bottom: 32px;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal-dim);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--teal);
  border-radius: 1px;
}
/* ═══════════════════════════════════════
   OUR INNOVATION 
═══════════════════════════════════════ */
.innovation-section {
  background: var(--white);
  padding: 80px 64px;
  border-top: 1px solid var(--border-soft);
  overflow: visible;
  position: relative;
}

/* ═══════════════════════════════════════
   SKILLS — sticky left nav + scrolling right panels
   (section wrapper still uses .innovation-section
   for shared padding/border-top rules)
═══════════════════════════════════════ */
.skills-scroll-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 230px;
  align-items: start;
}

/* ── left: sticky heading + nav ── */
.skills-scroll-left {
  position: sticky;
  top: 60px;
}
.skills-scroll-left .eyebrow { margin-bottom: 18px; }
.skills-scroll-left .sec-h2 {
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.12;
  margin-bottom: 16px;
}
/* .skills-scroll-left .sec-h2 strong { color: #000; } */
.skills-modern-sub {
  font-size: 15.5px; line-height: 1.7;
  color: var(--muted);
  max-width: 400px;
  margin-bottom: 40px;
}
.skills-nav-list { display: flex; flex-direction: column; }
.skills-nav-item {
  all: unset;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0 18px 20px;
  border-top: 1px solid var(--border-soft);
  cursor: pointer;
  transition: padding-left 0.3s ease;
}
.skills-nav-list .skills-nav-item:last-child { border-bottom: 1px solid var(--border-soft); }
.skills-nav-item::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px;
  background: transparent;
  transition: background 0.3s ease;
}
.skills-nav-item.active { padding-left: 26px; }
.skills-nav-item.active::before { background: var(--teal); }
.skills-nav-num {
  font-size: 12.5px; font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--light-muted);
  font-variant-numeric: tabular-nums;
  transition: color 0.3s ease;
  flex-shrink: 0;
}
.skills-nav-item.active .skills-nav-num { color: var(--teal-dim); }
.skills-nav-label {
  font-size: 16.5px; font-weight: 600;
  color: var(--light-muted);
  line-height: 1.4;
  transition: color 0.3s ease;
}
.skills-nav-item.active .skills-nav-label { color: var(--navy); }
.skills-nav-item:hover .skills-nav-label { color: var(--navy); }
.skills-img {
  width: 100%;
  /* max-width: 180px; */
  height: auto;
  display: block;
  /* margin: 0 auto 15px; */
  border-radius: 10px;
}

/* ── right: scrolling panels ── */
.skills-scroll-right {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 10px 0 0px;
}
.img-scroll-sticky {
  position: sticky;
  z-index: 199;
  top: -15px;
  width: 37em;
  margin-left: -15px;
}
.img-scroll-sticky-bottom {
  position: sticky;
  z-index: 199;
  bottom: -10px;
  width: 37em;
  margin-left: -15px;
  margin-top: -170px;
}
.skills-panel { max-width: 560px; }
.skills-panel-visual {
  position: relative;
  aspect-ratio: 16 / 10.5;
  border-radius: 26px;
  overflow: hidden;
  margin-bottom: 30px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-soft);
}
/* gradient overlay */
.skills-panel-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient( to bottom, rgba(7,22,48,0.15) 0%, rgba(7,22,48,0.35) 40%, rgba(7,22,48,0.88) 100% );
  z-index: 1;
}
.spv-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.spv-shape-a { width: 220px; height: 220px; background: rgba(0,228,173,0.16); }
.spv-shape-b { width: 140px; height: 140px; background: rgba(12,33,68,0.06); }
.spv-icon {
  position: relative; z-index: 1;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
}

.sv-1 { background: linear-gradient(135deg, rgba(0,228,173,0.16), rgba(12,33,68,0.03)); }
.sv-1 .spv-shape-a { top: -60px; right: -50px; }
.sv-1 .spv-shape-b { bottom: -40px; left: -30px; }

.sv-2 { background: linear-gradient(135deg, rgba(12,33,68,0.06), rgba(0,228,173,0.18)); }
.sv-2 .spv-shape-a { bottom: -70px; left: -60px; }
.sv-2 .spv-shape-b { top: -30px; right: 30px; }

.sv-3 { background: linear-gradient(160deg, rgba(0,196,149,0.16), rgba(12,33,68,0.04)); }
.sv-3 .spv-shape-a { top: -50px; left: -70px; }
.sv-3 .spv-shape-b { bottom: -60px; right: -20px; }

.sv-4 { background: linear-gradient(120deg, rgba(12,33,68,0.06), rgba(0,228,173,0.14)); }
.sv-4 .spv-shape-a { bottom: -80px; right: -40px; }
.sv-4 .spv-shape-b { top: -40px; left: 40px; }

.sv-5 { background: linear-gradient(150deg, rgba(0,228,173,0.2), rgba(12,33,68,0.05)); }
.sv-5 .spv-shape-a { top: -40px; right: -80px; }
.sv-5 .spv-shape-b { bottom: -50px; left: -10px; }

.skills-panel-title {
  font-size: 22px; font-weight: 700; color: var(--navy);
  line-height: 1.3; margin-bottom: 12px; letter-spacing: -0.1px;
}
.skills-panel-desc {
  font-size: 15px; line-height: 1.72; color: var(--muted);
}

@media (max-width: 900px) {
  .skills-modern-section.innovation-section { padding: 56px 0 64px; }
  .skills-scroll-inner { grid-template-columns: 1fr; gap: 28px; }

  /* keep heading + description, hide only the point list */
  .skills-scroll-left { position: static; padding: 0 20px; }
  .skills-modern-sub { max-width: 100%; }
  .skills-nav-list { display: none; }

  /* right column becomes a one-at-a-time horizontal slider */
  .skills-scroll-right {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
    padding: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .skills-scroll-right::-webkit-scrollbar { display: none; }

  .img-scroll-sticky,
  .img-scroll-sticky-bottom { display: none; }

  .skills-panel {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    scroll-snap-align: center;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* let the full image show — no cropping */
  .skills-panel-visual {
    aspect-ratio: auto;
    height: auto;
    width: 100%;
  }
  .skills-img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .skills-panel-title,
  .skills-panel-desc {
    width: 100%;
    max-width: 100%;
  }

  .skills-progress-mobile {
    display: block;
    padding: 0 20px;
    margin-top: 24px;
  }
}
@media (max-width: 600px) {
  .skills-panel-visual { border-radius: 20px; margin-bottom: 22px; }
  .spv-icon { width: 76px; height: 76px; }
  .skills-panel { padding: 0 16px; }
  .skills-panel-title { font-size: 20px; }
  .skills-progress-mobile { padding: 0 16px; }
}

/* slider progress bar — hidden on desktop by default */
.skills-progress-mobile { display: none; }
.skills-progress-track {
  position: relative;
  width: 100%;
  height: 4px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.skills-progress-thumb {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 20%;
  background: var(--teal);
  border-radius: 4px;
  transform: translateX(0);
}

/* dots — hidden on desktop by default */
.skills-mobile-dots { display: none; }
@media (max-width: 900px) {
  .skills-mobile-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
  }
}
.skills-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: all 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
}
.skills-dot.active {
  width: 22px;
  border-radius: 4px;
  background: var(--teal);
}